From 8206d9014d54aa647218763a2ae85c2bcdd87a77 Mon Sep 17 00:00:00 2001 From: Dina Berry Date: Sun, 28 Sep 2025 06:08:43 -0700 Subject: [PATCH 1/4] process for insert at scale --- .../IMPROVEMENT_PLAN.md | 131 +++ .../QUICKSTART_INSERT_AT_SCALE.md | 513 ++++++++++ .../docs/INSERT_AT_SCALE_GUIDE.md | 261 +++++ .../src/cosmos-operations.ts | 653 ++++++++++++ .../src/create-embeddings.ts | 253 ++++- .../src/insert-at-scale.ts | 961 ++---------------- .../src/interfaces.ts | 149 +++ nosql-vector-search-typescript/src/metrics.ts | 186 ++++ nosql-vector-search-typescript/src/utils.ts | 110 +- 9 files changed, 2195 insertions(+), 1022 deletions(-) create mode 100644 nosql-vector-search-typescript/IMPROVEMENT_PLAN.md create mode 100644 nosql-vector-search-typescript/QUICKSTART_INSERT_AT_SCALE.md create mode 100644 nosql-vector-search-typescript/docs/INSERT_AT_SCALE_GUIDE.md create mode 100644 nosql-vector-search-typescript/src/cosmos-operations.ts create mode 100644 nosql-vector-search-typescript/src/interfaces.ts create mode 100644 nosql-vector-search-typescript/src/metrics.ts diff --git a/nosql-vector-search-typescript/IMPROVEMENT_PLAN.md b/nosql-vector-search-typescript/IMPROVEMENT_PLAN.md new file mode 100644 index 0000000..8968cc1 --- /dev/null +++ b/nosql-vector-search-typescript/IMPROVEMENT_PLAN.md @@ -0,0 +1,131 @@ +# Azure Cosmos DB Insert-at-Scale Improvement Plan + +## Overview +This document outlines the planned improvements to the `insert-at-scale.ts` file based on expert feedback received on September 26, 2025. The changes focus on aligning with Azure Cosmos DB best practices and removing potentially confusing or inaccurate guidance. + +## Feedback Summary +The feedback highlighted several areas for improvement: +- MaxConcurrency should support -1 for SDK-managed parallelism +- Pricing estimates are difficult to provide accurately and should be simplified/removed +- Current operation cost calculations are confusing between different pricing models +- Circuit breaker pattern may not be the best approach; throughput buckets are preferred +- Retry logic should follow official Azure Cosmos DB SDK best practices +- Need better guidance on partition key selection and RU scaling strategies + +## Planned Changes + +### āœ… 1. Update MaxConcurrency to support -1 +**Status: COMPLETED** +- Modified `maxConcurrency` type definition and documentation +- Updated default configuration to use `-1` (let SDK maximize parallelism) +- Updated main function configuration + +### šŸ”„ 2. Remove/simplify pricing estimates +**Status: IN PROGRESS** +- Remove complex pricing calculations from the main output +- Simplify or remove the `estimateServerlessCost()` and `estimateMonthlyRUCost()` calls +- Focus on showing RU consumption metrics instead of cost projections +- Remove confusing monthly cost projections + +### šŸ“‹ 3. Fix pricing model confusion +**Status: PLANNED** +- Address confusion between serverless vs provisioned throughput vs autoscale pricing +- Clarify which pricing model is being used in calculations +- Ensure calculations are accurate for each specific model +- Remove or clearly separate different pricing model examples + +### šŸ“‹ 4. Update circuit breaker guidance +**Status: PLANNED** +- Remove or significantly modify the circuit breaker implementation +- Replace with guidance about Azure Cosmos DB's **throughput buckets** feature (in preview) +- Point users to Microsoft Learn documentation: https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet +- Focus on RU/workload based resource contention controls + +### šŸ“‹ 5. Improve retry logic best practices +**Status: PLANNED** +- Update retry logic to follow Azure Cosmos DB SDK best practices +- Implement retry patterns based on specific status codes +- Reference: "Design Resilient Applications with Azure Cosmos DB SDKs" Microsoft Learn documentation +- Ensure retry logic aligns with official SDK recommendations + +### šŸ“‹ 6. Add partition key best practices guidance +**Status: PLANNED** +- Add comprehensive documentation about partition key selection +- Emphasize the importance of **high cardinality** partition keys +- Provide guidance on ensuring workload is spread across multiple partitions +- Include examples of good vs. poor partition key choices for large insert workloads +- Explain how partition key affects performance and scalability + +### šŸ“‹ 7. Add RU scaling guidance +**Status: PLANNED** +- Document scaling strategies for large insert workloads +- Guidance on setting RU/s high during ingestion periods and scaling back down +- Information about **Dynamic Autoscale** capability and tuning max RU/s +- Explain physical partition creation (every ~10,000 RU/s creates new partition) +- Benefits of multiple physical partitions for large insert workloads (each partition capped at 10,000 RU/s max) + +### šŸ“‹ 8. Update documentation and comments +**Status: PLANNED** +- Review and update all JSDoc comments +- Update inline documentation throughout the file +- Modify console output to provide better guidance +- Ensure all documentation reflects Azure Cosmos DB best practices +- Remove outdated or potentially misleading information + +## Implementation Priority + +1. **High Priority (Immediate)**: + - Remove/simplify pricing estimates (item 2) + - Fix pricing model confusion (item 3) + - Update circuit breaker guidance (item 4) + +2. **Medium Priority**: + - Improve retry logic best practices (item 5) + - Add partition key best practices guidance (item 6) + +3. **Low Priority (Polish)**: + - Add RU scaling guidance (item 7) + - Update documentation and comments (item 8) + +## Key Principles to Follow + +### Partition Key Best Practices +- Choose high cardinality partition keys (distinct values across documents) +- Avoid "hot" partition keys that concentrate traffic +- Consider the query patterns when selecting partition keys +- Understand that good partition key distribution enables better parallelism + +### Scaling Strategies +- **Initial Ingestion**: Set RU/s high for large insert periods +- **Post-Ingestion**: Scale back down to normal operational levels +- **Dynamic Autoscale**: Use Azure's autoscale capability with appropriate max RU/s limits +- **Physical Partitions**: Understand that every ~10,000 RU/s creates a new physical partition +- **Parallel Processing**: More physical partitions = better insert performance (each capped at 10,000 RU/s) + +### Retry Logic +- Follow official Azure Cosmos DB SDK retry best practices +- Implement status-code specific retry logic +- Use appropriate backoff strategies +- Handle different error types correctly (retryable vs. non-retryable) + +### Resource Management +- Prefer Azure's native throughput management features +- Use throughput buckets (preview) for advanced RU/workload controls +- Avoid custom circuit breakers when native solutions exist +- Let the SDK handle parallelism optimization when possible + +## Expected Outcomes + +After implementing these changes, the `insert-at-scale.ts` file will: +- Provide more accurate and helpful guidance for large-scale insert operations +- Align with current Azure Cosmos DB best practices and recommendations +- Remove confusing or potentially misleading pricing calculations +- Focus on actionable performance and scalability guidance +- Reference official Microsoft documentation for advanced features + +## References + +- [Azure Cosmos DB Throughput Buckets](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet) +- [Design Resilient Applications with Azure Cosmos DB SDKs](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) +- [Azure Cosmos DB Partitioning](https://learn.microsoft.com/en-us/azure/cosmos-db/partitioning-overview) +- [Azure Cosmos DB Request Units](https://learn.microsoft.com/en-us/azure/cosmos-db/request-units) \ No newline at end of file diff --git a/nosql-vector-search-typescript/QUICKSTART_INSERT_AT_SCALE.md b/nosql-vector-search-typescript/QUICKSTART_INSERT_AT_SCALE.md new file mode 100644 index 0000000..3b0af98 --- /dev/null +++ b/nosql-vector-search-typescript/QUICKSTART_INSERT_AT_SCALE.md @@ -0,0 +1,513 @@ +# Quickstart: Insert documents at scale into Azure Cosmos DB for NoSQL + +In this quickstart, you learn how to efficiently insert large volumes of documents into Azure Cosmos DB for NoSQL using TypeScript and the Azure SDK. You'll implement enterprise-grade resilience patterns including retry logic, error handling, and performance monitoring. + +## Prerequisites + +- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/). +- Azure Cosmos DB for NoSQL account. [Create a Cosmos DB account](https://docs.microsoft.com/azure/cosmos-db/create-cosmosdb-resources-portal). +- [Node.js](https://nodejs.org/) version 18 or higher. +- [TypeScript](https://www.typescriptlang.org/) installed globally. + +## Setting up your environment + +1. **Install required packages**: + ```bash + npm install @azure/cosmos @azure/identity uuid + npm install -D @types/uuid typescript + ``` + +2. **Configure environment variables**: + Create a `.env` file with your Cosmos DB connection details: + ``` + COSMOS_ENDPOINT=https://your-account.documents.azure.com:443/ + COSMOS_KEY=your-primary-key + ``` + +3. **Prepare your data**: + For this quickstart, we'll use a sample hotel dataset. Create a JSON file with your documents or use our sample data structure. + +## Understanding bulk insert best practices + +Before implementing bulk insert operations, it's crucial to understand Azure Cosmos DB best practices and the distinction between educational patterns and production recommendations: + +### Educational vs Production Patterns + +This quickstart demonstrates several patterns for learning purposes. Here's what you should use in production versus what's included for educational value: + +| Pattern Category | šŸŽ“ Educational Patterns (Good for Learning) | šŸ­ Production Recommendations | +|------------------|---------------------------------------------|-------------------------------| +| **Resilience & Error Handling** | Custom circuit breaker implementation - Demonstrates resilience concepts | [Azure Cosmos DB SDK built-in retry policies](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) - Use the SDK's automatic retry handling with optimized backoff | +| **Retry Logic** | Manual retry logic with custom backoff - Shows how retry patterns work | [Azure Cosmos DB SDK built-in retry policies](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) - The SDK has optimized implementations | +| **Performance Monitoring** | Custom metrics collection - Illustrates performance monitoring concepts | [Azure Monitor](https://learn.microsoft.com/en-us/azure/azure-monitor/overview) and [Application Insights](https://learn.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview) - Enterprise-grade monitoring and alerting | +| **Error Analysis** | Detailed error parsing and categorization - Helps understand different error types | [Azure Monitor diagnostic logs](https://learn.microsoft.com/en-us/azure/cosmos-db/monitor-cosmos-db) - Native error tracking and analysis | +| **Resource Scaling** | Manual throttling and adaptive delay logic - Shows RU management concepts | [Dynamic Autoscale](https://learn.microsoft.com/en-us/azure/cosmos-db/provision-throughput-autoscale) - Let Azure automatically scale RU/s based on demand | +| **Resource Control** | Custom circuit breaker for RU management - Educational implementation | [Throughput Buckets (Preview)](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet) - Use Azure's native RU/workload control | +| **Authentication** | Connection string authentication - Simple for learning | [Managed Identity authentication](https://learn.microsoft.com/en-us/azure/cosmos-db/managed-identity-based-authentication) - More secure for production workloads | + +### When to Use Each Approach + +- **Development and Learning**: Use the patterns in this quickstart to understand resilience concepts and error handling +- **Small-scale Production**: The educational patterns can work for smaller workloads with proper testing +- **Enterprise Production**: Prefer Azure-native solutions for scalability, reliability, and reduced maintenance overhead + +### Partition Key Selection + +Choose a partition key with **high cardinality** to ensure even distribution of data and optimal performance. Here are the key principles to follow: + +**Best Practices for Partition Keys:** +- **High cardinality**: Choose fields with many distinct values across documents +- **Avoid hot partitions**: Don't use keys that concentrate traffic on few partitions +- **Good examples**: userId, deviceId, locationId, customerId +- **Poor examples**: status, category, type, country (these have low cardinality) +- **Even distribution**: Aim for balanced data and request distribution across partitions +- **Query alignment**: Use partition keys that appear in most of your queries + +**For Large Insert Workloads:** +- High cardinality enables better parallelism across multiple physical partitions +- Each physical partition can handle up to 10,000 RU/s maximum +- More partitions result in better insert performance for high-volume scenarios + +```typescript +/** + * Path to the partition key field, e.g., '/HotelId' + */ +partitionKeyPath: string; +``` + +### Scaling Strategy + +For large insert operations, consider these RU scaling approaches: + +- **Initial Ingestion**: Set RU/s high during large insert periods +- **Post-Ingestion**: Scale back down to normal operational levels +- **Dynamic Autoscale**: Use Azure's autoscale capability with appropriate max RU/s limits +- **Physical Partitions**: Every ~10,000 RU/s creates a new physical partition, enabling better parallelism + +## Configuration interface + +Define a comprehensive configuration for your bulk insert operations. The configuration allows you to control batch sizes, retry behavior, concurrency, and other important settings: + +```typescript +/** + * Configuration options for resilient insert operations + */ +export interface InsertConfig { + /** Maximum batch size for document insertion */ + batchSize: number; + /** Maximum number of retry attempts for failed operations */ + maxRetries: number; + /** Base time in ms for exponential backoff calculation */ + baseBackoff: number; + /** Maximum backoff time in ms regardless of retry count */ + maxBackoff: number; + /** Unique ID for correlating logs across the operation */ + correlationId?: string; + /** Target RU utilization rate (0.0-1.0) to avoid throttling */ + targetRuUtilization: number; + /** Maximum parallel operations. Set to -1 to let the client/SDK maximize parallelism automatically. */ + maxConcurrency: number; + /** Whether to enable idempotency tokens on documents */ + idempotencyEnabled: boolean; + /** Whether to return failed documents in results */ + returnFailedDocs: boolean; + /** Name of the field to use as document ID */ + idField: string; + /** Path to the partition key field */ + partitionKeyPath: string; +} +``` + +**Key Configuration Options:** +- **maxConcurrency**: Set to -1 to let the Azure Cosmos DB SDK automatically maximize parallelism based on your account's capabilities +- **batchSize**: Process documents in batches to manage memory usage and enable progress tracking +- **targetRuUtilization**: Keep below 1.0 to avoid consistent throttling +- **idempotencyEnabled**: Helps prevent duplicate insertions during retry scenarios + +/** + * Default configuration with reasonable values + */ +export const DEFAULT_INSERT_CONFIG: InsertConfig = { + batchSize: 25, + maxRetries: 5, + baseBackoff: 100, + maxBackoff: 10000, + targetRuUtilization: 0.7, + maxConcurrency: -1, // Let client/SDK maximize parallelism + idempotencyEnabled: true, + returnFailedDocs: true, + idField: 'HotelId', + partitionKeyPath: '/HotelId' +}; +``` + +## Implementing robust error handling + +Azure Cosmos DB operations can fail for various reasons. Implement smart retry logic based on error types to improve resilience. + +**Error Categories:** +- **Retryable HTTP codes**: 408 (Request Timeout), 429 (Too Many Requests), 449 (Retry With), 500/502/503/504 (Server/Gateway errors) +- **Retryable Cosmos DB codes**: ServiceUnavailable, TooManyRequests, RequestTimeout, Gone (partition split), InternalServerError +- **Non-retryable codes**: 400 (Bad Request), 401 (Unauthorized), 403 (Forbidden), 404 (Not Found), 409 (Conflict), 412 (Precondition Failed), 413 (Payload Too Large) + +```typescript +/** + * Check if an error is retryable based on its code + * Based on Azure Cosmos DB SDK best practices for resilient applications + * Reference: https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications + */ +function isRetryableError(errorCode: number | string): boolean { + const code = errorCode.toString(); + + const retryableHttpCodes = [ + '408', '429', '449', '500', '503', '502', '504' + ]; + + const retryableCosmosDbCodes = [ + 'ServiceUnavailable', 'TooManyRequests', 'RequestTimeout', 'Gone', 'InternalServerError' + ]; + + const nonRetryableCodes = [ + '400', '401', '403', '404', '409', '412', '413' + ]; + + if (nonRetryableCodes.includes(code)) { + return false; + } + + return retryableHttpCodes.includes(code) || retryableCosmosDbCodes.includes(code); +} +``` + +## Advanced backoff strategies + +Implement different backoff strategies for different error types to optimize retry behavior: + +**Backoff Strategy Types:** +- **Rate limiting (429 errors)**: Use more aggressive backoff with base multiplier of 3x and added random jitter +- **Other retryable errors**: Use standard exponential backoff with 2x multiplier and jitter for collision avoidance +- **Maximum backoff**: Always respect the configured maximum backoff time to prevent excessively long delays + +```typescript +if (attempts > 0) { + let backoffTime: number; + + if (lastError && lastError.code === '429') { + backoffTime = Math.min( + config.maxBackoff, + config.baseBackoff * Math.pow(3, attempts) + (Math.random() * 1000) + ); + } else { + backoffTime = Math.min( + config.maxBackoff, + config.baseBackoff * Math.pow(2, attempts) * (0.5 + Math.random() * 0.5) + ); + } + + logger.debug(`Retry backoff for ${backoffTime}ms`, { + docId: doc[config.idField], + attempt: attempts + 1, + errorCode: lastError?.code || 'UNKNOWN', + backoffStrategy: lastError?.code === '429' ? 'rate-limit-backoff' : 'exponential-jitter' + }); + + await delay(backoffTime); + retried++; +} +``` + +## Performance monitoring + +Track key performance metrics during your bulk insert operations: + +```typescript +/** + * Performance metrics for the operation + */ +export interface OperationMetrics { + /** Total RU consumption */ + totalRu: number; + /** Average RU per document */ + avgRuPerDoc: number; + /** Maximum RU per operation */ + maxRu: number; + /** Average latency in ms per document */ + avgLatencyMs: number; + /** Maximum latency in ms for any single operation */ + maxLatencyMs: number; + /** Error count by status code */ + errorCounts: Record; + /** Total duration of the operation in ms */ + totalDurationMs: number; +} + +/** + * Metrics collector for tracking performance + */ +export class MetricsCollector { + private ruValues: number[] = []; + private latencyValues: number[] = []; + private errorMap: Map = new Map(); + private startTime: number; + + constructor() { + this.startTime = Date.now(); + } + + /** + * Record the RU charge for an operation + */ + public recordRUs(requestCharge: number): void { + this.ruValues.push(requestCharge); + } + + /** + * Record the latency for an operation + */ + public recordLatency(latencyMs: number): void { + this.latencyValues.push(latencyMs); + } + + /** + * Record an error by its code + */ + public recordError(errorCode: number | string): void { + const code = errorCode.toString(); + this.errorMap.set(code, (this.errorMap.get(code) || 0) + 1); + } +} +``` + +## Complete implementation + +Here's a complete example of the bulk insert function with enterprise-grade resilience patterns: + +**Implementation Notes:** +- **Batch processing**: Documents are processed in configurable batches to manage memory and enable progress tracking +- **Educational patterns**: This implementation includes a custom circuit breaker, comprehensive logging, and manual retry logic for learning about resilience patterns +- **Production recommendation**: For production workloads, prefer Azure Cosmos DB's native features: + - **Azure Cosmos DB SDK built-in retry policies**: The SDK automatically handles retries with optimized backoff strategies + - **Dynamic Autoscale**: Automatically scales RU/s based on demand without custom throttling logic + - **Throughput Buckets (Preview)**: Fine-grained RU/workload control instead of custom circuit breakers + - **Azure Monitor and Application Insights**: Enterprise monitoring instead of custom metrics collection + +```typescript +/** + * Insert data into Cosmos DB with enterprise-grade resilience + */ +export async function resilientInsert( + container: Container, + data: JsonData[], + configOptions: Partial = {} +): Promise { + const config: InsertConfig = { + ...DEFAULT_INSERT_CONFIG, + ...configOptions + }; + + const logger = createLogger(config.correlationId); + const metrics = createMetricsCollector(); + + logger.info('Starting resilient insert operation', { + documentCount: data.length, + batchSize: config.batchSize + }); + + let inserted = 0, failed = 0, retried = 0; + const failedDocs: FailedDocument[] = []; + const totalBatches = Math.ceil(data.length / config.batchSize); + + for (let i = 0; i < totalBatches; i++) { + const start = i * config.batchSize; + const end = Math.min(start + config.batchSize, data.length); + const batch = data.slice(start, end); + + logger.info(`Processing batch ${i + 1}/${totalBatches}`, { + batchSize: batch.length, + totalProcessed: start + }); + + for (const doc of batch) { + const startTime = Date.now(); + let attempts = 0; + let success = false; + let lastError: ErrorDetails | null = null; + + while (attempts < config.maxRetries && !success) { + try { + attempts++; + + if (config.idempotencyEnabled && !doc._operationId) { + doc._operationId = generateOperationId(doc, config.idField); + } + + const response = await container.items.create(doc); + + metrics.recordRUs(response.requestCharge); + metrics.recordLatency(Date.now() - startTime); + + inserted++; + success = true; + + } catch (error) { + lastError = parseCosmosError(error); + metrics.recordError(lastError.code); + + if (!lastError.retryable || attempts >= config.maxRetries) { + break; + } + } + } + + if (!success) { + failed++; + failedDocs.push({ + document: doc, + error: lastError || { + code: 'MAX_RETRIES_EXCEEDED', + message: 'Document insertion failed after maximum retries', + retryable: false + }, + attempts + }); + } + } + } + + return { + total: data.length, + inserted, + failed, + retried, + metrics: metrics.getSummary(), + metricsCollector: metrics, + ...(config.returnFailedDocs && failedDocs.length > 0 ? { failedDocuments: failedDocs } : {}) + }; +} +``` + +## Usage example + +Here's how to use the bulk insert functionality in your application with comprehensive output and guidance: + +**Key Implementation Points:** +- **Database and container setup**: Ensure proper partition key configuration before inserting data +- **Partition key analysis**: The example validates that your chosen partition key follows best practices +- **Performance monitoring**: Track RU consumption, latency, and error patterns +- **Best practices guidance**: Console output provides actionable recommendations + +```typescript +async function main() { + const { dbClient: client } = getClientsPasswordless(); + + if (!client) { + throw new Error('Cosmos DB client is not configured properly.'); + } + + const databaseName = 'Hotels'; + const containerName = 'hotels-at-scale'; + const config = { + ...DEFAULT_INSERT_CONFIG, + batchSize: 50, + maxRetries: 3, + maxConcurrency: -1 + }; + + console.log(`Using database ${databaseName} and container ${containerName}...`); + console.log(`Using ID field: ${config.idField} and partition key path: ${config.partitionKeyPath}`); + + console.log(`\nPARTITION KEY ANALYSIS:`); + console.log(`• Current partition key: ${config.partitionKeyPath}`); + console.log(`• Ensure this field has high cardinality (many unique values)`); + console.log(`• Avoid low-cardinality fields like 'status', 'type', or 'category'`); + console.log(`• Good partition keys distribute data evenly across partitions\n`); + + try { + const { container } = await ensureDatabaseAndContainer( + client, + databaseName, + containerName, + config.partitionKeyPath + ); + + const dataPath = process.env.DATA_FILE || './sample-data.json'; + console.log(`Reading JSON file from ${dataPath}`); + const data = await readFileReturnJson(dataPath); + + const result = await resilientInsert(container, data, config); + + console.log(`\n-------- OPERATION RESULTS --------`); + console.log(`Inserted ${result.inserted} of ${result.total} documents`); + console.log(`Failed ${result.failed} documents`); + console.log(`Total retries attempted: ${result.retried}`); + + console.log(`\n-------- PERFORMANCE METRICS --------`); + console.log(`Total RUs consumed: ${result.metrics.totalRu.toLocaleString()}`); + console.log(`Average RU per document: ${result.metrics.avgRuPerDoc.toFixed(2)}`); + console.log(`Max RU for single operation: ${result.metrics.maxRu.toFixed(2)}`); + console.log(`Average latency per document: ${result.metrics.avgLatencyMs.toFixed(2)}ms`); + console.log(`Total operation duration: ${(result.metrics.totalDurationMs / 1000).toFixed(2)}s`); + + if (Object.keys(result.metrics.errorCounts).length > 0) { + console.log(`\n-------- ERROR BREAKDOWN --------`); + for (const [errorCode, count] of Object.entries(result.metrics.errorCounts)) { + console.log(`Error ${errorCode}: ${count} occurrences`); + } + } + + console.log(`\n-------- AZURE COSMOS DB BEST PRACTICES --------`); + console.log(`For production workloads, consider these Azure-native features:`); + console.log(`• Dynamic Autoscale: Automatically adjusts RU/s based on demand`); + console.log(`• Throughput Buckets (Preview): Fine-grained RU/workload control`); + console.log(`• Learn more: https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets`); + + console.log(`\n-------- PARTITION KEY BEST PRACTICES --------`); + console.log(`• Choose high cardinality partition keys (many unique values)`); + console.log(`• Ensure even distribution of data across partitions`); + console.log(`• Use partition key in your query filters for best performance`); + console.log(`• Avoid hot partitions (keys with uneven traffic distribution)`); + console.log(`• Current partition key '${config.partitionKeyPath}' - verify it meets these criteria`); + + } catch (error) { + console.error('Operation failed:', error); + throw error; + } +} + +main().catch(console.error); +``` + +## Key takeaways + +### Educational Value +This quickstart demonstrates several resilience patterns to help you understand the concepts: + +1. **Custom Retry Logic**: Learn how to implement intelligent retry logic that distinguishes between retryable and non-retryable errors +2. **Circuit Breaker Pattern**: Understand how to prevent cascading failures (though Azure handles this natively in production) +3. **Performance Monitoring**: See how to track RU consumption, latency, and error rates for optimization insights +4. **Error Handling**: Learn to parse and categorize different types of Azure Cosmos DB errors + +### Production Best Practices + +1. **Partition Key Selection**: Choose high-cardinality partition keys to ensure even data distribution and optimal performance +2. **Azure SDK Features**: Leverage built-in retry policies, connection pooling, and automatic failover +3. **Native Scaling**: Use Dynamic Autoscale and Throughput Buckets instead of custom throttling logic +4. **Enterprise Monitoring**: Implement Azure Monitor, Application Insights, and proper alerting +5. **Security**: Use Managed Identity authentication and proper network security configurations +6. **Resource Management**: Temporarily increase RU/s allocation during large insert operations, then scale back down + +### Migration Path +- **Start**: Use educational patterns to understand concepts and for development/testing +- **Scale**: Gradually adopt Azure-native solutions as your workload grows +- **Enterprise**: Fully leverage Azure's managed services for production reliability + +## Next steps + +- Learn about [Azure Cosmos DB Throughput Buckets](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet) for advanced RU management +- Explore [Design Resilient Applications with Azure Cosmos DB SDKs](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) for additional best practices +- Review [Azure Cosmos DB Partitioning](https://learn.microsoft.com/en-us/azure/cosmos-db/partitioning-overview) for deep dive into partition strategies +- Consider [Azure Cosmos DB Request Units](https://learn.microsoft.com/en-us/azure/cosmos-db/request-units) for understanding RU optimization + +## Clean up resources + +When you're finished with this quickstart, you can delete the Azure Cosmos DB account to avoid ongoing charges. You can delete the account through the Azure portal or using the Azure CLI. \ No newline at end of file diff --git a/nosql-vector-search-typescript/docs/INSERT_AT_SCALE_GUIDE.md b/nosql-vector-search-typescript/docs/INSERT_AT_SCALE_GUIDE.md new file mode 100644 index 0000000..5835163 --- /dev/null +++ b/nosql-vector-search-typescript/docs/INSERT_AT_SCALE_GUIDE.md @@ -0,0 +1,261 @@ +# Azure Cosmos DB Insert at Scale - Implementation Guide + +## Overview + +This guide provides comprehensive documentation for the enterprise-grade resilient document insertion implementation for Azure Cosmos DB. The implementation is optimized for large-scale vector document workloads but can be adapted for any high-volume insert scenarios. + +## Key Features + +- **Robust retry logic** following Azure Cosmos DB SDK best practices +- **Proper handling of x-ms-retry-after-ms headers** for rate limiting (429 errors) +- **Circuit breaker pattern** (educational) with Azure-native alternatives guidance +- **Comprehensive performance metrics** and RU consumption analysis +- **Adaptive RU scaling recommendations** and physical partition insights +- **High cardinality partition key best practices** for optimal distribution +- **Support for large documents** with vector embeddings (~310 RU per document) +- **Production-ready error handling** and logging with correlation IDs + +## Configuration Options (`InsertConfig`) + +The configuration interface provides comprehensive control over Azure Cosmos DB bulk insert operations with enterprise-grade resilience and monitoring capabilities. + +### Key Configuration Areas: +- **Retry and backoff strategies** aligned with Azure best practices +- **RU consumption control** and throttling prevention +- **Parallelism management** for optimal throughput +- **Monitoring and observability** with correlation IDs +- **Document validation** and schema enforcement +- **High cardinality partition key** configuration + +### Vector Workload Considerations: +Documents with embeddings typically consume ~310 RU each, requiring careful RU/s provisioning and parallelism tuning. + +### maxConcurrency Configuration: +Set to -1 to let the client/SDK maximize parallelism automatically. + +**RU Scaling Considerations:** +- Higher parallelism requires more RU/s to avoid throttling +- Each physical partition can handle up to 10,000 RU/s maximum +- Large documents (like vectors) consume more RUs per operation +- Consider Dynamic Autoscale for production workloads to handle traffic spikes +- For bulk insert scenarios: provision sufficient RU/s before starting, scale down after completion + +## Partition Key Best Practices + +Choose the partition key path carefully (e.g., '/HotelId'). + +**PARTITION KEY BEST PRACTICES:** +- Choose high cardinality fields (many distinct values across documents) +- Avoid "hot" partition keys that concentrate traffic on few partitions +- Good examples: userId, deviceId, locationId, customerId +- Poor examples: status, category, type, country (low cardinality) +- Aim for even distribution of data and requests across partitions +- Consider your query patterns - partition key should be used in most queries + +**For large insert workloads:** +- High cardinality enables better parallelism across multiple physical partitions +- Each physical partition can handle up to 10,000 RU/s maximum +- More partitions = better insert performance for high-volume scenarios + +## Error Handling + +### Structured Error Information (`ErrorDetails`) + +Provides comprehensive error parsing for Azure Cosmos DB operations, including proper handling of rate limiting headers and retry guidance. + +**Key features:** +- Extracts x-ms-retry-after-ms header from 429 (rate limiting) responses +- Categorizes errors as retryable vs non-retryable based on Azure best practices +- Preserves raw error objects for advanced debugging scenarios +- Provides human-readable error messages with Azure-specific context + +### Error Parsing (`parseCosmosError`) + +Handles Azure Cosmos DB SDK specific error structures and extracts critical information for proper retry logic and user feedback. Follows Azure best practices for error categorization and retry-after header handling. + +**Key functionality:** +- Extracts x-ms-retry-after-ms header from 429 rate limiting responses +- Handles multiple error code formats (statusCode, code, status, x-ms-substatus) +- Categorizes errors as retryable vs non-retryable per Azure guidelines +- Provides context-aware error messages for common Azure Cosmos DB scenarios +- Preserves raw error objects for advanced debugging and telemetry + +**References:** +- Azure Cosmos DB SDK best practices for resilient applications +- Microsoft Learn documentation on error handling patterns + +## Performance Monitoring (`MetricsCollector`) + +Provides detailed performance analytics, RU consumption tracking, and scaling insights for Azure Cosmos DB bulk insert operations. Essential for optimizing RU provisioning and identifying performance bottlenecks. + +**Capabilities:** +- Real-time RU consumption monitoring and rate calculation +- Latency tracking with statistical analysis (avg, max) +- Error categorization and frequency analysis +- RU scaling recommendations based on consumption patterns +- Physical partition analysis for optimizing parallelism +- Production-ready metrics for Azure Monitor integration + +**Use case:** Vector document workloads consuming ~310 RU per operation benefit significantly from continuous monitoring and scaling recommendations. + +## Document Validation (`validateDocument`) + +Validates documents before insertion to prevent errors and optimize performance. Includes Azure Cosmos DB specific validations and best practices for vector document workloads with large embeddings. + +**Validation checks:** +- Document structure and JSON validity +- Required ID field presence (configurable field name) +- Document size limits (Azure Cosmos DB 2MB maximum) +- Optional schema validation for type safety +- Vector embedding compatibility for large documents + +**Performance considerations:** +- Large vector documents (~310 RU each) require special handling +- Document size directly impacts RU consumption and latency +- Validation prevents costly insertion failures and retries + +## RU Scaling Guidance + +### Before Starting Large Insert Operations + +**RU Scaling Guidance for Large Insert Workloads:** + +Azure Cosmos DB provides several strategies for handling high-volume insert operations: + +#### 1. Dynamic Autoscale (Recommended for Production): +- Automatically scales RU/s from 10% to 100% of max RU/s based on demand +- Best for unpredictable workloads with varying traffic patterns +- Set max RU/s high enough to handle peak insert loads +- Automatically scales down during low activity periods + +#### 2. Manual Provisioned Throughput: +- Set RU/s high during large insert operations (ingestion periods) +- Scale back down after bulk operations complete to save costs +- Requires manual intervention but provides precise control +- Good for predictable batch processing scenarios + +#### 3. Throughput Buckets (Preview): +- Fine-grained control over RU/workload distribution +- Allows bursting beyond provisioned throughput for short periods +- Ideal for handling traffic spikes during bulk operations + +### Physical Partition Considerations: +- Each physical partition can handle up to 10,000 RU/s maximum +- Cosmos DB creates new physical partitions approximately every ~10,000 RU/s +- More partitions = better parallelism for insert operations +- High cardinality partition keys enable better distribution across partitions + +### For Vector Workloads: +Vector documents consume ~310 RU each, so consider: +- 1,000 docs = ~310,000 RU total (requires multiple physical partitions) +- For optimal performance: provision 5,000-15,000 RU/s during ingestion +- Use Dynamic Autoscale with max 15,000 RU/s for production workloads + +## Main Function Implementation + +The main execution function demonstrates enterprise-grade Azure Cosmos DB bulk insert with complete example showcasing best practices for large-scale document insertion with vector embeddings. + +### Features Demonstrated: +- Passwordless authentication with Managed Identity +- High cardinality partition key configuration for optimal distribution +- Vector document handling (~310 RU per document with 1536-dimensional embeddings) +- Comprehensive RU scaling guidance and recommendations +- Real-time performance monitoring and throttling detection +- Azure best practices for production workloads + +### Vector Workload Specifics: +- Documents contain text-embedding-ada-002 embeddings (1536 dimensions) +- Each document consumes ~310 RU due to size and complexity +- Requires careful RU provisioning and parallelism tuning +- Benefits from Dynamic Autoscale and high RU provisioning during ingestion + +### Production Recommendations: +- Use Dynamic Autoscale with max 15,000+ RU/s for vector workloads +- Enable Throughput Buckets for burst capacity handling +- Monitor with Azure Application Insights for comprehensive observability +- Implement proper retry policies and exponential backoff strategies + +## Database and Container Management + +### Ensuring Resources Exist (`ensureDatabaseAndContainer`) + +Creates database and container resources if they don't exist, with proper partition key configuration for large-scale insert operations. Provides comprehensive error handling and guidance for manual resource creation. + +**Key features:** +- Automatic database and container creation with proper partition key setup +- Validation of partition key configuration (cannot be changed after creation) +- Comprehensive error messages with Azure CLI commands for manual setup +- Best practices guidance for partition key selection +- Support for high cardinality partition keys required for vector workloads + +**IMPORTANT:** Partition key cannot be changed after container creation. Ensure the partition key provides good distribution for your data and query patterns. + +## Circuit Breaker Implementation (Educational) + +**IMPORTANT:** This is a custom implementation for educational purposes. + +For production workloads, consider using Azure Cosmos DB's native throughput management: +- **Throughput Buckets (Preview):** https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet +- **Dynamic Autoscale:** Automatically adjusts RU/s based on demand +- **Request rate limiting:** Handled by the SDK with built-in retry policies + +### Preferred Approach for RU/Workload Resource Contention Control: +1. Use Dynamic Autoscale with appropriate max RU/s limits +2. Configure Throughput Buckets (when available) for fine-grained control +3. Let the Azure Cosmos DB SDK handle retry logic and backoff + +## Azure Best Practices for Production + +### Recommended Azure Features: +- **Dynamic Autoscale:** Automatic RU/s scaling based on demand (10% to 100% of max) +- **Throughput Buckets (Preview):** Fine-grained RU/workload burst control +- **Azure Monitor integration:** For comprehensive observability +- **Managed Identity authentication:** For secure, passwordless connections + +### RU Scaling Strategies: + +#### 1. Dynamic Autoscale (Recommended): +- Enable autoscale with appropriate max RU/s (e.g., 15,000 RU/s) +- Automatically scales from 10% to 100% based on demand +- Handles traffic spikes without manual intervention +- Scales down during low activity to reduce costs + +#### 2. Manual Provisioned Throughput: +- Scale UP RU/s before bulk insert operations +- Monitor RU consumption and 429 throttling errors +- Scale DOWN after bulk operations complete +- Good for predictable batch processing workloads + +#### 3. Throughput Buckets (Preview): +- Fine-grained control over RU bursting behavior +- Handle short-term traffic spikes beyond provisioned capacity +- Ideal for workloads with occasional bulk operations + +#### 4. Physical Partition Optimization: +- Each partition handles maximum 10,000 RU/s +- Higher RU/s = more partitions = better insert parallelism +- Use high cardinality partition keys for even distribution +- Current setup: partition key enables good distribution + +## Troubleshooting + +### Throttling Detection (429 errors) +When 429 errors are detected, the system provides scaling recommendations: +- Increase provisioned RU/s or enable Dynamic Autoscale +- Consider using Throughput Buckets for burst capacity +- Reduce parallelism (maxConcurrency) or batch size +- Verify partition key has high cardinality for even distribution + +### Performance Monitoring +The system provides real-time insights: +- RU consumption rate (RU/s and RU/min) +- Scaling recommendations based on consumption patterns +- Physical partitions analysis for optimization +- Error breakdown and frequency analysis + +## Links and References + +- [Azure Cosmos DB Throughput Buckets](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet) +- [Design Resilient Applications with Azure Cosmos DB SDKs](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) +- [Azure Cosmos DB Partitioning Overview](https://learn.microsoft.com/en-us/azure/cosmos-db/partitioning-overview) +- [Common Azure Cosmos DB REST Response Headers](https://learn.microsoft.com/en-us/rest/api/cosmos-db/common-cosmosdb-rest-response-headers) \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/cosmos-operations.ts b/nosql-vector-search-typescript/src/cosmos-operations.ts new file mode 100644 index 0000000..b6bbc2d --- /dev/null +++ b/nosql-vector-search-typescript/src/cosmos-operations.ts @@ -0,0 +1,653 @@ +/** + * Azure Cosmos DB Operations Module + * + * This module contains all Cosmos DB specific operations including: + * - Client creation and authentication + * - Error parsing and handling + * - Document validation and preparation + * - Resilient bulk insert operations with retry logic + * - Database and container management + * - Circuit breaker implementation for educational purposes + */ +import { Container, CosmosClient } from '@azure/cosmos'; +import { AzureOpenAI } from "openai"; +import { DefaultAzureCredential, getBearerTokenProvider } from "@azure/identity"; +import { v4 as uuidv4 } from 'uuid'; +import { MetricsCollector, Logger } from './metrics.js'; +import { + InsertConfig, + DEFAULT_INSERT_CONFIG, + CircuitBreakerOptions, + FailedDocument, + ErrorDetails, + InsertResult, + JsonData +} from './interfaces.js'; + +// ------------------------------------------- +// Client Creation Functions +// ------------------------------------------- + +export function getClients(): { aiClient: AzureOpenAI | null; dbClient: CosmosClient | null } { + let aiClient: AzureOpenAI | null = null; + let dbClient: CosmosClient | null = null; + + const apiKey = process.env.AZURE_OPENAI_EMBEDDING_KEY!; + const apiVersion = process.env.AZURE_OPENAI_EMBEDDING_API_VERSION!; + const endpoint = process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT!; + const deployment = process.env.AZURE_OPENAI_EMBEDDING_MODEL!; + + if (apiKey && apiVersion && endpoint && deployment) { + aiClient = new AzureOpenAI({ + apiKey, + apiVersion, + endpoint, + deployment + }); + } + + // Cosmos DB connection string or endpoint/key + // You may need to use endpoint and key separately for CosmosClient + const cosmosEndpoint = process.env.COSMOS_ENDPOINT!; + const cosmosKey = process.env.COSMOS_KEY!; + + if (cosmosEndpoint && cosmosKey) { + dbClient = new CosmosClient({ endpoint: cosmosEndpoint, key: cosmosKey }); + } + + return { aiClient, dbClient }; +} + +/** + * Get Azure OpenAI and Cosmos DB clients using passwordless authentication (managed identity) + * This function uses DefaultAzureCredential for authentication instead of API keys + * + * @returns Object containing AzureOpenAI and CosmosClient instances or null if configuration is missing + */ +export function getClientsPasswordless(): { aiClient: AzureOpenAI | null; dbClient: CosmosClient | null } { + let aiClient: AzureOpenAI | null = null; + let dbClient: CosmosClient | null = null; + + // For Azure OpenAI with DefaultAzureCredential + const apiVersion = process.env.AZURE_OPENAI_EMBEDDING_API_VERSION!; + const endpoint = process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT!; + const deployment = process.env.AZURE_OPENAI_EMBEDDING_MODEL!; + + if (apiVersion && endpoint && deployment) { + const credential = new DefaultAzureCredential(); + const scope = "https://cognitiveservices.azure.com/.default"; + const azureADTokenProvider = getBearerTokenProvider(credential, scope); + aiClient = new AzureOpenAI({ + apiVersion, + endpoint, + deployment, + azureADTokenProvider + }); + } + + // For Cosmos DB with DefaultAzureCredential + const cosmosEndpoint = process.env.COSMOS_ENDPOINT!; + + if (cosmosEndpoint) { + const credential = new DefaultAzureCredential(); + + dbClient = new CosmosClient({ + endpoint: cosmosEndpoint, + aadCredentials: credential // Use DefaultAzureCredential instead of key + }); + } + + return { aiClient, dbClient }; +} + +/** + * Retry Resiliency implementation for Azure Cosmos DB operations + * + * Handles scenarios where Azure SDK doesn't provide automatic retry: + * - 403 Forbidden: Transient auth token issues (per Azure guidance: "Optional" retry) + * - Custom business logic failures that may be transient + * - Application-level circuit breaking for cascading failure prevention + * + * This complements Azure Cosmos DB SDK's built-in retry for: + * - 408 Request Timeout, 410 Gone, 429 Rate Limiting, 449 Retry With, 503 Service Unavailable + * + * Based on official Azure Cosmos DB NoSQL retry guidance documentation. + */ +export class RetryResiliency { + private state: 'CLOSED' | 'OPEN' | 'HALF_OPEN' = 'CLOSED'; + private failureCount = 0; + private lastFailureTime = 0; + private readonly options: CircuitBreakerOptions; + private readonly failures: boolean[] = []; + + constructor(options: CircuitBreakerOptions) { + this.options = options; + // Initialize failures array with falses (no failures) + this.failures = Array(options.rollingWindowSize).fill(false); + } + + /** + * Record a successful operation + */ + public recordSuccess(): void { + // Add success (false) to the rolling window + this.failures.shift(); + this.failures.push(false); + + // If we're in HALF_OPEN and get a success, close the circuit + if (this.state === 'HALF_OPEN') { + this.state = 'CLOSED'; + this.failureCount = 0; + } + } + + /** + * Record a failed operation + */ + public recordFailure(): void { + this.lastFailureTime = Date.now(); + + // Add failure (true) to the rolling window + this.failures.shift(); + this.failures.push(true); + + // Count failures in the rolling window + this.failureCount = this.failures.filter(f => f).length; + + // Open circuit if failure threshold exceeded + if (this.state === 'CLOSED' && this.failureCount >= this.options.failureThreshold) { + this.state = 'OPEN'; + } else if (this.state === 'HALF_OPEN') { + this.state = 'OPEN'; + } + } + + /** + * Check if circuit is open + */ + public isOpen(): boolean { + if (this.state === 'CLOSED') { + return false; + } + + // Check if circuit should transition to HALF_OPEN + if (this.state === 'OPEN' && Date.now() - this.lastFailureTime >= this.options.resetTimeout) { + this.state = 'HALF_OPEN'; + return false; + } + + return this.state === 'OPEN'; + } + + /** + * Get the current state + */ + public getState(): string { + return this.state; + } + + /** + * Get the failure count + */ + public getFailureCount(): number { + return this.failureCount; + } + + /** + * Get reset timeout + */ + public get resetTimeout(): number { + return this.options.resetTimeout; + } +} + +// ------------------------------------------- +// Error Handling Functions +// ------------------------------------------- + +/** + * Parse Azure Cosmos DB errors into structured format + */ +export function parseCosmosError(error: any): ErrorDetails { + // Default values + let code = 'UNKNOWN'; + let message = 'Unknown error'; + let retryable = false; + let retryAfterMs: number | undefined; + + try { + // Azure Cosmos DB SDK error structure parsing + if (error.code) { + code = error.code; + } else if (error.statusCode) { + code = error.statusCode; + } else if (error.status) { + code = error.status; + } else if (error.headers && error.headers['x-ms-substatus']) { + // Handle Cosmos DB sub-status codes + code = error.headers['x-ms-substatus']; + } + + // Convert code to string for consistency + code = code.toString(); + + // Extract retry-after header for 429 errors + if (code === '429' && error.headers) { + // Azure Cosmos DB returns retry-after time in x-ms-retry-after-ms header + const retryAfterHeader = error.headers['x-ms-retry-after-ms'] || + error.headers['retry-after-ms'] || + error.headers['Retry-After']; + + if (retryAfterHeader) { + const parsedRetryAfter = parseInt(retryAfterHeader.toString(), 10); + if (!isNaN(parsedRetryAfter)) { + retryAfterMs = parsedRetryAfter; + } + } + } + + // Extract message with priority for more specific error details + if (error.body && error.body.message) { + message = error.body.message; + } else if (error.message) { + message = error.message; + } else if (error.body && typeof error.body === 'string') { + message = error.body; + } + + // Add additional context for common Azure Cosmos DB errors + if (code === '429') { + message += retryAfterMs + ? ` (Rate limiting - retry after ${retryAfterMs}ms)` + : ' (Rate limiting - consider increasing RU/s or using backoff)'; + } else if (code === '449') { + message += ' (Retry with - temporary resource constraint)'; + } else if (code === '503') { + message += ' (Service temporarily unavailable)'; + } + + // Determine if the error is retryable using our enhanced logic + retryable = isRetryableError(code); + } catch (e) { + // Fallback for unparseable errors + message = 'Error parsing exception: ' + String(e); + } + + return { + code, + message, + retryable, + retryAfterMs, + raw: error + }; +} + +/** + * Check if an error requires custom retry logic based on Azure Cosmos DB NoSQL official guidance + * Note: SDK automatically retries 408, 410, 429, 449, 503 - only add custom retry where needed + */ +export function isRetryableError(errorCode: number | string): boolean { + const code = errorCode.toString(); + + // Based on Azure Cosmos DB NoSQL official guidance: + // Only retry errors where "Should add retry = Yes" AND "SDKs retry = No" + + // 403 is the main case where we should add custom retry (marked as "Optional") + // Only retry for transient auth issues, not for actual authorization failures + const customRetryableCodes = [ + '403' // Forbidden - Optional retry only for transient auth issues + ]; + + // These are handled by SDK automatically (SDKs retry = Yes) + // We don't need to add custom retry logic for these + const sdkHandledCodes = [ + '408', // Request Timeout - SDK handles this + '410', // Gone - SDK handles this + '429', // Too Many Requests - SDK handles this with x-ms-retry-after-ms + '449', // Retry With - SDK handles this + '503' // Service Unavailable - SDK handles this + ]; + + // Non-retryable errors (per Azure guidance: "Should add retry = No") + const nonRetryableCodes = [ + '400', // Bad Request + '401', // Not authorized + '404', // Resource not found + '409', // Conflict failure (ID/partition key taken or unique constraint violated) + '412', // Precondition failure (eTag mismatch - optimistic concurrency) + '413', // Request entity too large + '500' // Unexpected service error + ]; + + // Don't retry non-retryable errors + if (nonRetryableCodes.includes(code)) { + return false; + } + + // Only add custom retry for codes not handled by SDK + return customRetryableCodes.includes(code); +} + +// ------------------------------------------- +// Document Operations +// ------------------------------------------- + +/** + * Generate a unique operation ID for a document + */ +export function generateOperationId(doc: JsonData, idField: string = DEFAULT_INSERT_CONFIG.idField): string { + const baseId = doc[idField] || uuidv4(); + return `${baseId}-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`; +} + +/** + * Validate a document before insertion + */ +export function validateDocument(doc: JsonData, idField: string = DEFAULT_INSERT_CONFIG.idField, schema?: Record): boolean { + // Basic validation - document must be an object + if (!doc || typeof doc !== 'object' || Array.isArray(doc)) { + return false; + } + + // Ensure document has an ID field or can generate one + if (!doc[idField]) { + // Allow documents without explicit ID as we can generate one + doc[idField] = uuidv4(); + } + + // Optional schema validation + if (schema) { + // Basic schema validation - could be enhanced with more sophisticated validation + for (const [key, expectedType] of Object.entries(schema)) { + if (doc[key] && typeof doc[key] !== expectedType) { + return false; + } + } + } + + return true; +} + +// ------------------------------------------- +// Utility Functions +// ------------------------------------------- + +/** + * Delay function for exponential backoff + */ +async function delay(ms: number): Promise { + return new Promise(resolve => setTimeout(resolve, ms)); +} + +// ------------------------------------------- +// Core Insert Operations +// ------------------------------------------- + +/** + * Resilient bulk insert with comprehensive error handling and retry logic + */ +export async function resilientInsert( + container: Container, + data: JsonData[], + configOptions: Partial = {} +): Promise { + // Merge provided config with defaults + const config: InsertConfig = { + ...DEFAULT_INSERT_CONFIG, + ...configOptions, + circuitBreakerOptions: { + ...DEFAULT_INSERT_CONFIG.circuitBreakerOptions, + ...(configOptions.circuitBreakerOptions || {}) + } + }; + + const logger = new Logger(config.correlationId); + const metrics = new MetricsCollector(); + const retryResiliency = new RetryResiliency(config.circuitBreakerOptions); + + logger.info('Starting resilient insert operation', { + documentCount: data.length, + batchSize: config.batchSize + }); + + // NOTE: Retry resiliency for handling errors not covered by Azure SDK's built-in retry logic. + + let inserted = 0, failed = 0, retried = 0; + const failedDocs: FailedDocument[] = []; + const totalBatches = Math.ceil(data.length / config.batchSize); + + // Process in batches to manage memory and allow progress tracking + for (let i = 0; i < totalBatches; i++) { + // Check retry resiliency before proceeding + if (retryResiliency.isOpen()) { + logger.warn('Retry resiliency circuit open, pausing operations', { + failureCount: retryResiliency.getFailureCount(), + state: retryResiliency.getState() + }); + + await delay(retryResiliency.resetTimeout); + + if (retryResiliency.isOpen()) { + logger.error('Service degraded, retry resiliency circuit still open after wait', { + failureCount: retryResiliency.getFailureCount(), + state: retryResiliency.getState() + }); + + throw new Error('Service degraded, retry resiliency circuit still open after wait period'); + } + } + + const start = i * config.batchSize; + const end = Math.min(start + config.batchSize, data.length); + const batch = data.slice(start, end); + + logger.info(`Processing batch ${i + 1}/${totalBatches}`, { + batchSize: batch.length, + totalProcessed: start + }); + + // Validate documents before attempting insertion + const validDocs = batch.filter(doc => { + if (!validateDocument(doc, config.idField, config.schema)) { + logger.warn('Document validation failed', { doc }); + failed++; + if (config.returnFailedDocs) { + failedDocs.push({ + document: doc, + error: { code: 'VALIDATION_ERROR', message: 'Document validation failed', retryable: false }, + attempts: 0 + }); + } + return false; + } + return true; + }); + + // Process each document in the batch with simplified retry logic + const batchPromises = validDocs.map(async (doc) => { + let customRetries = 0; + const MAX_CUSTOM_RETRIES = 2; // Only for 403 Forbidden scenarios + let lastError: ErrorDetails | null = null; + + while (customRetries <= MAX_CUSTOM_RETRIES) { + try { + const startTime = Date.now(); + + // Prepare document with operation ID for idempotency + const docToInsert = { ...doc }; + if (config.idempotencyEnabled && !docToInsert.operationId) { + docToInsert.operationId = generateOperationId(doc, config.idField); + } + + // Perform the insert operation with timeout + // SDK automatically handles retries for: 408, 410, 429, 449, 503 + const insertPromise = container.items.create(docToInsert); + const timeoutPromise = new Promise((_, reject) => { + setTimeout(() => reject(new Error('Operation timeout')), config.bulkInsertTimeoutMs); + }); + + const result = await Promise.race([insertPromise, timeoutPromise]) as any; + const latency = Date.now() - startTime; + + // Record successful operation metrics + metrics.recordRUs(result.requestCharge || 0); + metrics.recordLatency(latency); + retryResiliency.recordSuccess(); + + inserted++; + return { success: true, doc, result }; + + } catch (error: any) { + const errorDetails = parseCosmosError(error); + lastError = errorDetails; + + metrics.recordError(errorDetails.code); + retryResiliency.recordFailure(); + + logger.warn(`Insert attempt ${customRetries + 1} failed`, { + docId: doc[config.idField], + error: errorDetails.message, + code: errorDetails.code + }); + + // Only retry 403 Forbidden if it might be transient auth issue + if (errorDetails.code === '403' && customRetries < MAX_CUSTOM_RETRIES) { + customRetries++; + retried++; + + // Short delay for auth token refresh scenarios + const shortDelay = 500 * customRetries; + logger.debug(`Retrying 403 error after ${shortDelay}ms`, { + docId: doc[config.idField], + attempt: customRetries + 1 + }); + + await delay(shortDelay); + continue; + } + + // All other errors: either handled by SDK already, or not retryable + // SDK already exhausted retries for 408, 410, 429, 449, 503 + break; + } + } + + // Document failed after all retries + failed++; + if (config.returnFailedDocs && lastError) { + failedDocs.push({ + document: doc, + error: lastError, + attempts: customRetries + 1 // Total attempts made + }); + } + + return { success: false, doc, error: lastError }; + }); + + // Wait for all documents in the batch to complete + await Promise.allSettled(batchPromises); + } + + const result: InsertResult = { + total: data.length, + inserted, + failed, + retried, + failedDocuments: config.returnFailedDocs ? failedDocs : undefined, + metrics: metrics.getSummary(), + metricsCollector: metrics + }; + + logger.info('Resilient insert operation completed', { + inserted: result.inserted, + failed: result.failed, + retried: result.retried, + totalRUs: result.metrics.totalRu, + durationMs: result.metrics.totalDurationMs + }); + + return result; +} + +/** + * Simple batch insert function for basic Cosmos DB operations + * This is a basic implementation - for production use resilientInsert() instead + */ +export async function insertData(config: any, container: Container, data: JsonData[]): Promise<{ total: number; inserted: number; failed: number }> { + // Cosmos DB uses containers instead of collections + // Insert documents in batches + console.log(`Processing in batches of ${config.batchSize}...`); + const totalBatches = Math.ceil(data.length / config.batchSize); + + let inserted = 0; + let failed = 0; + // Cosmos DB does not support bulk insert natively in SDK, but you can use stored procedures or loop + // Here we use a simple loop for demonstration + for (let i = 0; i < totalBatches; i++) { + const start = i * config.batchSize; + const end = Math.min(start + config.batchSize, data.length); + const batch = data.slice(start, end); + for (const doc of batch) { + try { + await container.items.create(doc); + inserted++; + } catch (error) { + console.error(`Error inserting document:`, error); + failed++; + } + } + // Small pause between batches to reduce resource contention + if (i < totalBatches - 1) { + await new Promise(resolve => setTimeout(resolve, 100)); + } + } + // Index creation is handled by indexing policy in Cosmos DB, not programmatically per field + //TBD: If custom indexing policy is needed, update container indexing policy via SDK or portal + return { total: data.length, inserted, failed }; +} + +/** + * Ensure Azure Cosmos DB database and container exist with proper partition key configuration + */ +export async function ensureDatabaseAndContainer( + client: any, + databaseName: string, + containerName: string, + partitionKeyPath: string +): Promise<{ database: any, container: any }> { + try { + console.log(`Ensuring database ${databaseName} exists...`); + const { database } = await client.databases.createIfNotExists({ id: databaseName }); + console.log(`Database ${databaseName} ensured.`); + + console.log(`Ensuring container ${containerName} exists with partition key ${partitionKeyPath}...`); + + // IMPORTANT: Partition key cannot be changed after container creation + const { container } = await database.containers.createIfNotExists({ + id: containerName, + partitionKey: { paths: [partitionKeyPath] } + }); + + console.log(`Container ${containerName} ensured.`); + console.log(`PARTITION KEY SET TO: ${partitionKeyPath}`); + console.log(`Remember: Partition key cannot be changed after container creation!`); + + return { database, container }; + } catch (error: any) { + console.error(`\nERROR: Cannot access database or container. Please ensure they exist.`); + console.error(`Error details: ${error.message}\n`); + console.error(`IMPORTANT: You need to create the database and container manually before running this script:\n`); + console.error(`1. Database name: ${databaseName}`); + console.error(`2. Container name: ${containerName} `); + console.error(`3. Partition key: ${partitionKeyPath}\n`); + console.error(`You can create these resources through:`); + console.error(`- Azure Portal: https://portal.azure.com`); + console.error(`- Azure CLI: `); + console.error(` az cosmosdb sql database create --account-name --name ${databaseName} --resource-group `); + console.error(` az cosmosdb sql container create --account-name --database-name ${databaseName} --name ${containerName} --partition-key-path ${partitionKeyPath} --resource-group \n`); + console.error(`The account you're using doesn't have permission to create these resources programmatically.`); + + throw error; + } +} \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/create-embeddings.ts b/nosql-vector-search-typescript/src/create-embeddings.ts index 42f9d5b..2dced88 100644 --- a/nosql-vector-search-typescript/src/create-embeddings.ts +++ b/nosql-vector-search-typescript/src/create-embeddings.ts @@ -39,39 +39,175 @@ export async function createEmbeddings(client: AzureOpenAI, model: string, input return response.data; } +/** + * Configuration options for embedding processing + */ +export interface EmbeddingConfig { + /** Field name to embed. If null/undefined, entire document will be embedded */ + fieldToEmbed?: string; + /** Name of the new field where embeddings will be stored */ + newEmbeddedField: string; + /** Maximum number of items to process */ + maxEmbeddings?: number; + /** Fields to exclude when embedding entire document */ + excludeFields?: string[]; + /** Custom separator for joining document fields (default: " ") */ + fieldSeparator?: string; + /** Whether to include field names in document embedding (default: false) */ + includeFieldNames?: boolean; +} + +/** + * Extract text content from a document for embedding + */ +function extractTextFromDocument( + item: T, + fieldToEmbed?: string, + excludeFields: string[] = [], + fieldSeparator: string = " ", + includeFieldNames: boolean = false +): string { + // If specific field is requested, extract only that field + if (fieldToEmbed) { + const fieldValue = (item as any)[fieldToEmbed]; + if (!fieldValue) { + console.warn(`Item is missing the field to embed: ${fieldToEmbed}`); + return ""; // Provide a fallback value to prevent API errors + } + return String(fieldValue); + } + + // Embed entire document + if (!item || typeof item !== 'object') { + return String(item || ""); + } + + const textParts: string[] = []; + const itemObj = item as Record; + + // Default fields to exclude for document embedding + const defaultExcludeFields = ['id', '_id', 'embedding', 'embeddings', 'vector', 'vectors']; + const fieldsToExclude = [...defaultExcludeFields, ...excludeFields]; + + Object.entries(itemObj).forEach(([key, value]) => { + // Skip excluded fields + if (fieldsToExclude.includes(key)) { + return; + } + + // Skip null, undefined, or empty values + if (value == null || value === "") { + return; + } + + // Convert value to string + let textValue: string; + if (typeof value === 'object') { + // For objects/arrays, stringify them + textValue = JSON.stringify(value); + } else { + textValue = String(value); + } + + // Add to text parts with optional field name + if (includeFieldNames) { + textParts.push(`${key}: ${textValue}`); + } else { + textParts.push(textValue); + } + }); + + return textParts.join(fieldSeparator); +} + +/** + * Prepare batch of texts for embedding + */ +function prepareBatchTexts( + batchItems: T[], + config: EmbeddingConfig +): string[] { + return batchItems.map(item => extractTextFromDocument( + item, + config.fieldToEmbed, + config.excludeFields, + config.fieldSeparator, + config.includeFieldNames + )); +} + export async function processEmbeddingBatch( client: AzureOpenAI, model: string, - fieldToEmbed: string, + fieldToEmbed: string | null | undefined, newEmbeddedField: string, maxEmbeddings: number, items: T[] +): Promise; +export async function processEmbeddingBatch( + client: AzureOpenAI, + model: string, + config: EmbeddingConfig, + items: T[] +): Promise; + +export async function processEmbeddingBatch( + client: AzureOpenAI, + model: string, + fieldToEmbedOrConfig: string | null | undefined | EmbeddingConfig, + newEmbeddedFieldOrItems: string | T[], + maxEmbeddingsOrUndefined?: number, + itemsOrUndefined?: T[] ): Promise { + // Handle overloaded function signatures + let config: EmbeddingConfig; + let items: T[]; + + if (Array.isArray(newEmbeddedFieldOrItems)) { + // New signature: processEmbeddingBatch(client, model, config, items) + config = fieldToEmbedOrConfig as EmbeddingConfig; + items = newEmbeddedFieldOrItems; + } else { + // Legacy signature: processEmbeddingBatch(client, model, fieldToEmbed, newEmbeddedField, maxEmbeddings, items) + const fieldToEmbed = fieldToEmbedOrConfig as string | null | undefined; + const newEmbeddedField = newEmbeddedFieldOrItems as string; + const maxEmbeddings = maxEmbeddingsOrUndefined; + items = itemsOrUndefined!; + + config = { + fieldToEmbed: fieldToEmbed || undefined, + newEmbeddedField, + maxEmbeddings + }; + } + + // Validation if (!Array.isArray(items) || items.length === 0) { throw new Error("Items must be a non-empty array"); } - if (!fieldToEmbed) { - throw new Error("Field to embed must be specified"); + if (!config.newEmbeddedField) { + throw new Error("New embedded field name must be specified"); } const itemsWithEmbeddings: T[] = []; - maxEmbeddings = maxEmbeddings || items.length; + const maxItems = Math.min(config.maxEmbeddings || items.length, items.length); + + const embeddingMode = config.fieldToEmbed ? `field '${config.fieldToEmbed}'` : 'entire document'; + console.log(`Processing ${maxItems} items for embedding (${embeddingMode})`); + + if (!config.fieldToEmbed) { + console.log(`Excluding fields: ${['id', '_id', 'embedding', 'embeddings', 'vector', 'vectors', ...(config.excludeFields || [])].join(', ')}`); + } // Process in batches to avoid rate limits and memory issues - for (let i = 0; i < maxEmbeddings; i += batchSize) { - const batchEnd = Math.min(i + batchSize, items.length); - console.log(`Processing batch: ${i} to ${batchEnd - 1} (of ${items.length} items)`); + for (let i = 0; i < maxItems; i += batchSize) { + const batchEnd = Math.min(i + batchSize, maxItems); + console.log(`Processing batch: ${i} to ${batchEnd - 1} (of ${maxItems} items)`); const batchItems = items.slice(i, batchEnd); - const textsToEmbed = batchItems.map(item => { - if (!item[fieldToEmbed]) { - console.warn(`Item is missing the field to embed: ${fieldToEmbed}`); - return ""; // Provide a fallback value to prevent API errors - } - return item[fieldToEmbed]; - }); + const textsToEmbed = prepareBatchTexts(batchItems, config); try { const embeddings = await createEmbeddings(client, model, textsToEmbed); @@ -80,13 +216,13 @@ export async function processEmbeddingBatch( const originalItem = batchItems[index]; const newItem = { ...originalItem, - [newEmbeddedField]: embeddingData.embedding + [config.newEmbeddedField]: embeddingData.embedding }; itemsWithEmbeddings.push(newItem); }); // Add a small delay between batches to avoid rate limiting - if (batchEnd < items.length) { + if (batchEnd < maxItems) { await delay(); } } catch (error) { @@ -98,30 +234,77 @@ export async function processEmbeddingBatch( return itemsWithEmbeddings; } +// Testing function to demonstrate both embedding modes +export async function testEmbeddingModes( + client: AzureOpenAI, + model: string, + sampleItems: any[] +): Promise { + console.log("Testing field-specific embedding..."); + + // Test field-specific embedding (legacy style) + const fieldEmbeddings = await processEmbeddingBatch( + client, + model, + "hotelName", // embed only the hotel name field + "nameEmbedding", + 3, + sampleItems + ); + + console.log(`Generated ${fieldEmbeddings.length} field-specific embeddings`); + + console.log("\nTesting full document embedding..."); + + // Test full document embedding (new config style) + const docEmbeddings = await processEmbeddingBatch( + client, + model, + { + // No fieldToEmbed specified = embed entire document + newEmbeddedField: "documentEmbedding", + maxEmbeddings: 3, + excludeFields: ["hotelId", "category"], // custom exclusions + fieldSeparator: " | ", + includeFieldNames: true + }, + sampleItems + ); + + console.log(`Generated ${docEmbeddings.length} full document embeddings`); +} -try { +// Main execution function +async function main(): Promise { + try { + const { aiClient } = getClientsPasswordless(); - const { aiClient } = getClientsPasswordless(); + if (!aiClient) { + throw new Error('OpenAI client is not configured properly. Please check your environment variables.'); + } - if (!aiClient) { - throw new Error('OpenAI client is not configured properly. Please check your environment variables.'); - } + const data = await readFileReturnJson(path.join(__dirname, "..", dataWithoutVectors!)); + const model = deployment; + const maxEmbeddings = data.length; - const data = await readFileReturnJson(path.join(__dirname, "..", dataWithoutVectors!)); - const model = deployment; - const maxEmbeddings = data.length; + const embeddings = await processEmbeddingBatch( + aiClient, + model, + fieldToEmbed, + newEmbeddedField, + maxEmbeddings, + data + ); - const embeddings = await processEmbeddingBatch( - aiClient, - model, - fieldToEmbed, - newEmbeddedField, - maxEmbeddings, - data - ); + await writeFileJson(path.join(__dirname, "..", dataWithVectors!), embeddings); - await writeFileJson(path.join(__dirname, "..", dataWithVectors!), embeddings); + } catch (error) { + console.error(`Failed to save embeddings to file: ${(error as Error).message}`); + process.exit(1); + } +} -} catch (error) { - console.error(`Failed to save embeddings to file: ${(error as Error).message}`); +// Only run main if this file is being executed directly +if (import.meta.url === `file://${process.argv[1]}`) { + main(); } \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/insert-at-scale.ts b/nosql-vector-search-typescript/src/insert-at-scale.ts index 6c24208..001b0fd 100644 --- a/nosql-vector-search-typescript/src/insert-at-scale.ts +++ b/nosql-vector-search-typescript/src/insert-at-scale.ts @@ -1,881 +1,80 @@ -/** - * Enterprise-grade resilient document insertion for Cosmos DB - * Implements robust retry logic, circuit breaker pattern, monitoring, and more - */ -import { Container } from '@azure/cosmos'; -import { v4 as uuidv4 } from 'uuid'; -import { JsonData, readFileReturnJson, getClientsPasswordless, calculateRUCost, estimateMonthlyRUCost } from './utils.js'; - -// ------------------------------------------- -// Type Definitions -// ------------------------------------------- - -/** - * Configuration options for resilient insert operations - */ -export interface InsertConfig { - /** Maximum batch size for document insertion */ - batchSize: number; - /** Maximum number of retry attempts for failed operations */ - maxRetries: number; - /** Base time in ms for exponential backoff calculation */ - baseBackoff: number; - /** Maximum backoff time in ms regardless of retry count */ - maxBackoff: number; - /** Unique ID for correlating logs across the operation */ - correlationId?: string; - /** Target RU utilization rate (0.0-1.0) to avoid throttling */ - targetRuUtilization: number; - /** Maximum parallel operations to run simultaneously */ - maxConcurrency: number; - /** Whether to enable idempotency tokens on documents */ - idempotencyEnabled: boolean; - /** Whether to return failed documents in results */ - returnFailedDocs: boolean; - /** Circuit breaker configuration */ - circuitBreakerOptions: CircuitBreakerOptions; - /** Optional document schema for validation */ - schema?: Record; - /** Name of the field to use as document ID */ - idField: string; - /** Path to the partition key field, e.g., '/HotelId' */ - partitionKeyPath: string; -} - -/** - * Default configuration with reasonable values - */ -export const DEFAULT_INSERT_CONFIG: InsertConfig = { - batchSize: 25, - maxRetries: 5, - baseBackoff: 100, - maxBackoff: 10000, - targetRuUtilization: 0.7, - maxConcurrency: 5, - idempotencyEnabled: true, - returnFailedDocs: true, - circuitBreakerOptions: { - failureThreshold: 10, - resetTimeout: 30000, - rollingWindowSize: 100 - }, - idField: 'HotelId', - partitionKeyPath: '/HotelId' -}; - -/** - * Circuit breaker configuration options - */ -export interface CircuitBreakerOptions { - /** Number of failures before opening the circuit */ - failureThreshold: number; - /** Time in ms to wait before attempting to reset the circuit */ - resetTimeout: number; - /** Size of the rolling window for failure tracking */ - rollingWindowSize: number; -} - -/** - * Information about a failed document insertion - */ -export interface FailedDocument { - /** The document that failed to insert */ - document: JsonData; - /** Error details */ - error: ErrorDetails; - /** Number of attempts made before failing */ - attempts: number; -} - -/** - * Structured error information - */ -export interface ErrorDetails { - /** Error code (e.g., 429, 503) */ - code: number | string; - /** Human-readable error message */ - message: string; - /** Whether this error is retryable */ - retryable: boolean; - /** The raw error object */ - raw?: any; -} - -/** - * Result of an insert operation - */ -export interface InsertResult { - /** Total number of documents processed */ - total: number; - /** Number of documents successfully inserted */ - inserted: number; - /** Number of documents that failed to insert */ - failed: number; - /** Number of retries performed */ - retried: number; - /** List of documents that failed to insert (if returnFailedDocs=true) */ - failedDocuments?: FailedDocument[]; - /** Performance metrics for the operation */ - metrics: OperationMetrics; - /** The metrics collector instance for advanced metrics and cost estimation */ - metricsCollector: MetricsCollector; -} - -/** - * Performance metrics for the operation - */ -export interface OperationMetrics { - /** Total RU consumption */ - totalRu: number; - /** Average RU per document */ - avgRuPerDoc: number; - /** Maximum RU per operation */ - maxRu: number; - /** Average latency in ms per document */ - avgLatencyMs: number; - /** Maximum latency in ms for any single operation */ - maxLatencyMs: number; - /** Error count by status code */ - errorCounts: Record; - /** Total duration of the operation in ms */ - totalDurationMs: number; -} - -/** - * Log levels for the logger - */ -export enum LogLevel { - DEBUG = 'DEBUG', - INFO = 'INFO', - WARN = 'WARN', - ERROR = 'ERROR' -} - -// ------------------------------------------- -// Helper Classes -// ------------------------------------------- - -/** - * Circuit breaker implementation to prevent cascading failures - */ -export class CircuitBreaker { - private state: 'CLOSED' | 'OPEN' | 'HALF_OPEN' = 'CLOSED'; - private failureCount = 0; - private lastFailureTime = 0; - private readonly options: CircuitBreakerOptions; - private readonly failures: boolean[] = []; - - constructor(options: CircuitBreakerOptions) { - this.options = options; - // Initialize failures array with falses (no failures) - this.failures = Array(options.rollingWindowSize).fill(false); - } - - /** - * Record a successful operation - */ - public recordSuccess(): void { - // Add success (false) to the rolling window - this.failures.shift(); - this.failures.push(false); - - // If we're in HALF_OPEN and get a success, close the circuit - if (this.state === 'HALF_OPEN') { - this.state = 'CLOSED'; - this.failureCount = 0; - } - } - - /** - * Record a failed operation - */ - public recordFailure(): void { - this.lastFailureTime = Date.now(); - - // Add failure (true) to the rolling window - this.failures.shift(); - this.failures.push(true); - - // Count failures in the current window - this.failureCount = this.failures.filter(f => f).length; - - // Check if we need to open the circuit - if (this.state === 'CLOSED' && this.failureCount >= this.options.failureThreshold) { - this.state = 'OPEN'; - } - } - - /** - * Check if the circuit is open (preventing operations) - */ - public isOpen(): boolean { - // If we're open but the reset timeout has passed, try half-open - if (this.state === 'OPEN' && - (Date.now() - this.lastFailureTime) > this.options.resetTimeout) { - this.state = 'HALF_OPEN'; - } - - return this.state === 'OPEN'; - } - - /** - * Get current failure count - */ - public getFailureCount(): number { - return this.failureCount; - } - - /** - * Get current circuit state - */ - public getState(): string { - return this.state; - } - - /** - * Reset the circuit breaker to closed state - */ - public reset(): void { - this.state = 'CLOSED'; - this.failureCount = 0; - this.failures.fill(false); - } - - /** - * Get the reset timeout in ms - */ - public get resetTimeout(): number { - return this.options.resetTimeout; - } -} - -/** - * Metrics collector for tracking performance - */ -export class MetricsCollector { - private ruValues: number[] = []; - private latencyValues: number[] = []; - private errorMap: Map = new Map(); - private startTime: number; - - constructor() { - this.startTime = Date.now(); - } - - /** - * Record the RU charge for an operation - */ - public recordRUs(requestCharge: number): void { - this.ruValues.push(requestCharge); - } - - /** - * Record the latency for an operation - */ - public recordLatency(latencyMs: number): void { - this.latencyValues.push(latencyMs); - } - - /** - * Record an error by its code - */ - public recordError(errorCode: number | string): void { - const code = errorCode.toString(); - this.errorMap.set(code, (this.errorMap.get(code) || 0) + 1); - } - - /** - * Get the current RU consumption rate - */ - public getCurrentRuConsumption(): number { - if (this.ruValues.length === 0) return 0; - - // Look at the last 10 operations or fewer if we have less - const recentValues = this.ruValues.slice(-10); - return recentValues.reduce((sum, val) => sum + val, 0) / recentValues.length; - } - - /** - * Get a summary of all metrics - */ - public getSummary(): OperationMetrics { - const totalRu = this.ruValues.reduce((sum, val) => sum + val, 0); - const avgRuPerDoc = this.ruValues.length > 0 ? totalRu / this.ruValues.length : 0; - const maxRu = this.ruValues.length > 0 ? Math.max(...this.ruValues) : 0; - - const totalLatency = this.latencyValues.reduce((sum, val) => sum + val, 0); - const avgLatencyMs = this.latencyValues.length > 0 ? totalLatency / this.latencyValues.length : 0; - const maxLatencyMs = this.latencyValues.length > 0 ? Math.max(...this.latencyValues) : 0; - - const errorCounts: Record = {}; - this.errorMap.forEach((count, code) => { - errorCounts[code] = count; - }); - - return { - totalRu, - avgRuPerDoc, - maxRu, - avgLatencyMs, - maxLatencyMs, - errorCounts, - totalDurationMs: Date.now() - this.startTime - }; - } - - /** - * Estimate cost for serverless operations based on RU consumption - * @returns Cost estimate details - */ - public estimateServerlessCost(options: { - serverlessPricePerMillionRUs?: number; - regionCount?: number; - } = {}) { - const { - serverlessPricePerMillionRUs = 0.008, - regionCount = 1 - } = options; - - const totalRUs = this.ruValues.reduce((sum, val) => sum + val, 0); - - return calculateRUCost({ - totalRUs, - isServerless: true, - serverlessPricePerMillionRUs, - regionCount - }); - } - - /** - * Estimate monthly cost based on current RU consumption pattern - * @returns Monthly cost projection - */ - public estimateMonthlyRUCost(options: { - isServerless?: boolean; - provisionedRUs?: number; - serverlessPricePerMillionRUs?: number; - provisionedPricePer100RUsHour?: number; - regionCount?: number; - } = {}) { - const totalRUs = this.ruValues.reduce((sum, val) => sum + val, 0); - const durationMs = Date.now() - this.startTime; - - return estimateMonthlyRUCost({ - currentTotalRUs: totalRUs, - durationMs, - ...options - }); - } -} - -/** - * Simple logger with correlation ID support - */ -export class Logger { - private readonly correlationId: string; - - constructor(correlationId?: string) { - this.correlationId = correlationId || uuidv4(); - } - - /** - * Log a debug message - */ - public debug(message: string, data?: any): void { - this.log(LogLevel.DEBUG, message, data); - } - - /** - * Log an info message - */ - public info(message: string, data?: any): void { - this.log(LogLevel.INFO, message, data); - } - - /** - * Log a warning message - */ - public warn(message: string, data?: any): void { - this.log(LogLevel.WARN, message, data); - } - - /** - * Log an error message - */ - public error(message: string, data?: any): void { - this.log(LogLevel.ERROR, message, data); - } - - /** - * Log a message with the given level - */ - private log(level: LogLevel, message: string, data?: any): void { - const timestamp = new Date().toISOString(); - const logData = { - timestamp, - level, - correlationId: this.correlationId, - message, - ...(data ? { data } : {}) - }; - - // In production, you might want to use a proper logging library - // or send logs to a centralized service - console.log(JSON.stringify(logData)); - } - - /** - * Get the correlation ID - */ - public getCorrelationId(): string { - return this.correlationId; - } -} - -// ------------------------------------------- -// Helper Functions -// ------------------------------------------- - -/** - * Create a logger instance - */ -function createLogger(correlationId?: string): Logger { - return new Logger(correlationId); -} - -/** - * Create a metrics collector - */ -function createMetricsCollector(): MetricsCollector { - return new MetricsCollector(); -} - -/** - * Parse a Cosmos DB error into a structured format - */ -function parseCosmosError(error: any): ErrorDetails { - // Default values - let code = 'UNKNOWN'; - let message = 'Unknown error'; - let retryable = false; - - try { - if (error.code) { - code = error.code; - } else if (error.statusCode) { - code = error.statusCode; - } else if (error.status) { - code = error.status; - } - - // Convert code to string for consistency - code = code.toString(); - - // Extract message - message = error.message || error.body?.message || 'Unknown error'; - - // Determine if the error is retryable - retryable = isRetryableError(code); - } catch (e) { - // Fallback for unparseable errors - message = 'Error parsing exception: ' + String(e); - } - - return { - code, - message, - retryable, - raw: error - }; -} - -/** - * Check if an error is retryable based on its code - */ -function isRetryableError(errorCode: number | string): boolean { - const code = errorCode.toString(); - - // Common retryable status codes - const retryableCodes = [ - '408', // Request Timeout - '429', // Too Many Requests - '500', // Internal Server Error - '503', // Service Unavailable - '1000', // Cross partition query error (sometimes temporary) - 'ServiceUnavailable', - 'TooManyRequests', - 'RequestTimeout' - ]; - - return retryableCodes.includes(code); -} - -/** - * Create a promise that resolves after the specified delay - */ -async function delay(ms: number): Promise { - return new Promise(resolve => setTimeout(resolve, ms)); -} - -/** - * Adaptive delay based on RU consumption to avoid throttling - */ -async function adaptiveDelay(currentRuConsumption: number, targetUtilization: number): Promise { - // This is a simplified version - in a real implementation, - // you'd want to consider your total provisioned RU/s and adjust accordingly - - // If we're consuming too many RUs, add some delay - if (currentRuConsumption > 0) { - // This formula is simplistic - a real implementation would be more sophisticated - const adjustmentFactor = Math.max(0, (currentRuConsumption - targetUtilization * 100) / 100); - const delayMs = Math.min(1000, Math.max(0, adjustmentFactor * 500)); - - if (delayMs > 0) { - await delay(delayMs); - } - } -} - -/** - * Generate a unique operation ID for idempotency - */ -function generateOperationId(doc: JsonData, idField: string = DEFAULT_INSERT_CONFIG.idField): string { - // Use document ID if available, otherwise generate a new UUID - const baseId = doc[idField] || uuidv4(); - return `op-${baseId}-${Date.now()}`; -} - -/** - * Basic document validation - */ -function validateDocument(doc: JsonData, idField: string = DEFAULT_INSERT_CONFIG.idField, schema?: Record): boolean { - // Check if document is valid JSON - if (!doc || typeof doc !== 'object') { - return false; - } - - // Check if document has an ID using the specified field - if (!doc[idField]) { - return false; - } - - // Check document size (Cosmos DB limit is 2MB) - const docSize = Buffer.from(JSON.stringify(doc)).length; - if (docSize > 2 * 1024 * 1024) { - return false; - } - - // If schema is provided, validate against it - if (schema) { - // This is a simplified schema validation - // In production, use a proper schema validation library - for (const [key, type] of Object.entries(schema)) { - if (typeof doc[key] !== type) { - return false; - } - } - } - - return true; -} - -// ------------------------------------------- -// Main Function -// ------------------------------------------- - -/** - * Insert data into Cosmos DB with enterprise-grade resilience - */ -export async function resilientInsert( - container: Container, - data: JsonData[], - configOptions: Partial = {} -): Promise { - // Merge provided config with defaults - const config: InsertConfig = { - ...DEFAULT_INSERT_CONFIG, - ...configOptions, - circuitBreakerOptions: { - ...DEFAULT_INSERT_CONFIG.circuitBreakerOptions, - ...(configOptions.circuitBreakerOptions || {}) - } - }; - - const logger = createLogger(config.correlationId); - const metrics = createMetricsCollector(); - const circuitBreaker = new CircuitBreaker(config.circuitBreakerOptions); - - logger.info('Starting resilient insert operation', { - documentCount: data.length, - batchSize: config.batchSize - }); - - let inserted = 0, failed = 0, retried = 0; - const failedDocs: FailedDocument[] = []; - const totalBatches = Math.ceil(data.length / config.batchSize); - - // Process in batches to manage memory and allow progress tracking - for (let i = 0; i < totalBatches; i++) { - // Check circuit breaker before proceeding - if (circuitBreaker.isOpen()) { - logger.warn('Circuit breaker open, pausing operations', { - failureCount: circuitBreaker.getFailureCount(), - state: circuitBreaker.getState() - }); - - await delay(circuitBreaker.resetTimeout); - - if (circuitBreaker.isOpen()) { - logger.error('Service degraded, circuit breaker still open after wait', { - failureCount: circuitBreaker.getFailureCount(), - state: circuitBreaker.getState() - }); - - throw new Error('Service degraded, circuit breaker still open after wait period'); - } - } - - const start = i * config.batchSize; - const end = Math.min(start + config.batchSize, data.length); - const batch = data.slice(start, end); - - logger.info(`Processing batch ${i + 1}/${totalBatches}`, { - batchSize: batch.length, - totalProcessed: start - }); - - // Validate documents before attempting insertion - const validBatch = batch.filter(doc => validateDocument(doc, config.idField, config.schema)); - - // Process valid documents with retry logic - for (const doc of validBatch) { - const startTime = Date.now(); - let attempts = 0; - let success = false; - let lastError: ErrorDetails | null = null; - - while (attempts < config.maxRetries && !success) { - try { - if (attempts > 0) { - // Exponential backoff with jitter for retries - const backoffTime = Math.min( - config.maxBackoff, - config.baseBackoff * Math.pow(2, attempts) * (0.5 + Math.random() * 0.5) - ); - - logger.debug(`Retry backoff for ${backoffTime}ms`, { - docId: doc[config.idField], - attempt: attempts + 1 - }); - - await delay(backoffTime); - retried++; - } - - attempts++; - - // Add idempotency token if configured - if (config.idempotencyEnabled && !doc._operationId) { - doc._operationId = generateOperationId(doc, config.idField); - } - - // Perform the actual document creation - const response = await container.items.create(doc); - - // Record metrics - metrics.recordRUs(response.requestCharge); - metrics.recordLatency(Date.now() - startTime); - - // Record success - circuitBreaker.recordSuccess(); - inserted++; - success = true; - - logger.debug('Document inserted successfully', { - docId: doc[config.idField], - requestCharge: response.requestCharge - }); - } catch (error) { - // Parse and record the error - lastError = parseCosmosError(error); - metrics.recordError(lastError.code); - circuitBreaker.recordFailure(); - - logger.warn(`Document insertion failed`, { - docId: doc[config.idField], - hotelId: doc.HotelId, // Added this line to specifically show HotelId - errorCode: lastError.code, - attempt: attempts, - retryable: lastError.retryable - }); - - // If not retryable or max retries reached, mark as failed - if (!lastError.retryable || attempts >= config.maxRetries) { - break; - } - } - } - - // If all attempts failed, record the failure - if (!success) { - failed++; - - failedDocs.push({ - document: doc, - error: lastError || { - code: 'MAX_RETRIES_EXCEEDED', - message: 'Document insertion failed after maximum retries', - retryable: false - }, - attempts - }); - - logger.error('Document insertion permanently failed', { - docId: doc[config.idField], - hotelId: doc.HotelId, // Added this line to specifically show HotelId - attempts, - errorCode: lastError?.code || 'UNKNOWN' - }); - } - } - - // Add adaptive delay between batches to avoid throttling - if (i < totalBatches - 1) { - await adaptiveDelay(metrics.getCurrentRuConsumption(), config.targetRuUtilization); - } - } - - // Prepare the final result - const result: InsertResult = { - total: data.length, - inserted, - failed, - retried, - metrics: metrics.getSummary(), - metricsCollector: metrics - }; - - // Only include failed documents if requested - if (config.returnFailedDocs && failedDocs.length > 0) { - result.failedDocuments = failedDocs; - } - - logger.info('Resilient insert operation completed', { - inserted, - failed, - retried, - totalRUs: result.metrics.totalRu, - durationMs: result.metrics.totalDurationMs - }); - - return result; -} - -/** - * Ensure database and container exist - */ -async function ensureDatabaseAndContainer( - client: any, - databaseName: string, - containerName: string, - partitionKeyPath: string -): Promise<{ database: any, container: any }> { - try { - console.log(`Ensuring database ${databaseName} exists...`); - const { database } = await client.databases.createIfNotExists({ id: databaseName }); - console.log(`Database ${databaseName} ensured.`); - - console.log(`Ensuring container ${containerName} exists with partition key ${partitionKeyPath}...`); - const { container } = await database.containers.createIfNotExists({ - id: containerName, - partitionKey: { paths: [partitionKeyPath] } - }); - console.log(`Container ${containerName} ensured.`); - - return { database, container }; - } catch (error: any) { - console.error(`\nERROR: Cannot access database or container. Please ensure they exist.`); - console.error(`Error details: ${error.message}\n`); - console.error(`IMPORTANT: You need to create the database and container manually before running this script:\n`); - console.error(`1. Database name: ${databaseName}`); - console.error(`2. Container name: ${containerName} `); - console.error(`3. Partition key: ${partitionKeyPath}\n`); - console.error(`You can create these resources through:`); - console.error(`- Azure Portal: https://portal.azure.com`); - console.error(`- Azure CLI: `); - console.error(` az cosmosdb sql database create --account-name --name ${databaseName} --resource-group `); - console.error(` az cosmosdb sql container create --account-name --database-name ${databaseName} --name ${containerName} --partition-key-path ${partitionKeyPath} --resource-group \n`); - console.error(`The account you're using doesn't have permission to create these resources programmatically.`); - - throw error; - } -} - -async function main() { - - // Create Cosmos client - const { dbClient: client } = getClientsPasswordless(); - - if (!client) { - throw new Error('Cosmos DB client is not configured properly. Please check your environment variables.'); - } - - // Database and container names - const databaseName = 'Hotels'; - const containerName = 'hotels-at-scale-2'; - const config = { - ...DEFAULT_INSERT_CONFIG, - batchSize: 50, - maxRetries: 3 - }; - - console.log(`Using database ${databaseName} and container ${containerName}...`); - console.log(`Using ID field: ${config.idField} and partition key path: ${config.partitionKeyPath}`); - - try { - // Ensure database and container exist - const { container } = await ensureDatabaseAndContainer( - client, - databaseName, - containerName, - config.partitionKeyPath - ); - - // Load data - const dataPath = process.env.DATA_FILE_WITH_VECTORS || '../../data/HotelsData_toCosmosDB_Vector.json'; - console.log(`Reading JSON file from ${dataPath}`); - const data = await readFileReturnJson(dataPath); - - // Insert with resilience - const result = await resilientInsert(container, data, config); - - // Show basic results - console.log(`\n-------- OPERATION RESULTS --------`); - console.log(`Inserted ${result.inserted} of ${result.total} documents`); - console.log(`Total RUs consumed: ${result.metrics.totalRu.toLocaleString()}`); - console.log(`Average RU per document: ${result.metrics.avgRuPerDoc.toFixed(2)}`); - - // Show immediate cost estimate - const serverlessCost = result.metricsCollector.estimateServerlessCost(); - console.log(`\n-------- CURRENT OPERATION COST --------`); - console.log(`COST OF THIS OPERATION: $${serverlessCost.estimatedCost.toFixed(6)}`); - console.log(`This is calculated as: ${result.metrics.totalRu.toLocaleString()} RUs Ć· 1,000,000 Ɨ $0.008 per million RUs`); - - // Show monthly projection with clear explanation - const monthlyEstimate = result.metricsCollector.estimateMonthlyRUCost({ - isServerless: true // Change to false if using provisioned throughput - }); - - console.log(`\n-------- PROJECTED MONTHLY COST --------`); - console.log(`ESTIMATED MONTHLY COST: $${monthlyEstimate.monthlyCost.toFixed(2)}`); - console.log(`This estimate is based on your current consumption rate of ${monthlyEstimate.details.currentRate.ruPerSecond} RU/s`); - console.log(`which would result in approximately ${(monthlyEstimate.projectedMonthlyRUs / 1_000_000).toFixed(2)} million RUs per month.`); - console.log(`The calculation extrapolates your current usage pattern over a 30-day period.`); - } catch (err: any) { - // The detailed error message is already handled in ensureDatabaseAndContainer - throw err; - } -} - -main().catch(console.error); - +/** + * Enterprise-grade resilient document insertion for Azure Cosmos DB + * + * For comprehensive documentation, see: ./docs/INSERT_AT_SCALE_GUIDE.md + * + * Key Features: Robust retry logic, RU scaling guidance, vector document support, + * performance monitoring, and Azure best practices implementation. + */ +import { JsonData, readFileReturnJson, getClientsPasswordless } from './utils.js'; +import { resilientInsert, ensureDatabaseAndContainer } from './cosmos-operations.js'; +import { DEFAULT_INSERT_CONFIG } from './interfaces.js'; + +/** + * Main execution function demonstrating Azure Cosmos DB bulk insert best practices + * See INSERT_AT_SCALE_GUIDE.md for comprehensive documentation + */ +async function main() { + + // Create Cosmos client as singleton per account and application + const { dbClient: client } = getClientsPasswordless(); + + if (!client) { + throw new Error('Cosmos DB client is not configured properly. Please check your environment variables.'); + } + + // Database and container names + const databaseName = 'Hotels'; + const containerName = 'hotels-at-scale-2'; + const config = { + ...DEFAULT_INSERT_CONFIG, + batchSize: 50, + maxRetries: 3, + maxConcurrency: -1 // Let client/SDK maximize parallelism + }; + + console.log(`Using database ${databaseName}, container ${containerName}`); + console.log(`Configuration: ${config.maxConcurrency} concurrency, ${config.batchSize} batch size`); + + try { + // Ensure database and container exist + const { container } = await ensureDatabaseAndContainer( + client, + databaseName, + containerName, + config.partitionKeyPath + ); + + // Load and insert data + const dataPath = process.env.DATA_FILE_WITH_VECTORS || '../../data/HotelsData_toCosmosDB_Vector.json'; + console.log(`Loading data from ${dataPath}...`); + const data = await readFileReturnJson(dataPath); + + console.log(`Starting insert of ${data.length} documents...`); + const result = await resilientInsert(container, data, config); + + // Show operation results + console.log(`\nāœ… Operation Complete:`); + console.log(` Inserted: ${result.inserted}/${result.total} documents`); + console.log(` Failed: ${result.failed}, Retries: ${result.retried}`); + console.log(` RU consumed: ${result.metrics.totalRu.toLocaleString()}`); + console.log(` Duration: ${(result.metrics.totalDurationMs / 1000).toFixed(1)}s`); + + // Show errors if any occurred + if (Object.keys(result.metrics.errorCounts).length > 0) { + console.log(`\nāš ļø Errors encountered:`); + for (const [errorCode, count] of Object.entries(result.metrics.errorCounts)) { + console.log(` ${errorCode}: ${count} occurrences`); + } + if (result.metrics.errorCounts['429']) { + console.log(` šŸ“– See INSERT_AT_SCALE_GUIDE.md for throttling solutions`); + } + } + + console.log(`\nšŸ“– For detailed guidance, see INSERT_AT_SCALE_GUIDE.md`); + } catch (err: any) { + throw err; // Error details handled in ensureDatabaseAndContainer + } +} + +main().catch(console.error); \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/interfaces.ts b/nosql-vector-search-typescript/src/interfaces.ts new file mode 100644 index 0000000..a051cbd --- /dev/null +++ b/nosql-vector-search-typescript/src/interfaces.ts @@ -0,0 +1,149 @@ +/** + * Type definitions for Azure Cosmos DB bulk insert operations + * This file contains all interfaces and type definitions used across the insert-at-scale implementation + */ + +import type { MetricsCollector } from './metrics.js'; + +// Common type aliases +export type JsonData = Record; + +/** + * Configuration options for resilient insert operations + * See INSERT_AT_SCALE_GUIDE.md for detailed configuration guidance + */ +export interface InsertConfig { + /** Maximum batch size for document insertion */ + batchSize: number; + /** Unique ID for correlating logs across the operation */ + correlationId?: string; + /** Target RU utilization rate (0.0-1.0) to avoid throttling */ + targetRuUtilization: number; + /** Maximum parallel operations to run simultaneously. Set to -1 to let the client/SDK maximize parallelism automatically. */ + maxConcurrency: number; + /** Whether to enable idempotency tokens on documents */ + idempotencyEnabled: boolean; + /** Whether to return failed documents in results */ + returnFailedDocs: boolean; + /** Retry resiliency configuration for handling errors not covered by Azure SDK */ + circuitBreakerOptions: CircuitBreakerOptions; + /** Optional document schema for validation */ + schema?: Record; + /** Name of the field to use as document ID */ + idField: string; + /** Path to the partition key field, e.g., '/HotelId' - choose high cardinality fields for optimal distribution */ + partitionKeyPath: string; + /** Timeout for bulk insert operations in milliseconds */ + bulkInsertTimeoutMs: number; +} + +/** + * Retry resiliency configuration options + * Used for handling failures not covered by Azure Cosmos DB SDK's built-in retry logic + */ +export interface CircuitBreakerOptions { + /** Number of failures before opening the circuit to prevent cascading failures */ + failureThreshold: number; + /** Time in ms to wait before attempting to reset the circuit */ + resetTimeout: number; + /** Size of the rolling window for failure tracking */ + rollingWindowSize: number; +} + +/** + * Information about a failed document insertion + */ +export interface FailedDocument { + /** The document that failed to insert */ + document: JsonData; + /** Error details */ + error: ErrorDetails; + /** Number of attempts made before failing */ + attempts: number; +} + +/** + * Structured error information with Azure Cosmos DB specific details + */ +export interface ErrorDetails { + /** Error code (e.g., 429, 503) */ + code: number | string; + /** Human-readable error message */ + message: string; + /** Whether this error is retryable */ + retryable: boolean; + /** Retry-after time in milliseconds from x-ms-retry-after-ms header (for 429 errors) */ + retryAfterMs?: number; + /** The raw error object */ + raw?: any; +} + +/** + * Result of an insert operation + */ +export interface InsertResult { + /** Total number of documents processed */ + total: number; + /** Number of documents successfully inserted */ + inserted: number; + /** Number of documents that failed to insert */ + failed: number; + /** Number of retries performed */ + retried: number; + /** List of documents that failed to insert (if returnFailedDocs=true) */ + failedDocuments?: FailedDocument[]; + /** Performance metrics for the operation */ + metrics: OperationMetrics; + /** The metrics collector instance for advanced performance metrics */ + metricsCollector: MetricsCollector; +} + +/** + * Performance metrics for the operation + */ +export interface OperationMetrics { + /** Total RU consumption */ + totalRu: number; + /** Average RU per document */ + avgRuPerDoc: number; + /** Maximum RU per operation */ + maxRu: number; + /** Average latency in ms per document */ + avgLatencyMs: number; + /** Maximum latency in ms for any single operation */ + maxLatencyMs: number; + /** Error count by status code */ + errorCounts: Record; + /** Total duration of the operation in ms */ + totalDurationMs: number; +} + +/** + * Log levels for the logger + */ +export enum LogLevel { + DEBUG = 'DEBUG', + INFO = 'INFO', + WARN = 'WARN', + ERROR = 'ERROR' +} + +/** + * Default configuration with reasonable values for production use + * See INSERT_AT_SCALE_GUIDE.md for configuration optimization guidance + */ +export const DEFAULT_INSERT_CONFIG: InsertConfig = { + batchSize: 25, + targetRuUtilization: 0.7, + maxConcurrency: -1, // Let client/SDK maximize parallelism + idempotencyEnabled: true, + returnFailedDocs: true, + circuitBreakerOptions: { + failureThreshold: 10, + resetTimeout: 30000, + rollingWindowSize: 100 + }, + idField: 'HotelId', + partitionKeyPath: '/HotelId', + bulkInsertTimeoutMs: 60000 +}; \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/metrics.ts b/nosql-vector-search-typescript/src/metrics.ts new file mode 100644 index 0000000..8579dd9 --- /dev/null +++ b/nosql-vector-search-typescript/src/metrics.ts @@ -0,0 +1,186 @@ +/** + * Azure Cosmos DB Performance Monitoring and Metrics Collection + * + * This module provides comprehensive performance monitoring, RU consumption tracking, + * and operational metrics for Azure Cosmos DB bulk insert operations. + */ +import { v4 as uuidv4 } from 'uuid'; +import { OperationMetrics, LogLevel } from './interfaces.js'; + +/** + * Comprehensive metrics collector for Azure Cosmos DB performance tracking + */ +export class MetricsCollector { + private ruValues: number[] = []; + private latencyValues: number[] = []; + private errorMap: Map = new Map(); + private startTime: number; + + constructor() { + this.startTime = Date.now(); + } + + /** + * Record the RU charge for an operation + */ + public recordRUs(requestCharge: number): void { + this.ruValues.push(requestCharge); + } + + /** + * Record the latency for an operation + */ + public recordLatency(latencyMs: number): void { + this.latencyValues.push(latencyMs); + } + + /** + * Record an error by its code + */ + public recordError(errorCode: number | string): void { + const code = errorCode.toString(); + this.errorMap.set(code, (this.errorMap.get(code) || 0) + 1); + } + + /** + * Get the current RU consumption rate + */ + public getCurrentRuConsumption(): number { + if (this.ruValues.length === 0) return 0; + + // Look at the last 10 operations or fewer if we have less + const recentValues = this.ruValues.slice(-10); + return recentValues.reduce((sum, val) => sum + val, 0) / recentValues.length; + } + + /** + * Calculate RU consumption rate for scaling decisions + */ + public getRuConsumptionRate(): { ruPerSecond: number; ruPerMinute: number; scalingRecommendation: string } { + if (this.ruValues.length < 2) { + return { + ruPerSecond: 0, + ruPerMinute: 0, + scalingRecommendation: 'Insufficient data for scaling recommendation' + }; + } + + const durationMs = Date.now() - this.startTime; + const durationSeconds = durationMs / 1000; + const durationMinutes = durationMs / (1000 * 60); + const totalRu = this.ruValues.reduce((sum, val) => sum + val, 0); + + const ruPerSecond = durationSeconds > 0 ? totalRu / durationSeconds : 0; + const ruPerMinute = durationMinutes > 0 ? totalRu / durationMinutes : 0; + + // Provide scaling recommendations based on consumption patterns + let scalingRecommendation = ''; + if (ruPerSecond > 8000) { + scalingRecommendation = 'High RU/s consumption detected. Consider provisioning more RU/s or using Dynamic Autoscale.'; + } else if (ruPerSecond > 5000) { + scalingRecommendation = 'Moderate RU/s consumption. Monitor for 429 throttling errors.'; + } else if (ruPerSecond > 1000) { + scalingRecommendation = 'Normal RU/s consumption for bulk insert operations.'; + } else { + scalingRecommendation = 'Low RU/s consumption. Current provisioning appears sufficient.'; + } + + return { + ruPerSecond: Math.round(ruPerSecond), + ruPerMinute: Math.round(ruPerMinute), + scalingRecommendation + }; + } + + /** + * Get a summary of all metrics + */ + public getSummary(): OperationMetrics { + const totalRu = this.ruValues.reduce((sum, val) => sum + val, 0); + const avgRuPerDoc = this.ruValues.length > 0 ? totalRu / this.ruValues.length : 0; + const maxRu = this.ruValues.length > 0 ? Math.max(...this.ruValues) : 0; + + const totalLatency = this.latencyValues.reduce((sum, val) => sum + val, 0); + const avgLatencyMs = this.latencyValues.length > 0 ? totalLatency / this.latencyValues.length : 0; + const maxLatencyMs = this.latencyValues.length > 0 ? Math.max(...this.latencyValues) : 0; + + const errorCounts: Record = {}; + this.errorMap.forEach((count, code) => { + errorCounts[code] = count; + }); + + return { + totalRu, + avgRuPerDoc, + maxRu, + avgLatencyMs, + maxLatencyMs, + errorCounts, + totalDurationMs: Date.now() - this.startTime + }; + } +} + +/** + * Simple logger with correlation ID support for tracking operations + */ +export class Logger { + private readonly correlationId: string; + + constructor(correlationId?: string) { + this.correlationId = correlationId || uuidv4(); + } + + /** + * Log a debug message + */ + public debug(message: string, data?: any): void { + this.log(LogLevel.DEBUG, message, data); + } + + /** + * Log an info message + */ + public info(message: string, data?: any): void { + this.log(LogLevel.INFO, message, data); + } + + /** + * Log a warning message + */ + public warn(message: string, data?: any): void { + this.log(LogLevel.WARN, message, data); + } + + /** + * Log an error message + */ + public error(message: string, data?: any): void { + this.log(LogLevel.ERROR, message, data); + } + + /** + * Log a message with the given level + */ + private log(level: LogLevel, message: string, data?: any): void { + const timestamp = new Date().toISOString(); + const logData = { + timestamp, + level, + correlationId: this.correlationId, + message, + ...(data ? { data } : {}) + }; + + // In production, you might want to use a proper logging library + // or send logs to a centralized service + console.log(JSON.stringify(logData)); + } + + /** + * Get the correlation ID + */ + public getCorrelationId(): string { + return this.correlationId; + } +} \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/utils.ts b/nosql-vector-search-typescript/src/utils.ts index 0b18689..8f52445 100644 --- a/nosql-vector-search-typescript/src/utils.ts +++ b/nosql-vector-search-typescript/src/utils.ts @@ -1,83 +1,13 @@ import { CosmosClient } from '@azure/cosmos'; import { AzureOpenAI } from "openai"; import { promises as fs } from "fs"; -import { DefaultAzureCredential, getBearerTokenProvider } from "@azure/identity"; +import { getClients, getClientsPasswordless, insertData } from './cosmos-operations.js'; + // Define a type for JSON data export type JsonData = Record; -export function getClients(): { aiClient: AzureOpenAI | null; dbClient: CosmosClient | null } { - - let aiClient: AzureOpenAI | null = null; - let dbClient: CosmosClient | null = null; - - const apiKey = process.env.AZURE_OPENAI_EMBEDDING_KEY!; - const apiVersion = process.env.AZURE_OPENAI_EMBEDDING_API_VERSION!; - const endpoint = process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT!; - const deployment = process.env.AZURE_OPENAI_EMBEDDING_MODEL!; - - if (apiKey && apiVersion && endpoint && deployment) { - - aiClient = new AzureOpenAI({ - apiKey, - apiVersion, - endpoint, - deployment - }); - } - - // Cosmos DB connection string or endpoint/key - // You may need to use endpoint and key separately for CosmosClient - const cosmosEndpoint = process.env.COSMOS_ENDPOINT!; - const cosmosKey = process.env.COSMOS_KEY!; - - if (cosmosEndpoint && cosmosKey) { - dbClient = new CosmosClient({ endpoint: cosmosEndpoint, key: cosmosKey }); - } - - return { aiClient, dbClient }; -} - -/** - * Get Azure OpenAI and Cosmos DB clients using passwordless authentication (managed identity) - * This function uses DefaultAzureCredential for authentication instead of API keys - * - * @returns Object containing AzureOpenAI and CosmosClient instances or null if configuration is missing - */ -export function getClientsPasswordless(): { aiClient: AzureOpenAI | null; dbClient: CosmosClient | null } { - let aiClient: AzureOpenAI | null = null; - let dbClient: CosmosClient | null = null; - - // For Azure OpenAI with DefaultAzureCredential - const apiVersion = process.env.AZURE_OPENAI_EMBEDDING_API_VERSION!; - const endpoint = process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT!; - const deployment = process.env.AZURE_OPENAI_EMBEDDING_MODEL!; - - if (apiVersion && endpoint && deployment) { - const credential = new DefaultAzureCredential(); - const scope = "https://cognitiveservices.azure.com/.default"; - const azureADTokenProvider = getBearerTokenProvider(credential, scope); - aiClient = new AzureOpenAI({ - apiVersion, - endpoint, - deployment, - azureADTokenProvider - }); - } - - // For Cosmos DB with DefaultAzureCredential - const cosmosEndpoint = process.env.COSMOS_ENDPOINT!; - - if (cosmosEndpoint) { - const credential = new DefaultAzureCredential(); - - dbClient = new CosmosClient({ - endpoint: cosmosEndpoint, - aadCredentials: credential // Use DefaultAzureCredential instead of key - }); - } - - return { aiClient, dbClient }; -} +// Re-export client functions for backward compatibility +export { getClients, getClientsPasswordless, insertData }; export async function readFileReturnJson(filePath: string): Promise { console.log(`Reading JSON file from ${filePath}`); @@ -91,38 +21,6 @@ export async function writeFileJson(filePath: string, jsonData: JsonData): Promi console.log(`Wrote JSON file to ${filePath}`); } -export async function insertData(config, container, data) { - // Cosmos DB uses containers instead of collections - // Insert documents in batches - console.log(`Processing in batches of ${config.batchSize}...`); - const totalBatches = Math.ceil(data.length / config.batchSize); - - let inserted = 0; - let failed = 0; - // Cosmos DB does not support bulk insert natively in SDK, but you can use stored procedures or loop - // Here we use a simple loop for demonstration - for (let i = 0; i < totalBatches; i++) { - const start = i * config.batchSize; - const end = Math.min(start + config.batchSize, data.length); - const batch = data.slice(start, end); - for (const doc of batch) { - try { - await container.items.create(doc); - inserted++; - } catch (error) { - console.error(`Error inserting document:`, error); - failed++; - } - } - // Small pause between batches to reduce resource contention - if (i < totalBatches - 1) { - await new Promise(resolve => setTimeout(resolve, 100)); - } - } - // Index creation is handled by indexing policy in Cosmos DB, not programmatically per field - //TBD: If custom indexing policy is needed, update container indexing policy via SDK or portal - return { total: data.length, inserted, failed }; -} /** * Calculate estimated cost for Request Units (RUs) in different pricing models From e331ee0902bc6bbbfb9c99421842758ced384c12 Mon Sep 17 00:00:00 2001 From: Dina Berry Date: Thu, 2 Oct 2025 14:19:49 -0700 Subject: [PATCH 2/4] second pass at insert-at-scale --- .vscode/launch.json | 14 + nosql-insert-at-scale-typescript/.env.example | 24 + nosql-insert-at-scale-typescript/README.md | 323 +++++++++++ .../package.json | 11 +- .../scripts/remove-vector-indexes.sh | 369 +++++++++++++ .../scripts/restore-vector-indexes.sh | 437 +++++++++++++++ ...etup-cosmos-nosql-dataplane-permissions.sh | 444 +++++++++++++++ .../src/insert-at-scale.ts | 282 ++++++++++ .../src/utils/cosmos-operations.ts | 189 +++++++ .../src/utils/cosmos-resiliency.ts | 328 +++-------- .../src/utils/interfaces.ts | 37 ++ .../src/utils}/metrics.ts | 37 +- .../src/utils/resilience-interfaces.ts | 40 +- .../src/utils}/utils.ts | 7 - .../tsconfig.json | 1 + nosql-vector-search-typescript/.env.example | 33 -- .../IMPROVEMENT_PLAN.md | 131 ----- .../QUICKSTART_INSERT_AT_SCALE.md | 513 ------------------ nosql-vector-search-typescript/README.md | 86 --- .../docs/INSERT_AT_SCALE_GUIDE.md | 261 --------- .../src/create-embeddings.ts | 310 ----------- .../src/index-and-query.ts | 111 ---- .../src/insert-at-scale.ts | 80 --- 23 files changed, 2238 insertions(+), 1830 deletions(-) create mode 100644 nosql-insert-at-scale-typescript/.env.example create mode 100644 nosql-insert-at-scale-typescript/README.md rename {nosql-vector-search-typescript => nosql-insert-at-scale-typescript}/package.json (52%) create mode 100644 nosql-insert-at-scale-typescript/scripts/remove-vector-indexes.sh create mode 100644 nosql-insert-at-scale-typescript/scripts/restore-vector-indexes.sh create mode 100644 nosql-insert-at-scale-typescript/scripts/setup-cosmos-nosql-dataplane-permissions.sh create mode 100644 nosql-insert-at-scale-typescript/src/insert-at-scale.ts create mode 100644 nosql-insert-at-scale-typescript/src/utils/cosmos-operations.ts rename nosql-vector-search-typescript/src/cosmos-operations.ts => nosql-insert-at-scale-typescript/src/utils/cosmos-resiliency.ts (52%) create mode 100644 nosql-insert-at-scale-typescript/src/utils/interfaces.ts rename {nosql-vector-search-typescript/src => nosql-insert-at-scale-typescript/src/utils}/metrics.ts (85%) rename nosql-vector-search-typescript/src/interfaces.ts => nosql-insert-at-scale-typescript/src/utils/resilience-interfaces.ts (77%) rename {nosql-vector-search-typescript/src => nosql-insert-at-scale-typescript/src/utils}/utils.ts (92%) rename {nosql-vector-search-typescript => nosql-insert-at-scale-typescript}/tsconfig.json (91%) delete mode 100644 nosql-vector-search-typescript/.env.example delete mode 100644 nosql-vector-search-typescript/IMPROVEMENT_PLAN.md delete mode 100644 nosql-vector-search-typescript/QUICKSTART_INSERT_AT_SCALE.md delete mode 100644 nosql-vector-search-typescript/README.md delete mode 100644 nosql-vector-search-typescript/docs/INSERT_AT_SCALE_GUIDE.md delete mode 100644 nosql-vector-search-typescript/src/create-embeddings.ts delete mode 100644 nosql-vector-search-typescript/src/index-and-query.ts delete mode 100644 nosql-vector-search-typescript/src/insert-at-scale.ts diff --git a/.vscode/launch.json b/.vscode/launch.json index 5b41424..efb9239 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,20 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "TS:No-sql:Insert-at-scale", + "request": "launch", + "runtimeArgs": [ + "run", + "start:insert-at-scale" + ], + "runtimeExecutable": "npm", + "cwd": "${workspaceFolder}/nosql-insert-at-scale-typescript", + "skipFiles": [ + "/**" + ], + "type": "node" + } ] } \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/.env.example b/nosql-insert-at-scale-typescript/.env.example new file mode 100644 index 0000000..e43c5f9 --- /dev/null +++ b/nosql-insert-at-scale-typescript/.env.example @@ -0,0 +1,24 @@ +DEBUG=true + +# ===COSMOS_CONTAINER_NAME=hotels-insert-scale==================================== +# Data File Paths and Vector Configuration +# ======================================== +DATA_FILE_WITH_VECTORS=../../data/HotelsData_toCosmosDB_Vector.json +EMBEDDED_FIELD=text_embedding_ada_002 +EMBEDDING_DIMENSIONS=1536 +LOAD_SIZE_BATCH=100 + +# ======================================== +# Cosmos DB Connection Settings +# ======================================== +COSMOS_ENDPOINT= +COSMOS_KEY= +COSMOS_CONNECTION_STRING +COSMOS_DB_NAME=Hotels +COSMOS_CONTAINER_NAME=Insert-at-scale +COSMOS_RESOURCE_GROUP=rg-diberry + +# ======================================== +# Cosmos DB Partition Configuration +# ======================================== +PARTITION_KEY_PATH=/HotelId \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/README.md b/nosql-insert-at-scale-typescript/README.md new file mode 100644 index 0000000..b74c177 --- /dev/null +++ b/nosql-insert-at-scale-typescript/README.md @@ -0,0 +1,323 @@ +# šŸØ Azure Cosmos DB Insert at Scale Operations + +Enterprise-grade resilient bulk insertion for Azure Cosmos DB NoSQL API. + +## šŸŽÆ Overview + +This application demonstrates high-performance bulk insertion of documents into Azure Cosmos DB, featuring: + +- **šŸ”„ Resilient Operations**: Automatic retry logic with exponential backoff for rate limiting (429 errors) +- **šŸ“Š Performance Monitoring**: Real-time RU consumption and latency tracking +- ** Cost Estimation**: Built-in serverless cost calculations +- **šŸ›”ļø Enterprise Patterns**: Circuit breaker, idempotency, and comprehensive error handling + +> **Note**: For vector index management during bulk operations, use the external scripts in `./scripts/` directory. + +## šŸ“‹ Prerequisites + +- **Node.js** (v18+ with ES modules support) +- **Azure CLI** installed and authenticated +- **Azure Cosmos DB NoSQL account** (existing database and container) +- **TypeScript** knowledge recommended + +## šŸš€ Quick Start + +### 1. Clone and Install + +```bash +git clone +cd nosql-insert-at-scale-typescript +npm install +``` + +### 2. Configure Environment + +Copy the example environment file and configure your settings: + +```bash +cp .env.example .env +``` + +Edit `.env` with your Cosmos DB details: + +```bash +# ======================================== +# Cosmos DB Connection Settings (Required) +# ======================================== +COSMOS_ENDPOINT=https://your-cosmos-account.documents.azure.com:443/ +COSMOS_DB_NAME=Hotels +COSMOS_CONTAINER_NAME=hotels-insert-scale +COSMOS_RESOURCE_GROUP=your-resource-group-name + +# ======================================== +# Cosmos DB Partition Configuration +# ======================================== +PARTITION_KEY_PATH=/HotelId + +# ======================================== +# Data File Paths and Vector Configuration +# ======================================== +DATA_FILE_WITH_VECTORS=../../data/HotelsData_toCosmosDB_Vector.json +EMBEDDED_FIELD=text_embedding_ada_002 +EMBEDDING_DIMENSIONS=1536 + +# ======================================== +# Optional Performance Tuning +# ======================================== +BATCH_SIZE=50 +MAX_CONCURRENCY=-1 +DEBUG=true +``` + +### 3. Set Up Azure Permissions + +The application uses **passwordless authentication** with Azure Identity. Set up the required permissions: + +```bash +# Make the script executable (Linux/macOS/Git Bash) +chmod +x scripts/setup-cosmos-nosql-dataplane-permissions.sh + +# Run the permission setup script +./scripts/setup-cosmos-nosql-dataplane-permissions.sh +``` + +### 4. Build and Run + +```bash +# Build the TypeScript project +npm run build + +# Run the insert-at-scale operation +npm run start:insert-at-scale +``` + +## šŸ“Š Expected Output + +When running successfully, you'll see: + +``` +šŸØ Azure Cosmos DB Insert at Scale Operations +============================================== +Environment: development +Timestamp: 2025-10-02T19:52:04.504Z +āœ… Cosmos DB client initialized successfully + +šŸ“Š Step 1: Loading Data +======================= +Reading JSON file from C:\Users\...\HotelsData_toCosmosDB_Vector.json +āœ… Loaded 50 documents from ../../data/HotelsData_toCosmosDB_Vector.json +šŸ” Validating that documents contain embedding field 'text_embedding_ada_002'... +āœ… All documents contain valid embedding field 'text_embedding_ada_002' with 1536 dimensions + +šŸš€ Step 2: Enterprise-Grade Bulk Insert +====================================== +Configuration: + - Database: Hotels_2 + - Container: Insert-at-scale-1 + - Batch size: 50 + - Concurrency: SDK Optimized + - Documents to insert: 50 + +Getting database Hotels_2... +Getting container Insert-at-scale-1... +āœ… Database: Hotels_2 +āœ… Container: Insert-at-scale-1 +āœ… Partition key: /HotelId + +Starting resilient insert... +ā„¹ļø Starting resilient insert operation +šŸš€ Starting batch processing of 50 documents... +ā„¹ļø Removing indexes before bulk insert operation +ā„¹ļø Captured existing index definition before insert +āš ļø Note: Automatic index removal requires CosmosClient access. Consider manually removing indexes for better insert performance. +ā„¹ļø Processing batch 1/1 + +ā³ Rate limiting detected for document 28 - retrying in 1s (attempt 2/4) +ā³ Rate limiting detected for document 26 - retrying in 1s (attempt 2/4) +[... retry messages for rate-limited operations ...] + +āœ… Document 24 successfully inserted after 1 retry +āœ… Document 41 successfully inserted after 1 retry +[... success messages ...] + +ā„¹ļø Index restoration after insert would occur here +ā„¹ļø Note: Automatic index restoration requires CosmosClient access for container recreation +ā„¹ļø Index definition available for manual restoration +ā„¹ļø Resilient insert operation completed +šŸŽÆ Batch processing completed: 50 inserted, 0 failed, 37 retries + +āœ… Insert Operation Complete: + Inserted: 50/50 documents + Failed: 0, Retries: 37 + Total time: 13.7s + RU consumed: 16,010.16 + Avg RU/doc: 320.20 + Avg latency: 2281ms/doc + +šŸ’° Cost Estimation: + Serverless cost: $0.000128 + Serverless: 16,010.16 RUs = 0.016010 million RUs * $0.008/million = $0.000128 + +āš ļø Errors encountered: + 429: 37 occurrences + šŸ’” Tip: Consider increasing RU/s or enabling autoscale for high throughput + +šŸ“ˆ Step 3: Performance Analysis +============================== +RU Consumption Analysis: + - Total RUs: 16,010.16 + - Average RU/document: 320.20 + - Peak RU/operation: 344.95 + +Performance Metrics: + - Total duration: 13.7s + - Average latency: 2281ms/document + - Peak latency: 5321ms + - Throughput: 3.7 docs/second + +Optimization Recommendations: + āš ļø High RU consumption per document (320.20 RU/doc) + - Consider document size optimization + - Review indexing policies + āš ļø High average latency (2281ms) + - Consider increasing provisioned RU/s + - Check regional proximity + šŸ’” For detailed optimization guidance, see INSERT_AT_SCALE_GUIDE.md + +šŸŽ‰ All Operations Completed Successfully! +======================================== +āœ… 50 documents inserted with resilience +āœ… Performance metrics captured + +šŸ“š Next Steps: + - Review the performance metrics above + - Adjust batch sizes and concurrency based on your RU provisioning + - Implement the patterns in your production workloads + - Monitor RU consumption and optimize accordingly + +šŸ“– For detailed documentation, see INSERT_AT_SCALE_GUIDE.md +āœ… Cosmos DB client disposed successfully +``` + +## šŸ”§ Configuration Options + +### Environment Variables + +| Variable | Required | Default | Description | +|----------|----------|---------|-------------| +| `COSMOS_ENDPOINT` | āœ… | - | Your Cosmos DB account endpoint | +| `COSMOS_DB_NAME` | āœ… | `Hotels` | Database name | +| `COSMOS_CONTAINER_NAME` | āœ… | `hotels-insert-scale` | Container name | +| `COSMOS_RESOURCE_GROUP` | āœ… | - | Azure resource group (for RBAC setup) | +| `PARTITION_KEY_PATH` | āœ… | `/HotelId` | Partition key path | +| `DATA_FILE_WITH_VECTORS` | āœ… | `../../data/HotelsData_toCosmosDB_Vector.json` | Path to data file | +| `EMBEDDED_FIELD` | āŒ | `text_embedding_ada_002` | Embedding field name | +| `EMBEDDING_DIMENSIONS` | āŒ | `1536` | Vector dimensions | +| `BATCH_SIZE` | āŒ | `50` | Documents per batch | +| `MAX_CONCURRENCY` | āŒ | `-1` | Max concurrent operations | +| `COSMOS_KEY` | āŒ | - | Primary key (if not using passwordless) | + +### Performance Tuning + +- **Batch Size**: Start with 50, adjust based on document size and RU capacity +- **Concurrency**: Use `-1` for SDK optimization, or specify max concurrent operations +- **RU Provisioning**: Monitor 429 errors and scale RU/s accordingly + +## šŸ› ļø Available Scripts + +| Script | Command | Description | +|--------|---------|-------------| +| **Build** | `npm run build` | Compile TypeScript to JavaScript | +| **Run** | `npm run start:insert-at-scale` | Execute the bulk insert operation | + +## šŸ“ Project Structure + +``` +nosql-insert-at-scale-typescript/ +ā”œā”€ā”€ src/ +│ ā”œā”€ā”€ insert-at-scale.ts # Main application entry point +│ └── utils/ +│ ā”œā”€ā”€ cosmos-operations.ts # Database and container operations +│ ā”œā”€ā”€ cosmos-resiliency.ts # Resilient insert with retry logic +│ ā”œā”€ā”€ metrics.ts # Performance monitoring +│ ā”œā”€ā”€ resilience-interfaces.ts # Type definitions +│ └── utils.ts # Common utilities +ā”œā”€ā”€ scripts/ +│ ā”œā”€ā”€ setup-cosmos-nosql-dataplane-permissions.sh # RBAC setup script +│ └── README.md # Script documentation +ā”œā”€ā”€ docs/ # Additional documentation +ā”œā”€ā”€ .env.example # Environment template +ā”œā”€ā”€ package.json # Dependencies and scripts +└── tsconfig.json # TypeScript configuration +``` + +## šŸ” Authentication Methods + +### Option 1: Passwordless (Recommended) + +Uses Azure Identity with your logged-in Azure CLI credentials: + +1. **Login to Azure CLI**: `az login` +2. **Set RBAC permissions**: `./scripts/setup-cosmos-nosql-dataplane-permissions.sh` +3. **Configure .env**: Only add `COSMOS_ENDPOINT` required + +### Option 2: Connection String/Key + +Traditional approach with primary key: + +1. **Get primary key** from Azure Portal → Cosmos DB → Keys +2. **Add to .env**: `COSMOS_KEY=your-primary-key` + +## 🚨 Troubleshooting + +### Common Issues + +**Authentication Errors** +```bash +āŒ Cosmos DB client is not configured properly +``` +- **Solution**: Run the RBAC setup script or add `COSMOS_KEY` to `.env` + +**Rate Limiting (429 Errors)** +```bash +ā³ Rate limiting detected for document X - retrying in 1s +``` +- **Solution**: Increase RU/s provisioning or enable autoscale +- **Note**: Some 429 errors are normal and handled automatically + +**Data File Not Found** +```bash +āŒ Failed to load data from ../../data/HotelsData_toCosmosDB_Vector.json +``` +- **Solution**: Verify the data file path in `DATA_FILE_WITH_VECTORS` + +**Permission Denied** +```bash +Failed to create role assignment +``` +- **Solution**: Ensure you have `Cosmos DB Operator` role or equivalent permissions + +### Debug Mode + +Enable detailed logging: +```bash +# Add to .env +DEBUG=true +``` + +## šŸ“Š Performance Optimization + +### RU Consumption +- **High RU/doc (>300)**: Consider document size reduction or index optimization +- **429 Errors**: Increase provisioned RU/s or enable autoscale +- **Cost Control**: Monitor serverless costs with built-in estimation + +### Latency Optimization +- **High Latency (>2000ms)**: Check region proximity and RU provisioning +- **Batch Tuning**: Adjust `BATCH_SIZE` based on document size +- **Concurrency**: Fine-tune `MAX_CONCURRENCY` for your workload + +### Vector Index Management +- **External Scripts**: Use `./scripts/remove-vector-indexes.sh` before bulk insert and `./scripts/restore-vector-indexes.sh` after +- **Performance**: Removing indexes during bulk operations significantly improves insert performance +- **Workflow**: See `./scripts/README.md` for complete workflow documentation diff --git a/nosql-vector-search-typescript/package.json b/nosql-insert-at-scale-typescript/package.json similarity index 52% rename from nosql-vector-search-typescript/package.json rename to nosql-insert-at-scale-typescript/package.json index 65bc7b9..c82f48f 100644 --- a/nosql-vector-search-typescript/package.json +++ b/nosql-insert-at-scale-typescript/package.json @@ -1,23 +1,20 @@ { - "name": "ts-cosmos-nodejs-nosql-vector-samples", + "name": "cosmos-vector-insert-at-scale", "version": "1.0.0", "main": "index.js", "type": "module", "scripts": { "build": "tsc", - "start:embed": "node --env-file .env dist/create-embeddings.js", - "start:index-and-query": "node --env-file .env dist/index-and-query.js", "start:insert-at-scale": "node --env-file .env dist/insert-at-scale.js" }, "dependencies": { "@azure/cosmos": "^4.5.1", "@azure/identity": "^4.11.1", - "openai": "^5.20.1", - "uuid": "^11.1.0" + "uuid": "^13.0.0" }, "devDependencies": { - "@types/node": "^24.3.0", + "@types/node": "^24.6.0", "@types/uuid": "^10.0.0", - "typescript": "^5.9.2" + "typescript": "^5.9.3" } } diff --git a/nosql-insert-at-scale-typescript/scripts/remove-vector-indexes.sh b/nosql-insert-at-scale-typescript/scripts/remove-vector-indexes.sh new file mode 100644 index 0000000..e6afbd2 --- /dev/null +++ b/nosql-insert-at-scale-typescript/scripts/remove-vector-indexes.sh @@ -0,0 +1,369 @@ +#!/bin/bash +# chmod +x "remove-vector-indexes.sh" + +# ================================================================================================ +# Remove Vector Indexes Script +# ================================================================================================ +# This script removes vector indexes from a Cosmos DB container to optimize bulk insert performance. +# Use this before large bulk insert operations to improve throughput and reduce RU consumption. +# +# Prerequisites: +# - Azure CLI installed and logged in (az login) +# - Cosmos DB account already exists with the specified container +# - You have appropriate permissions to modify container settings +# +# Usage: +# ./scripts/remove-vector-indexes.sh +# ./scripts/remove-vector-indexes.sh --dry-run # Show commands without executing +# ./scripts/remove-vector-indexes.sh --help # Show this help +# ================================================================================================ + +set -euo pipefail # Exit on error, undefined vars, pipe failures + +# Colors for output +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +NC='\033[0m' # No Color + +# Script configuration +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +PROJECT_DIR="$(dirname "$SCRIPT_DIR")" +ENV_FILE="$PROJECT_DIR/.env" +DRY_RUN=false +BACKUP_FILE="$PROJECT_DIR/.vector-index-backup.json" + +# Function to print colored output +print_info() { + echo -e "${BLUE}ā„¹ļø $1${NC}" +} + +print_success() { + echo -e "${GREEN}āœ… $1${NC}" +} + +print_warning() { + echo -e "${YELLOW}āš ļø $1${NC}" +} + +print_error() { + echo -e "${RED}āŒ $1${NC}" +} + +print_header() { + echo -e "${BLUE}" + echo "================================================================================================" + echo "$1" + echo "================================================================================================" + echo -e "${NC}" +} + +# Function to show help +show_help() { + cat << EOF +Remove Vector Indexes Script + +This script removes vector indexes from a Cosmos DB container to optimize bulk insert performance. + +USAGE: + $0 [OPTIONS] + +OPTIONS: + --dry-run Show what would be executed without making changes + --help Show this help message + +PREREQUISITES: + - Azure CLI installed and authenticated (run 'az login' first) + - Cosmos DB account exists with the specified container + - Appropriate permissions to modify container settings + +WHAT THIS SCRIPT DOES: + 1. Reads Cosmos DB configuration from .env file + 2. Backs up current container indexing policy and vector embedding policy + 3. Creates a minimal indexing policy (automatic indexing with no vector indexes) + 4. Updates the container with the simplified policy + 5. Saves backup for restoration later + +IMPORTANT NOTES: + - This script REMOVES vector indexes which will impact vector search performance + - Always run this script before bulk inserts for better performance + - Use restore-vector-indexes.sh after bulk operations to restore search capability + - The backup file (.vector-index-backup.json) is crucial for restoration + +REQUIREMENTS: + - You must have "Cosmos DB Contributor" role or equivalent permissions + - The container must already exist + - Your .env file must contain COSMOS_ENDPOINT, COSMOS_DB_NAME, COSMOS_CONTAINER_NAME + +EOF +} + +# Parse command line arguments +while [[ $# -gt 0 ]]; do + case $1 in + --dry-run) + DRY_RUN=true + shift + ;; + --help|-h) + show_help + exit 0 + ;; + *) + print_error "Unknown option: $1" + show_help + exit 1 + ;; + esac +done + +# Function to execute or show command +execute_or_show() { + local cmd="$1" + local description="$2" + + if [ "$DRY_RUN" = true ]; then + print_info "Would execute: $cmd" + else + print_info "$description" + eval "$cmd" + fi +} + +# Function to extract account name from Cosmos DB endpoint +extract_cosmos_account_name() { + local endpoint="$1" + echo "$endpoint" | sed -n 's|https://\([^.]*\)\.documents\.azure\.com.*|\1|p' +} + +# Function to backup current container configuration +backup_container_config() { + local resource_group="$1" + local account_name="$2" + local database_name="$3" + local container_name="$4" + + print_info "Backing up current container configuration..." + + if [ "$DRY_RUN" = true ]; then + print_info "Would backup container config to: $BACKUP_FILE" + return 0 + fi + + # Get current container configuration + local container_config + if container_config=$(az cosmosdb sql container show \ + --resource-group "$resource_group" \ + --account-name "$account_name" \ + --database-name "$database_name" \ + --name "$container_name" \ + --query "{indexingPolicy: resource.indexingPolicy, vectorEmbeddingPolicy: resource.vectorEmbeddingPolicy, partitionKey: resource.partitionKey}" \ + -o json 2>&1); then + + # Save backup with timestamp + local timestamp=$(date '+%Y-%m-%d_%H-%M-%S') + local backup_data="{ + \"timestamp\": \"$timestamp\", + \"accountName\": \"$account_name\", + \"databaseName\": \"$database_name\", + \"containerName\": \"$container_name\", + \"originalConfig\": $container_config + }" + + echo "$backup_data" > "$BACKUP_FILE" + print_success "Container configuration backed up to: $BACKUP_FILE" + + # Show what we backed up + print_info "Backed up configuration includes:" + if echo "$container_config" | jq -e '.vectorEmbeddingPolicy.vectorEmbeddings[]?' > /dev/null 2>&1; then + local vector_count=$(echo "$container_config" | jq '.vectorEmbeddingPolicy.vectorEmbeddings | length') + print_info " - Vector embeddings: $vector_count configured" + echo "$container_config" | jq -r '.vectorEmbeddingPolicy.vectorEmbeddings[] | " • Path: \(.path), Dimensions: \(.dimensions), Distance: \(.distanceFunction)"' + else + print_info " - Vector embeddings: None found" + fi + + if echo "$container_config" | jq -e '.indexingPolicy.vectorIndexes[]?' > /dev/null 2>&1; then + local index_count=$(echo "$container_config" | jq '.indexingPolicy.vectorIndexes | length') + print_info " - Vector indexes: $index_count configured" + echo "$container_config" | jq -r '.indexingPolicy.vectorIndexes[] | " • Path: \(.path), Type: \(.type)"' + else + print_info " - Vector indexes: None found" + fi + + else + print_error "Failed to backup container configuration: $container_config" + exit 1 + fi +} + +# Function to create minimal indexing policy (no vector indexes) +create_minimal_indexing_policy() { + cat << 'EOF' +{ + "indexingMode": "consistent", + "automatic": true, + "includedPaths": [ + { + "path": "/*" + } + ], + "excludedPaths": [ + { + "path": "/\"_etag\"/?" + } + ] +} +EOF +} + +# Main execution +main() { + print_header "šŸ—‘ļø Remove Vector Indexes for Bulk Insert Optimization" + + if [ "$DRY_RUN" = true ]; then + print_warning "DRY RUN MODE - No changes will be made" + echo + fi + + # Check if Azure CLI is installed and logged in + print_info "Checking Azure CLI status..." + if ! command -v az &> /dev/null; then + print_error "Azure CLI is not installed. Please install it first: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli" + exit 1 + fi + + if ! az account show &> /dev/null; then + print_error "Not logged in to Azure CLI. Please run 'az login' first" + exit 1 + fi + + print_success "Azure CLI is installed and authenticated" + + # Check if .env file exists + if [ ! -f "$ENV_FILE" ]; then + print_error ".env file not found at: $ENV_FILE" + print_info "Please ensure you have a .env file with Cosmos DB configuration" + exit 1 + fi + + # Read configuration from .env file + print_info "Reading configuration from .env file..." + + # Extract required variables + if ! grep -q "COSMOS_ENDPOINT=" "$ENV_FILE"; then + print_error "COSMOS_ENDPOINT not found in .env file" + exit 1 + fi + + if ! grep -q "COSMOS_DB_NAME=" "$ENV_FILE"; then + print_error "COSMOS_DB_NAME not found in .env file" + exit 1 + fi + + if ! grep -q "COSMOS_CONTAINER_NAME=" "$ENV_FILE"; then + print_error "COSMOS_CONTAINER_NAME not found in .env file" + exit 1 + fi + + COSMOS_ENDPOINT=$(grep "COSMOS_ENDPOINT=" "$ENV_FILE" | cut -d'=' -f2- | tr -d '"' | tr -d "'") + COSMOS_DB_NAME=$(grep "COSMOS_DB_NAME=" "$ENV_FILE" | cut -d'=' -f2- | tr -d '"' | tr -d "'") + COSMOS_CONTAINER_NAME=$(grep "COSMOS_CONTAINER_NAME=" "$ENV_FILE" | cut -d'=' -f2- | tr -d '"' | tr -d "'") + + # Extract account name + COSMOS_ACCOUNT_NAME=$(extract_cosmos_account_name "$COSMOS_ENDPOINT") + + if [ -z "$COSMOS_ACCOUNT_NAME" ] || [ -z "$COSMOS_DB_NAME" ] || [ -z "$COSMOS_CONTAINER_NAME" ]; then + print_error "Missing required configuration. Please check your .env file." + exit 1 + fi + + print_success "Configuration loaded:" + print_info " - Account: $COSMOS_ACCOUNT_NAME" + print_info " - Database: $COSMOS_DB_NAME" + print_info " - Container: $COSMOS_CONTAINER_NAME" + + # Find resource group + RESOURCE_GROUP="" + if grep -q "COSMOS_RESOURCE_GROUP=" "$ENV_FILE"; then + RESOURCE_GROUP=$(grep "COSMOS_RESOURCE_GROUP=" "$ENV_FILE" | cut -d'=' -f2- | tr -d '"' | tr -d "'") + fi + + if [ -z "$RESOURCE_GROUP" ]; then + print_info "Searching for resource group..." + COSMOS_INFO=$(az cosmosdb list --query "[?name=='$COSMOS_ACCOUNT_NAME'].{name:name, resourceGroup:resourceGroup}" -o tsv 2>/dev/null) + if [ -n "$COSMOS_INFO" ]; then + RESOURCE_GROUP=$(echo "$COSMOS_INFO" | cut -f2) + else + print_error "Could not find resource group. Please add COSMOS_RESOURCE_GROUP to your .env file" + exit 1 + fi + fi + + print_success "Resource Group: $RESOURCE_GROUP" + + # Backup current configuration + backup_container_config "$RESOURCE_GROUP" "$COSMOS_ACCOUNT_NAME" "$COSMOS_DB_NAME" "$COSMOS_CONTAINER_NAME" + + # Create minimal indexing policy + print_info "Creating minimal indexing policy (removing vector indexes)..." + + local minimal_policy + minimal_policy=$(create_minimal_indexing_policy) + + if [ "$DRY_RUN" = true ]; then + print_info "Would apply minimal indexing policy:" + echo "$minimal_policy" | jq . + print_info "Would remove vector embedding policy" + else + print_info "Applying minimal indexing policy..." + + # Update container with minimal indexing policy and no vector embedding policy + if MSYS_NO_PATHCONV=1 az cosmosdb sql container update \ + --resource-group "$RESOURCE_GROUP" \ + --account-name "$COSMOS_ACCOUNT_NAME" \ + --database-name "$COSMOS_DB_NAME" \ + --name "$COSMOS_CONTAINER_NAME" \ + --idx "$minimal_policy" \ + --query "resource.indexingPolicy" -o json > /dev/null 2>&1; then + + print_success "Successfully removed vector indexes from container" + + # Wait for policy propagation + print_info "Waiting for indexing policy to propagate (10 seconds)..." + sleep 10 + + else + print_error "Failed to update container indexing policy" + print_info "The backup file is still available at: $BACKUP_FILE" + exit 1 + fi + fi + + echo + print_header "šŸŽ‰ Vector Index Removal Complete!" + + if [ "$DRY_RUN" = false ]; then + echo -e "${GREEN}Vector indexes have been removed to optimize bulk insert performance.${NC}" + echo + echo -e "${BLUE}Important notes:${NC}" + echo "• Vector search queries will now be slower until indexes are restored" + echo "• Bulk insert operations should now have improved performance" + echo "• Configuration backup saved to: $BACKUP_FILE" + echo + echo -e "${BLUE}Next steps:${NC}" + echo "1. Run your bulk insert operations (npm run start:insert-at-scale)" + echo "2. Restore vector indexes: ./scripts/restore-vector-indexes.sh" + echo + echo -e "${YELLOW}āš ļø Don't forget to restore indexes after bulk operations!${NC}" + else + echo -e "${YELLOW}This was a dry run. Use the script without --dry-run to apply changes.${NC}" + fi +} + +# Error handling +trap 'print_error "Script failed on line $LINENO"' ERR + +# Run main function +main "$@" \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/scripts/restore-vector-indexes.sh b/nosql-insert-at-scale-typescript/scripts/restore-vector-indexes.sh new file mode 100644 index 0000000..d25e9be --- /dev/null +++ b/nosql-insert-at-scale-typescript/scripts/restore-vector-indexes.sh @@ -0,0 +1,437 @@ +#!/bin/bash +# chmod +x "restore-vector-indexes.sh" + +# ================================================================================================ +# Restore Vector Indexes Script +# ================================================================================================ +# This script restores vector indexes to a Cosmos DB container after bulk insert operations. +# Use this after completing bulk inserts to restore optimal vector search performance. +# +# Prerequisites: +# - Azure CLI installed and logged in (az login) +# - Cosmos DB account already exists with the specified container +# - You have appropriate permissions to modify container settings +# - Vector index backup file exists (.vector-index-backup.json) +# +# Usage: +# ./scripts/restore-vector-indexes.sh +# ./scripts/restore-vector-indexes.sh --dry-run # Show commands without executing +# ./scripts/restore-vector-indexes.sh --help # Show this help +# ================================================================================================ + +set -euo pipefail # Exit on error, undefined vars, pipe failures + +# Colors for output +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +NC='\033[0m' # No Color + +# Script configuration +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +PROJECT_DIR="$(dirname "$SCRIPT_DIR")" +ENV_FILE="$PROJECT_DIR/.env" +BACKUP_FILE="$PROJECT_DIR/.vector-index-backup.json" +DRY_RUN=false + +# Function to print colored output +print_info() { + echo -e "${BLUE}ā„¹ļø $1${NC}" +} + +print_success() { + echo -e "${GREEN}āœ… $1${NC}" +} + +print_warning() { + echo -e "${YELLOW}āš ļø $1${NC}" +} + +print_error() { + echo -e "${RED}āŒ $1${NC}" +} + +print_header() { + echo -e "${BLUE}" + echo "================================================================================================" + echo "$1" + echo "================================================================================================" + echo -e "${NC}" +} + +# Function to show help +show_help() { + cat << EOF +Restore Vector Indexes Script + +This script restores vector indexes to a Cosmos DB container after bulk insert operations. + +USAGE: + $0 [OPTIONS] + +OPTIONS: + --dry-run Show what would be executed without making changes + --help Show this help message + +PREREQUISITES: + - Azure CLI installed and authenticated (run 'az login' first) + - Cosmos DB account exists with the specified container + - Appropriate permissions to modify container settings + - Backup file exists (.vector-index-backup.json from remove-vector-indexes.sh) + +WHAT THIS SCRIPT DOES: + 1. Reads the backup configuration from .vector-index-backup.json + 2. Validates the backup file and current container state + 3. Restores the original indexing policy with vector indexes + 4. Restores the vector embedding policy + 5. Waits for index rebuilding to complete + 6. Verifies the restoration was successful + +IMPORTANT NOTES: + - This script restores vector indexes for optimal vector search performance + - Index rebuilding may take time and consume additional RUs + - Always run this script after bulk insert operations are complete + - The container will have degraded vector search performance until rebuilding completes + +REQUIREMENTS: + - You must have "Cosmos DB Contributor" role or equivalent permissions + - The backup file (.vector-index-backup.json) must exist + - The container must match the one that was backed up + +EOF +} + +# Parse command line arguments +while [[ $# -gt 0 ]]; do + case $1 in + --dry-run) + DRY_RUN=true + shift + ;; + --help|-h) + show_help + exit 0 + ;; + *) + print_error "Unknown option: $1" + show_help + exit 1 + ;; + esac +done + +# Function to execute or show command +execute_or_show() { + local cmd="$1" + local description="$2" + + if [ "$DRY_RUN" = true ]; then + print_info "Would execute: $cmd" + else + print_info "$description" + eval "$cmd" + fi +} + +# Function to extract account name from Cosmos DB endpoint +extract_cosmos_account_name() { + local endpoint="$1" + echo "$endpoint" | sed -n 's|https://\([^.]*\)\.documents\.azure\.com.*|\1|p' +} + +# Function to validate backup file +validate_backup_file() { + if [ ! -f "$BACKUP_FILE" ]; then + print_error "Backup file not found: $BACKUP_FILE" + print_info "You need to run remove-vector-indexes.sh first to create a backup" + exit 1 + fi + + # Validate JSON structure + if ! jq empty "$BACKUP_FILE" 2>/dev/null; then + print_error "Backup file is not valid JSON: $BACKUP_FILE" + exit 1 + fi + + # Check required fields + local required_fields=("timestamp" "accountName" "databaseName" "containerName" "originalConfig") + for field in "${required_fields[@]}"; do + if ! jq -e ".$field" "$BACKUP_FILE" > /dev/null 2>&1; then + print_error "Backup file missing required field: $field" + exit 1 + fi + done + + print_success "Backup file validation passed" +} + +# Function to display backup information +show_backup_info() { + print_info "Backup file information:" + + local timestamp=$(jq -r '.timestamp' "$BACKUP_FILE") + local account_name=$(jq -r '.accountName' "$BACKUP_FILE") + local database_name=$(jq -r '.databaseName' "$BACKUP_FILE") + local container_name=$(jq -r '.containerName' "$BACKUP_FILE") + + print_info " - Backup created: $timestamp" + print_info " - Account: $account_name" + print_info " - Database: $database_name" + print_info " - Container: $container_name" + + # Show vector configuration details + if jq -e '.originalConfig.vectorEmbeddingPolicy.vectorEmbeddings[]?' "$BACKUP_FILE" > /dev/null 2>&1; then + local vector_count=$(jq '.originalConfig.vectorEmbeddingPolicy.vectorEmbeddings | length' "$BACKUP_FILE") + print_info " - Vector embeddings to restore: $vector_count" + jq -r '.originalConfig.vectorEmbeddingPolicy.vectorEmbeddings[] | " • \(.path): \(.dimensions)D \(.distanceFunction)"' "$BACKUP_FILE" + else + print_warning " - No vector embeddings found in backup" + fi + + if jq -e '.originalConfig.indexingPolicy.vectorIndexes[]?' "$BACKUP_FILE" > /dev/null 2>&1; then + local index_count=$(jq '.originalConfig.indexingPolicy.vectorIndexes | length' "$BACKUP_FILE") + print_info " - Vector indexes to restore: $index_count" + jq -r '.originalConfig.indexingPolicy.vectorIndexes[] | " • \(.path): \(.type)"' "$BACKUP_FILE" + else + print_warning " - No vector indexes found in backup" + fi +} + +# Function to restore indexing policy +restore_indexing_policy() { + local resource_group="$1" + local account_name="$2" + local database_name="$3" + local container_name="$4" + + print_info "Restoring indexing policy with vector indexes..." + + # Extract indexing policy from backup + local indexing_policy + indexing_policy=$(jq '.originalConfig.indexingPolicy' "$BACKUP_FILE") + + if [ "$DRY_RUN" = true ]; then + print_info "Would restore indexing policy:" + echo "$indexing_policy" | jq . + return 0 + fi + + # Create temporary file for indexing policy + local temp_policy_file=$(mktemp) + echo "$indexing_policy" > "$temp_policy_file" + + # Update container with restored indexing policy + if MSYS_NO_PATHCONV=1 az cosmosdb sql container update \ + --resource-group "$resource_group" \ + --account-name "$account_name" \ + --database-name "$database_name" \ + --name "$container_name" \ + --idx "@$temp_policy_file" \ + --query "resource.indexingPolicy" -o json > /dev/null 2>&1; then + + print_success "Indexing policy restored successfully" + + # Clean up temp file + rm -f "$temp_policy_file" + + else + rm -f "$temp_policy_file" + print_error "Failed to restore indexing policy" + exit 1 + fi +} + +# Function to restore vector embedding policy +restore_vector_embedding_policy() { + local resource_group="$1" + local account_name="$2" + local database_name="$3" + local container_name="$4" + + # Check if vector embedding policy exists in backup + if ! jq -e '.originalConfig.vectorEmbeddingPolicy' "$BACKUP_FILE" > /dev/null 2>&1; then + print_warning "No vector embedding policy found in backup - skipping" + return 0 + fi + + print_info "Restoring vector embedding policy..." + + # Extract vector embedding policy from backup + local vector_policy + vector_policy=$(jq '.originalConfig.vectorEmbeddingPolicy' "$BACKUP_FILE") + + if [ "$DRY_RUN" = true ]; then + print_info "Would restore vector embedding policy:" + echo "$vector_policy" | jq . + return 0 + fi + + # Create temporary file for vector policy + local temp_vector_file=$(mktemp) + echo "$vector_policy" > "$temp_vector_file" + + # Update container with restored vector embedding policy + if MSYS_NO_PATHCONV=1 az cosmosdb sql container update \ + --resource-group "$resource_group" \ + --account-name "$account_name" \ + --database-name "$database_name" \ + --name "$container_name" \ + --vector-policy "@$temp_vector_file" \ + --query "resource.vectorEmbeddingPolicy" -o json > /dev/null 2>&1; then + + print_success "Vector embedding policy restored successfully" + + # Clean up temp file + rm -f "$temp_vector_file" + + else + rm -f "$temp_vector_file" + print_error "Failed to restore vector embedding policy" + print_warning "Indexing policy was restored, but vector embedding policy failed" + exit 1 + fi +} + +# Function to wait for index rebuilding +wait_for_index_rebuild() { + if [ "$DRY_RUN" = true ]; then + print_info "Would wait for index rebuilding to complete" + return 0 + fi + + print_info "Index restoration initiated. Vector indexes are now rebuilding..." + print_warning "Note: Index rebuilding happens asynchronously and may take time" + print_info "Vector search performance will gradually improve as rebuilding progresses" + + # Wait a bit for the changes to take effect + print_info "Waiting for initial propagation (15 seconds)..." + sleep 15 + + print_success "Index restoration process started successfully" +} + +# Main execution +main() { + print_header "šŸ”„ Restore Vector Indexes for Optimal Search Performance" + + if [ "$DRY_RUN" = true ]; then + print_warning "DRY RUN MODE - No changes will be made" + echo + fi + + # Check if Azure CLI is installed and logged in + print_info "Checking Azure CLI status..." + if ! command -v az &> /dev/null; then + print_error "Azure CLI is not installed. Please install it first: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli" + exit 1 + fi + + if ! az account show &> /dev/null; then + print_error "Not logged in to Azure CLI. Please run 'az login' first" + exit 1 + fi + + print_success "Azure CLI is installed and authenticated" + + # Validate backup file + validate_backup_file + + # Show backup information + show_backup_info + + # Extract configuration from backup + COSMOS_ACCOUNT_NAME=$(jq -r '.accountName' "$BACKUP_FILE") + COSMOS_DB_NAME=$(jq -r '.databaseName' "$BACKUP_FILE") + COSMOS_CONTAINER_NAME=$(jq -r '.containerName' "$BACKUP_FILE") + + # Find resource group (try backup first, then .env, then search) + RESOURCE_GROUP="" + + # Try to get from .env file + if [ -f "$ENV_FILE" ] && grep -q "COSMOS_RESOURCE_GROUP=" "$ENV_FILE"; then + RESOURCE_GROUP=$(grep "COSMOS_RESOURCE_GROUP=" "$ENV_FILE" | cut -d'=' -f2- | tr -d '"' | tr -d "'") + fi + + if [ -z "$RESOURCE_GROUP" ]; then + print_info "Searching for resource group..." + COSMOS_INFO=$(az cosmosdb list --query "[?name=='$COSMOS_ACCOUNT_NAME'].{name:name, resourceGroup:resourceGroup}" -o tsv 2>/dev/null) + if [ -n "$COSMOS_INFO" ]; then + RESOURCE_GROUP=$(echo "$COSMOS_INFO" | cut -f2) + else + print_error "Could not find resource group for account: $COSMOS_ACCOUNT_NAME" + print_info "Please add COSMOS_RESOURCE_GROUP to your .env file or ensure the account exists" + exit 1 + fi + fi + + print_success "Configuration loaded:" + print_info " - Account: $COSMOS_ACCOUNT_NAME" + print_info " - Database: $COSMOS_DB_NAME" + print_info " - Container: $COSMOS_CONTAINER_NAME" + print_info " - Resource Group: $RESOURCE_GROUP" + + # Verify container exists + print_info "Verifying container exists..." + if ! az cosmosdb sql container show \ + --resource-group "$RESOURCE_GROUP" \ + --account-name "$COSMOS_ACCOUNT_NAME" \ + --database-name "$COSMOS_DB_NAME" \ + --name "$COSMOS_CONTAINER_NAME" > /dev/null 2>&1; then + + print_error "Container not found: $COSMOS_CONTAINER_NAME" + print_info "Please ensure the container exists before restoring indexes" + exit 1 + fi + + print_success "Container verified: $COSMOS_CONTAINER_NAME" + + # Restore indexing policy + restore_indexing_policy "$RESOURCE_GROUP" "$COSMOS_ACCOUNT_NAME" "$COSMOS_DB_NAME" "$COSMOS_CONTAINER_NAME" + + # Restore vector embedding policy + restore_vector_embedding_policy "$RESOURCE_GROUP" "$COSMOS_ACCOUNT_NAME" "$COSMOS_DB_NAME" "$COSMOS_CONTAINER_NAME" + + # Wait for index rebuilding + wait_for_index_rebuild + + echo + print_header "šŸŽ‰ Vector Index Restoration Complete!" + + if [ "$DRY_RUN" = false ]; then + echo -e "${GREEN}Vector indexes have been restored for optimal search performance.${NC}" + echo + echo -e "${BLUE}What happened:${NC}" + echo "• Indexing policy restored with vector indexes" + echo "• Vector embedding policy restored" + echo "• Index rebuilding initiated (runs asynchronously)" + echo + echo -e "${BLUE}Important notes:${NC}" + echo "• Vector search performance will improve as indexes rebuild" + echo "• Index rebuilding may take time and consume additional RUs" + echo "• You can monitor progress in Azure Portal → Cosmos DB → Metrics" + echo + echo -e "${BLUE}Next steps:${NC}" + echo "1. Monitor index rebuilding progress in Azure Portal" + echo "2. Test vector search queries to verify performance" + echo "3. Consider running performance tests to validate optimization" + echo + echo -e "${GREEN}Your container is now optimized for vector search operations! šŸš€${NC}" + + # Clean up backup file after successful restoration + if [ -f "$BACKUP_FILE" ]; then + print_info "Cleaning up backup file..." + rm -f "$BACKUP_FILE" + print_success "Backup file cleaned up" + fi + + else + echo -e "${YELLOW}This was a dry run. Use the script without --dry-run to apply changes.${NC}" + fi +} + +# Error handling +trap 'print_error "Script failed on line $LINENO"' ERR + +# Run main function +main "$@" \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/scripts/setup-cosmos-nosql-dataplane-permissions.sh b/nosql-insert-at-scale-typescript/scripts/setup-cosmos-nosql-dataplane-permissions.sh new file mode 100644 index 0000000..9d69241 --- /dev/null +++ b/nosql-insert-at-scale-typescript/scripts/setup-cosmos-nosql-dataplane-permissions.sh @@ -0,0 +1,444 @@ +#!/bin/bash +# chmod +x "setup-cosmos-permissions.sh" + + +# ================================================================================================ +# Cosmos DB Permissions Setup Script +# ================================================================================================ +# This script sets up the necessary Azure RBAC permissions for passwordless authentication +# to your Cosmos DB account for the insert-at-scale package. +# +# Prerequisites: +# - Azure CLI installed and logged in (az login) +# - Cosmos DB account already exists +# - You have appropriate permissions to assign roles +# +# Usage: +# ./scripts/setup-cosmos-permissions.sh +# ./scripts/setup-cosmos-permissions.sh --dry-run # Show commands without executing +# ./scripts/setup-cosmos-permissions.sh --help # Show this help +# ================================================================================================ + +set -euo pipefail # Exit on error, undefined vars, pipe failures + +# Colors for output +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +NC='\033[0m' # No Color + +# Script configuration +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +PROJECT_DIR="$(dirname "$SCRIPT_DIR")" +ENV_FILE="$PROJECT_DIR/.env" +DRY_RUN=false + +# Function to print colored output +print_info() { + echo -e "${BLUE}ā„¹ļø $1${NC}" +} + +print_success() { + echo -e "${GREEN}āœ… $1${NC}" +} + +print_warning() { + echo -e "${YELLOW}āš ļø $1${NC}" +} + +print_error() { + echo -e "${RED}āŒ $1${NC}" +} + +print_header() { + echo -e "${BLUE}" + echo "================================================================================================" + echo "$1" + echo "================================================================================================" + echo -e "${NC}" +} + +# Function to show help +show_help() { + cat << EOF +Cosmos DB Permissions Setup Script + +This script configures Azure RBAC permissions for passwordless authentication to Cosmos DB. + +USAGE: + $0 [OPTIONS] + +OPTIONS: + --dry-run Show what would be executed without making changes + --help Show this help message + +PREREQUISITES: + - Azure CLI installed and authenticated (run 'az login' first) + - Cosmos DB account exists + - Appropriate permissions to assign RBAC roles + +WHAT THIS SCRIPT DOES: + 1. Reads Cosmos DB configuration from .env file + 2. Gets your current user identity + 3. Extracts Cosmos DB account details from endpoint URL + 4. Finds the built-in "Cosmos DB Built-in Data Contributor" role definition + 5. Creates a Cosmos DB-specific role assignment (data plane access) + 6. Verifies the permission assignment + +NOTE: This script uses Cosmos DB's native RBAC system, not Azure's general RBAC. +The "Cosmos DB Built-in Data Contributor" role provides data plane access to read +and write data in Cosmos DB containers. + +REQUIREMENTS: + - You must have "Cosmos DB Operator" role or equivalent control plane access + - The Cosmos DB account must already exist + - Your .env file must contain COSMOS_ENDPOINT (and optionally COSMOS_RESOURCE_GROUP) + +EOF +} + +# Parse command line arguments +while [[ $# -gt 0 ]]; do + case $1 in + --dry-run) + DRY_RUN=true + shift + ;; + --help|-h) + show_help + exit 0 + ;; + *) + print_error "Unknown option: $1" + show_help + exit 1 + ;; + esac +done + +# Function to execute or show command +execute_or_show() { + local cmd="$1" + local description="$2" + + if [ "$DRY_RUN" = true ]; then + print_info "Would execute: $cmd" + else + print_info "$description" + eval "$cmd" + fi +} + +# Function to extract account name from Cosmos DB endpoint +extract_cosmos_account_name() { + local endpoint="$1" + # Extract account name from https://account-name.documents.azure.com format + echo "$endpoint" | sed -n 's|https://\([^.]*\)\.documents\.azure\.com.*|\1|p' +} + +# Main execution +main() { + print_header "šŸš€ Azure Cosmos DB Permissions Setup" + + if [ "$DRY_RUN" = true ]; then + print_warning "DRY RUN MODE - No changes will be made" + echo + fi + + # Check if Azure CLI is installed and logged in + print_info "Checking Azure CLI status..." + if ! command -v az &> /dev/null; then + print_error "Azure CLI is not installed. Please install it first: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli" + exit 1 + fi + + # Check if logged in + if ! az account show &> /dev/null; then + print_error "Not logged in to Azure CLI. Please run 'az login' first" + exit 1 + fi + + print_success "Azure CLI is installed and authenticated" + + # Check if .env file exists + if [ ! -f "$ENV_FILE" ]; then + print_error ".env file not found at: $ENV_FILE" + print_info "Please ensure you have a .env file with COSMOS_ENDPOINT configured" + exit 1 + fi + + # Read Cosmos DB endpoint from .env file + print_info "Reading configuration from .env file..." + + if ! grep -q "COSMOS_ENDPOINT=" "$ENV_FILE"; then + print_error "COSMOS_ENDPOINT not found in .env file" + exit 1 + fi + + COSMOS_ENDPOINT=$(grep "COSMOS_ENDPOINT=" "$ENV_FILE" | cut -d'=' -f2- | tr -d '"' | tr -d "'") + + if [ -z "$COSMOS_ENDPOINT" ]; then + print_error "COSMOS_ENDPOINT is empty in .env file" + exit 1 + fi + + print_success "Found Cosmos DB endpoint: $COSMOS_ENDPOINT" + + # Extract account name from endpoint + COSMOS_ACCOUNT_NAME=$(extract_cosmos_account_name "$COSMOS_ENDPOINT") + + if [ -z "$COSMOS_ACCOUNT_NAME" ]; then + print_error "Could not extract Cosmos DB account name from endpoint: $COSMOS_ENDPOINT" + exit 1 + fi + + print_success "Extracted Cosmos DB account name: $COSMOS_ACCOUNT_NAME" + + # Get current user information + print_info "Getting current user information..." + USER_ID=$(az ad signed-in-user show --query id -o tsv) + USER_EMAIL=$(az ad signed-in-user show --query mail -o tsv) + SUBSCRIPTION_ID=$(az account show --query id -o tsv) + SUBSCRIPTION_NAME=$(az account show --query name -o tsv) + + print_success "Current user: $USER_EMAIL (ID: $USER_ID)" + print_success "Current subscription: $SUBSCRIPTION_NAME (ID: $SUBSCRIPTION_ID)" + + # Find the Cosmos DB account and resource group + print_info "Locating Cosmos DB account..." + + # Method 1: Check if resource group is specified in .env file + RESOURCE_GROUP="" + if grep -q "COSMOS_RESOURCE_GROUP=" "$ENV_FILE"; then + RESOURCE_GROUP=$(grep "COSMOS_RESOURCE_GROUP=" "$ENV_FILE" | cut -d'=' -f2- | tr -d '"' | tr -d "'") + if [ -n "$RESOURCE_GROUP" ]; then + print_success "Using resource group from .env file: $RESOURCE_GROUP" + + # Verify the account exists in this resource group + if az cosmosdb show --name "$COSMOS_ACCOUNT_NAME" --resource-group "$RESOURCE_GROUP" &> /dev/null; then + print_success "Verified Cosmos DB account exists in resource group: $RESOURCE_GROUP" + else + print_error "Cosmos DB account '$COSMOS_ACCOUNT_NAME' not found in resource group '$RESOURCE_GROUP'" + exit 1 + fi + fi + fi + + # Method 2: Try to find the account by listing all Cosmos DB accounts + if [ -z "$RESOURCE_GROUP" ]; then + print_info "Searching for Cosmos DB account in current subscription..." + + COSMOS_INFO=$(az cosmosdb list --query "[?name=='$COSMOS_ACCOUNT_NAME'].{name:name, resourceGroup:resourceGroup}" -o tsv 2>/dev/null) + + if [ -n "$COSMOS_INFO" ]; then + RESOURCE_GROUP=$(echo "$COSMOS_INFO" | cut -f2) + print_success "Found Cosmos DB account in resource group: $RESOURCE_GROUP" + else + print_warning "Could not find Cosmos DB account '$COSMOS_ACCOUNT_NAME' by listing accounts" + print_info "This might be due to permissions or the account being in a different subscription" + fi + fi + + # Method 3: Try to find using resource graph query (if available) + if [ -z "$RESOURCE_GROUP" ] && command -v az graph &> /dev/null; then + print_info "Trying Azure Resource Graph query..." + + GRAPH_RESULT=$(az graph query -q "Resources | where type == 'microsoft.documentdb/databaseaccounts' and name == '$COSMOS_ACCOUNT_NAME' | project name, resourceGroup" --query "data[0].resourceGroup" -o tsv 2>/dev/null) + + if [ -n "$GRAPH_RESULT" ] && [ "$GRAPH_RESULT" != "null" ]; then + RESOURCE_GROUP="$GRAPH_RESULT" + print_success "Found resource group using Resource Graph: $RESOURCE_GROUP" + fi + fi + + # If still not found, prompt user or show available options + if [ -z "$RESOURCE_GROUP" ]; then + print_error "Could not automatically determine the resource group for Cosmos DB account '$COSMOS_ACCOUNT_NAME'" + echo + print_info "Available options:" + echo "1. Add COSMOS_RESOURCE_GROUP= to your .env file" + echo "2. Check available Cosmos DB accounts in your subscription:" + + print_info "Listing all Cosmos DB accounts in current subscription:" + az cosmosdb list --query "[].{name:name, resourceGroup:resourceGroup, location:location}" -o table 2>/dev/null || { + print_warning "Could not list Cosmos DB accounts. You may not have sufficient permissions." + echo + print_info "You can find your resource group in the Azure Portal:" + echo "https://portal.azure.com -> Cosmos DB -> $COSMOS_ACCOUNT_NAME -> Overview" + } + + echo + print_info "Once you know the resource group, add it to your .env file:" + echo "COSMOS_RESOURCE_GROUP=your-actual-resource-group-name" + + exit 1 + fi + + # Construct the resource identifiers for reference + print_info "Cosmos DB Account: $COSMOS_ACCOUNT_NAME in Resource Group: $RESOURCE_GROUP" + + # Get the built-in Cosmos DB Data Contributor role definition ID + print_info "Getting 'Cosmos DB Built-in Data Contributor' role definition..." + + ROLE_DEFINITION_ID="" + if ROLE_DEF_OUTPUT=$(az cosmosdb sql role definition list \ + --resource-group "$RESOURCE_GROUP" \ + --account-name "$COSMOS_ACCOUNT_NAME" \ + --query "[?roleName=='Cosmos DB Built-in Data Contributor'].id" \ + -o tsv 2>&1); then + + ROLE_DEFINITION_ID="$ROLE_DEF_OUTPUT" + if [ -n "$ROLE_DEFINITION_ID" ]; then + print_success "Found built-in role definition: $ROLE_DEFINITION_ID" + + # Extract just the GUID portion for the assignment (Git Bash path conversion issue workaround) + ROLE_GUID=$(echo "$ROLE_DEFINITION_ID" | grep -o '[0-9a-f\-]*$' | tail -1) + if [ -n "$ROLE_GUID" ]; then + print_info "Using role GUID for assignment: $ROLE_GUID" + else + print_error "Could not extract GUID from role definition ID" + exit 1 + fi + else + print_error "Could not find 'Cosmos DB Built-in Data Contributor' role definition" + print_info "This role should exist by default. Checking available roles..." + + if az cosmosdb sql role definition list \ + --resource-group "$RESOURCE_GROUP" \ + --account-name "$COSMOS_ACCOUNT_NAME" \ + --query "[].{RoleName:roleName, Type:typePropertiesType}" \ + -o table 2>/dev/null; then + echo + fi + exit 1 + fi + else + print_error "Failed to list Cosmos DB role definitions. Error: $ROLE_DEF_OUTPUT" + print_info "This could indicate:" + echo " - The Cosmos DB account doesn't exist or is inaccessible" + echo " - You don't have sufficient permissions" + echo " - The account name or resource group is incorrect" + exit 1 + fi + + # Check existing role assignments using Cosmos DB specific commands + print_info "Checking for existing role assignments..." + + EXISTING_ASSIGNMENT="" + if ASSIGNMENT_CHECK=$(az cosmosdb sql role assignment list \ + --resource-group "$RESOURCE_GROUP" \ + --account-name "$COSMOS_ACCOUNT_NAME" \ + --query "[?principalId=='$USER_ID' && (roleDefinitionId=='$ROLE_DEFINITION_ID' || roleDefinitionId=='$ROLE_GUID')].id" \ + -o tsv 2>&1); then + + EXISTING_ASSIGNMENT="$ASSIGNMENT_CHECK" + if [ -n "$EXISTING_ASSIGNMENT" ]; then + print_success "āœ… Role assignment already exists: $EXISTING_ASSIGNMENT" + print_info "No action needed - permissions are already configured correctly" + else + print_info "No existing role assignment found - will create one" + fi + else + print_warning "Could not check existing role assignments. Error: $ASSIGNMENT_CHECK" + print_info "Will attempt to create the assignment anyway..." + fi + + if [ -z "$EXISTING_ASSIGNMENT" ]; then + # Create the role assignment using Cosmos DB specific command + print_info "Creating Cosmos DB role assignment..." + + # Generate a unique GUID for the role assignment + ASSIGNMENT_ID=$(uuidgen 2>/dev/null || python3 -c "import uuid; print(str(uuid.uuid4()))" 2>/dev/null || date +%s | md5sum | cut -c1-32) + + if [ "$DRY_RUN" = true ]; then + print_info "Would execute: az cosmosdb sql role assignment create" + print_info " --resource-group $RESOURCE_GROUP" + print_info " --account-name $COSMOS_ACCOUNT_NAME" + print_info " --role-definition-id $ROLE_GUID" + print_info " --principal-id $USER_ID" + print_info " --scope /" + else + # Use MSYS_NO_PATHCONV to prevent Git Bash from converting Unix paths on Windows + if ASSIGNMENT_OUTPUT=$(MSYS_NO_PATHCONV=1 az cosmosdb sql role assignment create \ + --resource-group "$RESOURCE_GROUP" \ + --account-name "$COSMOS_ACCOUNT_NAME" \ + --role-definition-id "$ROLE_GUID" \ + --principal-id "$USER_ID" \ + --scope "/" 2>&1); then + + print_success "āœ… Successfully created Cosmos DB role assignment" + + # Wait for propagation + print_info "Waiting for role assignment to propagate (5 seconds)..." + sleep 5 + + else + print_error "Failed to create role assignment. Error details:" + echo "$ASSIGNMENT_OUTPUT" + echo + print_info "Common causes and solutions:" + echo "1. Insufficient permissions - You need 'Cosmos DB Operator' role or equivalent" + echo "2. Role assignment already exists with different ID" + echo "3. Account configuration issue" + echo + print_info "You can assign the role manually through Azure Portal:" + echo "1. Go to https://portal.azure.com" + echo "2. Navigate to your Cosmos DB account: $COSMOS_ACCOUNT_NAME" + echo "3. Go to Data Explorer -> Access Control (IAM)" + echo "4. Add role assignment -> Cosmos DB Built-in Data Contributor" + echo "5. Assign to: $USER_EMAIL" + echo "" + print_info "Alternatively, you can try this command from PowerShell or Command Prompt:" + echo "az cosmosdb sql role assignment create --resource-group $RESOURCE_GROUP --account-name $COSMOS_ACCOUNT_NAME --role-definition-id $ROLE_GUID --principal-id $USER_ID --scope /" + echo + print_info "To check your current permissions on this Cosmos DB account:" + echo "az cosmosdb show --name $COSMOS_ACCOUNT_NAME --resource-group $RESOURCE_GROUP" + exit 1 + fi + fi + fi + + # Final verification using Cosmos DB commands + if [ "$DRY_RUN" = false ]; then + print_info "Verifying final role assignments..." + + if FINAL_ASSIGNMENTS=$(az cosmosdb sql role assignment list \ + --resource-group "$RESOURCE_GROUP" \ + --account-name "$COSMOS_ACCOUNT_NAME" \ + --query "[?principalId=='$USER_ID'].{RoleDefinitionId:roleDefinitionId, Scope:scope, Id:id}" \ + -o table 2>&1); then + + echo "$FINAL_ASSIGNMENTS" + print_success "āœ… Role assignment verification completed" + else + print_warning "Could not verify final assignments: $FINAL_ASSIGNMENTS" + fi + fi + + echo + print_header "šŸŽ‰ Setup Complete!" + + if [ "$DRY_RUN" = false ]; then + echo -e "${GREEN}Your Azure identity now has Cosmos DB data plane access permissions.${NC}" + echo + echo -e "${BLUE}Next steps:${NC}" + echo "1. Run: npm run build" + echo "2. Run: npm run start:insert-at-scale" + echo + echo -e "${BLUE}Configuration summary:${NC}" + echo "• Cosmos DB Account: $COSMOS_ACCOUNT_NAME" + echo "• Resource Group: $RESOURCE_GROUP" + echo "• User: $USER_EMAIL" + echo "• Role: Cosmos DB Built-in Data Contributor (Data Plane Access)" + echo "• Scope: Account-wide access to all databases and containers" + else + echo -e "${YELLOW}This was a dry run. Use the script without --dry-run to apply changes.${NC}" + fi +} + +# Error handling +trap 'print_error "Script failed on line $LINENO"' ERR + +# Run main function +main "$@" \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/src/insert-at-scale.ts b/nosql-insert-at-scale-typescript/src/insert-at-scale.ts new file mode 100644 index 0000000..a7e7766 --- /dev/null +++ b/nosql-insert-at-scale-typescript/src/insert-at-scale.ts @@ -0,0 +1,282 @@ +/** + * Azure Cosmos DB Insert at Scale Operations + * + * This example demonstrates: + * 1. Enterprise-grade resilient bulk insertion + * 2. Performance monitoring and optimization + * 3. Error handling and retry patterns + * + * Key Features: Robust retry logic, RU scaling guidance, document insert operations, + * performance monitoring, and Azure best practices implementation. + * + * For detailed documentation, see: ./docs/INSERT_AT_SCALE_GUIDE.md + */ +import path from 'path'; +import { fileURLToPath } from "node:url"; +import { dirname } from "node:path"; + +// Utils imports +import { JsonData, readFileReturnJson, getClientsPasswordless, calculateRUCost } from './utils/utils.js'; +import { + ensureDatabaseAndContainer +} from './utils/cosmos-operations.js'; +import { resilientInsert } from './utils/cosmos-resiliency.js'; +import { DEFAULT_INSERT_CONFIG, InsertConfig, InsertResult } from './utils/resilience-interfaces.js'; + +// ESM support +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +// Configuration +const config = { + // Database settings + databaseName: process.env.COSMOS_DB_NAME || 'Hotels', + containerName: process.env.COSMOS_CONTAINER_NAME || 'hotels-insert-scale', + partitionKeyPath: process.env.PARTITION_KEY_PATH || '/HotelId', + + // Data files + dataFile: process.env.DATA_FILE_WITH_VECTORS || '../../data/HotelsData_toCosmosDB_Vector.json', + + // Vector settings (for documents that already have embeddings) + embeddingField: process.env.EMBEDDED_FIELD || 'text_embedding_ada_002', + embeddingDimensions: parseInt(process.env.EMBEDDING_DIMENSIONS || '1536', 10), + + // Insert settings + batchSize: parseInt(process.env.BATCH_SIZE || '50', 10), + maxConcurrency: parseInt(process.env.MAX_CONCURRENCY || '-1', 10) +}; + +// ------------------------------------------- +// Data Loading Functions +// ------------------------------------------- + +/** + * Load JSON data from file + */ +async function loadData(): Promise { + console.log('\nšŸ“Š Step 1: Loading Data'); + console.log('======================='); + + const dataPath = path.join(__dirname, config.dataFile); + + try { + const data = await readFileReturnJson(dataPath); + console.log(`āœ… Loaded ${data.length} documents from ${config.dataFile}`); + + // Validate that documents contain the expected embedding field + console.log(`šŸ” Validating that documents contain embedding field '${config.embeddingField}'...`); + const missingEmbeddings = data.filter(doc => + !doc[config.embeddingField] || + !Array.isArray(doc[config.embeddingField]) || + doc[config.embeddingField].length === 0 + ); + + if (missingEmbeddings.length > 0) { + throw new Error( + `āŒ ${missingEmbeddings.length} out of ${data.length} documents are missing or have invalid embedding field '${config.embeddingField}'. ` + + `Expected an array of numbers with ${config.embeddingDimensions} dimensions.` + ); + } + + // Validate embedding dimensions + const firstEmbedding = data[0][config.embeddingField]; + if (firstEmbedding.length !== config.embeddingDimensions) { + console.warn(`āš ļø Warning: Expected ${config.embeddingDimensions} dimensions but found ${firstEmbedding.length} in first document`); + } + + console.log(`āœ… All documents contain valid embedding field '${config.embeddingField}' with ${firstEmbedding.length} dimensions`); + return data; + } catch (error) { + console.error(`āŒ Failed to load data from ${config.dataFile}:`, error); + throw error; + } +} + +// ------------------------------------------- +// Main Execution Functions +// ------------------------------------------- + +/** + * Step 2: Perform resilient bulk insert + */ +async function performResilientInsert(client: any, data: JsonData[]): Promise { + console.log('\nšŸš€ Step 2: Enterprise-Grade Bulk Insert'); + console.log('======================================'); + + // Configuration for resilient insert + const insertConfig: InsertConfig = { + ...DEFAULT_INSERT_CONFIG, + batchSize: config.batchSize, + maxConcurrency: config.maxConcurrency, + partitionKeyPath: config.partitionKeyPath + }; + + console.log(`Configuration:`); + console.log(` - Database: ${config.databaseName}`); + console.log(` - Container: ${config.containerName}`); + console.log(` - Batch size: ${insertConfig.batchSize}`); + console.log(` - Concurrency: ${insertConfig.maxConcurrency === -1 ? 'SDK Optimized' : insertConfig.maxConcurrency}`); + console.log(` - Documents to insert: ${data.length}`); + + // Ensure database and container exist + await ensureDatabaseAndContainer( + client, + config.databaseName, + config.containerName, + config.partitionKeyPath + ); + + // Perform resilient insert + console.log(`\nStarting resilient insert...`); + const startTime = Date.now(); + + const container = client.database(config.databaseName).container(config.containerName); + const result = await resilientInsert( + container, + data, + insertConfig + ); + + const totalTime = Date.now() - startTime; + + // Display comprehensive results + console.log(`\nāœ… Insert Operation Complete:`); + console.log(` Inserted: ${result.inserted}/${result.total} documents`); + console.log(` Failed: ${result.failed}, Retries: ${result.retried}`); + console.log(` Total time: ${(totalTime / 1000).toFixed(1)}s`); + console.log(` RU consumed: ${result.metrics.totalRu.toLocaleString()}`); + console.log(` Avg RU/doc: ${result.metrics.avgRuPerDoc.toFixed(2)}`); + console.log(` Avg latency: ${result.metrics.avgLatencyMs.toFixed(0)}ms/doc`); + + // Show cost estimation + const costEstimate = calculateRUCost({ + totalRUs: result.metrics.totalRu, + isServerless: true // Assume serverless for this demo + }); + + console.log(`\nšŸ’° Cost Estimation:`); + console.log(` Serverless cost: $${costEstimate.estimatedCost.toFixed(6)}`); + console.log(` ${costEstimate.description}`); + + // Show errors if any occurred + if (Object.keys(result.metrics.errorCounts).length > 0) { + console.log(`\nāš ļø Errors encountered:`); + for (const [errorCode, count] of Object.entries(result.metrics.errorCounts)) { + console.log(` ${errorCode}: ${count} occurrences`); + } + if (result.metrics.errorCounts['429']) { + console.log(` šŸ’” Tip: Consider increasing RU/s or enabling autoscale for high throughput`); + } + } + + return result; +} + +/** + * Step 3: Performance analysis and recommendations + */ +async function showPerformanceAnalysis(insertResult: InsertResult): Promise { + console.log('\nšŸ“ˆ Step 3: Performance Analysis'); + console.log('=============================='); + + const { metrics } = insertResult; + + // RU consumption analysis + console.log(`RU Consumption Analysis:`); + console.log(` - Total RUs: ${metrics.totalRu.toLocaleString()}`); + console.log(` - Average RU/document: ${metrics.avgRuPerDoc.toFixed(2)}`); + console.log(` - Peak RU/operation: ${metrics.maxRu.toFixed(2)}`); + + // Performance analysis + console.log(`\nPerformance Metrics:`); + console.log(` - Total duration: ${(metrics.totalDurationMs / 1000).toFixed(1)}s`); + console.log(` - Average latency: ${metrics.avgLatencyMs.toFixed(0)}ms/document`); + console.log(` - Peak latency: ${metrics.maxLatencyMs.toFixed(0)}ms`); + console.log(` - Throughput: ${(insertResult.total / (metrics.totalDurationMs / 1000)).toFixed(1)} docs/second`); + + // Recommendations + console.log(`\nOptimization Recommendations:`); + + if (metrics.avgRuPerDoc > 10) { + console.log(` āš ļø High RU consumption per document (${metrics.avgRuPerDoc.toFixed(2)} RU/doc)`); + console.log(` - Consider document size optimization`); + console.log(` - Review indexing policies`); + } + + if (metrics.avgLatencyMs > 1000) { + console.log(` āš ļø High average latency (${metrics.avgLatencyMs.toFixed(0)}ms)`); + console.log(` - Consider increasing provisioned RU/s`); + console.log(` - Check regional proximity`); + } + + if (Object.keys(metrics.errorCounts).length === 0) { + console.log(` āœ… No errors encountered - excellent reliability!`); + } + + console.log(` šŸ’” For detailed optimization guidance, see INSERT_AT_SCALE_GUIDE.md`); +} + +/** + * Main execution function - orchestrates the complete workflow + */ +async function main() { + console.log('šŸØ Azure Cosmos DB Insert at Scale Operations'); + console.log('=============================================='); + console.log(`Environment: ${process.env.NODE_ENV || 'development'}`); + console.log(`Timestamp: ${new Date().toISOString()}`); + + try { + // Initialize Cosmos DB client only + const { dbClient } = getClientsPasswordless(); + + if (!dbClient) { + throw new Error('āŒ Cosmos DB client is not configured properly. Please check your Cosmos DB environment variables.'); + } + + console.log('āœ… Cosmos DB client initialized successfully'); + + // Step 1: Load data + const data = await loadData(); + + // Step 2: Perform resilient bulk insert + const insertResult = await performResilientInsert(dbClient, data); + + // Step 3: Show performance analysis + await showPerformanceAnalysis(insertResult); + + console.log('\nšŸŽ‰ All Operations Completed Successfully!'); + console.log('========================================'); + console.log(`āœ… ${data.length} documents inserted with resilience`); + console.log(`āœ… Performance metrics captured`); + + console.log(`\nšŸ“š Next Steps:`); + console.log(` - Review the performance metrics above`); + console.log(` - Adjust batch sizes and concurrency based on your RU provisioning`); + console.log(` - Implement the patterns in your production workloads`); + console.log(` - Monitor RU consumption and optimize accordingly`); + + console.log(`\nšŸ“– For detailed documentation, see INSERT_AT_SCALE_GUIDE.md`); + + // Properly dispose of Cosmos client to allow clean process termination + if (dbClient) { + await dbClient.dispose(); + console.log('āœ… Cosmos DB client disposed successfully'); + } + + } catch (error) { + console.error("āŒ Fatal error in insert operations:", error); + process.exit(1); + } +} + +// Export individual functions for modular use +export { + loadData, + performResilientInsert, + showPerformanceAnalysis +}; + +// Run main function if this file is executed directly +//if (import.meta.url === `file://${process.argv[1]}`) { + main().catch(console.error); +//} \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/src/utils/cosmos-operations.ts b/nosql-insert-at-scale-typescript/src/utils/cosmos-operations.ts new file mode 100644 index 0000000..2e158d5 --- /dev/null +++ b/nosql-insert-at-scale-typescript/src/utils/cosmos-operations.ts @@ -0,0 +1,189 @@ +/** + * Azure Cosmos DB Low-Level Operations Module + * + * This module contains core Cosmos DB NoSQL operations including: + * - Client creation and authentication + * - Document validation and preparation + * - Database and container management + * - Basic CRUD operations + */ +import { Container, CosmosClient } from '@azure/cosmos'; +import { DefaultAzureCredential, getBearerTokenProvider } from "@azure/identity"; +import { v4 as uuidv4 } from 'uuid'; +import { JsonData } from './interfaces.js'; + +// ------------------------------------------- +// Client Creation Functions +// ------------------------------------------- + +export function getClients(): { dbClient: CosmosClient | null } { + let dbClient: CosmosClient | null = null; + + // Cosmos DB connection string or endpoint/key + // You may need to use endpoint and key separately for CosmosClient + const cosmosEndpoint = process.env.COSMOS_ENDPOINT!; + const cosmosKey = process.env.COSMOS_KEY!; + + if (cosmosEndpoint && cosmosKey) { + dbClient = new CosmosClient({ endpoint: cosmosEndpoint, key: cosmosKey }); + } + + return { dbClient }; +} + +/** + * Get Cosmos DB client using passwordless authentication (managed identity) + * This function uses DefaultAzureCredential for authentication instead of API keys + * + * @returns Object containing CosmosClient instance or null if configuration is missing + */ +export function getClientsPasswordless(): { dbClient: CosmosClient | null } { + let dbClient: CosmosClient | null = null; + + // For Cosmos DB with DefaultAzureCredential + const cosmosEndpoint = process.env.COSMOS_ENDPOINT!; + + if (cosmosEndpoint) { + const credential = new DefaultAzureCredential(); + + dbClient = new CosmosClient({ + endpoint: cosmosEndpoint, + aadCredentials: credential + }); + } + + return { dbClient }; +} + +// ------------------------------------------- +// Document Operations +// ------------------------------------------- + +/** + * Generate a unique operation ID for a document + */ +export function generateOperationId(doc: JsonData, idField: string = 'id'): string { + const baseId = doc[idField] || uuidv4(); + return `${baseId}-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`; +} + +/** + * Validate a document before insertion + */ +export function validateDocument(doc: JsonData, idField: string = 'id', schema?: Record): boolean { + // Basic validation - document must be an object + if (!doc || typeof doc !== 'object' || Array.isArray(doc)) { + return false; + } + + // Ensure document has an ID field or can generate one + if (!doc[idField]) { + // Allow documents without explicit ID as we can generate one + doc[idField] = uuidv4(); + } + + // Optional schema validation + if (schema) { + // Basic schema validation - could be enhanced with more sophisticated validation + for (const [key, expectedType] of Object.entries(schema)) { + if (doc[key] && typeof doc[key] !== expectedType) { + return false; + } + } + } + + return true; +} + +// ------------------------------------------- +// Utility Functions +// ------------------------------------------- + +// ------------------------------------------- +// Core Insert Operations +// ------------------------------------------- + +/** + * Simple batch insert function for basic Cosmos DB operations + * This is a basic implementation without resilience features + */ +export async function insertData(config: any, container: Container, data: JsonData[]): Promise<{ total: number; inserted: number; failed: number }> { + // Cosmos DB uses containers instead of collections + // Insert documents in batches + console.log(`Processing in batches of ${config.batchSize}...`); + const totalBatches = Math.ceil(data.length / config.batchSize); + + let inserted = 0; + let failed = 0; + // Cosmos DB does not support bulk insert natively in SDK, but you can use stored procedures or loop + // Here we use a simple loop for demonstration + for (let i = 0; i < totalBatches; i++) { + const start = i * config.batchSize; + const end = Math.min(start + config.batchSize, data.length); + const batch = data.slice(start, end); + for (const doc of batch) { + try { + await container.items.create(doc); + inserted++; + } catch (error) { + console.error(`Error inserting document:`, error); + failed++; + } + } + // Small pause between batches to reduce resource contention + if (i < totalBatches - 1) { + await new Promise(resolve => setTimeout(resolve, 100)); + } + } + // Index creation is handled by indexing policy in Cosmos DB, not programmatically per field + //TBD: If custom indexing policy is needed, update container indexing policy via SDK or portal + return { total: data.length, inserted, failed }; +} + +/** + * Get Azure Cosmos DB database and container (assumes they already exist) + */ +export async function ensureDatabaseAndContainer( + client: any, + databaseName: string, + containerName: string, + partitionKeyPath: string +): Promise<{ database: any, container: any }> { + try { + console.log(`Getting database ${databaseName}...`); + const database = client.database(databaseName); + + console.log(`Getting container ${containerName}...`); + const container = database.container(containerName); + + // Verify the container exists by reading its properties + const { resource: containerDef } = await container.read(); + + console.log(`āœ… Database: ${databaseName}`); + console.log(`āœ… Container: ${containerName}`); + console.log(`āœ… Partition key: ${containerDef.partitionKey.paths[0]}`); + + // Warn if partition key doesn't match expected + if (containerDef.partitionKey.paths[0] !== partitionKeyPath) { + console.warn(`āš ļø Warning: Container partition key is ${containerDef.partitionKey.paths[0]} but expected ${partitionKeyPath}`); + } + + return { database, container }; + } catch (error: any) { + console.error(`\nāŒ ERROR: Cannot access database or container.`); + console.error(`Error details: ${error.message}\n`); + console.error(`REQUIRED: Database and container must exist before running this script:\n`); + console.error(`1. Database name: ${databaseName}`); + console.error(`2. Container name: ${containerName} `); + console.error(`3. Partition key: ${partitionKeyPath}\n`); + console.error(`Create these resources through:`); + console.error(`- Azure Portal: https://portal.azure.com`); + console.error(`- Azure CLI: `); + console.error(` az cosmosdb sql database create --account-name --name ${databaseName} --resource-group `); + console.error(` az cosmosdb sql container create --account-name --database-name ${databaseName} --name ${containerName} --partition-key-path ${partitionKeyPath} --resource-group \n`); + + throw error; + } +} + +// ------------------------------------------- diff --git a/nosql-vector-search-typescript/src/cosmos-operations.ts b/nosql-insert-at-scale-typescript/src/utils/cosmos-resiliency.ts similarity index 52% rename from nosql-vector-search-typescript/src/cosmos-operations.ts rename to nosql-insert-at-scale-typescript/src/utils/cosmos-resiliency.ts index b6bbc2d..9fa3e04 100644 --- a/nosql-vector-search-typescript/src/cosmos-operations.ts +++ b/nosql-insert-at-scale-typescript/src/utils/cosmos-resiliency.ts @@ -1,17 +1,14 @@ /** - * Azure Cosmos DB Operations Module + * Azure Cosmos DB Resilience and Retry Logic Module * - * This module contains all Cosmos DB specific operations including: - * - Client creation and authentication - * - Error parsing and handling - * - Document validation and preparation - * - Resilient bulk insert operations with retry logic - * - Database and container management + * This module contains all resilience-related functionality for Azure Cosmos DB operations including: * - Circuit breaker implementation for educational purposes + * - Custom retry logic for errors not handled by Azure SDK + * - Error parsing and retryability determination + * - Resilient bulk insert operations with comprehensive error handling + * - Delay/backoff utilities */ import { Container, CosmosClient } from '@azure/cosmos'; -import { AzureOpenAI } from "openai"; -import { DefaultAzureCredential, getBearerTokenProvider } from "@azure/identity"; import { v4 as uuidv4 } from 'uuid'; import { MetricsCollector, Logger } from './metrics.js'; import { @@ -20,85 +17,13 @@ import { CircuitBreakerOptions, FailedDocument, ErrorDetails, - InsertResult, - JsonData -} from './interfaces.js'; - -// ------------------------------------------- -// Client Creation Functions -// ------------------------------------------- - -export function getClients(): { aiClient: AzureOpenAI | null; dbClient: CosmosClient | null } { - let aiClient: AzureOpenAI | null = null; - let dbClient: CosmosClient | null = null; - - const apiKey = process.env.AZURE_OPENAI_EMBEDDING_KEY!; - const apiVersion = process.env.AZURE_OPENAI_EMBEDDING_API_VERSION!; - const endpoint = process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT!; - const deployment = process.env.AZURE_OPENAI_EMBEDDING_MODEL!; - - if (apiKey && apiVersion && endpoint && deployment) { - aiClient = new AzureOpenAI({ - apiKey, - apiVersion, - endpoint, - deployment - }); - } - - // Cosmos DB connection string or endpoint/key - // You may need to use endpoint and key separately for CosmosClient - const cosmosEndpoint = process.env.COSMOS_ENDPOINT!; - const cosmosKey = process.env.COSMOS_KEY!; - - if (cosmosEndpoint && cosmosKey) { - dbClient = new CosmosClient({ endpoint: cosmosEndpoint, key: cosmosKey }); - } - - return { aiClient, dbClient }; -} - -/** - * Get Azure OpenAI and Cosmos DB clients using passwordless authentication (managed identity) - * This function uses DefaultAzureCredential for authentication instead of API keys - * - * @returns Object containing AzureOpenAI and CosmosClient instances or null if configuration is missing - */ -export function getClientsPasswordless(): { aiClient: AzureOpenAI | null; dbClient: CosmosClient | null } { - let aiClient: AzureOpenAI | null = null; - let dbClient: CosmosClient | null = null; - - // For Azure OpenAI with DefaultAzureCredential - const apiVersion = process.env.AZURE_OPENAI_EMBEDDING_API_VERSION!; - const endpoint = process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT!; - const deployment = process.env.AZURE_OPENAI_EMBEDDING_MODEL!; - - if (apiVersion && endpoint && deployment) { - const credential = new DefaultAzureCredential(); - const scope = "https://cognitiveservices.azure.com/.default"; - const azureADTokenProvider = getBearerTokenProvider(credential, scope); - aiClient = new AzureOpenAI({ - apiVersion, - endpoint, - deployment, - azureADTokenProvider - }); - } - - // For Cosmos DB with DefaultAzureCredential - const cosmosEndpoint = process.env.COSMOS_ENDPOINT!; - - if (cosmosEndpoint) { - const credential = new DefaultAzureCredential(); - - dbClient = new CosmosClient({ - endpoint: cosmosEndpoint, - aadCredentials: credential // Use DefaultAzureCredential instead of key - }); - } - - return { aiClient, dbClient }; -} + InsertResult +} from './resilience-interfaces.js'; +import { JsonData } from './interfaces.js'; +import { + validateDocument, + generateOperationId +} from './cosmos-operations.js'; /** * Retry Resiliency implementation for Azure Cosmos DB operations @@ -284,26 +209,24 @@ export function parseCosmosError(error: any): ErrorDetails { /** * Check if an error requires custom retry logic based on Azure Cosmos DB NoSQL official guidance - * Note: SDK automatically retries 408, 410, 429, 449, 503 - only add custom retry where needed + * Note: While SDK has some retry for 429, bulk operations often need additional retry logic */ export function isRetryableError(errorCode: number | string): boolean { const code = errorCode.toString(); - // Based on Azure Cosmos DB NoSQL official guidance: - // Only retry errors where "Should add retry = Yes" AND "SDKs retry = No" + // Based on Azure Cosmos DB NoSQL official guidance and bulk operation best practices: + // Add custom retry for errors that benefit from application-level retry logic - // 403 is the main case where we should add custom retry (marked as "Optional") - // Only retry for transient auth issues, not for actual authorization failures + // Custom retryable codes for bulk operations const customRetryableCodes = [ - '403' // Forbidden - Optional retry only for transient auth issues + '403', // Forbidden - Optional retry only for transient auth issues + '429' // Too Many Requests - Additional retry for bulk operations beyond SDK retry ]; - // These are handled by SDK automatically (SDKs retry = Yes) - // We don't need to add custom retry logic for these + // These are handled by SDK automatically but may need additional application retry for bulk ops const sdkHandledCodes = [ '408', // Request Timeout - SDK handles this '410', // Gone - SDK handles this - '429', // Too Many Requests - SDK handles this with x-ms-retry-after-ms '449', // Retry With - SDK handles this '503' // Service Unavailable - SDK handles this ]; @@ -324,63 +247,19 @@ export function isRetryableError(errorCode: number | string): boolean { return false; } - // Only add custom retry for codes not handled by SDK + // Add custom retry for codes that benefit from application-level retry return customRetryableCodes.includes(code); } -// ------------------------------------------- -// Document Operations -// ------------------------------------------- - -/** - * Generate a unique operation ID for a document - */ -export function generateOperationId(doc: JsonData, idField: string = DEFAULT_INSERT_CONFIG.idField): string { - const baseId = doc[idField] || uuidv4(); - return `${baseId}-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`; -} - -/** - * Validate a document before insertion - */ -export function validateDocument(doc: JsonData, idField: string = DEFAULT_INSERT_CONFIG.idField, schema?: Record): boolean { - // Basic validation - document must be an object - if (!doc || typeof doc !== 'object' || Array.isArray(doc)) { - return false; - } - - // Ensure document has an ID field or can generate one - if (!doc[idField]) { - // Allow documents without explicit ID as we can generate one - doc[idField] = uuidv4(); - } - - // Optional schema validation - if (schema) { - // Basic schema validation - could be enhanced with more sophisticated validation - for (const [key, expectedType] of Object.entries(schema)) { - if (doc[key] && typeof doc[key] !== expectedType) { - return false; - } - } - } - - return true; -} - -// ------------------------------------------- -// Utility Functions -// ------------------------------------------- - /** * Delay function for exponential backoff */ -async function delay(ms: number): Promise { +export async function delay(ms: number): Promise { return new Promise(resolve => setTimeout(resolve, ms)); } // ------------------------------------------- -// Core Insert Operations +// Core Insert Operations with Resilience // ------------------------------------------- /** @@ -410,6 +289,8 @@ export async function resilientInsert( batchSize: config.batchSize }); + console.log(`šŸš€ Starting batch processing of ${data.length} documents...`); + // NOTE: Retry resiliency for handling errors not covered by Azure SDK's built-in retry logic. let inserted = 0, failed = 0, retried = 0; @@ -446,6 +327,10 @@ export async function resilientInsert( totalProcessed: start }); + if (totalBatches > 1) { + console.log(`šŸ“¦ Processing batch ${i + 1}/${totalBatches} (${batch.length} documents)...`); + } + // Validate documents before attempting insertion const validDocs = batch.filter(doc => { if (!validateDocument(doc, config.idField, config.schema)) { @@ -463,10 +348,10 @@ export async function resilientInsert( return true; }); - // Process each document in the batch with simplified retry logic + // Process each document in the batch with enhanced retry logic const batchPromises = validDocs.map(async (doc) => { let customRetries = 0; - const MAX_CUSTOM_RETRIES = 2; // Only for 403 Forbidden scenarios + const MAX_CUSTOM_RETRIES = 3; // Increased for handling 429 errors let lastError: ErrorDetails | null = null; while (customRetries <= MAX_CUSTOM_RETRIES) { @@ -482,11 +367,14 @@ export async function resilientInsert( // Perform the insert operation with timeout // SDK automatically handles retries for: 408, 410, 429, 449, 503 const insertPromise = container.items.create(docToInsert); + + let timeoutId: NodeJS.Timeout | undefined; const timeoutPromise = new Promise((_, reject) => { - setTimeout(() => reject(new Error('Operation timeout')), config.bulkInsertTimeoutMs); + timeoutId = setTimeout(() => reject(new Error('Operation timeout')), config.bulkInsertTimeoutMs); }); const result = await Promise.race([insertPromise, timeoutPromise]) as any; + if (timeoutId) clearTimeout(timeoutId); // Clean up timeout if operation completes first const latency = Date.now() - startTime; // Record successful operation metrics @@ -494,6 +382,11 @@ export async function resilientInsert( metrics.recordLatency(latency); retryResiliency.recordSuccess(); + // Show success message if this was a retry + if (customRetries > 0) { + console.log(`āœ… Document ${doc[config.idField]} successfully inserted after ${customRetries} ${customRetries === 1 ? 'retry' : 'retries'}`); + } + inserted++; return { success: true, doc, result }; @@ -504,30 +397,49 @@ export async function resilientInsert( metrics.recordError(errorDetails.code); retryResiliency.recordFailure(); - logger.warn(`Insert attempt ${customRetries + 1} failed`, { - docId: doc[config.idField], - error: errorDetails.message, - code: errorDetails.code - }); + // Only log detailed warning if this is not going to be retried or is the final attempt + if (!isRetryableError(errorDetails.code) || customRetries >= MAX_CUSTOM_RETRIES) { + logger.warn(`Insert attempt ${customRetries + 1} failed`, { + docId: doc[config.idField], + error: errorDetails.message, + code: errorDetails.code + }); + } - // Only retry 403 Forbidden if it might be transient auth issue - if (errorDetails.code === '403' && customRetries < MAX_CUSTOM_RETRIES) { + // Check if error is retryable + if (isRetryableError(errorDetails.code) && customRetries < MAX_CUSTOM_RETRIES) { customRetries++; retried++; - // Short delay for auth token refresh scenarios - const shortDelay = 500 * customRetries; - logger.debug(`Retrying 403 error after ${shortDelay}ms`, { - docId: doc[config.idField], - attempt: customRetries + 1 - }); + let retryDelay: number; + + if (errorDetails.code === '429') { + // For 429 errors, respect the retry-after header if available + if (errorDetails.retryAfterMs) { + retryDelay = errorDetails.retryAfterMs; + } else { + // Use exponential backoff starting from 1s for 429 errors + retryDelay = Math.min(1000 * Math.pow(2, customRetries - 1), 10000); + } + + console.log(`ā³ Rate limiting detected for document ${doc[config.idField]} - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } else if (errorDetails.code === '403') { + // Short delay for auth token refresh scenarios + retryDelay = 500 * customRetries; + + console.log(`šŸ”‘ Authentication issue for document ${doc[config.idField]} - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } else { + // Default exponential backoff for other retryable errors + retryDelay = Math.min(500 * Math.pow(2, customRetries - 1), 5000); + + console.log(`āš ļø Error ${errorDetails.code} for document ${doc[config.idField]} - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } - await delay(shortDelay); + await delay(retryDelay); continue; } - // All other errors: either handled by SDK already, or not retryable - // SDK already exhausted retries for 408, 410, 429, 449, 503 + // All other errors: either not retryable or exhausted retries break; } } @@ -567,87 +479,17 @@ export async function resilientInsert( durationMs: result.metrics.totalDurationMs }); - return result; -} + console.log(`šŸŽÆ Batch processing completed: ${result.inserted} inserted, ${result.failed} failed, ${result.retried} retries`); -/** - * Simple batch insert function for basic Cosmos DB operations - * This is a basic implementation - for production use resilientInsert() instead - */ -export async function insertData(config: any, container: Container, data: JsonData[]): Promise<{ total: number; inserted: number; failed: number }> { - // Cosmos DB uses containers instead of collections - // Insert documents in batches - console.log(`Processing in batches of ${config.batchSize}...`); - const totalBatches = Math.ceil(data.length / config.batchSize); - - let inserted = 0; - let failed = 0; - // Cosmos DB does not support bulk insert natively in SDK, but you can use stored procedures or loop - // Here we use a simple loop for demonstration - for (let i = 0; i < totalBatches; i++) { - const start = i * config.batchSize; - const end = Math.min(start + config.batchSize, data.length); - const batch = data.slice(start, end); - for (const doc of batch) { - try { - await container.items.create(doc); - inserted++; - } catch (error) { - console.error(`Error inserting document:`, error); - failed++; - } - } - // Small pause between batches to reduce resource contention - if (i < totalBatches - 1) { - await new Promise(resolve => setTimeout(resolve, 100)); - } - } - // Index creation is handled by indexing policy in Cosmos DB, not programmatically per field - //TBD: If custom indexing policy is needed, update container indexing policy via SDK or portal - return { total: data.length, inserted, failed }; + return result; } /** - * Ensure Azure Cosmos DB database and container exist with proper partition key configuration - */ -export async function ensureDatabaseAndContainer( - client: any, - databaseName: string, - containerName: string, - partitionKeyPath: string -): Promise<{ database: any, container: any }> { - try { - console.log(`Ensuring database ${databaseName} exists...`); - const { database } = await client.databases.createIfNotExists({ id: databaseName }); - console.log(`Database ${databaseName} ensured.`); - - console.log(`Ensuring container ${containerName} exists with partition key ${partitionKeyPath}...`); - - // IMPORTANT: Partition key cannot be changed after container creation - const { container } = await database.containers.createIfNotExists({ - id: containerName, - partitionKey: { paths: [partitionKeyPath] } - }); - - console.log(`Container ${containerName} ensured.`); - console.log(`PARTITION KEY SET TO: ${partitionKeyPath}`); - console.log(`Remember: Partition key cannot be changed after container creation!`); - - return { database, container }; - } catch (error: any) { - console.error(`\nERROR: Cannot access database or container. Please ensure they exist.`); - console.error(`Error details: ${error.message}\n`); - console.error(`IMPORTANT: You need to create the database and container manually before running this script:\n`); - console.error(`1. Database name: ${databaseName}`); - console.error(`2. Container name: ${containerName} `); - console.error(`3. Partition key: ${partitionKeyPath}\n`); - console.error(`You can create these resources through:`); - console.error(`- Azure Portal: https://portal.azure.com`); - console.error(`- Azure CLI: `); - console.error(` az cosmosdb sql database create --account-name --name ${databaseName} --resource-group `); - console.error(` az cosmosdb sql container create --account-name --database-name ${databaseName} --name ${containerName} --partition-key-path ${partitionKeyPath} --resource-group \n`); - console.error(`The account you're using doesn't have permission to create these resources programmatically.`); - - throw error; - } -} \ No newline at end of file + * Removed: resilientInsertWithIndexManagement function + * + * Index management is now handled by external scripts: + * - ./scripts/remove-vector-indexes.sh (run before bulk insert) + * - ./scripts/restore-vector-indexes.sh (run after bulk insert) + * + * Use the main resilientInsert function for bulk operations. + */ \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/src/utils/interfaces.ts b/nosql-insert-at-scale-typescript/src/utils/interfaces.ts new file mode 100644 index 0000000..937e5d0 --- /dev/null +++ b/nosql-insert-at-scale-typescript/src/utils/interfaces.ts @@ -0,0 +1,37 @@ +/** + * Core type definitions for Azure Cosmos DB operations + * This file contains basic interfaces and type definitions for low-level Cosmos DB operations + */ + +// Common type aliases +export type JsonData = Record; + +/** + * Performance metrics for operations + */ +export interface OperationMetrics { + /** Total RU consumption */ + totalRu: number; + /** Average RU per document */ + avgRuPerDoc: number; + /** Maximum RU per operation */ + maxRu: number; + /** Average latency in ms per document */ + avgLatencyMs: number; + /** Maximum latency in ms for any single operation */ + maxLatencyMs: number; + /** Error count by status code */ + errorCounts: Record; + /** Total duration of the operation in ms */ + totalDurationMs: number; +} + +/** + * Log levels for the logger + */ +export enum LogLevel { + DEBUG = 'DEBUG', + INFO = 'INFO', + WARN = 'WARN', + ERROR = 'ERROR' +} \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/metrics.ts b/nosql-insert-at-scale-typescript/src/utils/metrics.ts similarity index 85% rename from nosql-vector-search-typescript/src/metrics.ts rename to nosql-insert-at-scale-typescript/src/utils/metrics.ts index 8579dd9..c5c393e 100644 --- a/nosql-vector-search-typescript/src/metrics.ts +++ b/nosql-insert-at-scale-typescript/src/utils/metrics.ts @@ -163,18 +163,31 @@ export class Logger { * Log a message with the given level */ private log(level: LogLevel, message: string, data?: any): void { - const timestamp = new Date().toISOString(); - const logData = { - timestamp, - level, - correlationId: this.correlationId, - message, - ...(data ? { data } : {}) - }; - - // In production, you might want to use a proper logging library - // or send logs to a centralized service - console.log(JSON.stringify(logData)); + // Output clean console messages instead of JSON + let prefix = ''; + switch (level) { + case LogLevel.DEBUG: + prefix = 'šŸ” '; + break; + case LogLevel.INFO: + prefix = 'ā„¹ļø '; + break; + case LogLevel.WARN: + prefix = 'āš ļø '; + break; + case LogLevel.ERROR: + prefix = 'āŒ '; + break; + default: + prefix = ''; + } + + console.log(`${prefix}${message}`); + + // If there's additional data and it's at DEBUG level, show it in a readable format + if (data && level === LogLevel.DEBUG) { + console.log(` Details: ${JSON.stringify(data, null, 2)}`); + } } /** diff --git a/nosql-vector-search-typescript/src/interfaces.ts b/nosql-insert-at-scale-typescript/src/utils/resilience-interfaces.ts similarity index 77% rename from nosql-vector-search-typescript/src/interfaces.ts rename to nosql-insert-at-scale-typescript/src/utils/resilience-interfaces.ts index a051cbd..e75a2bb 100644 --- a/nosql-vector-search-typescript/src/interfaces.ts +++ b/nosql-insert-at-scale-typescript/src/utils/resilience-interfaces.ts @@ -1,13 +1,11 @@ /** - * Type definitions for Azure Cosmos DB bulk insert operations - * This file contains all interfaces and type definitions used across the insert-at-scale implementation + * Type definitions for Azure Cosmos DB resilience and bulk insert operations + * This file contains all interfaces and type definitions used for resilient operations */ +import type { OperationMetrics } from './interfaces.js'; import type { MetricsCollector } from './metrics.js'; -// Common type aliases -export type JsonData = Record; - /** * Configuration options for resilient insert operations * See INSERT_AT_SCALE_GUIDE.md for detailed configuration guidance @@ -55,7 +53,7 @@ export interface CircuitBreakerOptions { */ export interface FailedDocument { /** The document that failed to insert */ - document: JsonData; + document: Record; /** Error details */ error: ErrorDetails; /** Number of attempts made before failing */ @@ -98,36 +96,6 @@ export interface InsertResult { metricsCollector: MetricsCollector; } -/** - * Performance metrics for the operation - */ -export interface OperationMetrics { - /** Total RU consumption */ - totalRu: number; - /** Average RU per document */ - avgRuPerDoc: number; - /** Maximum RU per operation */ - maxRu: number; - /** Average latency in ms per document */ - avgLatencyMs: number; - /** Maximum latency in ms for any single operation */ - maxLatencyMs: number; - /** Error count by status code */ - errorCounts: Record; - /** Total duration of the operation in ms */ - totalDurationMs: number; -} - -/** - * Log levels for the logger - */ -export enum LogLevel { - DEBUG = 'DEBUG', - INFO = 'INFO', - WARN = 'WARN', - ERROR = 'ERROR' -} - /** * Default configuration with reasonable values for production use * See INSERT_AT_SCALE_GUIDE.md for configuration optimization guidance diff --git a/nosql-vector-search-typescript/src/utils.ts b/nosql-insert-at-scale-typescript/src/utils/utils.ts similarity index 92% rename from nosql-vector-search-typescript/src/utils.ts rename to nosql-insert-at-scale-typescript/src/utils/utils.ts index 8f52445..ce1fa95 100644 --- a/nosql-vector-search-typescript/src/utils.ts +++ b/nosql-insert-at-scale-typescript/src/utils/utils.ts @@ -1,5 +1,4 @@ import { CosmosClient } from '@azure/cosmos'; -import { AzureOpenAI } from "openai"; import { promises as fs } from "fs"; import { getClients, getClientsPasswordless, insertData } from './cosmos-operations.js'; @@ -15,12 +14,6 @@ export async function readFileReturnJson(filePath: string): Promise const fileAsString = await fs.readFile(filePath, "utf-8"); return JSON.parse(fileAsString); } -export async function writeFileJson(filePath: string, jsonData: JsonData): Promise { - const jsonString = JSON.stringify(jsonData, null, 2); - await fs.writeFile(filePath, jsonString, "utf-8"); - - console.log(`Wrote JSON file to ${filePath}`); -} /** * Calculate estimated cost for Request Units (RUs) in different pricing models diff --git a/nosql-vector-search-typescript/tsconfig.json b/nosql-insert-at-scale-typescript/tsconfig.json similarity index 91% rename from nosql-vector-search-typescript/tsconfig.json rename to nosql-insert-at-scale-typescript/tsconfig.json index 6e44036..a60a141 100644 --- a/nosql-vector-search-typescript/tsconfig.json +++ b/nosql-insert-at-scale-typescript/tsconfig.json @@ -12,6 +12,7 @@ "forceConsistentCasingInFileNames": true, "sourceMap": true, "resolveJsonModule": true, + "strictPropertyInitialization": false }, "include": [ "src/**/*" diff --git a/nosql-vector-search-typescript/.env.example b/nosql-vector-search-typescript/.env.example deleted file mode 100644 index 77b7db1..0000000 --- a/nosql-vector-search-typescript/.env.example +++ /dev/null @@ -1,33 +0,0 @@ - -DEBUG=true - -# ======================================== -# Azure OpenAI Embedding Settings -# ======================================== -AZURE_OPENAI_EMBEDDING_MODEL=text-embedding-ada-002 -AZURE_OPENAI_EMBEDDING_API_VERSION=2023-05-15 -AZURE_OPENAI_EMBEDDING_KEY= -AZURE_OPENAI_EMBEDDING_ENDPOINT=https://.openai.azure.com -EMBEDDING_SIZE_BATCH=16 - -# ======================================== -# Data File Paths and Vector Configuration -# ======================================== -DATA_FILE_WITHOUT_VECTORS=../data/HotelsData_toCosmosDB.JSON -DATA_FILE_WITH_VECTORS=../data/HotelsData_toCosmosDB_Vector.json -DATA_FILE_WITH_SIMILARITY=../data/HotelsData_toCosmosDB_Vector_Similarity.json -QUERY_FILE_WITH_VECTORS=../data/HotelsData_Query_Vector.json -DATA_FOLDER=../data/ -FIELD_TO_EMBED=Description -EMBEDDED_FIELD=text_embedding_ada_002 -EMBEDDING_DIMENSIONS=1536 -LOAD_SIZE_BATCH=100 - -# ======================================== -# Cosmos DB Connection Settings -# ======================================== -COSMOS_ENDPOINT= -COSMOS_KEY= -COSMOS_CONNECTION_STRING= -EMBEDDING_SIZE_BATCH=16 -LOAD_SIZE_BATCH=100 \ No newline at end of file diff --git a/nosql-vector-search-typescript/IMPROVEMENT_PLAN.md b/nosql-vector-search-typescript/IMPROVEMENT_PLAN.md deleted file mode 100644 index 8968cc1..0000000 --- a/nosql-vector-search-typescript/IMPROVEMENT_PLAN.md +++ /dev/null @@ -1,131 +0,0 @@ -# Azure Cosmos DB Insert-at-Scale Improvement Plan - -## Overview -This document outlines the planned improvements to the `insert-at-scale.ts` file based on expert feedback received on September 26, 2025. The changes focus on aligning with Azure Cosmos DB best practices and removing potentially confusing or inaccurate guidance. - -## Feedback Summary -The feedback highlighted several areas for improvement: -- MaxConcurrency should support -1 for SDK-managed parallelism -- Pricing estimates are difficult to provide accurately and should be simplified/removed -- Current operation cost calculations are confusing between different pricing models -- Circuit breaker pattern may not be the best approach; throughput buckets are preferred -- Retry logic should follow official Azure Cosmos DB SDK best practices -- Need better guidance on partition key selection and RU scaling strategies - -## Planned Changes - -### āœ… 1. Update MaxConcurrency to support -1 -**Status: COMPLETED** -- Modified `maxConcurrency` type definition and documentation -- Updated default configuration to use `-1` (let SDK maximize parallelism) -- Updated main function configuration - -### šŸ”„ 2. Remove/simplify pricing estimates -**Status: IN PROGRESS** -- Remove complex pricing calculations from the main output -- Simplify or remove the `estimateServerlessCost()` and `estimateMonthlyRUCost()` calls -- Focus on showing RU consumption metrics instead of cost projections -- Remove confusing monthly cost projections - -### šŸ“‹ 3. Fix pricing model confusion -**Status: PLANNED** -- Address confusion between serverless vs provisioned throughput vs autoscale pricing -- Clarify which pricing model is being used in calculations -- Ensure calculations are accurate for each specific model -- Remove or clearly separate different pricing model examples - -### šŸ“‹ 4. Update circuit breaker guidance -**Status: PLANNED** -- Remove or significantly modify the circuit breaker implementation -- Replace with guidance about Azure Cosmos DB's **throughput buckets** feature (in preview) -- Point users to Microsoft Learn documentation: https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet -- Focus on RU/workload based resource contention controls - -### šŸ“‹ 5. Improve retry logic best practices -**Status: PLANNED** -- Update retry logic to follow Azure Cosmos DB SDK best practices -- Implement retry patterns based on specific status codes -- Reference: "Design Resilient Applications with Azure Cosmos DB SDKs" Microsoft Learn documentation -- Ensure retry logic aligns with official SDK recommendations - -### šŸ“‹ 6. Add partition key best practices guidance -**Status: PLANNED** -- Add comprehensive documentation about partition key selection -- Emphasize the importance of **high cardinality** partition keys -- Provide guidance on ensuring workload is spread across multiple partitions -- Include examples of good vs. poor partition key choices for large insert workloads -- Explain how partition key affects performance and scalability - -### šŸ“‹ 7. Add RU scaling guidance -**Status: PLANNED** -- Document scaling strategies for large insert workloads -- Guidance on setting RU/s high during ingestion periods and scaling back down -- Information about **Dynamic Autoscale** capability and tuning max RU/s -- Explain physical partition creation (every ~10,000 RU/s creates new partition) -- Benefits of multiple physical partitions for large insert workloads (each partition capped at 10,000 RU/s max) - -### šŸ“‹ 8. Update documentation and comments -**Status: PLANNED** -- Review and update all JSDoc comments -- Update inline documentation throughout the file -- Modify console output to provide better guidance -- Ensure all documentation reflects Azure Cosmos DB best practices -- Remove outdated or potentially misleading information - -## Implementation Priority - -1. **High Priority (Immediate)**: - - Remove/simplify pricing estimates (item 2) - - Fix pricing model confusion (item 3) - - Update circuit breaker guidance (item 4) - -2. **Medium Priority**: - - Improve retry logic best practices (item 5) - - Add partition key best practices guidance (item 6) - -3. **Low Priority (Polish)**: - - Add RU scaling guidance (item 7) - - Update documentation and comments (item 8) - -## Key Principles to Follow - -### Partition Key Best Practices -- Choose high cardinality partition keys (distinct values across documents) -- Avoid "hot" partition keys that concentrate traffic -- Consider the query patterns when selecting partition keys -- Understand that good partition key distribution enables better parallelism - -### Scaling Strategies -- **Initial Ingestion**: Set RU/s high for large insert periods -- **Post-Ingestion**: Scale back down to normal operational levels -- **Dynamic Autoscale**: Use Azure's autoscale capability with appropriate max RU/s limits -- **Physical Partitions**: Understand that every ~10,000 RU/s creates a new physical partition -- **Parallel Processing**: More physical partitions = better insert performance (each capped at 10,000 RU/s) - -### Retry Logic -- Follow official Azure Cosmos DB SDK retry best practices -- Implement status-code specific retry logic -- Use appropriate backoff strategies -- Handle different error types correctly (retryable vs. non-retryable) - -### Resource Management -- Prefer Azure's native throughput management features -- Use throughput buckets (preview) for advanced RU/workload controls -- Avoid custom circuit breakers when native solutions exist -- Let the SDK handle parallelism optimization when possible - -## Expected Outcomes - -After implementing these changes, the `insert-at-scale.ts` file will: -- Provide more accurate and helpful guidance for large-scale insert operations -- Align with current Azure Cosmos DB best practices and recommendations -- Remove confusing or potentially misleading pricing calculations -- Focus on actionable performance and scalability guidance -- Reference official Microsoft documentation for advanced features - -## References - -- [Azure Cosmos DB Throughput Buckets](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet) -- [Design Resilient Applications with Azure Cosmos DB SDKs](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) -- [Azure Cosmos DB Partitioning](https://learn.microsoft.com/en-us/azure/cosmos-db/partitioning-overview) -- [Azure Cosmos DB Request Units](https://learn.microsoft.com/en-us/azure/cosmos-db/request-units) \ No newline at end of file diff --git a/nosql-vector-search-typescript/QUICKSTART_INSERT_AT_SCALE.md b/nosql-vector-search-typescript/QUICKSTART_INSERT_AT_SCALE.md deleted file mode 100644 index 3b0af98..0000000 --- a/nosql-vector-search-typescript/QUICKSTART_INSERT_AT_SCALE.md +++ /dev/null @@ -1,513 +0,0 @@ -# Quickstart: Insert documents at scale into Azure Cosmos DB for NoSQL - -In this quickstart, you learn how to efficiently insert large volumes of documents into Azure Cosmos DB for NoSQL using TypeScript and the Azure SDK. You'll implement enterprise-grade resilience patterns including retry logic, error handling, and performance monitoring. - -## Prerequisites - -- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/). -- Azure Cosmos DB for NoSQL account. [Create a Cosmos DB account](https://docs.microsoft.com/azure/cosmos-db/create-cosmosdb-resources-portal). -- [Node.js](https://nodejs.org/) version 18 or higher. -- [TypeScript](https://www.typescriptlang.org/) installed globally. - -## Setting up your environment - -1. **Install required packages**: - ```bash - npm install @azure/cosmos @azure/identity uuid - npm install -D @types/uuid typescript - ``` - -2. **Configure environment variables**: - Create a `.env` file with your Cosmos DB connection details: - ``` - COSMOS_ENDPOINT=https://your-account.documents.azure.com:443/ - COSMOS_KEY=your-primary-key - ``` - -3. **Prepare your data**: - For this quickstart, we'll use a sample hotel dataset. Create a JSON file with your documents or use our sample data structure. - -## Understanding bulk insert best practices - -Before implementing bulk insert operations, it's crucial to understand Azure Cosmos DB best practices and the distinction between educational patterns and production recommendations: - -### Educational vs Production Patterns - -This quickstart demonstrates several patterns for learning purposes. Here's what you should use in production versus what's included for educational value: - -| Pattern Category | šŸŽ“ Educational Patterns (Good for Learning) | šŸ­ Production Recommendations | -|------------------|---------------------------------------------|-------------------------------| -| **Resilience & Error Handling** | Custom circuit breaker implementation - Demonstrates resilience concepts | [Azure Cosmos DB SDK built-in retry policies](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) - Use the SDK's automatic retry handling with optimized backoff | -| **Retry Logic** | Manual retry logic with custom backoff - Shows how retry patterns work | [Azure Cosmos DB SDK built-in retry policies](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) - The SDK has optimized implementations | -| **Performance Monitoring** | Custom metrics collection - Illustrates performance monitoring concepts | [Azure Monitor](https://learn.microsoft.com/en-us/azure/azure-monitor/overview) and [Application Insights](https://learn.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview) - Enterprise-grade monitoring and alerting | -| **Error Analysis** | Detailed error parsing and categorization - Helps understand different error types | [Azure Monitor diagnostic logs](https://learn.microsoft.com/en-us/azure/cosmos-db/monitor-cosmos-db) - Native error tracking and analysis | -| **Resource Scaling** | Manual throttling and adaptive delay logic - Shows RU management concepts | [Dynamic Autoscale](https://learn.microsoft.com/en-us/azure/cosmos-db/provision-throughput-autoscale) - Let Azure automatically scale RU/s based on demand | -| **Resource Control** | Custom circuit breaker for RU management - Educational implementation | [Throughput Buckets (Preview)](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet) - Use Azure's native RU/workload control | -| **Authentication** | Connection string authentication - Simple for learning | [Managed Identity authentication](https://learn.microsoft.com/en-us/azure/cosmos-db/managed-identity-based-authentication) - More secure for production workloads | - -### When to Use Each Approach - -- **Development and Learning**: Use the patterns in this quickstart to understand resilience concepts and error handling -- **Small-scale Production**: The educational patterns can work for smaller workloads with proper testing -- **Enterprise Production**: Prefer Azure-native solutions for scalability, reliability, and reduced maintenance overhead - -### Partition Key Selection - -Choose a partition key with **high cardinality** to ensure even distribution of data and optimal performance. Here are the key principles to follow: - -**Best Practices for Partition Keys:** -- **High cardinality**: Choose fields with many distinct values across documents -- **Avoid hot partitions**: Don't use keys that concentrate traffic on few partitions -- **Good examples**: userId, deviceId, locationId, customerId -- **Poor examples**: status, category, type, country (these have low cardinality) -- **Even distribution**: Aim for balanced data and request distribution across partitions -- **Query alignment**: Use partition keys that appear in most of your queries - -**For Large Insert Workloads:** -- High cardinality enables better parallelism across multiple physical partitions -- Each physical partition can handle up to 10,000 RU/s maximum -- More partitions result in better insert performance for high-volume scenarios - -```typescript -/** - * Path to the partition key field, e.g., '/HotelId' - */ -partitionKeyPath: string; -``` - -### Scaling Strategy - -For large insert operations, consider these RU scaling approaches: - -- **Initial Ingestion**: Set RU/s high during large insert periods -- **Post-Ingestion**: Scale back down to normal operational levels -- **Dynamic Autoscale**: Use Azure's autoscale capability with appropriate max RU/s limits -- **Physical Partitions**: Every ~10,000 RU/s creates a new physical partition, enabling better parallelism - -## Configuration interface - -Define a comprehensive configuration for your bulk insert operations. The configuration allows you to control batch sizes, retry behavior, concurrency, and other important settings: - -```typescript -/** - * Configuration options for resilient insert operations - */ -export interface InsertConfig { - /** Maximum batch size for document insertion */ - batchSize: number; - /** Maximum number of retry attempts for failed operations */ - maxRetries: number; - /** Base time in ms for exponential backoff calculation */ - baseBackoff: number; - /** Maximum backoff time in ms regardless of retry count */ - maxBackoff: number; - /** Unique ID for correlating logs across the operation */ - correlationId?: string; - /** Target RU utilization rate (0.0-1.0) to avoid throttling */ - targetRuUtilization: number; - /** Maximum parallel operations. Set to -1 to let the client/SDK maximize parallelism automatically. */ - maxConcurrency: number; - /** Whether to enable idempotency tokens on documents */ - idempotencyEnabled: boolean; - /** Whether to return failed documents in results */ - returnFailedDocs: boolean; - /** Name of the field to use as document ID */ - idField: string; - /** Path to the partition key field */ - partitionKeyPath: string; -} -``` - -**Key Configuration Options:** -- **maxConcurrency**: Set to -1 to let the Azure Cosmos DB SDK automatically maximize parallelism based on your account's capabilities -- **batchSize**: Process documents in batches to manage memory usage and enable progress tracking -- **targetRuUtilization**: Keep below 1.0 to avoid consistent throttling -- **idempotencyEnabled**: Helps prevent duplicate insertions during retry scenarios - -/** - * Default configuration with reasonable values - */ -export const DEFAULT_INSERT_CONFIG: InsertConfig = { - batchSize: 25, - maxRetries: 5, - baseBackoff: 100, - maxBackoff: 10000, - targetRuUtilization: 0.7, - maxConcurrency: -1, // Let client/SDK maximize parallelism - idempotencyEnabled: true, - returnFailedDocs: true, - idField: 'HotelId', - partitionKeyPath: '/HotelId' -}; -``` - -## Implementing robust error handling - -Azure Cosmos DB operations can fail for various reasons. Implement smart retry logic based on error types to improve resilience. - -**Error Categories:** -- **Retryable HTTP codes**: 408 (Request Timeout), 429 (Too Many Requests), 449 (Retry With), 500/502/503/504 (Server/Gateway errors) -- **Retryable Cosmos DB codes**: ServiceUnavailable, TooManyRequests, RequestTimeout, Gone (partition split), InternalServerError -- **Non-retryable codes**: 400 (Bad Request), 401 (Unauthorized), 403 (Forbidden), 404 (Not Found), 409 (Conflict), 412 (Precondition Failed), 413 (Payload Too Large) - -```typescript -/** - * Check if an error is retryable based on its code - * Based on Azure Cosmos DB SDK best practices for resilient applications - * Reference: https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications - */ -function isRetryableError(errorCode: number | string): boolean { - const code = errorCode.toString(); - - const retryableHttpCodes = [ - '408', '429', '449', '500', '503', '502', '504' - ]; - - const retryableCosmosDbCodes = [ - 'ServiceUnavailable', 'TooManyRequests', 'RequestTimeout', 'Gone', 'InternalServerError' - ]; - - const nonRetryableCodes = [ - '400', '401', '403', '404', '409', '412', '413' - ]; - - if (nonRetryableCodes.includes(code)) { - return false; - } - - return retryableHttpCodes.includes(code) || retryableCosmosDbCodes.includes(code); -} -``` - -## Advanced backoff strategies - -Implement different backoff strategies for different error types to optimize retry behavior: - -**Backoff Strategy Types:** -- **Rate limiting (429 errors)**: Use more aggressive backoff with base multiplier of 3x and added random jitter -- **Other retryable errors**: Use standard exponential backoff with 2x multiplier and jitter for collision avoidance -- **Maximum backoff**: Always respect the configured maximum backoff time to prevent excessively long delays - -```typescript -if (attempts > 0) { - let backoffTime: number; - - if (lastError && lastError.code === '429') { - backoffTime = Math.min( - config.maxBackoff, - config.baseBackoff * Math.pow(3, attempts) + (Math.random() * 1000) - ); - } else { - backoffTime = Math.min( - config.maxBackoff, - config.baseBackoff * Math.pow(2, attempts) * (0.5 + Math.random() * 0.5) - ); - } - - logger.debug(`Retry backoff for ${backoffTime}ms`, { - docId: doc[config.idField], - attempt: attempts + 1, - errorCode: lastError?.code || 'UNKNOWN', - backoffStrategy: lastError?.code === '429' ? 'rate-limit-backoff' : 'exponential-jitter' - }); - - await delay(backoffTime); - retried++; -} -``` - -## Performance monitoring - -Track key performance metrics during your bulk insert operations: - -```typescript -/** - * Performance metrics for the operation - */ -export interface OperationMetrics { - /** Total RU consumption */ - totalRu: number; - /** Average RU per document */ - avgRuPerDoc: number; - /** Maximum RU per operation */ - maxRu: number; - /** Average latency in ms per document */ - avgLatencyMs: number; - /** Maximum latency in ms for any single operation */ - maxLatencyMs: number; - /** Error count by status code */ - errorCounts: Record; - /** Total duration of the operation in ms */ - totalDurationMs: number; -} - -/** - * Metrics collector for tracking performance - */ -export class MetricsCollector { - private ruValues: number[] = []; - private latencyValues: number[] = []; - private errorMap: Map = new Map(); - private startTime: number; - - constructor() { - this.startTime = Date.now(); - } - - /** - * Record the RU charge for an operation - */ - public recordRUs(requestCharge: number): void { - this.ruValues.push(requestCharge); - } - - /** - * Record the latency for an operation - */ - public recordLatency(latencyMs: number): void { - this.latencyValues.push(latencyMs); - } - - /** - * Record an error by its code - */ - public recordError(errorCode: number | string): void { - const code = errorCode.toString(); - this.errorMap.set(code, (this.errorMap.get(code) || 0) + 1); - } -} -``` - -## Complete implementation - -Here's a complete example of the bulk insert function with enterprise-grade resilience patterns: - -**Implementation Notes:** -- **Batch processing**: Documents are processed in configurable batches to manage memory and enable progress tracking -- **Educational patterns**: This implementation includes a custom circuit breaker, comprehensive logging, and manual retry logic for learning about resilience patterns -- **Production recommendation**: For production workloads, prefer Azure Cosmos DB's native features: - - **Azure Cosmos DB SDK built-in retry policies**: The SDK automatically handles retries with optimized backoff strategies - - **Dynamic Autoscale**: Automatically scales RU/s based on demand without custom throttling logic - - **Throughput Buckets (Preview)**: Fine-grained RU/workload control instead of custom circuit breakers - - **Azure Monitor and Application Insights**: Enterprise monitoring instead of custom metrics collection - -```typescript -/** - * Insert data into Cosmos DB with enterprise-grade resilience - */ -export async function resilientInsert( - container: Container, - data: JsonData[], - configOptions: Partial = {} -): Promise { - const config: InsertConfig = { - ...DEFAULT_INSERT_CONFIG, - ...configOptions - }; - - const logger = createLogger(config.correlationId); - const metrics = createMetricsCollector(); - - logger.info('Starting resilient insert operation', { - documentCount: data.length, - batchSize: config.batchSize - }); - - let inserted = 0, failed = 0, retried = 0; - const failedDocs: FailedDocument[] = []; - const totalBatches = Math.ceil(data.length / config.batchSize); - - for (let i = 0; i < totalBatches; i++) { - const start = i * config.batchSize; - const end = Math.min(start + config.batchSize, data.length); - const batch = data.slice(start, end); - - logger.info(`Processing batch ${i + 1}/${totalBatches}`, { - batchSize: batch.length, - totalProcessed: start - }); - - for (const doc of batch) { - const startTime = Date.now(); - let attempts = 0; - let success = false; - let lastError: ErrorDetails | null = null; - - while (attempts < config.maxRetries && !success) { - try { - attempts++; - - if (config.idempotencyEnabled && !doc._operationId) { - doc._operationId = generateOperationId(doc, config.idField); - } - - const response = await container.items.create(doc); - - metrics.recordRUs(response.requestCharge); - metrics.recordLatency(Date.now() - startTime); - - inserted++; - success = true; - - } catch (error) { - lastError = parseCosmosError(error); - metrics.recordError(lastError.code); - - if (!lastError.retryable || attempts >= config.maxRetries) { - break; - } - } - } - - if (!success) { - failed++; - failedDocs.push({ - document: doc, - error: lastError || { - code: 'MAX_RETRIES_EXCEEDED', - message: 'Document insertion failed after maximum retries', - retryable: false - }, - attempts - }); - } - } - } - - return { - total: data.length, - inserted, - failed, - retried, - metrics: metrics.getSummary(), - metricsCollector: metrics, - ...(config.returnFailedDocs && failedDocs.length > 0 ? { failedDocuments: failedDocs } : {}) - }; -} -``` - -## Usage example - -Here's how to use the bulk insert functionality in your application with comprehensive output and guidance: - -**Key Implementation Points:** -- **Database and container setup**: Ensure proper partition key configuration before inserting data -- **Partition key analysis**: The example validates that your chosen partition key follows best practices -- **Performance monitoring**: Track RU consumption, latency, and error patterns -- **Best practices guidance**: Console output provides actionable recommendations - -```typescript -async function main() { - const { dbClient: client } = getClientsPasswordless(); - - if (!client) { - throw new Error('Cosmos DB client is not configured properly.'); - } - - const databaseName = 'Hotels'; - const containerName = 'hotels-at-scale'; - const config = { - ...DEFAULT_INSERT_CONFIG, - batchSize: 50, - maxRetries: 3, - maxConcurrency: -1 - }; - - console.log(`Using database ${databaseName} and container ${containerName}...`); - console.log(`Using ID field: ${config.idField} and partition key path: ${config.partitionKeyPath}`); - - console.log(`\nPARTITION KEY ANALYSIS:`); - console.log(`• Current partition key: ${config.partitionKeyPath}`); - console.log(`• Ensure this field has high cardinality (many unique values)`); - console.log(`• Avoid low-cardinality fields like 'status', 'type', or 'category'`); - console.log(`• Good partition keys distribute data evenly across partitions\n`); - - try { - const { container } = await ensureDatabaseAndContainer( - client, - databaseName, - containerName, - config.partitionKeyPath - ); - - const dataPath = process.env.DATA_FILE || './sample-data.json'; - console.log(`Reading JSON file from ${dataPath}`); - const data = await readFileReturnJson(dataPath); - - const result = await resilientInsert(container, data, config); - - console.log(`\n-------- OPERATION RESULTS --------`); - console.log(`Inserted ${result.inserted} of ${result.total} documents`); - console.log(`Failed ${result.failed} documents`); - console.log(`Total retries attempted: ${result.retried}`); - - console.log(`\n-------- PERFORMANCE METRICS --------`); - console.log(`Total RUs consumed: ${result.metrics.totalRu.toLocaleString()}`); - console.log(`Average RU per document: ${result.metrics.avgRuPerDoc.toFixed(2)}`); - console.log(`Max RU for single operation: ${result.metrics.maxRu.toFixed(2)}`); - console.log(`Average latency per document: ${result.metrics.avgLatencyMs.toFixed(2)}ms`); - console.log(`Total operation duration: ${(result.metrics.totalDurationMs / 1000).toFixed(2)}s`); - - if (Object.keys(result.metrics.errorCounts).length > 0) { - console.log(`\n-------- ERROR BREAKDOWN --------`); - for (const [errorCode, count] of Object.entries(result.metrics.errorCounts)) { - console.log(`Error ${errorCode}: ${count} occurrences`); - } - } - - console.log(`\n-------- AZURE COSMOS DB BEST PRACTICES --------`); - console.log(`For production workloads, consider these Azure-native features:`); - console.log(`• Dynamic Autoscale: Automatically adjusts RU/s based on demand`); - console.log(`• Throughput Buckets (Preview): Fine-grained RU/workload control`); - console.log(`• Learn more: https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets`); - - console.log(`\n-------- PARTITION KEY BEST PRACTICES --------`); - console.log(`• Choose high cardinality partition keys (many unique values)`); - console.log(`• Ensure even distribution of data across partitions`); - console.log(`• Use partition key in your query filters for best performance`); - console.log(`• Avoid hot partitions (keys with uneven traffic distribution)`); - console.log(`• Current partition key '${config.partitionKeyPath}' - verify it meets these criteria`); - - } catch (error) { - console.error('Operation failed:', error); - throw error; - } -} - -main().catch(console.error); -``` - -## Key takeaways - -### Educational Value -This quickstart demonstrates several resilience patterns to help you understand the concepts: - -1. **Custom Retry Logic**: Learn how to implement intelligent retry logic that distinguishes between retryable and non-retryable errors -2. **Circuit Breaker Pattern**: Understand how to prevent cascading failures (though Azure handles this natively in production) -3. **Performance Monitoring**: See how to track RU consumption, latency, and error rates for optimization insights -4. **Error Handling**: Learn to parse and categorize different types of Azure Cosmos DB errors - -### Production Best Practices - -1. **Partition Key Selection**: Choose high-cardinality partition keys to ensure even data distribution and optimal performance -2. **Azure SDK Features**: Leverage built-in retry policies, connection pooling, and automatic failover -3. **Native Scaling**: Use Dynamic Autoscale and Throughput Buckets instead of custom throttling logic -4. **Enterprise Monitoring**: Implement Azure Monitor, Application Insights, and proper alerting -5. **Security**: Use Managed Identity authentication and proper network security configurations -6. **Resource Management**: Temporarily increase RU/s allocation during large insert operations, then scale back down - -### Migration Path -- **Start**: Use educational patterns to understand concepts and for development/testing -- **Scale**: Gradually adopt Azure-native solutions as your workload grows -- **Enterprise**: Fully leverage Azure's managed services for production reliability - -## Next steps - -- Learn about [Azure Cosmos DB Throughput Buckets](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet) for advanced RU management -- Explore [Design Resilient Applications with Azure Cosmos DB SDKs](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) for additional best practices -- Review [Azure Cosmos DB Partitioning](https://learn.microsoft.com/en-us/azure/cosmos-db/partitioning-overview) for deep dive into partition strategies -- Consider [Azure Cosmos DB Request Units](https://learn.microsoft.com/en-us/azure/cosmos-db/request-units) for understanding RU optimization - -## Clean up resources - -When you're finished with this quickstart, you can delete the Azure Cosmos DB account to avoid ongoing charges. You can delete the account through the Azure portal or using the Azure CLI. \ No newline at end of file diff --git a/nosql-vector-search-typescript/README.md b/nosql-vector-search-typescript/README.md deleted file mode 100644 index 6724daf..0000000 --- a/nosql-vector-search-typescript/README.md +++ /dev/null @@ -1,86 +0,0 @@ -# No-sql Vector Search Samples - -https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/vector-search - -https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/how-to-dotnet-vector-index-query - -Example output: - -```console -Using database Hotels and container hotels-at-scale-2... -Using ID field: HotelId and partition key path: /HotelId -Ensuring database Hotels exists... -Database Hotels ensured. -Ensuring container hotels-at-scale-2 exists with partition key /HotelId... -Container hotels-at-scale-2 ensured. -Reading JSON file from ../data/HotelsData_toCosmosDB_Vector.json -Reading JSON file from ../data/HotelsData_toCosmosDB_Vector.json -{"timestamp":"2025-09-08T21:34:33.340Z","level":"INFO","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Starting resilient insert operation","data":{"documentCount":50,"batchSize":50}} -{"timestamp":"2025-09-08T21:34:33.341Z","level":"INFO","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Processing batch 1/1","data":{"batchSize":50,"totalProcessed":0}} -{"timestamp":"2025-09-08T21:34:33.740Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"1","requestCharge":308.05}} -{"timestamp":"2025-09-08T21:34:34.010Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"10","requestCharge":311.67}} -{"timestamp":"2025-09-08T21:34:34.248Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"11","requestCharge":309.57}} -{"timestamp":"2025-09-08T21:34:34.453Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"12","requestCharge":313.95}} -{"timestamp":"2025-09-08T21:34:34.662Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"13","requestCharge":312.62}} -{"timestamp":"2025-09-08T21:34:34.877Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"14","requestCharge":315.67}} -{"timestamp":"2025-09-08T21:34:35.083Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"15","requestCharge":314.71}} -{"timestamp":"2025-09-08T21:34:35.290Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"16","requestCharge":311.1}} -{"timestamp":"2025-09-08T21:34:35.541Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"17","requestCharge":313.76}} -{"timestamp":"2025-09-08T21:34:35.750Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"18","requestCharge":309.38}} -{"timestamp":"2025-09-08T21:34:35.959Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"19","requestCharge":313.57}} -{"timestamp":"2025-09-08T21:34:36.164Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"2","requestCharge":303.48}} -{"timestamp":"2025-09-08T21:34:36.390Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"20","requestCharge":311.67}} -{"timestamp":"2025-09-08T21:34:36.595Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"21","requestCharge":311.29}} -{"timestamp":"2025-09-08T21:34:36.803Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"22","requestCharge":309}} -{"timestamp":"2025-09-08T21:34:37.006Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"23","requestCharge":312.62}} -{"timestamp":"2025-09-08T21:34:37.251Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"24","requestCharge":305.38}} -{"timestamp":"2025-09-08T21:34:37.462Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"25","requestCharge":313.95}} -{"timestamp":"2025-09-08T21:34:37.669Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"26","requestCharge":305.95}} -{"timestamp":"2025-09-08T21:34:37.875Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"27","requestCharge":302.71}} -{"timestamp":"2025-09-08T21:34:38.081Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"28","requestCharge":313.95}} -{"timestamp":"2025-09-08T21:34:38.279Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"29","requestCharge":305}} -{"timestamp":"2025-09-08T21:34:38.489Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"3","requestCharge":314.71}} -{"timestamp":"2025-09-08T21:34:38.709Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"30","requestCharge":305.95}} -{"timestamp":"2025-09-08T21:34:38.919Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"31","requestCharge":315.48}} -{"timestamp":"2025-09-08T21:34:39.125Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"32","requestCharge":303.48}} -{"timestamp":"2025-09-08T21:34:39.334Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"33","requestCharge":314.71}} -{"timestamp":"2025-09-08T21:34:39.541Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"34","requestCharge":313.57}} -{"timestamp":"2025-09-08T21:34:39.747Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"35","requestCharge":310.9}} -{"timestamp":"2025-09-08T21:34:40.004Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"36","requestCharge":310.52}} -{"timestamp":"2025-09-08T21:34:40.210Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"37","requestCharge":316.62}} -{"timestamp":"2025-09-08T21:34:40.422Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"38","requestCharge":309.95}} -{"timestamp":"2025-09-08T21:34:40.639Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"39","requestCharge":315.67}} -{"timestamp":"2025-09-08T21:34:40.852Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"4","requestCharge":312.62}} -{"timestamp":"2025-09-08T21:34:41.149Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"40","requestCharge":309.19}} -{"timestamp":"2025-09-08T21:34:41.356Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"41","requestCharge":312.43}} -{"timestamp":"2025-09-08T21:34:41.560Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"42","requestCharge":310.9}} -{"timestamp":"2025-09-08T21:34:41.771Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"43","requestCharge":317.14}} -{"timestamp":"2025-09-08T21:34:41.980Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"44","requestCharge":311.1}} -{"timestamp":"2025-09-08T21:34:42.188Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"45","requestCharge":306.14}} -{"timestamp":"2025-09-08T21:34:42.394Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"46","requestCharge":315.1}} -{"timestamp":"2025-09-08T21:34:42.599Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"47","requestCharge":308.62}} -{"timestamp":"2025-09-08T21:34:42.858Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"48","requestCharge":304.24}} -{"timestamp":"2025-09-08T21:34:43.068Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"49","requestCharge":316.43}} -{"timestamp":"2025-09-08T21:34:43.274Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"5","requestCharge":308.05}} -{"timestamp":"2025-09-08T21:34:43.485Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"50","requestCharge":314.9}} -{"timestamp":"2025-09-08T21:34:43.731Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"6","requestCharge":308.43}} -{"timestamp":"2025-09-08T21:34:43.942Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"7","requestCharge":315.48}} -{"timestamp":"2025-09-08T21:34:44.149Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"8","requestCharge":310.14}} -{"timestamp":"2025-09-08T21:34:44.357Z","level":"DEBUG","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Document inserted successfully","data":{"docId":"9","requestCharge":313.57}} -{"timestamp":"2025-09-08T21:34:44.357Z","level":"INFO","correlationId":"d285ee6f-c04c-4ab7-b524-4fd4bad77a46","message":"Resilient insert operation completed","data":{"inserted":50,"failed":0,"retried":0,"totalRUs":15555.09,"durationMs":11017}} - --------- OPERATION RESULTS -------- -Inserted 50 of 50 documents -Total RUs consumed: 15,555.09 -Average RU per document: 311.10 - --------- CURRENT OPERATION COST -------- -COST OF THIS OPERATION: $0.000124 -This is calculated as: 15,555.09 RUs Ć· 1,000,000 Ɨ $0.008 per million RUs - --------- PROJECTED MONTHLY COST -------- -ESTIMATED MONTHLY COST: $29.21 -This estimate is based on your current consumption rate of 1408.47 RU/s -which would result in approximately 3650.74 million RUs per month. -The calculation extrapolates your current usage pattern over a 30-day period. -``` \ No newline at end of file diff --git a/nosql-vector-search-typescript/docs/INSERT_AT_SCALE_GUIDE.md b/nosql-vector-search-typescript/docs/INSERT_AT_SCALE_GUIDE.md deleted file mode 100644 index 5835163..0000000 --- a/nosql-vector-search-typescript/docs/INSERT_AT_SCALE_GUIDE.md +++ /dev/null @@ -1,261 +0,0 @@ -# Azure Cosmos DB Insert at Scale - Implementation Guide - -## Overview - -This guide provides comprehensive documentation for the enterprise-grade resilient document insertion implementation for Azure Cosmos DB. The implementation is optimized for large-scale vector document workloads but can be adapted for any high-volume insert scenarios. - -## Key Features - -- **Robust retry logic** following Azure Cosmos DB SDK best practices -- **Proper handling of x-ms-retry-after-ms headers** for rate limiting (429 errors) -- **Circuit breaker pattern** (educational) with Azure-native alternatives guidance -- **Comprehensive performance metrics** and RU consumption analysis -- **Adaptive RU scaling recommendations** and physical partition insights -- **High cardinality partition key best practices** for optimal distribution -- **Support for large documents** with vector embeddings (~310 RU per document) -- **Production-ready error handling** and logging with correlation IDs - -## Configuration Options (`InsertConfig`) - -The configuration interface provides comprehensive control over Azure Cosmos DB bulk insert operations with enterprise-grade resilience and monitoring capabilities. - -### Key Configuration Areas: -- **Retry and backoff strategies** aligned with Azure best practices -- **RU consumption control** and throttling prevention -- **Parallelism management** for optimal throughput -- **Monitoring and observability** with correlation IDs -- **Document validation** and schema enforcement -- **High cardinality partition key** configuration - -### Vector Workload Considerations: -Documents with embeddings typically consume ~310 RU each, requiring careful RU/s provisioning and parallelism tuning. - -### maxConcurrency Configuration: -Set to -1 to let the client/SDK maximize parallelism automatically. - -**RU Scaling Considerations:** -- Higher parallelism requires more RU/s to avoid throttling -- Each physical partition can handle up to 10,000 RU/s maximum -- Large documents (like vectors) consume more RUs per operation -- Consider Dynamic Autoscale for production workloads to handle traffic spikes -- For bulk insert scenarios: provision sufficient RU/s before starting, scale down after completion - -## Partition Key Best Practices - -Choose the partition key path carefully (e.g., '/HotelId'). - -**PARTITION KEY BEST PRACTICES:** -- Choose high cardinality fields (many distinct values across documents) -- Avoid "hot" partition keys that concentrate traffic on few partitions -- Good examples: userId, deviceId, locationId, customerId -- Poor examples: status, category, type, country (low cardinality) -- Aim for even distribution of data and requests across partitions -- Consider your query patterns - partition key should be used in most queries - -**For large insert workloads:** -- High cardinality enables better parallelism across multiple physical partitions -- Each physical partition can handle up to 10,000 RU/s maximum -- More partitions = better insert performance for high-volume scenarios - -## Error Handling - -### Structured Error Information (`ErrorDetails`) - -Provides comprehensive error parsing for Azure Cosmos DB operations, including proper handling of rate limiting headers and retry guidance. - -**Key features:** -- Extracts x-ms-retry-after-ms header from 429 (rate limiting) responses -- Categorizes errors as retryable vs non-retryable based on Azure best practices -- Preserves raw error objects for advanced debugging scenarios -- Provides human-readable error messages with Azure-specific context - -### Error Parsing (`parseCosmosError`) - -Handles Azure Cosmos DB SDK specific error structures and extracts critical information for proper retry logic and user feedback. Follows Azure best practices for error categorization and retry-after header handling. - -**Key functionality:** -- Extracts x-ms-retry-after-ms header from 429 rate limiting responses -- Handles multiple error code formats (statusCode, code, status, x-ms-substatus) -- Categorizes errors as retryable vs non-retryable per Azure guidelines -- Provides context-aware error messages for common Azure Cosmos DB scenarios -- Preserves raw error objects for advanced debugging and telemetry - -**References:** -- Azure Cosmos DB SDK best practices for resilient applications -- Microsoft Learn documentation on error handling patterns - -## Performance Monitoring (`MetricsCollector`) - -Provides detailed performance analytics, RU consumption tracking, and scaling insights for Azure Cosmos DB bulk insert operations. Essential for optimizing RU provisioning and identifying performance bottlenecks. - -**Capabilities:** -- Real-time RU consumption monitoring and rate calculation -- Latency tracking with statistical analysis (avg, max) -- Error categorization and frequency analysis -- RU scaling recommendations based on consumption patterns -- Physical partition analysis for optimizing parallelism -- Production-ready metrics for Azure Monitor integration - -**Use case:** Vector document workloads consuming ~310 RU per operation benefit significantly from continuous monitoring and scaling recommendations. - -## Document Validation (`validateDocument`) - -Validates documents before insertion to prevent errors and optimize performance. Includes Azure Cosmos DB specific validations and best practices for vector document workloads with large embeddings. - -**Validation checks:** -- Document structure and JSON validity -- Required ID field presence (configurable field name) -- Document size limits (Azure Cosmos DB 2MB maximum) -- Optional schema validation for type safety -- Vector embedding compatibility for large documents - -**Performance considerations:** -- Large vector documents (~310 RU each) require special handling -- Document size directly impacts RU consumption and latency -- Validation prevents costly insertion failures and retries - -## RU Scaling Guidance - -### Before Starting Large Insert Operations - -**RU Scaling Guidance for Large Insert Workloads:** - -Azure Cosmos DB provides several strategies for handling high-volume insert operations: - -#### 1. Dynamic Autoscale (Recommended for Production): -- Automatically scales RU/s from 10% to 100% of max RU/s based on demand -- Best for unpredictable workloads with varying traffic patterns -- Set max RU/s high enough to handle peak insert loads -- Automatically scales down during low activity periods - -#### 2. Manual Provisioned Throughput: -- Set RU/s high during large insert operations (ingestion periods) -- Scale back down after bulk operations complete to save costs -- Requires manual intervention but provides precise control -- Good for predictable batch processing scenarios - -#### 3. Throughput Buckets (Preview): -- Fine-grained control over RU/workload distribution -- Allows bursting beyond provisioned throughput for short periods -- Ideal for handling traffic spikes during bulk operations - -### Physical Partition Considerations: -- Each physical partition can handle up to 10,000 RU/s maximum -- Cosmos DB creates new physical partitions approximately every ~10,000 RU/s -- More partitions = better parallelism for insert operations -- High cardinality partition keys enable better distribution across partitions - -### For Vector Workloads: -Vector documents consume ~310 RU each, so consider: -- 1,000 docs = ~310,000 RU total (requires multiple physical partitions) -- For optimal performance: provision 5,000-15,000 RU/s during ingestion -- Use Dynamic Autoscale with max 15,000 RU/s for production workloads - -## Main Function Implementation - -The main execution function demonstrates enterprise-grade Azure Cosmos DB bulk insert with complete example showcasing best practices for large-scale document insertion with vector embeddings. - -### Features Demonstrated: -- Passwordless authentication with Managed Identity -- High cardinality partition key configuration for optimal distribution -- Vector document handling (~310 RU per document with 1536-dimensional embeddings) -- Comprehensive RU scaling guidance and recommendations -- Real-time performance monitoring and throttling detection -- Azure best practices for production workloads - -### Vector Workload Specifics: -- Documents contain text-embedding-ada-002 embeddings (1536 dimensions) -- Each document consumes ~310 RU due to size and complexity -- Requires careful RU provisioning and parallelism tuning -- Benefits from Dynamic Autoscale and high RU provisioning during ingestion - -### Production Recommendations: -- Use Dynamic Autoscale with max 15,000+ RU/s for vector workloads -- Enable Throughput Buckets for burst capacity handling -- Monitor with Azure Application Insights for comprehensive observability -- Implement proper retry policies and exponential backoff strategies - -## Database and Container Management - -### Ensuring Resources Exist (`ensureDatabaseAndContainer`) - -Creates database and container resources if they don't exist, with proper partition key configuration for large-scale insert operations. Provides comprehensive error handling and guidance for manual resource creation. - -**Key features:** -- Automatic database and container creation with proper partition key setup -- Validation of partition key configuration (cannot be changed after creation) -- Comprehensive error messages with Azure CLI commands for manual setup -- Best practices guidance for partition key selection -- Support for high cardinality partition keys required for vector workloads - -**IMPORTANT:** Partition key cannot be changed after container creation. Ensure the partition key provides good distribution for your data and query patterns. - -## Circuit Breaker Implementation (Educational) - -**IMPORTANT:** This is a custom implementation for educational purposes. - -For production workloads, consider using Azure Cosmos DB's native throughput management: -- **Throughput Buckets (Preview):** https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet -- **Dynamic Autoscale:** Automatically adjusts RU/s based on demand -- **Request rate limiting:** Handled by the SDK with built-in retry policies - -### Preferred Approach for RU/Workload Resource Contention Control: -1. Use Dynamic Autoscale with appropriate max RU/s limits -2. Configure Throughput Buckets (when available) for fine-grained control -3. Let the Azure Cosmos DB SDK handle retry logic and backoff - -## Azure Best Practices for Production - -### Recommended Azure Features: -- **Dynamic Autoscale:** Automatic RU/s scaling based on demand (10% to 100% of max) -- **Throughput Buckets (Preview):** Fine-grained RU/workload burst control -- **Azure Monitor integration:** For comprehensive observability -- **Managed Identity authentication:** For secure, passwordless connections - -### RU Scaling Strategies: - -#### 1. Dynamic Autoscale (Recommended): -- Enable autoscale with appropriate max RU/s (e.g., 15,000 RU/s) -- Automatically scales from 10% to 100% based on demand -- Handles traffic spikes without manual intervention -- Scales down during low activity to reduce costs - -#### 2. Manual Provisioned Throughput: -- Scale UP RU/s before bulk insert operations -- Monitor RU consumption and 429 throttling errors -- Scale DOWN after bulk operations complete -- Good for predictable batch processing workloads - -#### 3. Throughput Buckets (Preview): -- Fine-grained control over RU bursting behavior -- Handle short-term traffic spikes beyond provisioned capacity -- Ideal for workloads with occasional bulk operations - -#### 4. Physical Partition Optimization: -- Each partition handles maximum 10,000 RU/s -- Higher RU/s = more partitions = better insert parallelism -- Use high cardinality partition keys for even distribution -- Current setup: partition key enables good distribution - -## Troubleshooting - -### Throttling Detection (429 errors) -When 429 errors are detected, the system provides scaling recommendations: -- Increase provisioned RU/s or enable Dynamic Autoscale -- Consider using Throughput Buckets for burst capacity -- Reduce parallelism (maxConcurrency) or batch size -- Verify partition key has high cardinality for even distribution - -### Performance Monitoring -The system provides real-time insights: -- RU consumption rate (RU/s and RU/min) -- Scaling recommendations based on consumption patterns -- Physical partitions analysis for optimization -- Error breakdown and frequency analysis - -## Links and References - -- [Azure Cosmos DB Throughput Buckets](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/throughput-buckets?tabs=dotnet) -- [Design Resilient Applications with Azure Cosmos DB SDKs](https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/resilient-applications) -- [Azure Cosmos DB Partitioning Overview](https://learn.microsoft.com/en-us/azure/cosmos-db/partitioning-overview) -- [Common Azure Cosmos DB REST Response Headers](https://learn.microsoft.com/en-us/rest/api/cosmos-db/common-cosmosdb-rest-response-headers) \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/create-embeddings.ts b/nosql-vector-search-typescript/src/create-embeddings.ts deleted file mode 100644 index 2dced88..0000000 --- a/nosql-vector-search-typescript/src/create-embeddings.ts +++ /dev/null @@ -1,310 +0,0 @@ -/** - * Module for creating embedding vectors using OpenAI API - * Supports text embedding models for generating embeddings - * that can be used with Cosmos DB MongoDB vCore vector search - */ -import * as path from "node:path"; -import { AzureOpenAI } from "openai"; -import { Embedding } from "openai/resources"; -import { readFileReturnJson, writeFileJson, JsonData, getClientsPasswordless } from "./utils.js"; - -// ESM specific features - create __dirname equivalent -import { fileURLToPath } from "node:url"; -import { dirname } from "node:path"; -const __filename = fileURLToPath(import.meta.url); -const __dirname = dirname(__filename); - - -const deployment = process.env.AZURE_OPENAI_EMBEDDING_MODEL!; -const dataWithVectors = process.env.DATA_FILE_WITH_VECTORS!; -const dataWithoutVectors = process.env.DATA_FILE_WITHOUT_VECTORS!; -const fieldToEmbed = process.env.FIELD_TO_EMBED! || "description"; -const newEmbeddedField = process.env.EMBEDDED_FIELD! || deployment; -const batchSize = parseInt(process.env.EMBEDDING_BATCH_SIZE || '16', 10); - -// Define a reusable delay function -async function delay(ms: number = 200): Promise { - await new Promise(resolve => setTimeout(resolve, ms)); -} - -export async function createEmbeddings(client: AzureOpenAI, model: string, inputItems: string[]): Promise { - const response = await client.embeddings.create({ - model, - input: inputItems - }); - - if (!response.data || response.data.length === 0) { - throw new Error(`No embedding data returned`); - } - return response.data; -} - -/** - * Configuration options for embedding processing - */ -export interface EmbeddingConfig { - /** Field name to embed. If null/undefined, entire document will be embedded */ - fieldToEmbed?: string; - /** Name of the new field where embeddings will be stored */ - newEmbeddedField: string; - /** Maximum number of items to process */ - maxEmbeddings?: number; - /** Fields to exclude when embedding entire document */ - excludeFields?: string[]; - /** Custom separator for joining document fields (default: " ") */ - fieldSeparator?: string; - /** Whether to include field names in document embedding (default: false) */ - includeFieldNames?: boolean; -} - -/** - * Extract text content from a document for embedding - */ -function extractTextFromDocument( - item: T, - fieldToEmbed?: string, - excludeFields: string[] = [], - fieldSeparator: string = " ", - includeFieldNames: boolean = false -): string { - // If specific field is requested, extract only that field - if (fieldToEmbed) { - const fieldValue = (item as any)[fieldToEmbed]; - if (!fieldValue) { - console.warn(`Item is missing the field to embed: ${fieldToEmbed}`); - return ""; // Provide a fallback value to prevent API errors - } - return String(fieldValue); - } - - // Embed entire document - if (!item || typeof item !== 'object') { - return String(item || ""); - } - - const textParts: string[] = []; - const itemObj = item as Record; - - // Default fields to exclude for document embedding - const defaultExcludeFields = ['id', '_id', 'embedding', 'embeddings', 'vector', 'vectors']; - const fieldsToExclude = [...defaultExcludeFields, ...excludeFields]; - - Object.entries(itemObj).forEach(([key, value]) => { - // Skip excluded fields - if (fieldsToExclude.includes(key)) { - return; - } - - // Skip null, undefined, or empty values - if (value == null || value === "") { - return; - } - - // Convert value to string - let textValue: string; - if (typeof value === 'object') { - // For objects/arrays, stringify them - textValue = JSON.stringify(value); - } else { - textValue = String(value); - } - - // Add to text parts with optional field name - if (includeFieldNames) { - textParts.push(`${key}: ${textValue}`); - } else { - textParts.push(textValue); - } - }); - - return textParts.join(fieldSeparator); -} - -/** - * Prepare batch of texts for embedding - */ -function prepareBatchTexts( - batchItems: T[], - config: EmbeddingConfig -): string[] { - return batchItems.map(item => extractTextFromDocument( - item, - config.fieldToEmbed, - config.excludeFields, - config.fieldSeparator, - config.includeFieldNames - )); -} - -export async function processEmbeddingBatch( - client: AzureOpenAI, - model: string, - fieldToEmbed: string | null | undefined, - newEmbeddedField: string, - maxEmbeddings: number, - items: T[] -): Promise; - -export async function processEmbeddingBatch( - client: AzureOpenAI, - model: string, - config: EmbeddingConfig, - items: T[] -): Promise; - -export async function processEmbeddingBatch( - client: AzureOpenAI, - model: string, - fieldToEmbedOrConfig: string | null | undefined | EmbeddingConfig, - newEmbeddedFieldOrItems: string | T[], - maxEmbeddingsOrUndefined?: number, - itemsOrUndefined?: T[] -): Promise { - // Handle overloaded function signatures - let config: EmbeddingConfig; - let items: T[]; - - if (Array.isArray(newEmbeddedFieldOrItems)) { - // New signature: processEmbeddingBatch(client, model, config, items) - config = fieldToEmbedOrConfig as EmbeddingConfig; - items = newEmbeddedFieldOrItems; - } else { - // Legacy signature: processEmbeddingBatch(client, model, fieldToEmbed, newEmbeddedField, maxEmbeddings, items) - const fieldToEmbed = fieldToEmbedOrConfig as string | null | undefined; - const newEmbeddedField = newEmbeddedFieldOrItems as string; - const maxEmbeddings = maxEmbeddingsOrUndefined; - items = itemsOrUndefined!; - - config = { - fieldToEmbed: fieldToEmbed || undefined, - newEmbeddedField, - maxEmbeddings - }; - } - - // Validation - if (!Array.isArray(items) || items.length === 0) { - throw new Error("Items must be a non-empty array"); - } - - if (!config.newEmbeddedField) { - throw new Error("New embedded field name must be specified"); - } - - const itemsWithEmbeddings: T[] = []; - const maxItems = Math.min(config.maxEmbeddings || items.length, items.length); - - const embeddingMode = config.fieldToEmbed ? `field '${config.fieldToEmbed}'` : 'entire document'; - console.log(`Processing ${maxItems} items for embedding (${embeddingMode})`); - - if (!config.fieldToEmbed) { - console.log(`Excluding fields: ${['id', '_id', 'embedding', 'embeddings', 'vector', 'vectors', ...(config.excludeFields || [])].join(', ')}`); - } - - // Process in batches to avoid rate limits and memory issues - for (let i = 0; i < maxItems; i += batchSize) { - const batchEnd = Math.min(i + batchSize, maxItems); - console.log(`Processing batch: ${i} to ${batchEnd - 1} (of ${maxItems} items)`); - - const batchItems = items.slice(i, batchEnd); - const textsToEmbed = prepareBatchTexts(batchItems, config); - - try { - const embeddings = await createEmbeddings(client, model, textsToEmbed); - - embeddings.forEach((embeddingData, index) => { - const originalItem = batchItems[index]; - const newItem = { - ...originalItem, - [config.newEmbeddedField]: embeddingData.embedding - }; - itemsWithEmbeddings.push(newItem); - }); - - // Add a small delay between batches to avoid rate limiting - if (batchEnd < maxItems) { - await delay(); - } - } catch (error) { - console.error(`Error generating embeddings for batch ${i}:`, error); - throw error; - } - } - - return itemsWithEmbeddings; -} - -// Testing function to demonstrate both embedding modes -export async function testEmbeddingModes( - client: AzureOpenAI, - model: string, - sampleItems: any[] -): Promise { - console.log("Testing field-specific embedding..."); - - // Test field-specific embedding (legacy style) - const fieldEmbeddings = await processEmbeddingBatch( - client, - model, - "hotelName", // embed only the hotel name field - "nameEmbedding", - 3, - sampleItems - ); - - console.log(`Generated ${fieldEmbeddings.length} field-specific embeddings`); - - console.log("\nTesting full document embedding..."); - - // Test full document embedding (new config style) - const docEmbeddings = await processEmbeddingBatch( - client, - model, - { - // No fieldToEmbed specified = embed entire document - newEmbeddedField: "documentEmbedding", - maxEmbeddings: 3, - excludeFields: ["hotelId", "category"], // custom exclusions - fieldSeparator: " | ", - includeFieldNames: true - }, - sampleItems - ); - - console.log(`Generated ${docEmbeddings.length} full document embeddings`); -} - -// Main execution function -async function main(): Promise { - try { - const { aiClient } = getClientsPasswordless(); - - if (!aiClient) { - throw new Error('OpenAI client is not configured properly. Please check your environment variables.'); - } - - const data = await readFileReturnJson(path.join(__dirname, "..", dataWithoutVectors!)); - const model = deployment; - const maxEmbeddings = data.length; - - const embeddings = await processEmbeddingBatch( - aiClient, - model, - fieldToEmbed, - newEmbeddedField, - maxEmbeddings, - data - ); - - await writeFileJson(path.join(__dirname, "..", dataWithVectors!), embeddings); - - } catch (error) { - console.error(`Failed to save embeddings to file: ${(error as Error).message}`); - process.exit(1); - } -} - -// Only run main if this file is being executed directly -if (import.meta.url === `file://${process.argv[1]}`) { - main(); -} \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/index-and-query.ts b/nosql-vector-search-typescript/src/index-and-query.ts deleted file mode 100644 index 90c2f5e..0000000 --- a/nosql-vector-search-typescript/src/index-and-query.ts +++ /dev/null @@ -1,111 +0,0 @@ -import path from 'path'; -import { readFileReturnJson, getClientsPasswordless, insertData } from './utils.js'; -import { VectorEmbeddingPolicy, VectorEmbeddingDataType, VectorEmbeddingDistanceFunction, IndexingPolicy, VectorIndexType } from '@azure/cosmos'; -// ESM specific features - create __dirname equivalent -import { fileURLToPath } from "node:url"; -import { dirname } from "node:path"; -const __filename = fileURLToPath(import.meta.url); -const __dirname = dirname(__filename); - -const config = { - query: "find a hotel by a lake with a mountain view", - dbName: "Hotels", - collectionName: "hotels", - indexName: "vectorIndex", - dataFile: process.env.DATA_FILE_WITH_VECTORS!, - batchSize: parseInt(process.env.LOAD_SIZE_BATCH! || '100', 10), - embeddingField: process.env.EMBEDDED_FIELD!, - embeddedField: process.env.EMBEDDED_FIELD!, - embeddingDimensions: parseInt(process.env.EMBEDDING_DIMENSIONS!, 10), - deployment: process.env.AZURE_OPENAI_EMBEDDING_MODEL!, -}; - -async function main() { - - const { aiClient, dbClient } = getClientsPasswordless(); - - try { - - if (!aiClient) { - throw new Error('OpenAI client is not configured properly. Please check your environment variables.'); - } - - if (!dbClient) { - throw new Error('Cosmos DB client is not configured properly. Please check your environment variables.'); - } - - // Get database reference - const { database } = await dbClient.databases.createIfNotExists({ id: config.dbName }); - - // Create the vector index - const vectorEmbeddingPolicy: VectorEmbeddingPolicy = { - vectorEmbeddings: [ - { - path: "/text_embedding_ada_002", - dataType: VectorEmbeddingDataType.Float32, - dimensions: config.embeddingDimensions, - distanceFunction: VectorEmbeddingDistanceFunction.Cosine, - } - ], - }; - - const indexingPolicy: IndexingPolicy = { - vectorIndexes: [ - { path: "/text_embedding_ada_002", type: VectorIndexType.DiskANN }, - ], - includedPaths: [ - { - path: "/*", - }, - ], - excludedPaths: [ - { - path: "/text_embedding_ada_002/*", - } - ] - }; - // create container - const { resource: containerdef } = await database.containers.createIfNotExists({ - id: config.collectionName, - vectorEmbeddingPolicy: vectorEmbeddingPolicy, - indexingPolicy: indexingPolicy, - }); - // get container reference - const container = database.container(config.collectionName); - - console.log('Created collection:', config.collectionName); - const data = await readFileReturnJson(path.join(__dirname, "..", config.dataFile)); - const insertSummary = await insertData(config, container, data); - - console.log('Insert summary:', insertSummary); - - // Create embedding for the query - const createEmbeddedForQueryResponse = await aiClient.embeddings.create({ - model: config.deployment, - input: [config.query] - }); - - // Perform the vector similarity search - const { resources } = await container.items - .query({ - query: "SELECT TOP 5 c.HotelName, VectorDistance(c.contentVector, @embedding) AS SimilarityScore FROM c ORDER BY VectorDistance(c.contentVector, @embedding)", - parameters: [{ name: "@embedding", value: createEmbeddedForQueryResponse.data[0].embedding }] - }) - .fetchAll(); - - for (const item of resources) { - console.log(`${item.HotelName} with score ${item.SimilarityScore} `); - } - - - } catch (error) { - console.error('App failed:', error); - process.exitCode = 1; - } -} - -// Execute the main function -main().catch(error => { - console.error('Unhandled error:', error); - process.exitCode = 1; -}); \ No newline at end of file diff --git a/nosql-vector-search-typescript/src/insert-at-scale.ts b/nosql-vector-search-typescript/src/insert-at-scale.ts deleted file mode 100644 index 001b0fd..0000000 --- a/nosql-vector-search-typescript/src/insert-at-scale.ts +++ /dev/null @@ -1,80 +0,0 @@ -/** - * Enterprise-grade resilient document insertion for Azure Cosmos DB - * - * For comprehensive documentation, see: ./docs/INSERT_AT_SCALE_GUIDE.md - * - * Key Features: Robust retry logic, RU scaling guidance, vector document support, - * performance monitoring, and Azure best practices implementation. - */ -import { JsonData, readFileReturnJson, getClientsPasswordless } from './utils.js'; -import { resilientInsert, ensureDatabaseAndContainer } from './cosmos-operations.js'; -import { DEFAULT_INSERT_CONFIG } from './interfaces.js'; - -/** - * Main execution function demonstrating Azure Cosmos DB bulk insert best practices - * See INSERT_AT_SCALE_GUIDE.md for comprehensive documentation - */ -async function main() { - - // Create Cosmos client as singleton per account and application - const { dbClient: client } = getClientsPasswordless(); - - if (!client) { - throw new Error('Cosmos DB client is not configured properly. Please check your environment variables.'); - } - - // Database and container names - const databaseName = 'Hotels'; - const containerName = 'hotels-at-scale-2'; - const config = { - ...DEFAULT_INSERT_CONFIG, - batchSize: 50, - maxRetries: 3, - maxConcurrency: -1 // Let client/SDK maximize parallelism - }; - - console.log(`Using database ${databaseName}, container ${containerName}`); - console.log(`Configuration: ${config.maxConcurrency} concurrency, ${config.batchSize} batch size`); - - try { - // Ensure database and container exist - const { container } = await ensureDatabaseAndContainer( - client, - databaseName, - containerName, - config.partitionKeyPath - ); - - // Load and insert data - const dataPath = process.env.DATA_FILE_WITH_VECTORS || '../../data/HotelsData_toCosmosDB_Vector.json'; - console.log(`Loading data from ${dataPath}...`); - const data = await readFileReturnJson(dataPath); - - console.log(`Starting insert of ${data.length} documents...`); - const result = await resilientInsert(container, data, config); - - // Show operation results - console.log(`\nāœ… Operation Complete:`); - console.log(` Inserted: ${result.inserted}/${result.total} documents`); - console.log(` Failed: ${result.failed}, Retries: ${result.retried}`); - console.log(` RU consumed: ${result.metrics.totalRu.toLocaleString()}`); - console.log(` Duration: ${(result.metrics.totalDurationMs / 1000).toFixed(1)}s`); - - // Show errors if any occurred - if (Object.keys(result.metrics.errorCounts).length > 0) { - console.log(`\nāš ļø Errors encountered:`); - for (const [errorCode, count] of Object.entries(result.metrics.errorCounts)) { - console.log(` ${errorCode}: ${count} occurrences`); - } - if (result.metrics.errorCounts['429']) { - console.log(` šŸ“– See INSERT_AT_SCALE_GUIDE.md for throttling solutions`); - } - } - - console.log(`\nšŸ“– For detailed guidance, see INSERT_AT_SCALE_GUIDE.md`); - } catch (err: any) { - throw err; // Error details handled in ensureDatabaseAndContainer - } -} - -main().catch(console.error); \ No newline at end of file From 5ab77e3d5b38e14edd06560d340aad1ccc97a682 Mon Sep 17 00:00:00 2001 From: Dina Berry Date: Tue, 4 Nov 2025 10:01:08 -0800 Subject: [PATCH 3/4] bulk operations work --- nosql-insert-at-scale-typescript/.env.example | 24 - .../HotelsData.JSON | 8820 ++ .../HotelsData_text_embedding_small_3.json | 88237 ++++++++++++++++ nosql-insert-at-scale-typescript/README.md | 234 +- .../docs/output/delete.txt | 245 + .../docs/output/insert.txt | 159 + .../package-lock.json | 762 + nosql-insert-at-scale-typescript/package.json | 5 +- .../src/create-embeddings.ts | 132 + .../src/delete.ts | 302 + .../src/{insert-at-scale.ts => insert.ts} | 60 +- .../src/utils/cosmos-operations.ts | 154 +- .../src/utils/cosmos-resiliency.ts | 801 +- .../src/utils/interfaces.ts | 37 - .../src/utils/metrics.ts | 31 +- .../src/utils/pricing.ts | 223 + .../src/utils/resilience-interfaces.ts | 117 - .../src/utils/utils.ts | 414 +- 18 files changed, 100298 insertions(+), 459 deletions(-) delete mode 100644 nosql-insert-at-scale-typescript/.env.example create mode 100644 nosql-insert-at-scale-typescript/HotelsData.JSON create mode 100644 nosql-insert-at-scale-typescript/HotelsData_text_embedding_small_3.json create mode 100644 nosql-insert-at-scale-typescript/docs/output/delete.txt create mode 100644 nosql-insert-at-scale-typescript/docs/output/insert.txt create mode 100644 nosql-insert-at-scale-typescript/package-lock.json create mode 100644 nosql-insert-at-scale-typescript/src/create-embeddings.ts create mode 100644 nosql-insert-at-scale-typescript/src/delete.ts rename nosql-insert-at-scale-typescript/src/{insert-at-scale.ts => insert.ts} (77%) delete mode 100644 nosql-insert-at-scale-typescript/src/utils/interfaces.ts create mode 100644 nosql-insert-at-scale-typescript/src/utils/pricing.ts delete mode 100644 nosql-insert-at-scale-typescript/src/utils/resilience-interfaces.ts diff --git a/nosql-insert-at-scale-typescript/.env.example b/nosql-insert-at-scale-typescript/.env.example deleted file mode 100644 index e43c5f9..0000000 --- a/nosql-insert-at-scale-typescript/.env.example +++ /dev/null @@ -1,24 +0,0 @@ -DEBUG=true - -# ===COSMOS_CONTAINER_NAME=hotels-insert-scale==================================== -# Data File Paths and Vector Configuration -# ======================================== -DATA_FILE_WITH_VECTORS=../../data/HotelsData_toCosmosDB_Vector.json -EMBEDDED_FIELD=text_embedding_ada_002 -EMBEDDING_DIMENSIONS=1536 -LOAD_SIZE_BATCH=100 - -# ======================================== -# Cosmos DB Connection Settings -# ======================================== -COSMOS_ENDPOINT= -COSMOS_KEY= -COSMOS_CONNECTION_STRING -COSMOS_DB_NAME=Hotels -COSMOS_CONTAINER_NAME=Insert-at-scale -COSMOS_RESOURCE_GROUP=rg-diberry - -# ======================================== -# Cosmos DB Partition Configuration -# ======================================== -PARTITION_KEY_PATH=/HotelId \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/HotelsData.JSON b/nosql-insert-at-scale-typescript/HotelsData.JSON new file mode 100644 index 0000000..80a6a13 --- /dev/null +++ b/nosql-insert-at-scale-typescript/HotelsData.JSON @@ -0,0 +1,8820 @@ +[ + { + "HotelId": "1", + "HotelName": "Stay-Kay City Hotel", + "Description": "This classic hotel is fully-refurbished and ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Times Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.", + "Description_fr": "Cet hĆ“tel classique entiĆØrement rĆ©novĆ© est idĆ©alement situĆ© sur l'artĆØre commerƧante principale de la ville, au cœur de New York. ƀ quelques minutes se trouvent Times Square et le centre historique de la ville, ainsi que d'autres lieux d'intĆ©rĆŖt qui font de New York l'une des villes les plus attrayantes et cosmopolites d'AmĆ©rique.", + "Category": "Boutique", + "Tags": [ "view", "air conditioning", "concierge" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2022-01-18T00:00:00Z", + "Rating": 3.60, + "Address": { + "StreetAddress": "677 5th Ave", + "City": "New York", + "StateProvince": "NY", + "PostalCode": "10022", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -73.975403, 40.760586 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 150.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower", "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "coffee maker", "coffee maker" ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 234.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 128.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker", "jacuzzi tub" ] + } + ] + }, + { + "HotelId": "10", + "HotelName": "Countryside Hotel", + "Description": "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24\/7 support, bowling alley, fitness center and more.", + "Description_fr": "Ɖconomisez jusqu'Ć  50% sur les hĆ“tels traditionnels. WiFi gratuit, trĆØs bien situĆ© prĆØs du centre-ville, cuisine complĆØte, laveuse & sĆ©cheuse, support 24\/7, bowling, centre de fitness et plus encore.", + "Category": "Extended-Stay", + "Tags": [ "24-hour front desk service", "laundry service", "free wifi" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-09-06T00:00:00Z", + "Rating": 2.70, + "Address": { + "StreetAddress": "6910 Fayetteville Rd", + "City": "Durham", + "StateProvince": "NC", + "PostalCode": "27713", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -78.940483, 35.904160 ] + }, + "Rooms": [ + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 244.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 76.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 150.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 238.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 122.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "coffee maker" ] + } + ] + }, + { + "HotelId": "11", + "HotelName": "Royal Cottage Resort", + "Description": "Your home away from home. Brand new fully equipped premium rooms, fast WiFi, full kitchen, washer & dryer, fitness center. Inner courtyard includes water features and outdoor seating. All units include fireplaces and small outdoor balconies. Pets accepted.", + "Description_fr": "Votre maison loin de chez vous. Flambant neuf chambres Premium entiĆØrement Ć©quipĆ©es, WiFi rapide, cuisine complĆØte, laveuse & sĆ©cheuse, centre de fitness. La cour intĆ©rieure comprend des points d'eau et des siĆØges Ć  l'extĆ©rieur. Toutes les unitĆ©s comprennent des cheminĆ©es et de petits balcons extĆ©rieurs. Animaux acceptĆ©s.", + "Category": "Extended-Stay", + "Tags": [ "free wifi", "free parking", "24-hour front desk service" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2023-11-26T00:00:00Z", + "Rating": 2.50, + "Address": { + "StreetAddress": "22422 29th Dr SE", + "City": "Bothell", + "StateProvince": "WA", + "PostalCode": "98021", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.196700, 47.794540 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "tv", "coffee maker" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "tv", "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 61.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 239.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 132.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "vcr/dvd", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 83.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (City View)", + "Description_fr": "Suite, 1 grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 242.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "tv", "vcr/dvd" ] + } + ] + }, + { + "HotelId": "12", + "HotelName": "Winter Panorama Resort", + "Description": "Plenty of great skiing, outdoor ice skating, sleigh rides, tubing and snow biking. Yoga, group exercise classes and outdoor hockey are available year-round, plus numerous options for shopping as well as great spa services. Newly-renovated with large rooms, free 24-hr airport shuttle & a new restaurant. Rooms\/suites offer mini-fridges & 49-inch HDTVs.", + "Description_fr": "Beaucoup de superbes pistes de ski, de patinage sur glace en plein air, de promenades en traĆ®neau, de tubes et de vĆ©lo de neige. Yoga, cours de groupe et hockey en plein air sont disponibles toute l'annĆ©e, ainsi que de nombreuses options de shopping ainsi que d'excellents services de spa. RĆ©cemment rĆ©novĆ©, avec de grandes chambres, une navette gratuite de 24 heures par aĆ©roport et un nouveau restaurant. Les chambres\/suites offrent des mini-frigos et des TVHD de 49 pouces.", + "Category": "Resort and Spa", + "Tags": [ "restaurant", "bar", "pool" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2022-09-16T00:00:00Z", + "Rating": 4.50, + "Address": { + "StreetAddress": "9025 SW Hillman Ct", + "City": "Wilsonville", + "StateProvince": "OR", + "PostalCode": "97070", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.770576, 45.322392 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "suite", "suite" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 141.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 154.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower", "tv" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "tv" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "coffee maker" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "jacuzzi tub", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 133.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "suite" ] + } + ] + }, + { + "HotelId": "13", + "HotelName": "Luxury Lion Resort", + "Description": "Unmatched Luxury. Visit our downtown hotel to indulge in luxury accommodations. Moments from the stadium and transportation hubs, we feature the best in convenience and comfort.", + "Description_fr": "Un luxe incomparable. Visitez notre hĆ“tel du centre-ville pour profiter d'un hĆ©bergement de luxe. ƀ quelques minutes du stade et des centres de transport, nous vous proposons le meilleur en matiĆØre de commoditĆ© et de confort.", + "Category": "Luxury", + "Tags": [ "bar", "concierge", "restaurant" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2020-03-18T00:00:00Z", + "Rating": 4.10, + "Address": { + "StreetAddress": "3 Cityplace Dr", + "City": "St. Louis", + "StateProvince": "MO", + "PostalCode": "63141", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -90.440810, 38.672190 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 242.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "suite", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "tv" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 137.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 128.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker", "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 163.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "suite" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + } + ] + }, + { + "HotelId": "14", + "HotelName": "Twin Vortex Hotel", + "Description": "New experience in the making. Be the first to experience the luxury of the Twin Vortex. Reserve one of our newly-renovated guest rooms today.", + "Description_fr": "Nouvelle expĆ©rience dans la fabrication. Soyez les premiers Ć  dĆ©couvrir le luxe du Twin vortex. RĆ©servez une de nos chambres rĆ©cemment rĆ©novĆ©es aujourd'hui.", + "Category": "Luxury", + "Tags": [ "bar", "restaurant", "concierge" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2023-11-14T00:00:00Z", + "Rating": 4.40, + "Address": { + "StreetAddress": "1950 N Stemmons Fw", + "City": "Dallas", + "StateProvince": "TX", + "PostalCode": "75207", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -96.819412, 32.800762 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "tv" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub", "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 151.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "tv" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "coffee maker" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "bathroom shower" ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 151.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "coffee maker" ] + } + ] + }, + { + "HotelId": "15", + "HotelName": "By the Market Hotel", + "Description": "Book now and Save up to 30%. Central location. Walking distance from the Empire State Building & Times Square, in the Chelsea neighborhood. Brand new rooms. Impeccable service.", + "Description_fr": "RĆ©servez dĆØs maintenant et Ć©conomisez jusqu'Ć  30%. Emplacement central. A quelques pas de l'Empire State Building & Times Square, dans le quartier de Chelsea. Chambres flambant neuves. Service impeccable.", + "Category": "Budget", + "Tags": [ "coffee in lobby", "free wifi", "24-hour front desk service" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2023-10-30T00:00:00Z", + "Rating": 3.30, + "Address": { + "StreetAddress": "11 Times Sq", + "City": "New York", + "StateProvince": "NY", + "PostalCode": "10036", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -73.989792, 40.756729 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "vcr/dvd", "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 130.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 259.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 135.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "suite" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower", "suite" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 131.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "suite", "suite" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 154.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "vcr/dvd", "vcr/dvd" ] + } + ] + }, + { + "HotelId": "16", + "HotelName": "Double Sanctuary Resort", + "Description": "5 star Luxury Hotel - Biggest Rooms in the city. #1 Hotel in the area listed by Traveler magazine. Free WiFi, Flexible check in\/out, Fitness Center & espresso in room.", + "Description_fr": "5 star hĆ“tel de luxe-plus grandes chambres de la ville. #1 hĆ“tel dans les environs Ć©numĆ©rĆ©s par Traveler magazine. WiFi gratuit, Check-in\/out flexible, centre de fitness et espresso dans la chambre.", + "Category": "Resort and Spa", + "Tags": [ "view", "pool", "restaurant", "bar", "continental breakfast" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-08-05T00:00:00Z", + "Rating": 4.20, + "Address": { + "StreetAddress": "2211 Elliott Ave", + "City": "Seattle", + "StateProvince": "WA", + "PostalCode": "98121", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.347771, 47.611660 ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 68.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 108.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 97.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "suite" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "tv", "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 67.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "coffee maker", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "suite" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "suite", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 131.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "tv" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower" ] + } + ] + }, + { + "HotelId": "17", + "HotelName": "City Skyline Antiquity Hotel", + "Description": "In vogue since 1888, the Antiquity Hotel takes you back to bygone era. From the crystal chandeliers that adorn the Green Room, to the arched ceilings of the Grand Hall, the elegance of old New York beckons. Elevate Your Experience. Upgrade to a premiere city skyline view for less, where old world charm combines with dramatic views of the city, local cathedral and midtown.", + "Description_fr": "En vogue depuis 1888, l'Antiquity Hotel vous ramĆØne Ć  une Ć©poque rĆ©volue. Des lustres en cristal qui ornent la Green Room aux plafonds voĆ»tĆ©s du Grand Hall, l'Ć©lĆ©gance du vieux New York embrasse tous les sens. Ɖlevez votre expĆ©rience. Passez Ć  une vue exceptionnelle sur les toits de la ville Ć  moindre coĆ»t, où le charme du vieux monde se combine avec des vues spectaculaires sur la ville, la cathĆ©drale locale et le centre.", + "Category": "Boutique", + "Tags": [ "view", "concierge", "bar" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2015-10-10T00:00:00Z", + "Rating": 4.50, + "Address": { + "StreetAddress": "8th Ave", + "City": "New York", + "StateProvince": "NY", + "PostalCode": "10014", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -74.003571, 40.738651 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 59.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "suite" ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "suite" ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "suite" ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "coffee maker" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 68.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "jacuzzi tub", "suite" ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 97.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "suite", "suite" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "suite", "suite" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "jacuzzi tub", "vcr/dvd" ] + } + ] + }, + { + "HotelId": "18", + "HotelName": "Ocean Water Resort & Spa", + "Description": "New Luxury Hotel for the vacation of a lifetime. Bay views from every room, location near the pier, rooftop pool, waterfront dining & more.", + "Description_fr": "Nouvel hĆ“tel de luxe pour des vacances inoubliables. Vue sur la baie depuis chaque chambre, emplacement prĆØs de la jetĆ©e, piscine sur le toit, restaurant au bord de l'eau et plus encore.", + "Category": "Luxury", + "Tags": [ "view", "pool", "restaurant" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2020-11-14T00:00:00Z", + "Rating": 4.20, + "Address": { + "StreetAddress": "5426 Bay Center Dr", + "City": "Tampa", + "StateProvince": "FL", + "PostalCode": "33609", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -82.537735, 27.943701 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "suite", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 89.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 112.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "tv", "suite" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 163.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 151.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "tv" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "suite" ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "coffee maker", "suite" ] + } + ] + }, + { + "HotelId": "19", + "HotelName": "Economy Universe Motel", + "Description": "Local, family-run hotel in bustling downtown Redmond. We are a pet-friendly establishment, near expansive Marymoor park, haven to pet owners, joggers, and sports enthusiasts. Close to the highway and just a short drive away from major cities.", + "Description_fr": "HĆ“tel local Ć  la gestion familiale dans le centre-ville animĆ© de Redmond. Nous sommes un Ć©tablissement acceptant les animaux de compagnie, Ć  proximitĆ© du vaste parc Marymoor, paradis des propriĆ©taires d'animaux, des joggeurs et des amateurs de sport. PrĆØs de l'autoroute et Ć  quelques minutes en voiture des grandes villes.", + "Category": "Budget", + "Tags": [ "coffee in lobby", "free wifi", "free parking" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-11-21T00:00:00Z", + "Rating": 2.90, + "Address": { + "StreetAddress": "15255 NE 40th", + "City": "Redmond", + "StateProvince": "WA", + "PostalCode": "98052", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.136940, 47.644508 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 165.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 134.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "suite" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "tv", "coffee maker" ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "vcr/dvd" ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "suite", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "suite" ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "suite", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 261.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + } + ] + }, + { + "HotelId": "2", + "HotelName": "Old Century Hotel", + "Description": "The hotel is situated in a nineteenth century plaza, which has been expanded and renovated to the highest architectural standards to create a modern, functional and first-class hotel in which art and unique historical elements coexist with the most modern comforts. The hotel also regularly hosts events like wine tastings, beer dinners, and live music.", + "Description_fr": "L'hĆ“tel est situĆ© sur une place du XIXe siĆØcle, qui a Ć©tĆ© agrandie et rĆ©novĆ©e selon les normes architecturales les plus Ć©levĆ©es pour crĆ©er un hĆ“tel moderne, fonctionnel et de premiĆØre classe dans lequel l'art et des Ć©lĆ©ments historiques uniques coexistent avec le confort le plus moderne. L'hĆ“tel accueille Ć©galement rĆ©guliĆØrement des Ć©vĆ©nements tels que des dĆ©gustations de vins, des dĆ®ners de biĆØre et de la musique live.", + "Category": "Boutique", + "Tags": [ "pool", "free wifi", "concierge" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2019-02-18T00:00:00Z", + "Rating": 3.60, + "Address": { + "StreetAddress": "140 University Town Center Dr", + "City": "Sarasota", + "StateProvince": "FL", + "PostalCode": "34243", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -82.452843, 27.384417 ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "tv", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 127.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 63.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "vcr/dvd" ] + } + ] + }, + { + "HotelId": "20", + "HotelName": "Grand Gaming Resort", + "Description": "The Best Gaming Resort in the area. With elegant rooms & suites, pool, cabanas, spa, brewery & world-class gaming. This is the best place to play, stay & dine.", + "Description_fr": "La meilleure station de jeux dans la rĆ©gion. Avec des chambres et suites Ć©lĆ©gantes, piscine, Cabanas, Spa, brasserie & Gaming de classe mondiale. C'est le meilleur endroit pour jouer, rester et dĆ®ner.", + "Category": "Resort and Spa", + "Tags": [ "continental breakfast", "bar", "pool" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2021-10-31T00:00:00Z", + "Rating": 4.20, + "Address": { + "StreetAddress": "3400 Menaul Blvd NE", + "City": "Albuquerque", + "StateProvince": "NM", + "PostalCode": "87107", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -106.605949, 35.108700 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 127.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "suite", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 259.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "suite", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 131.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "suite" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "tv", "tv" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 130.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "tv", "tv" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 86.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "vcr/dvd", "suite" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "tv" ] + } + ] + }, + { + "HotelId": "21", + "HotelName": "Good Business Hotel", + "Description": "1 Mile from the airport. Free WiFi, Outdoor Pool, Complimentary Airport Shuttle, 6 miles from Lake Lanier & 10 miles from downtown. Our business center includes printers, a copy machine, fax, and a work area.", + "Description_fr": "1 mile de l'aĆ©roport. WiFi gratuit, piscine extĆ©rieure, navette aĆ©roport gratuite, Ć  10 km du lac Lanier et Ć  16 km du centre-ville. Notre centre d'affaires comprend des imprimantes, un photocopieur, un fax et un espace de travail.", + "Category": "Suite", + "Tags": [ "pool", "continental breakfast", "free parking" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2021-10-19T00:00:00Z", + "Rating": 3.60, + "Address": { + "StreetAddress": "4400 Ashford Dunwoody Rd NE", + "City": "Atlanta", + "StateProvince": "GA", + "PostalCode": "30346", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -84.341530, 33.923931 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 134.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "tv" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "coffee maker", "suite" ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "bathroom shower", "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 83.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "suite", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "coffee maker", "suite" ] + } + ] + }, + { + "HotelId": "22", + "HotelName": "Lion's Den Inn", + "Description": "Full breakfast buffet for 2 for only $1. Excited to show off our room upgrades, faster high speed WiFi, updated corridors & meeting space. Come relax and enjoy your stay.", + "Description_fr": "Petit dĆ©jeuner buffet complet pour 2 pour seulement $1. ExcitĆ© de montrer nos mises Ć  niveau de la chambre, plus rapide WiFi Ć  haute vitesse, les couloirs et l'espace de rĆ©union. Venez vous dĆ©tendre et profiter de votre sĆ©jour.", + "Category": "Budget", + "Tags": [ "laundry service", "free wifi", "restaurant" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2020-09-18T00:00:00Z", + "Rating": 3.90, + "Address": { + "StreetAddress": "16021 NE 36th Way", + "City": "Redmond", + "StateProvince": "WA", + "PostalCode": "98052", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.126381, 47.640656 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "bathroom shower", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "jacuzzi tub", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "suite", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 233.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "suite" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 153.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "coffee maker", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Suite, 2 Double Beds (Waterfront View)", + "Description_fr": "Suite, 2 lits doubles (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + } + ] + }, + { + "HotelId": "23", + "HotelName": "Downtown Mix Hotel", + "Description": "Mix and mingle in the heart of the city. Shop and dine, mix and mingle in the heart of downtown, where fab lake views unite with a cheeky design.", + "Description_fr": "MĆ©langez et mĆŖlez-vous au cœur de la ville. Magasinez et dĆ®nez, mĆ©langez et mĆŖlez-vous au cœur du centre-ville, où les vues du lac FAB s'unissent avec un design effrontĆ©.", + "Category": "Budget", + "Tags": [ "air conditioning", "laundry service", "free wifi" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2019-09-16T00:00:00Z", + "Rating": 4.20, + "Address": { + "StreetAddress": "550 Kirkland Way", + "City": "Kirkland", + "StateProvince": "WA", + "PostalCode": "98033", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.198074, 47.676857 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 111.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower", "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "tv", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 265.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "tv" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 129.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 266.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + } + ] + }, + { + "HotelId": "24", + "HotelName": "Uptown Chic Hotel", + "Description": "Chic hotel near the city. High-rise hotel in downtown, within walking distance to theaters, art galleries, restaurants and shops. Visit Seattle Art Museum by day, and then head over to Benaroya Hall to catch the evening's concert performance.", + "Description_fr": "HĆ“tel chic prĆØs de la ville. HĆ“tel de grande hauteur au centre-ville, Ć  distance de marche des théâtres, galeries d'art, restaurants et boutiques. Visitez le musĆ©e d'art de Seattle le jour, puis dirigez-vous vers le Benaroya Hall pour assister au concert de la soirĆ©e.", + "Category": "Suite", + "Tags": [ "view", "pool", "bar" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2018-08-25T00:00:00Z", + "Rating": 3.50, + "Address": { + "StreetAddress": "600 Pine St", + "City": "Seattle", + "StateProvince": "WA", + "PostalCode": "98101", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.335114, 47.612839 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 265.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 69.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 150.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "tv", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "bathroom shower", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "tv" ] + } + ] + }, + { + "HotelId": "25", + "HotelName": "Waterfront Scottish Inn", + "Description": "Newly Redesigned Rooms & airport shuttle. Minutes from the airport, enjoy lakeside amenities, a resort-style pool & stylish new guestrooms with Internet TVs.", + "Description_fr": "Chambres nouvellement redessinĆ©es & navette d'aĆ©roport. Minutes de l'aĆ©roport, profitez des Ć©quipements Lakeside, une piscine de style complexe et de nouvelles chambres Ć©lĆ©gantes avec des tĆ©lĆ©Viseurs Internet.", + "Category": "Suite", + "Tags": [ "24-hour front desk service", "continental breakfast", "free wifi" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-06-25T00:00:00Z", + "Rating": 3.80, + "Address": { + "StreetAddress": "3301 Veterans Memorial Blvd", + "City": "Metairie", + "StateProvince": "LA", + "PostalCode": "70002", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -90.156708, 30.004539 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 82.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 112.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "tv" ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "tv", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 113.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 94.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "suite", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "suite", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "bathroom shower", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (City View)", + "Description_fr": "Suite, 1 grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 237.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub", "suite" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + } + ] + }, + { + "HotelId": "26", + "HotelName": "Planetary Plaza & Suites", + "Description": "Extend Your Stay. Affordable home away from home, with amenities like free Wi-Fi, full kitchen, and convenient laundry service.", + "Description_fr": "Prolongez votre sĆ©jour. Une maison abordable loin de chez vous, avec des Ć©quipements comme une connexion Wi-Fi gratuite, une cuisine complĆØte et un service de blanchisserie pratique.", + "Category": "Extended-Stay", + "Tags": [ "free parking", "free wifi", "laundry service" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2022-06-02T00:00:00Z", + "Rating": 3.20, + "Address": { + "StreetAddress": "9255 Towne Centre Dr", + "City": "San Diego", + "StateProvince": "CA ", + "PostalCode": "92121", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -117.206993, 32.875282 ] + }, + "Rooms": [ + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 125.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "bathroom shower", "coffee maker" ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "suite" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 236.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 137.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd", "vcr/dvd" ] + } + ] + }, + { + "HotelId": "27", + "HotelName": "Starlight Suites", + "Description": "Complimentary Airport Shuttle & WiFi. Book Now and save - Spacious All Suite Hotel, Indoor Outdoor Pool, Fitness Center, Florida Green certified, Complimentary Coffee, HDTV", + "Description_fr": "Navette aĆ©roport gratuite et WiFi. RĆ©servez maintenant et Ć©conomisez-spacieux All Suite Hotel, piscine couverte extĆ©rieure, centre de fitness, Florida Green Certified, Complimentary Coffee, HDTV", + "Category": "Suite", + "Tags": [ "pool", "coffee in lobby", "free wifi" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2017-04-23T00:00:00Z", + "Rating": 4.20, + "Address": { + "StreetAddress": "19575 Biscayne Blvd", + "City": "Aventura", + "StateProvince": "FL", + "PostalCode": "33180", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -80.146729, 25.956699 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "suite", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + } + ] + }, + { + "HotelId": "28", + "HotelName": "City Center Summer Wind Resort", + "Description": "Eco-friendly from our gardens to table, with a rooftop serenity pool and outdoor seating to take in the sunset. Just steps away from the Convention Center. Located in the heart of downtown with modern rooms with stunning city views, 24-7 dining options, free WiFi and easy valet parking.", + "Description_fr": "Respectueux de l'environnement des jardins Ć  la table, avec piscine de sĆ©rĆ©nitĆ© sur le toit et terrasse pour admirer le coucher du soleil. Pas du Centre des CongrĆØs. SituĆ© au cœur du centre-ville avec des chambres modernes avec vue imprenable sur la ville, 24-7 restaurants, WiFi gratuit et parking avec voiturier facile.", + "Category": "Luxury", + "Tags": [ "restaurant", "view", "concierge" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2017-08-07T00:00:00Z", + "Rating": 4.90, + "Address": { + "StreetAddress": "1288 Pear Ave", + "City": "Mountain View", + "StateProvince": "CA ", + "PostalCode": "94043", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.075577, 37.415588 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 59.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "suite", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 135.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker", "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "jacuzzi tub", "suite" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 130.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + } + ] + }, + { + "HotelId": "29", + "HotelName": "Treehouse Hotel", + "Description": "Near the beating heart of our vibrant downtown and bustling business district. Experience the warmth of our hotel. Enjoy free WiFi, local transportation and Milk & Cookies.", + "Description_fr": "SĆ©journez au cœur du centre-ville prĆØs du quartier des affaires. Vivez la chaleur de notre hĆ“tel. Profitez du WiFi gratuit, du transport local et du lait et des biscuits.", + "Category": "Budget", + "Tags": [ "free wifi", "coffee in lobby", "free parking" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2017-05-25T00:00:00Z", + "Rating": 2.60, + "Address": { + "StreetAddress": "9585 SW Washington Square Rd", + "City": "Portland", + "StateProvince": "OR", + "PostalCode": "97223", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.782829, 45.448959 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "tv" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 83.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker", "tv" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "tv", "tv" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 267.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "tv" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "coffee maker" ] + } + ] + }, + { + "HotelId": "3", + "HotelName": "Gastronomic Landscape Hotel", + "Description": "The Gastronomic Hotel stands out for its culinary excellence under the management of William Dough, who advises on and oversees all of the Hotel’s restaurant services.", + "Description_fr": "L'hĆ“tel Gastronomic se distingue par son excellence gastronomique sous la direction de William Dough, qui conseille et supervise tous les services de restauration de l'hĆ“tel.", + "Category": "Suite", + "Tags": [ "restaurant", "bar", "continental breakfast" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2015-09-20T00:00:00Z", + "Rating": 4.80, + "Address": { + "StreetAddress": "3393 Peachtree Rd", + "City": "Atlanta", + "StateProvince": "GA", + "PostalCode": "30326", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -84.362465, 33.846432 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 127.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite", "suite", "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite", "suite", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 259.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 130.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "suite" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "tv" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "vcr/dvd", "tv" ] + } + ] + }, + { + "HotelId": "30", + "HotelName": "Fishing Creek Lodge", + "Description": "Best bites along the Colorado river, but only if you know where to go! Fishing expeditions offered daily. Package deals include professional guides, gear, lunch, and fishing licenses. ", + "Description_fr": "Meilleures bouchĆ©es le long du fleuve Colorado, mais seulement si vous savez où aller! ExpĆ©ditions de pĆŖche offertes tous les jours. Les forfaits incluent des guides professionnels, du matĆ©riel, le dĆ©jeuner et des permis de pĆŖche.", + "Category": "Budget", + "Tags": [ "restaurant", "coffee in lobby", "24-hour front desk service" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-08-29T00:00:00Z", + "Rating": 4.20, + "Address": { + "StreetAddress": "3309 Esperanza Xing", + "City": "Austin", + "StateProvince": "TX", + "PostalCode": "78758", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -97.726486, 30.400160 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 239.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 73.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "coffee maker", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "jacuzzi tub", "vcr/dvd" ] + } + ] + }, + { + "HotelId": "31", + "HotelName": "Country Residence Hotel", + "Description": "All of the suites feature full-sized kitchens stocked with cookware, separate living and sleeping areas and sofa beds. Some of the larger rooms have fireplaces and patios or balconies. Experience real country hospitality in the heart of bustling Nashville. The most vibrant music scene in the world is just outside your front door.", + "Description_fr": "Toutes les suites disposent d'une cuisine pleine grandeur Ć©quipĆ©e d'ustensiles de cuisine, de coins salon et chambre sĆ©parĆ©s et de canapĆ©s-lits. Certaines des plus grandes chambres ont des cheminĆ©es. DĆ©couvrez la vĆ©ritable hospitalitĆ© campagnarde au cœur de la ville animĆ©e de Nashville. La scĆØne musicale la plus vibrante du monde est juste devant votre porte.", + "Category": "Extended-Stay", + "Tags": [ "laundry service", "restaurant", "free parking" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-10-05T00:00:00Z", + "Rating": 2.70, + "Address": { + "StreetAddress": "2126 Abbott Martin Rd", + "City": "Nashville", + "StateProvince": "TN", + "PostalCode": "37215", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -86.816017, 36.107281 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 164.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 119.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Suite, 2 Double Beds (Waterfront View)", + "Description_fr": "Suite, 2 lits doubles (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "coffee maker", "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "tv" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + } + ] + }, + { + "HotelId": "32", + "HotelName": "Gold View Inn", + "Description": "AAA Four Diamond Resort. Nestled on six beautifully landscaped acres, located 2 blocks from the park. Unwind at the spa and indulge in art tours on site.", + "Description_fr": "AAA Four Diamond Resort. NichĆ© sur six hectares magnifiquement amĆ©nagĆ©s, situĆ© Ć  2 pĆ¢tĆ©s de lĆ  du parc. DĆ©Tendez-vous au spa et profitez de visites d'art sur place.", + "Category": "Suite", + "Tags": [ "continental breakfast", "free parking", "pool" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2021-01-31T00:00:00Z", + "Rating": 2.80, + "Address": { + "StreetAddress": "1414 NW Northrup St", + "City": "Portland", + "StateProvince": "OR", + "PostalCode": "97209", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.685928, 45.531139 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "coffee maker", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 153.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "tv" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "jacuzzi tub" ] + } + ] + }, + { + "HotelId": "33", + "HotelName": "Thunderbird Motel", + "Description": "Book Now & Save. Clean, Comfortable rooms at the lowest price. Enjoy complimentary coffee and tea in common areas.", + "Description_fr": "RĆ©servez maintenant et Ć©conomisez. Chambres propres et confortables au plus bas prix. Profitez du cafĆ© et du thĆ© gratuits dans les parties communes.", + "Category": "Budget", + "Tags": [ "coffee in lobby", "free parking", "free wifi" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-01-30T00:00:00Z", + "Rating": 4.40, + "Address": { + "StreetAddress": "1555 Broadway St", + "City": "Detroit", + "StateProvince": "MI", + "PostalCode": "48226", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -83.049103, 42.336109 ] + }, + "Rooms": [ + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "tv" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 151.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 68.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 73.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "coffee maker" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "tv" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "bathroom shower", "coffee maker" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "jacuzzi tub", "tv" ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "coffee maker" ] + } + ] + }, + { + "HotelId": "34", + "HotelName": "Lakefront Captain Inn", + "Description": "Every stay starts with a warm cookie. Amenities like the Counting Sheep sleep experience, our Wake-up glorious breakfast buffet and spacious workout facilities await.", + "Description_fr": "Chaque sĆ©jour commence par un biscuit chaud. CommoditĆ©s comme le comptage des moutons expĆ©rience de sommeil, notre rĆ©veil-up glorieux petit dĆ©jeuner buffet et des installations d'entraĆ®nement spacieuses vous attendent.", + "Category": "Budget", + "Tags": [ "restaurant", "laundry service", "coffee in lobby" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2017-04-19T00:00:00Z", + "Rating": 3.40, + "Address": { + "StreetAddress": "1500 New Britain Ave", + "City": "West Hartford", + "StateProvince": "CT", + "PostalCode": "06110", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -72.761261, 41.725285 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 266.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "suite", "suite" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub", "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite", "tv" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 245.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 134.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "tv" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 141.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd", "tv" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + } + ] + }, + { + "HotelId": "35", + "HotelName": "Bellevue Suites", + "Description": "Comfortable city living in the very center of downtown Bellevue. Newly reimagined, this hotel features apartment-style suites with sleeping, living and work spaces. Located across the street from the Light Rail to downtown. Free shuttle to the airport.", + "Description_fr": "Centre-ville confortable vivant en plein centre du centre-ville de Bellevue. RĆ©cemment repensĆ©, cet hĆ“tel propose des suites de style appartement avec des espaces de couchage, de vie et de travail. SituĆ© en face du tramway au centre-ville. SituĆ© en face du tramway au centre-ville. Navette gratuite pour l'aĆ©roport.", + "Category": "Extended-Stay", + "Tags": [ "laundry service", "view", "24-hour front desk service" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2024-01-19T00:00:00Z", + "Rating": 4, + "Address": { + "StreetAddress": "11025 NE 8th St", + "City": "Bellevue", + "StateProvince": "WA", + "PostalCode": "98004", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.193008, 47.617020 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "bathroom shower", "tv" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 70.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 125.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 267.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "tv" ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 242.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "vcr/dvd", "tv" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 159.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 125.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "coffee maker", "coffee maker" ] + } + ] + }, + { + "HotelId": "36", + "HotelName": "Hotel on the Harbor", + "Description": "Stunning Downtown Hotel with indoor Pool. Ideally located close to theatres, museums and the convention center. Indoor Pool and Sauna and fitness centre. Popular Bar & Restaurant", + "Description_fr": "Superbe hĆ“tel du centre-ville avec piscine couverte. IdĆ©alement situĆ© Ć  proximitĆ© des théâtres, des musĆ©es et du Centre des CongrĆØs. Piscine couverte et sauna et centre de fitness. Populaire bar & restaurant", + "Category": "Luxury", + "Tags": [ "bar", "pool", "24-hour front desk service" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2023-10-31T00:00:00Z", + "Rating": 3.50, + "Address": { + "StreetAddress": "6465 N Quail Hollow Rd", + "City": "Memphis", + "StateProvince": "TN", + "PostalCode": "38120", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -89.847656, 35.104061 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower", "suite" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 94.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 130.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 136.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + } + ] + }, + { + "HotelId": "37", + "HotelName": "Campus Commander Hotel", + "Description": "Easy access to campus and steps away from the best shopping corridor in the city. From meetings in town or gameday, enjoy our prime location between the union and proximity to the university stadium.", + "Description_fr": "AccĆØs facile au campus et Ć  quelques pas du meilleur couloir commercial de la ville. Que ce soit pour des rĆ©unions en ville ou un jour de match, profitez de notre emplacement privilĆ©giĆ© entre le syndicat et la proximitĆ© du stade universitaire.", + "Category": "Budget", + "Tags": [ "free parking", "coffee in lobby", "24-hour front desk service" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2022-02-24T00:00:00Z", + "Rating": 2.80, + "Address": { + "StreetAddress": "2045 Lafayette St", + "City": "Santa Clara", + "StateProvince": "CA ", + "PostalCode": "95050", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -121.946564, 37.362087 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "suite", "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "coffee maker", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "tv", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 89.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 89.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "suite", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "suite", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "tv", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub", "suite" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + } + ] + }, + { + "HotelId": "38", + "HotelName": "Lakeside B & B", + "Description": "Nature is Home on the beach. Explore the shore by day, and then come home to our shared living space to relax around a stone fireplace, sip something warm, and explore the library by night. Save up to 30 percent. Valid Now through the end of the year. Restrictions and blackouts may apply.", + "Description_fr": "La nature est Ć  la maison sur la plage. Explorez le rivage le jour, puis rentrez chez vous dans notre espace de vie commun pour vous dĆ©tendre autour d'une cheminĆ©e en pierre, siroter quelque chose de chaud et explorer la bibliothĆØque la nuit. Ɖconomisez jusqu'Ć  30%. Valide maintenant jusqu'Ć  la fin de l'annĆ©e. Des restrictions et une panne peuvent s'appliquer.", + "Category": "Boutique", + "Tags": [ "laundry service", "concierge", "free parking" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2017-06-02T00:00:00Z", + "Rating": 4.70, + "Address": { + "StreetAddress": "20 W Kinzie St", + "City": "Chicago", + "StateProvince": "IL", + "PostalCode": "60654", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -87.628640, 41.889510 ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 265.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 69.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 244.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 237.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 125.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd" ] + } + ] + }, + { + "HotelId": "39", + "HotelName": "White Mountain Lodge & Suites", + "Description": "Live amongst the trees in the heart of the forest. Hike along our extensive trail system. Visit the Natural Hot Springs, or enjoy our signature hot stone massage in the Cathedral of Firs. Relax in the meditation gardens, or join new friends around the communal firepit. Weekend evening entertainment on the patio features special guest musicians or poetry readings.", + "Description_fr": "Vivez parmi les arbres au cœur de la forĆŖt. Parcourez notre vaste rĆ©seau de sentiers. Visitez les sources chaudes naturelles ou profitez de notre massage signature aux pierres chaudes dans la cathĆ©drale des sapins. DĆ©tendez-vous dans les jardins de mĆ©ditation ou rejoignez de nouveaux amis autour du foyer commun. Les divertissements du week-end en soirĆ©e sur la terrasse comprennent des musiciens invitĆ©s spĆ©ciaux ou des lectures de poĆ©sie.", + "Category": "Resort and Spa", + "Tags": [ "continental breakfast", "pool", "restaurant" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2022-05-14T00:00:00Z", + "Rating": 2.40, + "Address": { + "StreetAddress": "3000 E 1st Ave,", + "City": "Denver", + "StateProvince": "CO", + "PostalCode": "80206", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -104.952133, 39.717941 ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (Waterfront View)", + "Description_fr": "Suite, 2 lits doubles (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "tv", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 134.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "suite" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "tv" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "bathroom shower", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 112.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "suite", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 133.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "bathroom shower" ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + } + ] + }, + { + "HotelId": "4", + "HotelName": "Sublime Palace Hotel", + "Description": "Sublime Cliff Hotel is located in the heart of the historic center of Sublime in an extremely vibrant and lively area within short walking distance to the sites and landmarks of the city and is surrounded by the extraordinary beauty of churches, buildings, shops and monuments. Sublime Cliff is part of a lovingly restored 19th century resort, updated for every modern convenience.", + "Description_fr": "Le sublime Cliff Hotel est situĆ© au coeur du centre historique de sublime dans un quartier extrĆŖmement animĆ© et vivant, Ć  courte distance de marche des sites et monuments de la ville et est entourĆ© par l'extraordinaire beautĆ© des Ć©glises, des bĆ¢timents, des commerces et Monuments. Sublime Cliff fait partie d'un complexe du 19ĆØme siĆØcle restaurĆ© avec amour, mis Ć  jour pour tout le confort moderne.", "Category": "Boutique", + "Tags": [ "concierge", "view", "air conditioning" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2020-02-06T00:00:00Z", + "Rating": 4.60, + "Address": { + "StreetAddress": "7400 San Pedro Ave", + "City": "San Antonio", + "StateProvince": "TX", + "PostalCode": "78216", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -98.495422, 29.518398 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 266.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "coffee maker", "tv" ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "suite", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Suite, 2 Double Beds (Waterfront View)", + "Description_fr": "Suite, 2 lits doubles (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "suite", "coffee maker" ] + } + ] + }, + { + "HotelId": "40", + "HotelName": "Trails End Motel", + "Description": "Only 8 miles from Downtown. On-site bar\/restaurant, Free hot breakfast buffet, Free wireless internet, All non-smoking hotel. Only 15 miles from airport.", + "Description_fr": "A seulement 8 km du centre-ville. Bar\/restaurant sur place, buffet de petit dĆ©jeuner chaud gratuit, Internet sans fil gratuit, tout hĆ“tel non-fumeurs. A seulement 15 km de l'aĆ©roport.", + "Category": "Budget", + "Tags": [ "bar", "free wifi", "restaurant" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2017-01-18T00:00:00Z", + "Rating": 3.20, + "Address": { + "StreetAddress": "7014 E Camelback Rd", + "City": "Scottsdale", + "StateProvince": "AZ", + "PostalCode": "85251", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -111.929405, 33.503067 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 259.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "tv" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 266.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 155.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 113.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "tv" ] + } + ] + }, + { + "HotelId": "41", + "HotelName": "Windy Ocean Motel", + "Description": "Oceanfront hotel overlooking the beach features rooms with a private balcony and 2 indoor and outdoor pools. Inspired by the natural beauty of the island, each room includes an original painting of local scenes by the owner. Rooms include a mini fridge, Keurig coffee maker, and flatscreen TV. Various shops and art entertainment are on the boardwalk, just steps away.", + "Description_fr": "Cet hĆ“tel en bord de mer donnant sur la plage propose des chambres dotĆ©es d'un balcon privĆ© et de 2 piscines intĆ©rieure et extĆ©rieure. InspirĆ© par la beautĆ© naturelle de l'Ć®le, chaque chambre comprend une peinture originale de scĆØnes locales par le propriĆ©taire. Les chambres comprennent un mini-rĆ©frigĆ©rateur, une cafetiĆØre Keurig et une tĆ©lĆ©vision Ć  Ć©cran plat. Divers magasins et divertissements artistiques se trouvent sur la promenade, Ć  quelques pas.", + "Category": "Suite", + "Tags": [ "pool", "air conditioning", "bar" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2021-05-10T00:00:00Z", + "Rating": 3.50, + "Address": { + "StreetAddress": "1450 Ala Moana Blvd 2238 Ala Moana Ctr", + "City": "Honolulu", + "StateProvince": "HI", + "PostalCode": "96814", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -157.846817, 21.295841 ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 63.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 74.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "vcr/dvd", "tv" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 169.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 122.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 122.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 132.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "tv" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "tv", "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "coffee maker", "suite" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "bathroom shower", "suite" ] + } + ] + }, + { + "HotelId": "42", + "HotelName": "Rock Bottom Resort & Campground", + "Description": "Rock Bottom is nestled on 20 unspoiled acres on a private cove of Rock Bottom Lake. We feature both lodging and campground accommodations to suit just about every taste. Even though we are out of the traffic of the city, getting there is only a short drive away.", + "Description_fr": "Rock Bottom est nichĆ© sur 20 hectares intacts sur une crique privĆ©e de Rock Bottom Lake. Nous disposons Ć  la fois d'hĆ©bergement et de logements de camping pour convenir Ć  peu prĆØs tous les goĆ»ts. MĆŖme si nous sommes hors du trafic de la ville, y arriver est Ć  seulement une courte distance en voiture.", + "Category": "Resort and Spa", + "Tags": [ "view", "coffee in lobby", "24-hour front desk service" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-01-14T00:00:00Z", + "Rating": 3.40, + "Address": { + "StreetAddress": "1649 Shoreline Dr", + "City": "Boise", + "StateProvince": "ID", + "PostalCode": "83702", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -116.220711, 43.616871 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "tv" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "suite", "suite" ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "vcr/dvd", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "jacuzzi tub", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "tv", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + } + ] + }, + { + "HotelId": "43", + "HotelName": "Johnson's Family Resort", + "Description": "Family oriented resort located in the heart of the northland. Operated since 1962 by the Smith family, we have grown into one of the largest family resorts in the state. The home of excellent Smallmouth Bass fishing with 10 small cabins, we're a home not only to fishermen but their families as well. Rebuilt in the early 2000's, all of our cabins have all the comforts of home. Sporting a huge beach with multiple water toys for those sunny summer days and a Lodge full of games for when you just can't swim anymore, there's always something for the family to do. A full marina offers watercraft rentals, boat launch, powered dock slips, canoes (free to use), & fish cleaning facility. Rent pontoons, 14' fishing boats, 16' fishing rigs or jet ski's for a fun day or week on the water. Pets are accepted in the lakeside cottages.", + "Description_fr": "Resort familial situĆ© au cœur de la Northland. OpĆ©rĆ© depuis 1962 par la famille Smith, nous sommes devenus l'une des plus grandes stations familiales de l'Ɖtat. La maison de la pĆŖche Ć  l'achigan Ć  petite bouche excellente avec 10 petites cabanes, nous sommes une maison non seulement pour les pĆŖcheurs, mais aussi leurs familles. Reconstruites au dĆ©but des annĆ©es 2000, toutes nos cabines ont Ć©tĆ© construites avec tout le confort de la maison. Arborant une immense plage avec des jouets d'eau multiples pour ces jours ensoleillĆ©s d'Ć©tĆ© et un Lodge plein de jeux pour quand vous ne pouvez pas nager plus, il ya toujours quelque chose pour la famille Ć  faire. UNE marina complĆØte offre la location de motomarines, le lancement de bateaux, des bordereaux d'amarrage, des canoĆ«s (libres d'utilisation), et des installations de nettoyage de poissons. Louez des pontons, 14 'bateaux de pĆŖche, 16 'plates-formes de pĆŖche ou jet ski pour une journĆ©e ou une semaine de plaisir sur l'eau.", + "Category": "Resort and Spa", + "Tags": [ "24-hour front desk service", "pool", "coffee in lobby" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2002-02-21T00:00:00Z", + "Rating": 4.80, + "Address": { + "StreetAddress": "4000 Great Plains Dr", + "City": "Fargo", + "StateProvince": "ND", + "PostalCode": "58104", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -96.845932, 46.814121 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 67.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "jacuzzi tub" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "suite" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 141.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "suite", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 265.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "tv" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 69.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "bathroom shower", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 233.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "tv", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 138.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 76.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "coffee maker", "suite" ] + } + ] + }, + { + "HotelId": "44", + "HotelName": "Friendly Motor Inn", + "Description": "Close to historic sites, local attractions, and urban parks. Free Shuttle to the airport and casinos. Free breakfast and WiFi.", + "Description_fr": "ƀ proximitĆ© des sites historiques, des attractions locales et des parcs urbains. Navette gratuite pour l'aĆ©roport et les casinos. Petit dĆ©jeuner gratuit et WiFi.", + "Category": "Budget", + "Tags": [ "24-hour front desk service", "continental breakfast", "free wifi" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-07-12T00:00:00Z", + "Rating": 2.70, + "Address": { + "StreetAddress": "3401 Nicholasville Rd", + "City": "Lexington", + "StateProvince": "KY", + "PostalCode": "40503", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -84.527771, 37.989769 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 159.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 127.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 234.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 159.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 76.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "bathroom shower" ] + } + ] + }, + { + "HotelId": "45", + "HotelName": "Happy Lake Resort & Restaurant", + "Description": "The largest year-round resort in the area offering more of everything for your vacation – at the best value! What can you enjoy while at the resort, aside from the mile-long sandy beaches of the lake? Check out our activities sure to excite both young and young-at-heart guests. We have it all, including being named ā€œProperty of the Yearā€ and a ā€œTop Ten Resortā€ by top publications.", + "Description_fr": "La plus grande station de toute l'annĆ©e dans la rĆ©gion offrant plus de tout pour vos vacances-au meilleur rapport qualitĆ©-prix! Que pouvez-vous profiter de la station, en dehors des kilomĆØtres de longues plages de sable du lac? DĆ©couvrez nos activitĆ©s pour vous exciter Ć  la fois les jeunes et les jeunes-Ć -coeur invitĆ©s. Nous avons tout, y compris d'ĆŖtre nommĆ© \"propriĆ©tĆ© de l'annĆ©e\" et un \"Top Ten Resort\" par Top publications.", + "Category": "Resort and Spa", + "Tags": [ "pool", "bar", "restaurant" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2015-05-08T00:00:00Z", + "Rating": 3.50, + "Address": { + "StreetAddress": "320 Westlake Ave N", + "City": "Seattle", + "StateProvince": "WA", + "PostalCode": "98109", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.338181, 47.621201 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 70.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower", "tv" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "tv" ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 112.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + } + ] + }, + { + "HotelId": "46", + "HotelName": "Swan Bird Lake Inn", + "Description": "We serve a continental-style breakfast each morning, featuring a variety of food and drinks. Our locally made, oh-so-soft, caramel cinnamon rolls are a favorite with our guests. Other breakfast items include coffee, orange juice, milk, cereal, instant oatmeal, bagels, and muffins.", + "Description_fr": "Nous servons un petit dĆ©jeuner continental de style chaque matin, avec une variĆ©tĆ© de nourriture et de boissons. Notre fait localement, oh-so-Soft, caramel rouleaux de cannelle sont un favori avec nos clients. Autres petits-dĆ©jeuners: cafĆ©, jus d'orange, lait, cĆ©rĆ©ales, Gruau instantanĆ©, bagels et muffins.", + "Category": "Budget", + "Tags": [ "continental breakfast", "free wifi", "24-hour front desk service" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-02-07T00:00:00Z", + "Rating": 3.60, + "Address": { + "StreetAddress": "1 Memorial Dr", + "City": "Cambridge", + "StateProvince": "MA", + "PostalCode": "02142", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -71.081230, 42.361370 ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 61.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 153.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "suite", "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 129.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "suite", "suite" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv", "suite" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 119.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 245.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "suite" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 141.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "suite" ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 245.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 119.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "coffee maker", "tv" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + } + ] + }, + { + "HotelId": "47", + "HotelName": "Country Comfort Inn", + "Description": "Situated conveniently at the north end of the village, the inn is just a short walk from the lake, offering reasonable rates and all the comforts home inlcuding living room suites and functional kitchens. Pets are welcome.", + "Description_fr": "IdĆ©alement situĆ©e Ć  l'extrĆ©mitĆ© nord du village, l'auberge se trouve Ć  quelques pas du lac, offrant des tarifs raisonnables et tout le confort de la maison, y compris des salles de sĆ©jour et des cuisines fonctionnelles. Les animaux sont les bienvenus.", + "Category": "Extended-Stay", + "Tags": [ "laundry service", "free wifi", "free parking", "24-hour front desk service" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-01-03T00:00:00Z", + "Rating": 2.50, + "Address": { + "StreetAddress": "700 Bellevue Way", + "City": "Bellevue", + "StateProvince": "WA", + "PostalCode": "98004", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.201195, 47.616989 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 165.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd", "tv" ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 134.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "suite", "tv" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite" ] + } + ] + }, + { + "HotelId": "48", + "HotelName": "Nordick's Valley Motel", + "Description": "Only 90 miles (about 2 hours) from the nation's capital and nearby most everything the historic valley has to offer. Hiking? Wine Tasting? Exploring the caverns? It's all nearby and we have specially priced packages to help make our B&B your home base for fun while visiting the valley.", + "Description_fr": "Seulement 90 milles (environ 2 heures) de la capitale de la nation et Ć  proximitĆ© la plupart tout que la vallĆ©e historique a Ć  offrir. RandonnĆ©e? DĆ©gustation? Vous explorez les cavernes? C'est tout prĆØs et nous avons des forfaits Ć  prix spĆ©cial pour aider Ć  rendre notre B&B votre base pour le plaisir en visitant la vallĆ©e.", + "Category": "Boutique", + "Tags": [ "continental breakfast", "air conditioning", "free parking" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2018-02-19T00:00:00Z", + "Rating": 4.50, + "Address": { + "StreetAddress": "1401 I St NW", + "City": "Washington D.C.", + "PostalCode": "20005", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -77.032410, 38.90166 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite", "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "jacuzzi tub", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower", "jacuzzi tub" ] + } + ] + }, + { + "HotelId": "49", + "HotelName": "Swirling Currents Hotel", + "Description": "Spacious rooms, glamorous suites and residences, rooftop pool, walking access to shopping, dining, entertainment and the city center. Each room comes equipped with a microwave, a coffee maker and a minifridge. In-room entertainment includes complimentary W-Fi and flat-screen TVs. ", + "Description_fr": "Chambres spacieuses, suites et rĆ©sidences glamour, piscine sur le toit, accĆØs Ć  pied aux commerces, restaurants, divertissements et centre-ville. Chaque chambre est Ć©quipĆ©e d'un four micro-ondes, d'une cafetiĆØre et d'un mini-rĆ©frigĆ©rateur. Les divertissements en chambre comprennent une connexion Wi-Fi gratuite et une tĆ©lĆ©vision Ć  Ć©cran plat.", + "Category": "Suite", + "Tags": [ "air conditioning", "laundry service", "24-hour front desk service" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-01-27T00:00:00Z", + "Rating": 2.70, + "Address": { + "StreetAddress": "1100 S Hayes St", + "City": "Arlington", + "StateProvince": "VA", + "PostalCode": "22202", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -77.060066, 38.863659 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "tv" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 86.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "vcr/dvd" ] + }, + { + "Description": "Suite, 1 Queen Bed (City View)", + "Description_fr": "Suite, 1 grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 261.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "coffee maker", "coffee maker" ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + } + ] + }, + { + "HotelId": "5", + "HotelName": "Red Tide Hotel", + "Description": "On entering this charming hotel in Scarlet Harbor, you'll notice an uncommon blend of antiques, original artwork, and contemporary comforts that give this hotel its signature look. Each suite is furnished to accentuate the views and unique characteristics of the building's classic architecture. No two suites are alike. However, all guests are welcome in the mezzanine plaza, the surrounding gardens, and the northside terrace for evening refreshments.", + "Description_fr": "En entrant dans ce charmant hĆ“tel de Scarlet Harbor, vous remarquerez un mĆ©lange rare d'antiquitĆ©s, d'œuvres d'art originales et de confort contemporain qui donnent Ć  cet hĆ“tel son look signature. Chaque suite est meublĆ©e pour accentuer les vues et les caractĆ©ristiques uniques de l'architecture classique du bĆ¢timent. Il n'y a pas deux suites identiques. Cependant, tous les invitĆ©s sont les bienvenus sur la place mezzanine, dans les jardins environnants et sur la terrasse cĆ“tĆ© nord pour des rafraĆ®chissements en soirĆ©e.", + "Category": "Boutique", + "Tags": [ "24-hour front desk service", "bar", "free parking" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2011-12-07T00:00:00Z", + "Rating": 4.10, + "Address": { + "StreetAddress": "800 Boylston St", + "City": "Boston", + "StateProvince": "MA", + "PostalCode": "02199", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -71.082466, 42.347179 ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 134.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv", "tv" ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 63.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 135.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "suite" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "suite" ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 242.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 165.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 73.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 137.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "tv", "vcr/dvd" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 89.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + } + ] + }, + { + "HotelId": "50", + "HotelName": "Head Wind Resort", + "Description": "The best of old town hospitality combined with views of the river and cool breezes off the prairie. Our penthouse suites offer views for miles and the rooftop plaza is open to all guests from sunset to 10 p.m. Enjoy a complimentary continental breakfast in the lobby, and free Wi-Fi throughout the hotel.", + "Description_fr": "Le meilleur de l'hospitalitĆ© de la vieille ville, avec vue sur la riviĆØre et les vents de la prairie. Nos suites de haut niveau offrent des vues Ć  des milliers de personnes et la place sur le toit est ouverte Ć  tous les clients du coucher du soleil Ć  22 heures. Profitez d'un petit-dĆ©jeuner continental gratuit dans le hall et d'une connexion Wi-Fi gratuite dans tout l'hĆ“tel.", + "Category": "Suite", + "Tags": [ "coffee in lobby", "free wifi", "view" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2012-04-04T00:00:00Z", + "Rating": 4.70, + "Address": { + "StreetAddress": "7633 E 63rd Pl", + "City": "Tulsa", + "StateProvince": "OK", + "PostalCode": "74133", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -95.889305, 36.072445 ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 130.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "suite" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "vcr/dvd" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 135.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "coffee maker", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "suite" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 86.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv", "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 99.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "suite", "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "suite" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 82.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 113.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + } + ] + }, + { + "HotelId": "6", + "HotelName": "King's Cellar Hotel", + "Description": "Newest kid on the downtown block. Steps away from the most popular destinations in downtown, enjoy free WiFi, an indoor rooftop pool & fitness center, 24 Grab'n'Go & drinks at the bar", + "Description_fr": "Le plus rĆ©cent de l'immeuble du centre-ville. ƀ quelques pas des destinations les plus populaires du centre-ville, profitez du WiFi gratuit, d'une piscine couverte sur le toit et d'un centre de remise en forme, de 24 Grab'n'Go et de boissons au bar.", + "Category": "Suite", + "Tags": [ "free wifi", "pool", "bar" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2015-03-20T00:00:00Z", + "Rating": 3.50, + "Address": { + "StreetAddress": "555 California St", + "City": "San Francisco", + "StateProvince": "CA ", + "PostalCode": "94104", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.403481, 37.792259 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv", "bathroom shower", "tv" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub", "bathroom shower", "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 67.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 83.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker", "tv" ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "tv", "suite" ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "suite" ] + } + ] + }, + { + "HotelId": "7", + "HotelName": "Roach Motel", + "Description": "Perfect Location on Main Street. Earn points while enjoying close proximity to the city's best shopping, restaurants, and attractions.", + "Description_fr": "Emplacement parfait sur la rue principale. Gagnez des points tout en apprĆ©ciant la proximitĆ© des meilleurs magasins, restaurants et attractions de la ville.", + "Category": "Budget", + "Tags": [ "free parking", "24-hour front desk service", "coffee in lobby" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2016-07-02T00:00:00Z", + "Rating": 4.70, + "Address": { + "StreetAddress": "9 Great Oaks Blvd,", + "City": "San Jose", + "StateProvince": "CA ", + "PostalCode": "95119", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -121.781952, 37.242077 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "tv" ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "tv" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 108.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 159.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv", "tv" ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv", "suite", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 74.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags" ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 82.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower", "bathroom shower" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "jacuzzi tub" ] + } + ] + }, + { + "HotelId": "8", + "HotelName": "Foot Happy Suites", + "Description": "Downtown in the heart of the business district. Close to everything. Leave your car behind and walk to the park, shopping, and restaurants. Or grab one of our bikes and take your explorations a little further.", + "Description_fr": "Centre-ville au coeur du quartier des affaires. Proche de tout. Laissez votre voiture derriĆØre vous et marchez vers le parc, les magasins et les restaurants.", + "Category": "Suite", + "Tags": [ "free wifi", "continental breakfast", "air conditioning" ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2003-07-23T00:00:00Z", + "Rating": 4, + "Address": { + "StreetAddress": "7535 Dadeland Mall", + "City": "Miami", + "StateProvince": "FL", + "PostalCode": "33156", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -80.312546, 25.689901 ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower", "suite" ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "Room Tags", "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 154.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "tv" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "coffee maker" ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "vcr/dvd", "jacuzzi tub", "vcr/dvd" ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 267.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 153.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "suite" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "vcr/dvd" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "tv" ] + } + ] + }, + { + "HotelId": "9", + "HotelName": "Smile Up Hotel", + "Description": "Experience the fresh, modern downtown. Enjoy updated rooms, bold style & prime location. Don't miss our weekend live music series featuring who's new\/next on the scene.", + "Description_fr": "DĆ©couvrez le centre-ville frais et moderne. Profitez de chambres rĆ©novĆ©es, d'un style audacieux et d'un emplacement privilĆ©giĆ©. Ne manquez pas notre sĆ©rie de musique en direct du week-end mettant en vedette who's New\/Next sur la scĆØne.", + "Category": "Suite", + "Tags": [ "view", "concierge", "bar" ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-07-12T00:00:00Z", + "Rating": 4.20, + "Address": { + "StreetAddress": "1 Market", + "City": "San Francisco", + "StateProvince": "CA ", + "PostalCode": "94105", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ -122.394234, 37.793369 ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "suite", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 138.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "coffee maker", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 244.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "tv", "jacuzzi tub" ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "suite", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "coffee maker", "tv", "coffee maker" ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "suite" ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 68.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ "Room Tags", "bathroom shower" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd", "coffee maker" ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 169.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 234.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "vcr/dvd" ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub" ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 95.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "jacuzzi tub", "vcr/dvd", "tv" ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 137.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ "bathroom shower" ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 86.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ "bathroom shower" ] + } + ] + } +] \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/HotelsData_text_embedding_small_3.json b/nosql-insert-at-scale-typescript/HotelsData_text_embedding_small_3.json new file mode 100644 index 0000000..a5067a8 --- /dev/null +++ b/nosql-insert-at-scale-typescript/HotelsData_text_embedding_small_3.json @@ -0,0 +1,88237 @@ +[ + { + "HotelId": "1", + "HotelName": "Stay-Kay City Hotel", + "Description": "This classic hotel is fully-refurbished and ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Times Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.", + "Description_fr": "Cet hĆ“tel classique entiĆØrement rĆ©novĆ© est idĆ©alement situĆ© sur l'artĆØre commerƧante principale de la ville, au cœur de New York. ƀ quelques minutes se trouvent Times Square et le centre historique de la ville, ainsi que d'autres lieux d'intĆ©rĆŖt qui font de New York l'une des villes les plus attrayantes et cosmopolites d'AmĆ©rique.", + "Category": "Boutique", + "Tags": [ + "view", + "air conditioning", + "concierge" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2022-01-18T00:00:00Z", + "Rating": 3.6, + "Address": { + "StreetAddress": "677 5th Ave", + "City": "New York", + "StateProvince": "NY", + "PostalCode": "10022", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -73.975403, + 40.760586 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 150.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 234.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 128.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker", + "jacuzzi tub" + ] + } + ], + "embedding": [ + -0.04886505380272865, + -0.020307425409555435, + 0.01763356477022171, + 0.02387588657438755, + -0.044014330953359604, + -0.02168908528983593, + -0.04437217116355896, + 0.011500583030283451, + 0.03840817138552666, + 0.00029058975633233786, + 0.0169079452753067, + -0.009214382618665695, + -0.045127611607313156, + 0.019889945164322853, + 0.020973406732082367, + 0.023040926083922386, + -0.02653980813920498, + 0.0504952147603035, + 0.07152826339006424, + -0.008786962367594242, + -0.009994672611355782, + -0.0053129312582314014, + -0.01460186392068863, + -0.04806985333561897, + 0.021231845021247864, + 0.022066805511713028, + -0.018021225929260254, + -0.010526463389396667, + 0.07220418006181717, + 0.006868541706353426, + 0.009472822770476341, + -0.023239726200699806, + 0.040276892483234406, + 0.03399480879306793, + 0.0156058045104146, + -0.0018376579973846674, + -0.009567252360284328, + -0.036300890147686005, + 0.009010612964630127, + 0.027672966942191124, + -0.023398766294121742, + 0.030078448355197906, + 0.01842876523733139, + -0.006709502078592777, + -0.03598280996084213, + -0.018021225929260254, + -0.01778266578912735, + 0.06655825674533844, + -0.019909825176000595, + 0.010963822714984417, + -0.02842840738594532, + 0.007325781974941492, + -0.030833888798952103, + -0.045724011957645416, + -0.07804889976978302, + 0.02425360679626465, + 0.018220024183392525, + -0.022762605920433998, + 0.05677729472517967, + 0.007817812263965607, + 0.03355744853615761, + 0.029163967818021774, + 0.03196704760193825, + 0.029959168285131454, + -0.051568735390901566, + 0.057294175028800964, + -0.015615744516253471, + 0.037593089044094086, + -0.046002332121133804, + -0.02039688639342785, + 0.05327841639518738, + 0.016371184960007668, + 0.03170860931277275, + -0.015685323625802994, + 0.00105550407897681, + 0.024094566702842712, + 0.005188681650906801, + 0.01287230383604765, + 0.004055520985275507, + -0.03315984830260277, + -0.013568103313446045, + -0.023359006270766258, + -0.07224394381046295, + 0.026480168104171753, + 0.02506868727505207, + 0.009010612964630127, + -0.018090805038809776, + -0.025207847356796265, + 0.009408212266862392, + 0.002512335777282715, + 0.024591566994786263, + -0.00372501602396369, + -0.0053924513049423695, + -0.025227727368474007, + -0.05538569390773773, + 0.012136743403971195, + -0.011709323152899742, + -0.04131065309047699, + -0.021828245371580124, + 0.043736010789871216, + 0.0302176084369421, + 0.023199966177344322, + -0.012912063859403133, + 0.020277606323361397, + 0.021609565243124962, + -0.03188752755522728, + 0.014164503663778305, + -0.062264177948236465, + 0.03315984830260277, + 0.0034218458458781242, + -0.07550425827503204, + 0.007653802167624235, + -0.04544569179415703, + -0.030973048880696297, + -0.0029298157896846533, + 0.04170825332403183, + 0.05319889634847641, + -0.03379600867629051, + -0.010834602639079094, + 0.02516808733344078, + -0.03156944736838341, + -0.023836126551032066, + -0.025088567286729813, + -0.009935032576322556, + 0.0017009829171001911, + -0.03395504876971245, + 0.031748369336128235, + -0.03081400878727436, + -0.01559586450457573, + -0.0030192758422344923, + 0.00947779230773449, + -0.024830127134919167, + -0.046757772564888, + 0.0055216713808476925, + -0.015069044195115566, + 0.024015046656131744, + 0.015735024586319923, + -0.020655326545238495, + -0.020357126370072365, + 0.015287724323570728, + 0.003705136012285948, + -0.03389541059732437, + -0.02614220790565014, + -0.04139017313718796, + -0.0370563305914402, + 0.06818842142820358, + 0.03186764940619469, + 0.0071816518902778625, + -0.012802723795175552, + 0.03069472871720791, + 0.0253668874502182, + 0.06472929567098618, + 0.029680848121643066, + -0.011639743112027645, + -0.0016351304948329926, + 0.002994425827637315, + 0.02178848534822464, + -0.017921825870871544, + -0.03486952930688858, + 0.04099257290363312, + -0.021629445254802704, + 0.03576413169503212, + -0.07232345640659332, + 0.004868116229772568, + 0.05578329414129257, + 0.03111220896244049, + -0.046121612191200256, + -0.04926265403628349, + -0.045008331537246704, + -0.023021046072244644, + 0.03538640961050987, + -0.020536046475172043, + 0.006500761955976486, + 0.03180800750851631, + 0.03359720855951309, + 0.05292057618498802, + -0.017812484875321388, + -0.014949764125049114, + 0.028845887631177902, + 0.019780606031417847, + 0.01999928615987301, + -0.020874006673693657, + 0.08659730106592178, + -0.057691775262355804, + 0.019442645832896233, + 0.03190740942955017, + -0.07912242412567139, + 0.046519212424755096, + 0.018170325085520744, + 0.012196383439004421, + 0.013448824174702168, + 0.009865452535450459, + -0.08500690013170242, + 0.0057204714976251125, + -0.03270260989665985, + 0.0517277754843235, + -0.03242428973317146, + -0.041151612997055054, + 0.012902123853564262, + 0.0003308157029096037, + -0.011937943287193775, + 0.004510276485234499, + 0.018617624416947365, + -0.016401004046201706, + -0.018369125202298164, + 0.009716352447867393, + 0.005218501668423414, + -0.02485000714659691, + 0.019880006089806557, + 0.032941170036792755, + -0.004353721160441637, + -0.043736010789871216, + 0.019134504720568657, + 0.06930170208215714, + -0.016222083941102028, + -0.035704489797353745, + -0.05001809448003769, + 0.00370265101082623, + -0.028448287397623062, + 0.047791533172130585, + 0.00023576444073114544, + 0.0012723203981295228, + 0.004771201405674219, + 0.02803080715239048, + -0.02616208791732788, + 0.06846673786640167, + -0.006928181741386652, + -0.02596328780055046, + -0.004067946225404739, + 0.011848483234643936, + 0.0010604740818962455, + -0.013090983964502811, + -0.02417408674955368, + -0.029541688039898872, + -0.014224143698811531, + 0.04238416999578476, + 0.007236321922391653, + 0.0034392408560961485, + -0.03447192907333374, + -0.013001523911952972, + -0.0335773304104805, + 0.007017641793936491, + -0.008697502315044403, + 0.011450883001089096, + 0.030058568343520164, + -0.0191543847322464, + -0.014104863628745079, + -0.022822245955467224, + -0.011013522744178772, + 0.024631327018141747, + -0.005939151626080275, + 0.03238452970981598, + 0.03644004836678505, + -0.02892540767788887, + 0.020774606615304947, + -0.00294472579844296, + 0.0016053104773163795, + 0.015426884405314922, + 0.041946813464164734, + 0.025426527485251427, + 0.019094744697213173, + -0.0004084719985257834, + 0.05606161430478096, + -0.024492166936397552, + -0.01238524354994297, + -0.046996332705020905, + -0.05486881360411644, + 0.03069472871720791, + 0.00025517851463519037, + -0.05991833657026291, + -0.04584329202771187, + 0.0029571508057415485, + -0.006848661694675684, + -0.03745393082499504, + 0.03638041019439697, + -0.03109232895076275, + 0.005516701377928257, + 0.0000358771976607386, + -0.042145613580942154, + -0.013886183500289917, + -0.02208668552339077, + -0.03785153105854988, + 0.07232345640659332, + -0.013031343929469585, + -0.01865738444030285, + -0.006461001932621002, + -0.013826543465256691, + 0.02942240796983242, + -0.023716846480965614, + 0.0071418918669223785, + -0.002530973171815276, + 0.0026788306422531605, + 0.011659623123705387, + -0.038388289511203766, + -0.00011531956261023879, + -0.007922181859612465, + 0.02288188599050045, + -0.0693812221288681, + 0.002265078015625477, + -0.0021681631915271282, + -0.023736726492643356, + 0.07506690174341202, + 0.036102090030908585, + -0.014820544049143791, + -0.018041105940937996, + 0.0614292174577713, + 0.0032876559998840094, + -0.02980012819170952, + 0.020436646416783333, + 0.022941526025533676, + -0.002281230641528964, + 0.020237846300005913, + -0.019184205681085587, + -0.07168730348348618, + -0.022066805511713028, + -0.039879292249679565, + 0.01470126397907734, + -0.005844721570611, + -0.032245367765426636, + 0.006013701669871807, + 0.01004934310913086, + -0.021470405161380768, + -0.005014731548726559, + 0.007718412205576897, + 0.057413455098867416, + -0.02365720644593239, + 0.011798783205449581, + 0.02594340778887272, + -0.009199472144246101, + -0.002181830583140254, + 0.040952812880277634, + -0.03268272802233696, + 0.018190205097198486, + -0.002663920633494854, + 0.022444525733590126, + 0.016629625111818314, + -0.015466644428670406, + -0.01480066403746605, + 0.024512046948075294, + 0.0016475555021315813, + 0.01451240386813879, + -0.05832793563604355, + -0.012653623707592487, + -0.01004934310913086, + 0.06433169543743134, + -0.025983167812228203, + -0.010337603278458118, + -0.017971524968743324, + -0.013677443377673626, + -0.01099364273250103, + -0.056817054748535156, + -0.027593446895480156, + -0.009542402811348438, + 0.010009583085775375, + 0.014422943815588951, + 0.014850364066660404, + 0.007609072141349316, + 0.05455073341727257, + -0.011073162779211998, + 0.03983953222632408, + -0.02445240691304207, + -0.024929527193307877, + 0.017822425812482834, + -0.0071518318727612495, + 0.014760904014110565, + 0.007256201934069395, + -0.045724011957645416, + 0.009646772406995296, + -0.027692846953868866, + 0.017395004630088806, + -0.007678652182221413, + 0.00564592145383358, + 0.013220204040408134, + 0.009607012383639812, + -0.06401361525058746, + 0.017116684466600418, + -0.001591642969287932, + 0.008886362425982952, + -0.042344409972429276, + -0.04131065309047699, + -0.0020849155262112617, + -0.042940810322761536, + 0.01347864419221878, + -0.028388647362589836, + -0.010526463389396667, + 0.022265605628490448, + -0.004798536188900471, + -0.014870244078338146, + -0.027573566883802414, + 0.057015854865312576, + 0.044928811490535736, + -0.011560223065316677, + 0.004974971525371075, + -0.008364512585103512, + -0.011540343053638935, + 0.010228263214230537, + 0.015029284171760082, + 0.052960336208343506, + -0.021331245079636574, + -0.0029397557955235243, + 0.05840745568275452, + -0.043417930603027344, + -0.011083102785050869, + -0.022524045780301094, + 0.03178812935948372, + -0.014661503955721855, + -0.0338158905506134, + -0.055226653814315796, + -0.006967941764742136, + 0.003071460872888565, + -0.03801057115197182, + -0.023796366527676582, + 0.00845397263765335, + -0.019015224650502205, + 0.02427348680794239, + 0.007400332018733025, + 0.042622730135917664, + -0.026818128302693367, + -0.012265963479876518, + 0.004773686174303293, + 0.04715537279844284, + 0.035724371671676636, + 0.037672609090805054, + 0.034829769283533096, + 0.012941883876919746, + 0.018597744405269623, + 0.0012580315815284848, + -0.012216263450682163, + -0.07781033962965012, + -0.03226524963974953, + 0.015019344165921211, + -0.005998791661113501, + 0.023120446130633354, + 0.05713513493537903, + -0.019989345222711563, + 0.0601966567337513, + -0.02041676640510559, + 0.012434943579137325, + -0.024392766878008842, + -0.021072806790471077, + -0.057612255215644836, + -0.016659444198012352, + -0.042423930019140244, + -0.03741417080163956, + 0.023040926083922386, + 0.051250655204057693, + 0.012434943579137325, + 0.0621846579015255, + 0.011480703018605709, + 0.00448294123634696, + 0.0021992255933582783, + -0.017723025754094124, + -0.020327305421233177, + 0.021132444962859154, + -0.03870636969804764, + 0.07005713880062103, + 0.019383005797863007, + -0.0165401641279459, + 0.03753345087170601, + -0.036300890147686005, + 0.018786605447530746, + -0.010755082592368126, + -0.02218608558177948, + -0.004810961429029703, + 0.05228441581130028, + 0.023418646305799484, + -0.011997583322227001, + 0.017563985660672188, + 0.02467108704149723, + -0.013130743987858295, + -0.045207131654024124, + -0.030376648530364037, + 0.04298057034611702, + 0.04266249015927315, + 0.018667325377464294, + -0.038090091198682785, + -0.02962120808660984, + 0.05339769646525383, + 0.0417877733707428, + -0.0187766645103693, + 0.015347364358603954, + -0.004224501084536314, + -0.03628100827336311, + -0.030654968693852425, + -0.024333126842975616, + -0.004423301201313734, + -0.05081329494714737, + 0.02168908528983593, + -0.002314778044819832, + 0.016748905181884766, + 0.008260142058134079, + 0.020476406440138817, + 0.05280129611492157, + -0.004714046139270067, + 0.01581454463303089, + -0.010635802522301674, + -0.04910361394286156, + -0.027513926848769188, + -0.03091340884566307, + -0.016301603987812996, + -0.008329722099006176, + 0.04083353281021118, + 0.03230500966310501, + -0.05061449483036995, + 0.014492523856461048, + 0.03178812935948372, + -0.011361422948539257, + -0.02447228692471981, + 0.017375124618411064, + -0.018895944580435753, + -0.032245367765426636, + 0.017544105648994446, + -0.017315484583377838, + 0.010437003336846828, + -0.024333126842975616, + 0.02031736634671688, + 0.010685502551496029, + 0.01248464360833168, + 0.011629803106188774, + -0.015874184668064117, + 0.009602042846381664, + 0.0019942130893468857, + -0.023895766586065292, + 0.030575448647141457, + 0.036121971905231476, + 0.039680492132902145, + -0.039064209908246994, + -0.02872660756111145, + 0.026818128302693367, + 0.027275366708636284, + -0.018548045307397842, + -0.035028569400310516, + -0.014949764125049114, + 0.03822924941778183, + 0.01034754328429699, + 0.00165998050943017, + -0.009626892395317554, + -0.021708965301513672, + 0.011669563129544258, + 0.0053328112699091434, + 0.06055449694395065, + 0.0036902260035276413, + -0.0015096379211172462, + -0.030257368460297585, + -0.02626148797571659, + -0.006013701669871807, + -0.03385565057396889, + -0.010054312646389008, + 0.024909647181630135, + -0.02415420673787594, + 0.011232202872633934, + 0.0012617590837180614, + 0.008881392888724804, + 0.038467809557914734, + 0.014939824119210243, + 0.009318752214312553, + 0.04803009331226349, + -0.016351304948329926, + -0.014234083704650402, + 0.01962156593799591, + -0.055504973977804184, + 0.02367708645761013, + -0.02101316675543785, + 0.0018277179915457964, + 0.03508821129798889, + 0.0031882559414952993, + 0.025585567578673363, + 0.042622730135917664, + 0.002842840738594532, + -0.02663920819759369, + 0.023319246247410774, + -0.014353363774716854, + -0.014661503955721855, + -0.003752351040020585, + 0.01559586450457573, + 0.010526463389396667, + 0.012096983380615711, + 0.010745142586529255, + 0.013498524203896523, + 0.0497397743165493, + 0.0335773304104805, + -0.016162443906068802, + 0.02327948622405529, + 0.021152324974536896, + -0.04298057034611702, + 0.013975643552839756, + 0.01832936517894268, + 0.025187967345118523, + -0.017563985660672188, + 0.035923171788454056, + 0.006396391894668341, + -0.007166741881519556, + 0.045127611607313156, + 0.005705561488866806, + -0.010675562545657158, + 0.006267171818763018, + -0.043020330369472504, + -0.0021656781900674105, + -0.033716488629579544, + 0.02683800831437111, + -0.028567567467689514, + 0.0015270329313352704, + 0.0037473810371011496, + -0.011102982796728611, + 0.004674286115914583, + 0.02596328780055046, + -0.008419182151556015, + 0.023100566118955612, + 0.010397243313491344, + -0.025923527777194977, + 0.012723203748464584, + 0.002803080715239048, + 0.02278248593211174, + 0.011699383147060871, + -0.029979048296809196, + 0.03618161007761955, + -0.004152436275035143, + -0.007822781801223755, + 0.019363125786185265, + -0.026678968220949173, + -0.04882529377937317, + 0.0417877733707428, + 0.03250380977988243, + -0.0009753627819009125, + 0.0054620313458144665, + 0.01708686538040638, + -0.011679503135383129, + -0.022245725616812706, + -0.010153712704777718, + -0.029641088098287582, + 0.013289784081280231, + 0.023696966469287872, + 0.04810961335897446, + -0.0038766011130064726, + -0.0017991404747590423, + 0.02071496658027172, + 0.03528701141476631, + -0.027494046837091446, + -0.017822425812482834, + -0.00042089700582437217, + -0.018418824300169945, + 0.024531926959753036, + 0.04063473269343376, + 0.028150087222456932, + -0.010755082592368126, + -0.008439062163233757, + 0.044610731303691864, + 0.007499732077121735, + -0.02586388774216175, + 0.030555568635463715, + -0.028746487572789192, + 0.002763320691883564, + -0.0028080507181584835, + -0.008106072433292866, + -0.0053924513049423695, + 0.0058099315501749516, + 0.031450167298316956, + 0.023498166352510452, + 0.01149064302444458, + -0.003946180921047926, + 0.007385422009974718, + 0.02663920819759369, + -0.042344409972429276, + 0.0034119058400392532, + -0.04727465286850929, + 0.005298021249473095, + 0.0026142208371311426, + 0.025207847356796265, + -0.010755082592368126, + 0.012762963771820068, + 0.031132088974118233, + 0.01247470360249281, + 0.022265605628490448, + 0.042821530252695084, + 0.007355601992458105, + 0.009756112471222878, + -0.01660974510014057, + -0.058009855449199677, + -0.0208938866853714, + -0.029959168285131454, + -0.0009635590249672532, + 0.017255844548344612, + -0.020635446533560753, + -0.009129892103374004, + 0.023597566410899162, + -0.02367708645761013, + -0.011659623123705387, + 0.026420528069138527, + 0.024929527193307877, + 0.0015096379211172462, + 0.007286021951586008, + 0.01601334474980831, + 0.029342887923121452, + -0.012494583614170551, + -0.015387124381959438, + -0.04663849249482155, + 0.0005808689165860415, + -0.009020552970468998, + -0.010506583377718925, + -0.0022961406502872705, + -0.001732045435346663, + -0.01972096599638462, + 0.015188324265182018, + -0.020734846591949463, + 0.0017755329608917236, + -0.002243955619633198, + 0.02991940826177597, + -0.0037772010546177626, + 0.06484857946634293, + -0.0037200460210442543, + -0.008150801993906498, + -0.015516344457864761, + 0.013786783441901207, + -0.06635946035385132, + 0.007117041852325201, + -0.004972486291080713, + 0.0007399089518003166, + 0.011102982796728611, + -0.02009868621826172, + -0.004487911239266396, + -0.017116684466600418, + 0.028547687456011772, + 0.005814901553094387, + -0.012603923678398132, + -0.03693705052137375, + -0.02031736634671688, + -0.002402995713055134, + -0.020933646708726883, + -0.024392766878008842, + -0.003772231051698327, + 0.030654968693852425, + 0.01045688334852457, + -0.030873648822307587, + -0.0360623300075531, + -0.008230322040617466, + -0.0009188289986923337, + -0.023696966469287872, + 0.0019047530367970467, + -0.045127611607313156, + -0.013438884168863297, + -0.025585567578673363, + -0.029183847829699516, + -0.03375624865293503, + 0.010327663272619247, + 0.03242428973317146, + -0.009050372056663036, + 0.008160741999745369, + -0.03427312895655632, + -0.049183133989572525, + 0.02942240796983242, + -0.02198728546500206, + 0.002581915818154812, + -0.011262022890150547, + 0.014959704130887985, + -0.002072490518912673, + -0.030953168869018555, + 0.034531570971012115, + -0.0027384706772863865, + -0.011331602931022644, + 0.06015689671039581, + 0.008339662104845047, + 0.0009144802461378276, + -0.03932265192270279, + -0.0013742053415626287, + 0.03226524963974953, + -0.03321949020028114, + -0.0020041530951857567, + 0.06556425988674164, + -0.008946002461016178, + -0.02387588657438755, + 0.0012238628696650267, + 0.0013829028466716409, + 0.01371720340102911, + -0.022961406037211418, + 0.02624160796403885, + -0.02445240691304207, + -0.028189847245812416, + -0.020039046183228493, + -0.0018836305243894458, + -0.021430645138025284, + 0.005253291688859463, + -0.018488405272364616, + 0.011301782913506031, + -0.005929211620241404, + 0.018319424241781235, + 0.008066312409937382, + -0.00020299349853303283, + -0.024730727076530457, + 0.010745142586529255, + 0.023836126551032066, + 0.022365005686879158, + -0.018518224358558655, + 0.022702965885400772, + -0.00735063198953867, + -0.0015531254466623068, + -0.014025343582034111, + 0.01540700439363718, + -0.017275724560022354, + -0.0014524828875437379, + 0.00644112192094326, + 0.0039213309064507484, + 0.005457061342895031, + -0.010715322569012642, + -0.03248392790555954, + -0.0026564656291157007, + 0.03584365174174309, + -0.00614292174577713, + 0.012951823882758617, + 0.03099292889237404, + -0.022504165768623352, + 0.0009343602578155696, + 0.01733536459505558, + 0.04508785158395767, + 0.034929171204566956, + 0.0071319518610835075, + -0.002882600761950016, + -0.014442823827266693, + 0.018269725143909454, + 0.021271605044603348, + -0.016053104773163795, + -0.020108625292778015, + -0.029760368168354034, + -0.005233411677181721, + 0.04083353281021118, + 0.0023197480477392673, + 0.0068337516859173775, + -0.014780784025788307, + 0.006769142113626003, + 0.00544712133705616, + -0.0009542402694933116, + -0.03910396993160248, + 0.02397528663277626, + -0.01519826427102089, + 0.016381124034523964, + 0.022702965885400772, + -0.025923527777194977, + 0.0020240331068634987, + -0.009621922858059406, + -0.004868116229772568, + -0.0198998861014843, + 0.0195221658796072, + 0.02832900732755661, + -0.05228441581130028, + -0.0010331390658393502, + -0.027474166825413704, + 0.014830484054982662, + 0.008906242437660694, + 0.03604245185852051, + -0.02355780638754368, + 0.023359006270766258, + 0.0021731331944465637, + -0.008488762192428112, + 0.036599088460206985, + -0.01975078508257866, + -0.016361244022846222, + 0.011729203164577484, + -0.02655968815088272, + -0.01581454463303089, + 0.010516523383557796, + -0.01818026416003704, + -0.06504737585783005, + 0.011550283059477806, + 0.007619012147188187, + -0.07443074136972427, + -0.006709502078592777, + 0.037891291081905365, + -0.00730590196326375, + -0.027692846953868866, + -0.008583192713558674, + 0.014949764125049114, + -0.03200680762529373, + 0.020078806206583977, + 0.061667777597904205, + 0.01401540357619524, + 0.02178848534822464, + 0.0029571508057415485, + -0.0005147057818248868, + 0.004430756438523531, + -0.01564556360244751, + -0.07121018320322037, + 0.007355601992458105, + -0.01441300380975008, + 0.03286164999008179, + 0.015804603695869446, + -0.0015481554437428713, + 0.030674848705530167, + -0.036400288343429565, + 0.009756112471222878, + -0.017673324793577194, + -0.013796723447740078, + 0.03387552872300148, + 0.019790545105934143, + 0.026022927835583687, + 0.009010612964630127, + -0.0257446076720953, + -0.0002453938068356365, + -0.022842125967144966, + 0.05844721570611, + -0.037195488810539246, + 0.02763320691883564, + -0.006774112116545439, + -0.012146683409810066, + 0.016768785193562508, + -0.004512761253863573, + 0.00946288276463747, + 0.03936241194605827, + -0.03238452970981598, + -0.0040008509531617165, + 0.02041676640510559, + 0.01813056506216526, + 0.00825517252087593, + 0.003792111063376069, + -0.008220382034778595, + -0.009035462513566017, + 0.016033224761486053, + -0.00014125675079412758, + -0.002609250834211707, + 0.01571514457464218, + -0.004400936421006918, + -0.0187766645103693, + -0.011202382855117321, + 0.0195221658796072, + -0.052841056138277054, + -0.0007989277364686131, + 0.041668493300676346, + 0.03737441077828407, + -0.013230144046247005, + 0.021132444962859154, + 0.0042195310816168785, + -0.0427817702293396, + -0.018886005505919456, + -0.021251725032925606, + 0.02415420673787594, + -0.009656712412834167, + 0.042742010205984116, + 0.0146118039265275, + 0.0017631079535931349, + 0.009805812500417233, + -0.006023641675710678, + -0.001751925447024405, + 0.010864422656595707, + 0.020675206556916237, + -0.021033046767115593, + 0.003993396181613207, + 0.014452763833105564, + -0.03993893042206764, + 0.02546628750860691, + 0.022524045780301094, + -0.008598102256655693, + 0.0008070039912126958, + -0.0023185056634247303, + 0.017295604571700096, + -0.01257410366088152, + -0.023796366527676582, + 0.012822603806853294, + 0.02594340778887272, + -0.004463061224669218, + 0.0006352282944135368, + 0.008439062163233757, + -0.008886362425982952, + -0.033537570387125015, + 0.022563805803656578, + -0.0009784690337255597, + -0.000970392778981477, + 0.0013207778101786971, + -0.0002506744349375367, + -0.0475132130086422, + 0.06437145918607712, + 0.010407183319330215, + 0.0008132164948619902, + -0.005129041615873575, + 0.029959168285131454, + -0.00906528253108263, + -0.0017606229521334171, + 0.019035104662179947, + 0.04329865053296089, + 0.02188788540661335, + 0.025227727368474007, + 0.0029273307882249355, + 0.030654968693852425, + -0.024810247123241425, + -0.022325245663523674, + 0.02455180697143078, + -0.0282296072691679, + 0.03129112720489502, + 0.02930312789976597, + 0.03347792848944664, + 0.02059568651020527, + 0.022643325850367546, + 0.03061520867049694, + 0.03379600867629051, + 0.006272141821682453, + 0.016152504831552505, + 0.0015730054583400488, + -0.034511689096689224, + 0.019293544813990593, + 0.009159712120890617, + -0.0017071954207494855, + -0.011431002989411354, + 0.03816961124539375, + -0.027454286813735962, + 0.02485000714659691, + -0.016798604279756546, + 0.019333304837346077, + -0.004731441382318735, + 0.03447192907333374, + -0.006421241909265518, + 0.02355780638754368, + 0.029004927724599838, + -0.022126445546746254, + 0.02912420779466629, + 0.01663956418633461, + 0.023060806095600128, + 0.009527492336928844, + -0.04723489284515381, + 0.00866768229752779, + 0.02952180802822113, + 0.014104863628745079, + -0.00844403263181448, + 0.01927366480231285, + 0.02248428575694561, + -0.012504523620009422, + 0.03011820837855339, + 0.002400510711595416, + 0.0024676057510077953, + -0.008205472491681576, + 0.02614220790565014, + 0.010198443196713924, + -0.0016587380087003112, + 0.021172204986214638, + 0.023995166644454002, + -0.009701442904770374, + 0.0025471257977187634, + 0.0328218899667263, + 0.005804961547255516, + 0.0027956257108598948, + 0.02842840738594532, + -0.003424330847337842, + -0.004796051420271397, + 0.024193966761231422, + -0.01391600351780653, + 0.012802723795175552, + -0.00836948212236166, + -0.011311722919344902, + -0.03176824748516083, + 0.03276224806904793, + 0.0012226203689351678, + 0.019780606031417847, + 0.010496643371880054, + 0.006510701961815357, + -0.009244202636182308, + -0.006038551684468985, + -0.00774823222309351, + -0.01584436371922493, + -0.020834246650338173, + 0.006858601700514555, + 0.012057223357260227, + -0.028309127315878868, + 0.009000672958791256, + -0.005874541588127613, + 0.015665443614125252, + 0.0071617718786001205, + 0.02496928721666336, + -0.040754012763500214, + -0.024034926667809486, + 0.012464763596653938, + -0.041072092950344086, + 0.008215412497520447, + -0.01471120398491621, + 0.040754012763500214, + -0.00644112192094326, + 0.015377184376120567, + -0.03797081112861633, + -0.02457168698310852, + 0.03170860931277275, + -0.0172856654971838, + -0.026122327893972397, + -0.0013307178160175681, + -0.01079484261572361, + 0.006674712058156729, + -0.0042394110932946205, + 0.05220489576458931, + -0.02397528663277626, + -0.002301110653206706, + -0.03347792848944664, + 0.03162908926606178, + 0.03651956841349602, + -0.024512046948075294, + 0.016560044139623642, + 0.007763142231851816, + 0.0033671760465949774, + 0.018647445365786552, + -0.033239368349313736, + 0.007792962249368429, + 0.01569526456296444, + 0.004028186202049255, + 0.011083102785050869, + 0.01609286479651928, + -0.014263903722167015, + 0.030953168869018555, + 0.002411693101748824, + -0.013627743348479271, + -0.017096804454922676, + -0.01059604249894619, + -0.031151968985795975, + 0.008752172812819481, + 0.007499732077121735, + -0.03703644871711731, + -0.04524689167737961, + -0.017454644665122032, + -0.009318752214312553, + 0.016331424936652184, + 0.017941705882549286, + 0.052761536091566086, + 0.011331602931022644, + 0.05816889554262161, + 0.04910361394286156, + 0.022424645721912384, + 0.03250380977988243, + 0.009537432342767715, + -0.010934002697467804, + -0.021569805219769478, + 0.007236321922391653, + 0.018895944580435753, + -0.0015779754612594843, + -0.02099328674376011, + -0.008970852941274643, + -0.029462167993187904, + 0.008150801993906498, + 0.012842483818531036, + 0.013200324028730392, + 0.0004550657467916608, + -0.01177890319377184, + 0.011540343053638935, + 0.0032255309633910656, + 0.027752486988902092, + -0.009522522799670696, + 0.013727143406867981, + 0.014681383967399597, + 0.010516523383557796, + -0.007867512293159962, + 0.017216084524989128, + -0.004791081417351961, + 0.003976000938564539, + 0.03735452890396118, + -0.02506868727505207, + 0.043616730719804764, + 0.043219130486249924, + 0.029541688039898872, + -0.001520820427685976, + 0.005129041615873575, + -0.001025684061460197, + 0.026500048115849495, + -0.0005793157615698874, + 0.023160206153988838, + 0.009035462513566017, + -0.017454644665122032, + -0.04345769062638283, + -0.0018277179915457964, + -0.023498166352510452, + -0.008125952444970608, + 0.006217471789568663, + 0.025486167520284653, + -0.019432704895734787, + 0.010407183319330215, + 0.03200680762529373, + -0.03250380977988243, + 0.01937306486070156, + 0.00710710184648633, + -0.00658525200560689, + 0.049183133989572525, + 0.023597566410899162, + 0.02646028809249401, + 0.021271605044603348, + 0.019263725727796555, + 0.01208704337477684, + 0.010864422656595707, + 0.0296013280749321, + 0.006490821950137615, + 0.00634172186255455, + -0.00012300752860028297, + -0.0009902727324515581, + 0.020476406440138817, + -0.034531570971012115, + 0.02653980813920498, + -0.023796366527676582, + -0.005795021541416645, + -0.0035709459334611893, + -0.013776843436062336, + 0.0004951363662257791, + 0.0016661930130794644, + 0.047195132821798325, + 0.020377006381750107, + -0.02387588657438755, + 0.003623130964115262, + 0.025724727660417557, + -0.029482048004865646, + -0.007156801875680685, + -0.012832543812692165, + -0.01660974510014057, + -0.011212322860956192, + 0.0495012141764164, + -0.010034432634711266, + -0.01045688334852457, + -0.013329544104635715, + 0.01733536459505558, + -0.023438526317477226, + 0.008657742291688919, + -0.007723382208496332, + -0.006490821950137615, + 0.0023359006736427546, + 0.005964001640677452, + -0.013876243494451046, + -0.005377541296184063, + 0.03479000926017761, + -0.029243487864732742, + -0.011609923094511032, + -0.00624232180416584, + 0.0002534700615797192, + -0.042940810322761536, + -0.025187967345118523, + 0.029482048004865646, + 0.037593089044094086, + 0.013587983325123787, + 0.018687205389142036, + -0.033716488629579544, + 0.017275724560022354, + 0.00005824220352224074, + 0.0071021318435668945, + 0.007276081945747137, + -0.009790902957320213, + -0.026122327893972397, + -0.03310021013021469, + 0.014174443669617176, + 0.019482405856251717, + 0.03001880832016468, + 0.013458764180541039, + 0.03622137010097504, + -0.029641088098287582, + 0.017166385427117348, + -0.011371362954378128, + 0.03914372995495796, + 0.0263608880341053, + 0.018995344638824463, + -0.006366571877151728, + -0.02703680843114853, + -0.0159139446914196, + 0.02377648651599884, + 0.006719442084431648, + -0.018150445073843002, + 0.007271111942827702, + -0.01288224384188652, + -0.017295604571700096, + -0.026102447882294655, + 0.015735024586319923, + -0.003754836041480303, + 0.00482587143778801, + -0.022404765710234642, + -0.04091305285692215, + 0.016251904889941216, + -0.0302176084369421, + -0.028309127315878868, + -0.04397457093000412, + -0.03504845127463341, + -0.012395183555781841, + -0.03940217196941376, + -0.019542045891284943, + 0.03584365174174309, + -0.020555926486849785, + 0.0053029912523925304, + -0.0302176084369421, + 0.01317050401121378, + -0.017424825578927994, + 0.04357697069644928, + 0.008439062163233757, + 0.01238524354994297, + 0.021410765126347542, + 0.04059497267007828, + 0.009989703074097633, + 0.021748725324869156, + 0.04142993316054344, + -0.01920408569276333, + -0.013737083412706852, + -0.005556461401283741, + 0.02506868727505207, + 0.04286129027605057, + 0.0001686694158706814, + 0.02504880726337433, + -0.014234083704650402, + 0.001590400468558073, + -0.02447228692471981, + -0.0035560359247028828, + -0.0011983915464952588, + -0.029541688039898872, + -0.030237488448619843, + 0.012444883584976196, + -0.03976001217961311, + 0.0008393090101890266, + 0.022365005686879158, + 0.028786247596144676, + -0.03315984830260277, + 0.0257446076720953, + -0.007067341823130846, + -0.012643683701753616, + -0.026102447882294655, + 0.0016463130014017224, + 0.019243845716118813, + -0.02387588657438755, + -0.010735202580690384, + -0.017474524676799774, + 0.007792962249368429, + 0.04425289109349251, + -0.026181967929005623, + -0.017305545508861542, + -0.018687205389142036, + 0.0320863276720047, + 0.009070252068340778, + 0.017872124910354614, + 0.0035659759305417538, + 0.0025844008196145296, + 0.011599983088672161, + 0.027692846953868866, + 0.023140326142311096, + -0.0041300710290670395, + 0.03496893122792244, + 0.018051045015454292, + -0.03437253087759018, + -0.011122862808406353, + 0.0053825112991034985, + -0.012534343637526035, + 0.007837692275643349, + 0.03051580861210823, + 0.006207531783729792, + -0.032921288162469864, + -0.011252082884311676, + 0.009830662980675697, + -0.010228263214230537, + 0.01346870418637991, + -0.01187830325216055, + -0.008125952444970608, + 0.04317937046289444, + -0.04536617174744606, + 0.0037001660093665123, + -0.01644076406955719, + 0.020635446533560753, + 0.0038964811246842146, + -0.028070567175745964, + -0.015049164183437824, + -0.005134011618793011, + -0.004102736245840788, + -0.0042990511283278465, + -0.054630253463983536, + -0.00488799624145031, + 0.013925943523645401, + 0.017116684466600418, + 0.010387303307652473, + 0.01287230383604765, + -0.019780606031417847, + -0.0017892004689201713, + 0.009020552970468998, + 0.010218323208391666, + 0.032642967998981476, + 0.004818416200578213, + -0.026380768045783043, + 0.005824841558933258, + 0.040952812880277634, + -0.021828245371580124, + -0.014452763833105564, + 0.0011344028171151876, + -0.031947169452905655, + 0.00785757228732109, + -0.012067163363099098, + -0.0047264713793993, + 0.0022153782192617655, + -0.0030764308758080006, + -0.021052926778793335, + -0.015983523800969124, + 0.00041685887845233083, + -0.022464405745267868, + 0.008995702490210533, + -0.03974013030529022, + 0.0022663206327706575, + 0.05228441581130028, + -0.020436646416783333, + 0.02675848826766014, + -0.0027484106831252575, + 0.005675741471350193, + -0.005879511591047049, + 0.01109304279088974, + 0.023199966177344322, + -0.00015049785724841058, + 0.012444883584976196, + 0.03296104818582535, + -0.010536403395235538, + -0.011321662925183773, + -0.020029105246067047, + 0.007991761900484562, + -0.041867293417453766, + 0.02586388774216175, + -0.003715076018124819, + 0.01649046503007412, + 0.014333483763039112, + 0.0034566358663141727, + 0.02999892830848694, + -0.0031062508933246136, + -0.006257231812924147, + -0.027613326907157898, + -0.023239726200699806, + -0.013230144046247005, + -0.05411337688565254, + 0.03447192907333374, + -0.008001701906323433, + 0.012037343345582485, + 0.009597072377800941, + 0.017554044723510742, + -0.002190528204664588, + -0.0016189779853448272, + 0.008265112526714802, + -0.0011232203105464578, + -0.007927152328193188, + -0.01847846433520317, + -0.00997479259967804, + -0.01930348575115204, + -0.03960097208619118, + -0.015585924498736858, + 0.030476048588752747, + 0.017226025462150574, + -0.024313246831297874, + 0.010039403103291988, + 0.004234441090375185, + -0.01870708540081978, + 0.011023462750017643, + -0.018488405272364616, + 0.016798604279756546, + 0.043736010789871216, + -0.024710847064852715, + 0.006928181741386652, + 0.0028279307298362255, + 0.004015760961920023, + -0.009085162542760372, + 0.0030590358655899763, + -0.005924241617321968, + -0.010705382563173771, + -0.012653623707592487, + 0.0009610740235075355, + 0.011142742820084095, + -0.003352266037836671, + 0.04787105321884155, + -0.04544569179415703, + -0.0015233054291456938, + 0.02387588657438755, + 0.0004302157321944833, + 0.007474882062524557, + -0.01720614545047283, + -0.004443181212991476, + -0.014035283587872982, + 0.018001345917582512, + 0.0011685715289786458, + -0.020635446533560753, + 0.0014760904014110565, + 0.02783200703561306, + 0.01539706438779831, + -0.03148992732167244, + 0.015327484346926212, + 0.01401540357619524, + 0.013518404215574265, + 0.028905527666211128, + -0.024690967053174973, + 0.024810247123241425, + -0.026181967929005623, + -0.015317544341087341, + 0.01099364273250103, + 0.011450883001089096, + 0.03029712848365307, + 0.009920123033225536, + -0.02006886526942253, + 0.0053029912523925304, + 0.01510880421847105, + 0.000760410213842988, + -0.019144445657730103, + -0.017365185543894768, + 0.0032155909575521946, + 0.0025148207787424326, + -0.02397528663277626, + 0.004709076136350632, + -0.0213908851146698, + -0.012027403339743614, + 0.02486988715827465, + -0.028905527666211128, + -0.03638041019439697, + 0.004301536362618208, + -0.029859768226742744, + 0.006232381798326969, + -0.0069629717618227005, + -0.0024464831221848726, + 0.013120803982019424, + 0.031231489032506943, + 0.008215412497520447, + 0.0013232628116384149, + 0.0028552657458931208, + -0.009219352155923843, + 0.019144445657730103, + -0.006774112116545439, + 0.0034094208385795355, + -0.035008691251277924, + 0.026221727952361107, + -0.026718728244304657, + 0.03735452890396118, + 0.01559586450457573, + -0.005924241617321968, + -0.02367708645761013, + -0.014691323973238468, + 0.013359364122152328, + -0.0042990511283278465, + 0.016500404104590416, + 0.009209412150084972, + 0.00408534100279212, + -0.010774962604045868, + -0.004738896153867245, + 0.01649046503007412, + -0.027315126731991768, + 0.021033046767115593, + -0.03445205092430115, + 0.03109232895076275, + 0.006749262101948261, + -0.008806842379271984, + -0.00805637240409851, + -0.044411931186914444, + 0.014184383675456047, + -0.015585924498736858, + 0.016560044139623642, + 0.007375482004135847, + 0.011440942995250225, + -0.02616208791732788, + -0.018120624125003815, + -0.01277290377765894 + ] + }, + { + "HotelId": "10", + "HotelName": "Countryside Hotel", + "Description": "Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.", + "Description_fr": "Ɖconomisez jusqu'Ć  50% sur les hĆ“tels traditionnels. WiFi gratuit, trĆØs bien situĆ© prĆØs du centre-ville, cuisine complĆØte, laveuse & sĆ©cheuse, support 24/7, bowling, centre de fitness et plus encore.", + "Category": "Extended-Stay", + "Tags": [ + "24-hour front desk service", + "laundry service", + "free wifi" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-09-06T00:00:00Z", + "Rating": 2.7, + "Address": { + "StreetAddress": "6910 Fayetteville Rd", + "City": "Durham", + "StateProvince": "NC", + "PostalCode": "27713", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -78.940483, + 35.90416 + ] + }, + "Rooms": [ + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 244.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 76.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 150.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 238.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 122.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "coffee maker" + ] + } + ], + "embedding": [ + -0.04537378251552582, + -0.006900050677359104, + 0.04199513792991638, + 0.042756520211696625, + -0.028052276000380516, + -0.033857837319374084, + -0.027742963284254074, + 0.01172413770109415, + 0.030574362725019455, + 0.015644080936908722, + 0.01990307681262493, + 0.012253538705408573, + -0.022318094968795776, + 0.009850417263805866, + -0.017154954373836517, + 0.05353487655520439, + -0.05719904229044914, + 0.05510523542761803, + 0.01363354828208685, + 0.030526775866746902, + 0.04420791193842888, + 0.022187232971191406, + -0.04991829767823219, + -0.02576812170445919, + 0.03980615362524986, + 0.03899718448519707, + -0.0355471596121788, + -0.05548592656850815, + -0.00016329996287822723, + -0.014157000929117203, + -0.03055056929588318, + -0.044612396508455276, + -0.016524432227015495, + -0.07585297524929047, + 0.01695271022617817, + 0.03690337389707565, + -0.009862313978374004, + -0.0025696740485727787, + 0.05872181057929993, + -0.030812295153737068, + -0.013086303137242794, + 0.011099564842879772, + 0.010118091478943825, + -0.024340523406863213, + -0.009136619046330452, + 0.02062877267599106, + -0.011057926341891289, + 0.013181476853787899, + -0.019700834527611732, + -0.0023510733153671026, + 0.007488934323191643, + -0.010998442769050598, + 0.0016209171153604984, + -0.07728056609630585, + -0.022591717541217804, + 0.03890201076865196, + -0.009487570263445377, + -0.011557585559785366, + 0.014620970003306866, + 0.029860565438866615, + 0.05986388772726059, + 0.004006193485110998, + 0.02938469871878624, + 0.04632551223039627, + -0.036498889327049255, + -0.00039073024527169764, + -0.019950663670897484, + 0.025863293558359146, + -0.02945607900619507, + 0.0038931751623749733, + 0.016453051939606667, + 0.008904634974896908, + 0.006358753889799118, + -0.009368603117763996, + 0.030455397441983223, + 0.0025057296734303236, + 0.012003709562122822, + -0.03990132734179497, + -0.012610437348484993, + 0.011658706702291965, + -0.03178782016038895, + -0.014989765360951424, + -0.024768803268671036, + 0.05510523542761803, + 0.023472068831324577, + -0.021437743678689003, + -0.028908833861351013, + -0.027100544422864914, + 0.01384768821299076, + 0.05225003883242607, + 0.026529505848884583, + 0.023353103548288345, + -0.022389475256204605, + -0.030384017154574394, + 0.02281775511801243, + -0.0004368297231849283, + -0.0006992993294261396, + 0.0007320151198655367, + -0.00231092213653028, + 0.0537252239882946, + 0.025625361129641533, + -0.08042128384113312, + 0.03309645131230354, + 0.024816390126943588, + 0.0002489000034984201, + -0.05148865655064583, + -0.01861824095249176, + 0.008137301541864872, + 0.05296383798122406, + 0.03899718448519707, + -0.11753879487514496, + 0.009231791831552982, + -0.05629489943385124, + -0.024138281121850014, + -0.01572735793888569, + -0.01874910295009613, + -0.014668555930256844, + -0.011093616485595703, + -0.05110796168446541, + -0.02035515010356903, + -0.006560996640473604, + 0.03304886445403099, + -0.010278696194291115, + -0.012705611065030098, + -0.020081527531147003, + -0.023745691403746605, + -0.027219511568546295, + 0.01391906850039959, + 0.014965971931815147, + -0.034571632742881775, + -0.03802166134119034, + 0.037022341042757034, + 0.009689812548458576, + -0.023150859400629997, + -0.02655329927802086, + 0.04218548163771629, + 0.0019138718489557505, + -0.010766458697617054, + -0.011973967775702477, + 0.02376948483288288, + 0.05810318514704704, + -0.0027540719602257013, + 0.046801380813121796, + -0.028694694861769676, + -0.048300355672836304, + -0.03633233532309532, + 0.047657936811447144, + -0.01579873636364937, + -0.011896639131009579, + 0.05239279940724373, + -0.005505169741809368, + 0.02332931011915207, + -0.007387813180685043, + 0.006162459030747414, + -0.006138666067272425, + 0.024435697123408318, + -0.03728406876325607, + 0.02790951542556286, + -0.06362322717905045, + 0.03207334131002426, + -0.048538289964199066, + -0.02086670510470867, + -0.015560803934931755, + 0.052535559982061386, + 0.018249444663524628, + -0.0024194789584726095, + 0.014228380285203457, + -0.025411222130060196, + -0.049585193395614624, + -0.021663781255483627, + 0.09255585819482803, + -0.004999562632292509, + 0.01359785906970501, + 0.09174688160419464, + 0.034048181027173996, + -0.003646319964900613, + 0.012182158417999744, + -0.007946955040097237, + -0.025101909413933754, + -0.0016015850706025958, + -0.012776990421116352, + -0.02964642457664013, + 0.04363687336444855, + -0.006715652998536825, + -0.01719064451754093, + 0.014228380285203457, + -0.023495862260460854, + 0.00808971468359232, + -0.011991812847554684, + 0.03680820390582085, + -0.0069357408210635185, + -0.014466313645243645, + -0.031216781586408615, + -0.00766738411039114, + 0.022853443399071693, + 0.01391906850039959, + -0.04915691539645195, + -0.03516646474599838, + -0.0006420467398129404, + 0.042423415929079056, + -0.04801483824849129, + -0.02493535540997982, + 0.04311342164874077, + -0.0031347644980996847, + -0.03897339105606079, + -0.0482051819562912, + 0.017511853948235512, + 0.016143739223480225, + -0.030122291296720505, + -0.019891181960701942, + 0.033477142453193665, + 0.043922390788793564, + 0.03247782588005066, + 0.018261341378092766, + 0.025625361129641533, + -0.0691908523440361, + -0.0023436378687620163, + 0.0007829475798644125, + 0.05172658711671829, + 0.0501086451113224, + -0.015703564509749413, + 0.01104602962732315, + -0.026791231706738472, + 0.06243356317281723, + -0.015465631149709225, + 0.005472454242408276, + -0.010576112195849419, + -0.02757640928030014, + 0.009547052904963493, + -0.00856558047235012, + 0.006870309356600046, + -0.024435697123408318, + -0.054867301136255264, + -0.03683199733495712, + -0.006317115388810635, + 0.03216851130127907, + -0.041328925639390945, + 0.019629454240202904, + -0.0026975630316883326, + -0.018903760239481926, + -0.03350093588232994, + -0.02242516539990902, + -0.06243356317281723, + 0.05153624340891838, + 0.02144964039325714, + 0.0014201613375917077, + -0.014704246073961258, + -0.0268626119941473, + 0.026981577277183533, + 0.017618922516703606, + -0.03614199161529541, + 0.023614829406142235, + -0.026719851419329643, + -0.023150859400629997, + 0.07390192151069641, + -0.009428086690604687, + -0.020985672250390053, + -0.005630084779113531, + 0.047515176236629486, + 0.006180304102599621, + 0.02363862283527851, + 0.0459924079477787, + 0.008196784183382988, + -0.00834549218416214, + 0.01178956963121891, + 0.039520636200904846, + -0.01352647878229618, + 0.03790269419550896, + 0.020973775535821915, + -0.014799419790506363, + -0.03911615163087845, + 0.007471089717000723, + 0.0021384209394454956, + -0.03690337389707565, + 0.05405832827091217, + -0.018784793093800545, + -0.03164505958557129, + -0.011337497271597385, + 0.006406340282410383, + 0.04791966453194618, + -0.052154868841171265, + -0.02152102068066597, + 0.06324253231287003, + -0.05096520483493805, + 0.029717804864048958, + -0.008636959828436375, + 0.007578159216791391, + 0.04316100850701332, + 0.009422138333320618, + 0.000633496034424752, + -0.011301807127892971, + 0.011349393986165524, + -0.01719064451754093, + -0.08689305186271667, + 0.010058608837425709, + 0.04235203564167023, + -0.016643399372696877, + -0.002768942853435874, + 0.011331548914313316, + -0.00041712590609677136, + 0.022782064974308014, + 0.002667821478098631, + -0.023662416264414787, + 0.004038908984512091, + 0.03742682933807373, + 0.039068564772605896, + -0.02030756324529648, + -0.018189961090683937, + 0.021544814109802246, + 0.0015302052488550544, + -0.01880858652293682, + -0.0034440772142261267, + 0.019760318100452423, + -0.0010721846483647823, + -0.018154270946979523, + 0.01752375066280365, + -0.037474412471055984, + 0.051964521408081055, + -0.0059304749593138695, + -0.030502984300255775, + 0.013740618713200092, + -0.0018618240719661117, + 0.03342955559492111, + -0.012015605345368385, + 0.012396298348903656, + -0.022151542827486992, + 0.025625361129641533, + -0.004541541915386915, + -0.010320334695279598, + -0.02526846155524254, + 0.013764412142336369, + 0.0020744765643030405, + 0.02222292311489582, + -0.022663097828626633, + -0.03768855333328247, + 0.03309645131230354, + -0.021473433822393417, + 0.00507689081132412, + -0.02165188454091549, + 0.023031894117593765, + -0.03243023902177811, + -0.004253048449754715, + -0.038116831332445145, + -0.028195034712553024, + 0.02074773982167244, + -0.009755244478583336, + -0.025863293558359146, + 0.04634930565953255, + 0.011593274772167206, + 0.030502984300255775, + -0.029099179431796074, + 0.007631693966686726, + -0.012182158417999744, + 0.01882048323750496, + 0.04699172452092171, + 0.041590649634599686, + 0.036165785044431686, + -0.005082839168608189, + 0.008119456470012665, + -0.01243198849260807, + 0.008113508112728596, + 0.0491093285381794, + 0.02210395596921444, + -0.018130477517843246, + 0.027552617713809013, + 0.03471439331769943, + -0.0072807432152330875, + -0.0038574852515012026, + 0.024055004119873047, + 0.013348028995096684, + 0.057627320289611816, + 0.046682413667440414, + -0.004508826415985823, + 0.03188299387693405, + -0.014609073288738728, + 0.03216851130127907, + 0.04273273050785065, + 0.06343287974596024, + 0.042827900499105453, + -0.02068825624883175, + 0.024982942268252373, + -0.01030843798071146, + 0.01114715076982975, + -0.012491471134126186, + 0.043779633939266205, + 0.035975437611341476, + -0.053630050271749496, + -0.012289228849112988, + -0.03925890848040581, + 0.010718871839344501, + 0.0012097394792363048, + -0.010124039836227894, + -0.021735159680247307, + -0.010546370409429073, + -0.007465141359716654, + -0.0095648979768157, + 0.027076750993728638, + 0.022567924112081528, + -0.04135271906852722, + -0.0272670965641737, + 0.004128133878111839, + -0.019796008244156837, + -0.01437113992869854, + -0.024185867980122566, + 0.006971430499106646, + -0.004297661129385233, + -0.003476792946457863, + -0.01726202294230461, + 0.0008632498793303967, + -0.024697422981262207, + 0.00251316512003541, + -0.039710983633995056, + 0.04634930565953255, + -0.030431604012846947, + -0.044588603079319, + -0.006733498070389032, + 0.0051452964544296265, + -0.05220245197415352, + -0.005338617134839296, + 0.007709022145718336, + 0.00090786226792261, + 0.01391906850039959, + 0.012658024206757545, + 0.004470162093639374, + -0.011379135772585869, + 0.01510873157531023, + 0.006388495210558176, + -0.015192008577287197, + -0.08651236444711685, + -0.03840235248208046, + -0.04199513792991638, + -0.035475779324769974, + 0.004113262984901667, + 0.05700869485735893, + -0.031074022874236107, + -0.0026217219419777393, + -0.028718488290905952, + 0.013359925709664822, + -0.0032507567666471004, + -0.0070844488218426704, + -0.030265050008893013, + -0.0040210639126598835, + -0.024388110265135765, + -0.015691667795181274, + -0.027481237426400185, + -0.015608390793204308, + 0.013859584927558899, + 0.0900813564658165, + -0.013121993280947208, + 0.0022068265825510025, + -0.045135848224163055, + -0.022341888397932053, + 0.009005756117403507, + -0.002133959671482444, + -0.028980214148759842, + -0.036308541893959045, + 0.04982312396168709, + -0.04982312396168709, + -0.00013643958664033562, + 0.01855875737965107, + 0.04561171680688858, + 0.01759512908756733, + -0.002294564386829734, + -0.006537203211337328, + 0.033667489886283875, + 0.0005702951457351446, + -0.017809269949793816, + 0.04061512649059296, + 0.0018023408483713865, + -0.022020678967237473, + -0.029337111860513687, + -0.03492853417992592, + 0.0006331242620944977, + 0.03409576788544655, + -0.027671582996845245, + -0.047515176236629486, + 0.042042724788188934, + 0.033215418457984924, + 0.013026820495724678, + 0.008631011471152306, + -0.07713781297206879, + -0.0009167847456410527, + -0.023543449118733406, + -0.044588603079319, + -0.03557095304131508, + -0.04054374620318413, + -0.029265733435750008, + -0.012134572491049767, + -0.07842264324426651, + 0.026053640991449356, + 0.023365000262856483, + 0.008500148542225361, + 0.036689236760139465, + -0.01120663434267044, + -0.027861928567290306, + 0.0021131406538188457, + -0.052868664264678955, + 0.01507304236292839, + 0.04473136365413666, + 0.004969821311533451, + 0.020759636536240578, + -0.020152907818555832, + -0.03190678730607033, + -0.00523749552667141, + 0.019688937813043594, + 0.024507077410817146, + 0.013240959495306015, + -0.04280410706996918, + -0.015465631149709225, + 0.01629839651286602, + -0.00009656725160311908, + -0.009386448189616203, + 0.006822722498327494, + 0.02022428624331951, + 0.004951976239681244, + 0.012705611065030098, + -0.005752025172114372, + -0.00483300955966115, + 0.007899368181824684, + -0.04692034423351288, + -0.0075960042886435986, + 0.03264437988400459, + 0.01830892823636532, + 0.012919750064611435, + -0.03478577360510826, + -0.0197841115295887, + -0.03480956703424454, + -0.07209363579750061, + 0.014394933357834816, + 0.008357388898730278, + -0.002359995851293206, + 0.009553001262247562, + 0.022972410544753075, + -0.007001172285526991, + -0.008071869611740112, + 0.0008981962455436587, + 0.03438128903508186, + 0.016643399372696877, + 0.03426232188940048, + -0.021996885538101196, + 0.045207228511571884, + 0.004327402450144291, + 0.0021324725821614265, + -0.01475183293223381, + 0.00460399966686964, + -0.027885721996426582, + -0.028171241283416748, + 0.019629454240202904, + -0.001419417792931199, + -0.002422453137114644, + 0.010011021979153156, + -0.014133207499980927, + -0.014204587787389755, + -0.02569674141705036, + 0.00015428454207722098, + -0.01984359510242939, + 0.01211672741919756, + -0.004050805699080229, + 0.009350758977234364, + 0.0019198202062398195, + -0.02693399228155613, + -0.019248763099312782, + -0.00042604838381521404, + 0.024649836122989655, + 0.04213789850473404, + 0.0035689917858690023, + 0.0404723659157753, + 0.038045451045036316, + -0.027790550142526627, + 0.0030752813909202814, + -0.004586154595017433, + 0.05334453284740448, + -0.015084939077496529, + -0.04078168049454689, + -0.002794223139062524, + -0.02531604841351509, + 0.003200195962563157, + -0.025982260704040527, + -0.038497526198625565, + -0.0032953692134469748, + 0.01104602962732315, + 0.0034827410709112883, + 0.0364513024687767, + 0.036570269614458084, + 0.012152417562901974, + -0.019379625096917152, + 0.03009849786758423, + 0.033596109598875046, + 0.013145786710083485, + 0.02512570284307003, + 0.005243443883955479, + 0.014418726786971092, + -0.0038485629484057426, + -0.03333438187837601, + -0.008399027399718761, + -0.007143931929022074, + -0.00547542842105031, + 0.0004111776070203632, + -0.05443902313709259, + 0.0025116780307143927, + -0.011361290700733662, + -0.05296383798122406, + 0.0118490532040596, + 0.004080547485500574, + -0.01676236465573311, + 0.015989083796739578, + -0.05225003883242607, + -0.01695271022617817, + -0.016524432227015495, + -0.03968719020485878, + 0.015418044291436672, + -0.0013063997030258179, + 0.0010565703269094229, + 0.028623314574360847, + -0.01876099966466427, + 0.00012435705866664648, + -0.029527459293603897, + 0.03335817530751228, + 0.0011123358272016048, + -0.034880947321653366, + 0.0044969297014176846, + -0.021437743678689003, + 0.008327647112309933, + 0.03376266360282898, + 0.013407512567937374, + 0.024269144982099533, + -0.007946955040097237, + -0.044422052800655365, + -0.020248079672455788, + -0.012479574419558048, + 0.009106877259910107, + 0.09150894731283188, + 0.028885040432214737, + -0.011551637202501297, + 0.015691667795181274, + 0.025244668126106262, + 0.009707657620310783, + -0.04273273050785065, + 0.013395615853369236, + 0.007417554501444101, + -0.018142374232411385, + -0.027719169855117798, + -0.01695271022617817, + -0.020212389528751373, + -0.01804720237851143, + 0.015132525004446507, + 0.001339115435257554, + -0.028813660144805908, + -0.004374989308416843, + 0.013764412142336369, + 0.0035005861427634954, + -0.022080162540078163, + 0.03271576017141342, + 0.006608583033084869, + -0.017440473660826683, + 0.00015744459233246744, + -0.010100246407091618, + -0.018285134807229042, + 0.00333403330296278, + 0.014228380285203457, + 0.015751151368021965, + 0.010701026767492294, + -0.03754579275846481, + -0.012384401634335518, + -0.0017770605627447367, + 0.024078797549009323, + 0.023436378687620163, + 0.026434332132339478, + -0.043589286506175995, + -0.0013963680248707533, + 0.018475480377674103, + 0.043708253651857376, + 0.015679771080613136, + -0.0029250863008201122, + -0.030621949583292007, + 0.00979093462228775, + 0.03557095304131508, + -0.02769537642598152, + -0.0013294494710862637, + 0.04118616506457329, + 0.009463776834309101, + 0.022496545687317848, + -0.023876555263996124, + 0.01231302134692669, + 0.014799419790506363, + -0.023234136402606964, + -0.0005018895026296377, + 0.044303085654973984, + 0.012122675776481628, + -0.039853740483522415, + -0.015418044291436672, + -0.02874227985739708, + 0.0038426145911216736, + 0.009874210692942142, + -0.017428576946258545, + -0.01507304236292839, + 0.016774261370301247, + 0.006352805532515049, + 0.0037236481439322233, + -0.06847705692052841, + 0.0112720662727952, + 0.00684651592746377, + -0.006013751029968262, + -0.04189996421337128, + -0.023412587121129036, + -0.06057768687605858, + 0.025411222130060196, + -0.0518217608332634, + -0.0015748176956549287, + -0.01095680519938469, + 0.0016699907137081027, + -0.029979530721902847, + -0.004080547485500574, + -0.017119264230132103, + 0.0015316923381760716, + -0.013312339782714844, + -0.021045155823230743, + 0.0021265242248773575, + -0.003964554984122515, + -0.04813380166888237, + 0.021497227251529694, + 0.028242621570825577, + 0.027362270280718803, + -0.02602984756231308, + -0.012610437348484993, + 0.021306881681084633, + -0.01733340322971344, + -0.023436378687620163, + -0.03285851702094078, + -0.015679771080613136, + 0.029218146577477455, + 0.0049668471328914165, + 0.015548908151686192, + 0.010552318766713142, + -0.012134572491049767, + 0.0072807432152330875, + -0.025791915133595467, + 0.03918753191828728, + -0.0436844602227211, + -0.008791616186499596, + 0.018189961090683937, + 0.010938960127532482, + 0.027790550142526627, + -0.006721601355820894, + 0.024257248267531395, + -0.0441841185092926, + 0.04028202220797539, + -0.020069630816578865, + -0.07804195582866669, + -0.008803512901067734, + -0.009606536477804184, + 0.008042127825319767, + -0.00026544375577941537, + 0.011968019418418407, + -0.010100246407091618, + -0.04601620137691498, + 0.0029310344252735376, + 0.02313896454870701, + 0.006108924280852079, + 0.01603667065501213, + 0.008529890328645706, + 0.014502003788948059, + 0.0006970686954446137, + 0.0181780643761158, + 0.03557095304131508, + -0.004517748951911926, + 0.007524624466896057, + 0.02131877839565277, + -0.00941024161875248, + -0.007982645183801651, + 0.026838818565011024, + -0.02171136625111103, + 0.012324918061494827, + -0.008678598329424858, + -0.027552617713809013, + -0.02203257568180561, + -0.009303172118961811, + -0.03435749560594559, + -0.0023867632262408733, + -0.020402736961841583, + 0.007054707035422325, + -0.0037623122334480286, + 0.03416714817285538, + 0.017630819231271744, + -0.02262740768492222, + 0.003839640412479639, + 0.06533634662628174, + -0.02158050425350666, + 0.03445266932249069, + -0.010112143121659756, + 0.0014915411593392491, + -0.008619115687906742, + 0.01104602962732315, + -0.053059011697769165, + 0.005826379172503948, + 0.012194055132567883, + 0.007132035214453936, + -0.006352805532515049, + 0.02893262729048729, + 0.008517993614077568, + 0.0008446613792330027, + -0.004951976239681244, + 0.028647108003497124, + -0.012253538705408573, + 0.036118198186159134, + 0.004684301558881998, + -0.021830333396792412, + -0.007340226322412491, + -0.0004914799355901778, + -0.024649836122989655, + 0.011028184555470943, + 0.023805174976587296, + 0.031074022874236107, + 0.018523067235946655, + -0.012610437348484993, + 0.006721601355820894, + -0.013288546353578568, + 0.05420108884572983, + -0.043708253651857376, + 0.011872845701873302, + 0.012146469205617905, + -0.011379135772585869, + -0.008529890328645706, + 0.024304835125803947, + 0.01263423077762127, + 0.005894784815609455, + -0.022924823686480522, + 0.014002344571053982, + 0.011753879487514496, + -0.028171241283416748, + -0.03342955559492111, + -0.005499221384525299, + 0.0061148726381361485, + 0.012479574419558048, + 0.015180111862719059, + -0.012289228849112988, + 0.016024773940443993, + 0.018023408949375153, + 0.009184205904603004, + 0.021663781255483627, + 0.019605660811066628, + -0.02519708313047886, + -0.018534963950514793, + -0.006572893355041742, + -0.029099179431796074, + 0.0024953200481832027, + 0.027552617713809013, + -0.01926065981388092, + -0.012991130352020264, + -0.020117217674851418, + -0.0019153589382767677, + 0.0020432479213923216, + 0.0031288161408156157, + 0.0005360923241823912, + -0.0039110202342271805, + -0.034500252455472946, + -0.006995223928242922, + 0.011563533917069435, + 0.011831208132207394, + -0.015703564509749413, + -0.013407512567937374, + 0.02460225112736225, + 0.02648191899061203, + -0.016643399372696877, + 0.003566017607226968, + 0.032311271876096725, + -0.02273447811603546, + 0.02190171368420124, + 0.004485032986849546, + -0.005088787525892258, + -0.029789185151457787, + 0.007607901003211737, + -0.0364513024687767, + -0.009118773974478245, + 0.013585962355136871, + -0.035095084458589554, + 0.014609073288738728, + 0.020700152963399887, + -0.01469234935939312, + -0.04737241938710213, + 0.011545688845217228, + 0.00502633024007082, + -0.005481376778334379, + 0.0018410049378871918, + 0.02493535540997982, + 0.011040081270039082, + 0.014739936217665672, + 0.030502984300255775, + -0.01908220909535885, + -0.019046518951654434, + -0.005091761704534292, + 0.06057768687605858, + 0.002426914405077696, + 0.0363561287522316, + -0.012967336922883987, + -0.004050805699080229, + -0.03316783159971237, + 0.014644763432443142, + 0.009880159050226212, + 0.054676953703165054, + -0.003200195962563157, + 0.015358561649918556, + -0.027433650568127632, + 0.018285134807229042, + 0.0005550525966100395, + 0.02004583738744259, + -0.02223481982946396, + 0.0038991235196590424, + -0.015299078077077866, + 0.010064557194709778, + 0.03419094160199165, + -0.04289928078651428, + -0.02222292311489582, + -0.006388495210558176, + -0.017940131947398186, + 0.019926870241761208, + -0.01073076855391264, + -0.033144038170576096, + 0.030384017154574394, + -0.0025101909413933754, + -0.014502003788948059, + 0.019831698387861252, + -0.023162756115198135, + 0.01940341852605343, + 0.015180111862719059, + 0.002096782671287656, + 0.0004885057569481432, + 0.0005929731414653361, + 0.02055739238858223, + 0.016905125230550766, + 0.021354468539357185, + 0.017761683091521263, + -0.006144614424556494, + -0.02957504615187645, + 0.04451722279191017, + 0.030360223725438118, + 0.03756958618760109, + -0.024721216410398483, + -0.013229062780737877, + -0.03383404389023781, + 0.001440236927010119, + 0.017642715945839882, + 0.012479574419558048, + -0.021532917395234108, + -0.00016060462803579867, + -0.012241641990840435, + 0.010005073621869087, + -0.00666806660592556, + -0.004901415202766657, + -0.0036017075181007385, + 0.010766458697617054, + 0.0114743085578084, + -0.002426914405077696, + -0.017797373235225677, + -0.01854686066508293, + -0.010159729979932308, + 0.000533489917870611, + -0.0020685282070189714, + 0.03074091672897339, + -0.0000914554184419103, + -0.005998880602419376, + 0.038307178765535355, + 0.014882695861160755, + 0.022211026400327682, + 0.010135936550796032, + 0.022008782252669334, + -0.00972550269216299, + 0.05805560201406479, + -0.008214629255235195, + 0.007203415036201477, + 0.004032960627228022, + 0.05501006171107292, + -0.026053640991449356, + -0.0038693819660693407, + -0.04972795397043228, + 0.012860267423093319, + 0.027600202709436417, + 0.0118490532040596, + 0.007935058325529099, + 0.007078500464558601, + 0.031335748732089996, + 0.019427211955189705, + 0.02178274653851986, + -0.016845641657710075, + 0.0036255009472370148, + 0.01211672741919756, + -0.020652566105127335, + 0.04763414338231087, + 0.06133907288312912, + 0.007036862429231405, + 0.017963925376534462, + 0.003881278680637479, + 0.02391224540770054, + -0.02146153710782528, + -0.009071187116205692, + 0.011539740487933159, + -0.005972112994641066, + 0.04523102194070816, + 0.008131353184580803, + 0.025625361129641533, + -0.00782798882573843, + 0.013704928569495678, + 0.01114715076982975, + -0.009814727120101452, + 0.03243023902177811, + 0.0013911632122471929, + 0.06509841233491898, + 0.03040781058371067, + -0.02163998782634735, + 0.001869259518571198, + -0.014240276999771595, + 0.018523067235946655, + 0.03216851130127907, + -0.016096152365207672, + -0.00581448245793581, + -0.017511853948235512, + 0.0010736717376857996, + -0.008256267756223679, + 0.0004966846900060773, + 0.007845833897590637, + 0.0272670965641737, + 0.001617942936718464, + -0.009344810619950294, + 0.011176892556250095, + 0.009671967476606369, + 0.01204534713178873, + 0.04149547964334488, + -0.03718889504671097, + 0.025982260704040527, + 0.004586154595017433, + 0.03911615163087845, + -0.013645444996654987, + 0.02139015682041645, + 0.027076750993728638, + 0.012289228849112988, + -0.01585821993649006, + -0.007209363393485546, + -0.02738606370985508, + 0.0018960268935188651, + 0.01305061299353838, + 0.0011562046129256487, + -0.02460225112736225, + 0.04953760653734207, + 0.016286499798297882, + -0.044303085654973984, + 0.011563533917069435, + 0.009041446261107922, + -0.006543151568621397, + 0.0268626119941473, + -0.003679035697132349, + 0.02280585840344429, + -0.04349411278963089, + -0.0043065836653113365, + -0.004196539521217346, + 0.008684546686708927, + 0.042304448783397675, + -0.011408877559006214, + -0.018523067235946655, + -0.017024090513586998, + -0.030241256579756737, + 0.03350093588232994, + -0.01867772452533245, + 0.00963032990694046, + -0.032192304730415344, + -0.005716335028409958, + 0.003711751429364085, + -0.01337182242423296, + -0.033477142453193665, + -0.016643399372696877, + -0.006840567570179701, + 0.025149496272206306, + 0.009434035047888756, + 0.010486887767910957, + -0.027528824284672737, + -0.008476355113089085, + -0.005906681530177593, + 0.036570269614458084, + 0.008446614257991314, + 0.017642715945839882, + 0.04090064764022827, + 0.00982662383466959, + -0.0010796199785545468, + -0.01945100538432598, + 0.016917021945118904, + 0.005106632597744465, + 0.012443885207176208, + 0.0015116167487576604, + -0.019796008244156837, + -0.000496312917675823, + -0.008553683757781982, + -0.011843104846775532, + -0.014157000929117203, + -0.015477527864277363, + 0.0050709424540400505, + -0.005062019918113947, + -0.013098199851810932, + 0.04142409935593605, + 0.023103274405002594, + 0.01095680519938469, + 0.0404723659157753, + 0.014502003788948059, + 0.01163491327315569, + -0.015537011437118053, + -0.021996885538101196, + -0.009624381549656391, + -0.0024581430479884148, + -0.032501619309186935, + 0.0015153344720602036, + -0.00824437104165554, + -0.00026302726473659277, + 0.011337497271597385, + -0.029360905289649963, + -0.0024462465662509203, + 0.02108084410429001, + -0.013609755784273148, + 0.02241326868534088, + 0.03066953644156456, + 0.01584632322192192, + 0.026696057990193367, + 0.035404399037361145, + 0.014454416930675507, + -0.01031438633799553, + -0.014787523075938225, + 0.028337795287370682, + 0.008839203044772148, + 0.007768505718559027, + -0.0021860075648874044, + -0.013740618713200092, + -0.00610297592356801, + 0.024530870839953423, + -0.0026053639594465494, + -0.009874210692942142, + -0.014823212288320065, + -0.020283769816160202, + -0.010968701913952827, + -0.020831014961004257, + -0.011450515128672123, + 0.012991130352020264, + 0.01867772452533245, + -0.0016105076065286994, + 0.032335065305233, + -0.004345247521996498, + -0.005585472099483013, + -0.02131877839565277, + 0.04972795397043228, + -0.024911561980843544, + 0.021699469536542892, + 0.0635756403207779, + 0.013419409282505512, + 0.024114487692713737, + -0.023424483835697174, + 0.005523014813661575, + 0.02133067511022091, + 0.00012547237565740943, + -0.01510873157531023, + 0.013585962355136871, + 0.023614829406142235, + -0.005793663207441568, + -0.03471439331769943, + 0.004999562632292509, + -0.02404310740530491, + 0.003976451698690653, + 0.004294686950743198, + -0.02010532096028328, + 0.01708357408642769, + 0.009493518620729446, + -0.011539740487933159, + -0.002533984137699008, + 0.027433650568127632, + 0.017428576946258545, + 0.013895275071263313, + -0.012301125563681126, + -0.005097710061818361, + -0.01603667065501213, + 0.030360223725438118, + 0.0114743085578084, + 0.036237165331840515, + 0.023495862260460854, + 0.023019997403025627, + -0.007453244645148516, + -0.018903760239481926, + 0.006287374068051577, + -0.008874893188476562, + 0.00031916453735902905, + -0.0033013173379004, + 0.0008744029910303652, + -0.013443202711641788, + -0.014704246073961258, + -0.03105022944509983, + -0.03756958618760109, + -0.017571335658431053, + 0.03292989730834961, + 0.045849647372961044, + -0.010540422052145004, + -0.029931943863630295, + -0.0132052693516016, + -0.026362953707575798, + 0.03614199161529541, + -0.011194737628102303, + 0.022127749398350716, + -0.02313896454870701, + 0.011498101986944675, + -0.011170944198966026, + -0.003316188231110573, + -0.04627792909741402, + -0.012967336922883987, + -0.036689236760139465, + 0.01295544020831585, + -0.03918753191828728, + 0.007679280824959278, + 0.017797373235225677, + -0.023495862260460854, + -0.009529207833111286, + -0.04646827280521393, + 0.006245735567063093, + -0.031074022874236107, + 0.0019778162240982056, + -0.0011859462829306722, + -0.0011673577828332782, + -0.004606973379850388, + 0.010623699054121971, + -0.008821357972919941, + 0.02769537642598152, + -0.01952238567173481, + 0.01040361076593399, + -0.027481237426400185, + -0.011462411843240261, + -0.00605836370959878, + 0.002258874475955963, + 0.02526846155524254, + 0.0027734041213989258, + 0.020200492814183235, + -0.014513900503516197, + 0.028813660144805908, + 0.01579873636364937, + 0.014133207499980927, + -0.022770168259739876, + -0.010998442769050598, + -0.036046817898750305, + 0.0019629455637186766, + -0.005659826099872589, + -0.004913311917334795, + 0.025672947987914085, + 0.0029042670503258705, + -0.030360223725438118, + -0.034833360463380814, + -0.020141011103987694, + 0.012717507779598236, + -0.019807904958724976, + -0.02300810068845749, + 0.006900050677359104, + -0.00465456023812294, + 0.0046456377021968365, + -0.016572019085288048, + -0.015096835792064667, + -0.015310974791646004, + 0.021747056394815445, + -0.01024895440787077, + -0.0023808148689568043, + 0.0181780643761158, + 0.008851099759340286, + -0.012408195063471794, + -0.014157000929117203, + 0.008387130685150623, + 0.001964432653039694, + 0.016988400369882584, + -0.004711069166660309, + 0.024435697123408318, + 0.006828670855611563, + 0.048538289964199066, + -0.02893262729048729, + 0.00904739461839199, + -0.0013651393819600344, + 0.014490107074379921, + 0.018332721665501595, + 0.000463225384010002, + 0.009773089550435543, + 0.015346664935350418, + -0.0264105387032032, + -0.006034570280462503, + 0.022496545687317848, + -0.01375251542776823, + -0.0181780643761158, + -0.020474117249250412, + -0.017678406089544296, + 0.03259679302573204, + -0.015560803934931755, + -0.0015763046685606241, + 0.021497227251529694, + -0.01836841180920601, + -0.020057734102010727, + 0.012443885207176208, + -0.012776990421116352, + -0.023531552404165268, + -0.01375251542776823, + 0.01713116094470024, + -0.01465666014701128, + -0.045849647372961044, + 0.027528824284672737, + -0.00726289814338088, + -0.01120663434267044, + -0.005757973529398441, + 0.022437062114477158, + 0.02467362955212593, + -0.03490474075078964, + -0.02912297286093235, + 0.03247782588005066, + -0.009779037907719612, + -0.03190678730607033, + 0.00043757326784543693, + 0.0029399569611996412, + 0.010480939410626888, + -0.007572210859507322, + -0.016702881082892418, + 0.009719554334878922, + -0.0038991235196590424, + 0.003800976322963834, + 0.0161675326526165, + 0.023115171119570732, + -0.026172606274485588, + 0.03105022944509983, + 0.012741301208734512, + -0.02557777427136898, + -0.026505712419748306, + -0.011034132912755013, + 0.04546895623207092, + 0.004583180416375399, + -0.04399377107620239, + -0.004773526452481747, + -0.008012386970221996, + -0.006323063746094704, + 0.04316100850701332, + 0.005520040635019541, + -0.0041816686280071735, + -0.0007394505082629621, + 0.04220927506685257, + -0.008452562615275383, + 0.008738081902265549, + 0.0025310099590569735, + -0.009380499832332134, + -0.012194055132567883, + -0.02210395596921444, + -0.03576129674911499, + -0.022472752258181572, + 0.06290943175554276, + -0.009588691405951977, + 0.006560996640473604, + -0.03749820590019226, + 0.0017740863841027021, + -0.004303609486669302, + 0.02255602739751339, + -0.00979688297957182, + 0.012872164137661457, + 0.01333613321185112, + 0.04189996421337128, + 0.036689236760139465, + 0.03640371561050415, + -0.017761683091521263, + 0.016096152365207672, + 0.02976539172232151, + -0.020176701247692108, + 0.015525114722549915, + -0.04753896966576576, + -0.03761717304587364, + 0.022758271545171738, + 0.009029549546539783, + -0.0017443447140976787, + -0.02391224540770054, + -0.04199513792991638, + -0.028123656287789345, + -0.015893910080194473, + -0.008107559755444527, + -0.006239787209779024, + 0.02526846155524254, + 0.009445931762456894, + 0.00742350285872817, + -0.016738571226596832, + -0.011230427771806717, + 0.0012149442918598652, + 0.0035333018749952316, + -0.012217848561704159, + -0.025791915133595467, + 0.01542994100600481, + -0.016536328941583633, + 0.0006937228026799858, + -0.002061092760413885, + 0.035975437611341476, + -0.038116831332445145, + -0.0519169345498085, + 0.004392833914607763, + -0.001933203893713653, + -0.025863293558359146, + -0.005249392241239548, + 0.011004391126334667, + -0.0005011459579691291, + -0.02814744971692562, + 0.012491471134126186, + -0.016976503655314445, + -0.0026113123167306185, + -0.0018811561167240143, + 0.0023718925658613443, + -0.02171136625111103, + -0.018975140526890755, + 0.007286691572517157, + -0.01997445710003376, + -0.04632551223039627, + -0.023365000262856483, + 0.0044166273437440395, + -0.011741982772946358, + -0.0019451004918664694, + 0.03304886445403099, + -0.011587326414883137, + 0.028266414999961853, + 0.019641350954771042, + 0.000749860075302422, + -0.0021532918326556683, + 0.03621337190270424, + -0.007822040468454361, + 0.0041459789499640465, + -0.02004583738744259, + 0.010998442769050598, + -0.055247992277145386, + -0.03473818674683571, + -0.015215802006423473, + -0.03407197445631027, + 0.031097816303372383, + 0.009773089550435543, + -0.03326300531625748, + 0.014763729646801949, + -0.012669920921325684, + -0.027861928567290306, + -0.00915446411818266, + 0.011057926341891289, + 0.0627666711807251, + 0.045587923377752304, + -0.02859952114522457, + -0.026077434420585632, + -0.03519025817513466, + 0.025149496272206306, + 0.026339160278439522, + 0.006911947391927242, + -0.015251492150127888, + 0.01841599866747856, + -0.0036939065903425217, + 0.009285327047109604, + -0.004089470021426678, + 0.023947935551404953, + 0.037141308188438416, + -0.011254221200942993, + -0.019379625096917152, + 0.016583915799856186, + -0.02776675671339035, + -0.038045451045036316, + 0.020081527531147003, + 0.0241025909781456, + 0.02080722153186798, + 0.052868664264678955, + 0.02757640928030014, + -0.036308541893959045, + -0.02030756324529648, + 0.02802848257124424, + -0.011248272843658924, + 0.0015302052488550544, + 0.023150859400629997, + 0.03461921960115433, + -0.024911561980843544, + 0.0422806553542614, + -0.025363635271787643, + -0.005826379172503948, + 0.03628474846482277, + 0.010302489623427391, + -0.05772249400615692, + -0.007631693966686726, + -0.019688937813043594, + 0.0259108804166317, + -0.00549327302724123, + 0.039068564772605896, + 0.012586644850671291, + 0.03773614019155502, + 0.000371398200513795, + -0.03331058844923973, + 0.01849927380681038, + -0.013038717210292816, + -0.003720673965290189, + -0.024792596697807312, + 0.034428875893354416, + -0.030003324151039124, + 0.024126384407281876, + 0.003610630054026842, + 0.024840183556079865, + 0.0002633990370668471, + -0.02376948483288288, + 0.0031079971231520176, + -0.011521895416080952, + 0.0064360820688307285, + 0.019058415666222572, + 0.010129988193511963, + 0.012991130352020264, + -0.003485715249553323, + 0.04756276309490204, + 0.006989275570958853, + 0.003429206321015954, + -0.02648191899061203, + -0.0008387130801565945, + -0.016738571226596832, + 0.02531604841351509, + -0.03818821161985397, + 0.03381025046110153, + 0.008488251827657223, + -0.018891863524913788, + 0.01880858652293682, + 0.0007305280305445194, + 0.007798247039318085, + -0.03452404588460922, + 0.008619115687906742, + 0.030907468870282173, + -0.0067810844630002975, + 0.01882048323750496, + 0.015049248933792114, + -0.013895275071263313, + 0.0031288161408156157, + -0.01603667065501213, + -0.04344652593135834, + 0.005573575384914875, + 0.01927255652844906, + -0.006239787209779024, + -0.006941689178347588, + -0.003616578411310911, + -0.021104637533426285, + 0.017666509374976158, + 0.029337111860513687, + 0.008547735400497913, + -0.007911264896392822, + 0.002426914405077696, + -0.024721216410398483, + -0.0166196059435606 + ] + }, + { + "HotelId": "11", + "HotelName": "Royal Cottage Resort", + "Description": "Your home away from home. Brand new fully equipped premium rooms, fast WiFi, full kitchen, washer & dryer, fitness center. Inner courtyard includes water features and outdoor seating. All units include fireplaces and small outdoor balconies. Pets accepted.", + "Description_fr": "Votre maison loin de chez vous. Flambant neuf chambres Premium entiĆØrement Ć©quipĆ©es, WiFi rapide, cuisine complĆØte, laveuse & sĆ©cheuse, centre de fitness. La cour intĆ©rieure comprend des points d'eau et des siĆØges Ć  l'extĆ©rieur. Toutes les unitĆ©s comprennent des cheminĆ©es et de petits balcons extĆ©rieurs. Animaux acceptĆ©s.", + "Category": "Extended-Stay", + "Tags": [ + "free wifi", + "free parking", + "24-hour front desk service" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2023-11-26T00:00:00Z", + "Rating": 2.5, + "Address": { + "StreetAddress": "22422 29th Dr SE", + "City": "Bothell", + "StateProvince": "WA", + "PostalCode": "98021", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.1967, + 47.79454 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "tv", + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "tv", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 61.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 239.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 132.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 83.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (City View)", + "Description_fr": "Suite, 1 grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 242.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "tv", + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.04743284359574318, + -0.006765576545149088, + 0.03892051801085472, + 0.0175658967345953, + -0.03134307265281677, + -0.04401315003633499, + -0.019706279039382935, + 0.004422226920723915, + 0.042094189673662186, + 0.008143294602632523, + 0.01513028983026743, + 0.004545237403362989, + -0.016926242038607597, + -0.027406735345721245, + -0.0320565328001976, + 0.05555153638124466, + -0.021207008510828018, + 0.02767735905945301, + 0.0009141216869466007, + 0.055305514484643936, + -0.012381005100905895, + -0.023224379867315292, + -0.05343575403094292, + -0.049376409500837326, + 0.004809710197150707, + 0.048343122005462646, + -0.0653923749923706, + -0.04445599019527435, + 0.047482047230005264, + -0.014601344242691994, + -0.0006131303962320089, + -0.04150373861193657, + 0.0232858844101429, + -0.006759426090866327, + 0.026594866067171097, + -0.012756187468767166, + -0.008696841076016426, + 0.006531856954097748, + 0.011913565918803215, + -0.005556998774409294, + 0.011323114857077599, + 0.015573127195239067, + 0.0016775554977357388, + 0.007768112234771252, + -0.017024651169776917, + -0.006501104217022657, + 0.0036503360606729984, + 0.07036199420690536, + 0.007036199793219566, + 0.026496458798646927, + -0.033852484077215195, + 0.010585051961243153, + 0.0015091849491000175, + -0.08418837934732437, + -0.02040744014084339, + -0.004080872982740402, + -0.025241751223802567, + -0.011433824896812439, + -0.03921574354171753, + 0.020063010975718498, + 0.038551487028598785, + -0.04647336155176163, + 0.03299141302704811, + 0.07769342511892319, + -0.04460360109806061, + -0.01798413321375847, + -0.03557463362812996, + 0.028858259320259094, + -0.006396545097231865, + -0.02506953664124012, + 0.05333734676241875, + 0.019017420709133148, + -0.006999296601861715, + -0.011267760768532753, + -0.00200353330001235, + 0.003884056117385626, + -0.02570919133722782, + 0.009767032228410244, + -0.016581812873482704, + -0.036140479147434235, + -0.02925189398229122, + -0.006654867436736822, + -0.01514259073883295, + 0.030949437990784645, + 0.017873423174023628, + 0.008727594278752804, + -0.03473816066980362, + -0.03754280135035515, + -0.01696314662694931, + 0.03643570467829704, + 0.043963946402072906, + 0.02381483092904091, + -0.04337349906563759, + -0.023642614483833313, + -0.013002208434045315, + -0.0022557047195732594, + 0.05255008116364479, + -0.012743886560201645, + -0.03535321354866028, + 0.033139023929834366, + 0.032819196581840515, + -0.10952853411436081, + -0.0024479087442159653, + 0.007841918617486954, + 0.009625570848584175, + -0.07198573648929596, + -0.022080382332205772, + -0.012141134589910507, + 0.0012031963560730219, + 0.02193276956677437, + -0.11198874562978745, + 0.0036042071878910065, + -0.02195737138390541, + -0.0013923249207437038, + -0.02194507047533989, + -0.0038071745075285435, + 0.03245016559958458, + -0.047063812613487244, + -0.030432794243097305, + -0.021674446761608124, + 0.0036411103792488575, + 0.09767032414674759, + 0.010726514272391796, + -0.023999346420168877, + 0.012682381086051464, + -0.0011286211665719748, + -0.009650172665715218, + 0.01227029599249363, + -0.06273534893989563, + -0.02745594084262848, + 0.0004482194490265101, + -0.0070177484303712845, + 0.029793139547109604, + -0.014318420551717281, + -0.025106439366936684, + 0.01190126407891512, + -0.015240998938679695, + 0.006753275636583567, + -0.02664407156407833, + -0.027234520763158798, + 0.039584774523973465, + 0.027111511677503586, + 0.04236480966210365, + -0.01851307787001133, + -0.05471506342291832, + -0.033139023929834366, + -0.008333960548043251, + 0.0048958174884319305, + 0.007165360730141401, + 0.0021726726554334164, + -0.025881405919790268, + 0.0362388901412487, + -0.002097328891977668, + -0.005944481585174799, + -0.019903097301721573, + 0.03318822756409645, + 0.015351708978414536, + 0.01978008635342121, + -0.050729524344205856, + 0.04142993316054344, + -0.02193276956677437, + -0.0073806289583444595, + -0.04007681459188461, + 0.04580910503864288, + 0.04846613109111786, + 0.003361261449754238, + -0.011224706657230854, + 0.013076014816761017, + -0.08748506009578705, + -0.02925189398229122, + 0.0741015151143074, + -0.011562985368072987, + -0.03242556378245354, + 0.068295419216156, + 0.042389411479234695, + 0.012196489609777927, + 0.054764267057180405, + 0.001370798097923398, + -0.01768890768289566, + 0.00993309635668993, + -0.002492500003427267, + -0.026594866067171097, + 0.02706230618059635, + 0.005064956843852997, + -0.0014607495395466685, + -0.00026716338470578194, + 0.014293818734586239, + 0.026668673381209373, + -0.02912888303399086, + 0.03744439035654068, + 0.008180197328329086, + 0.005338654853403568, + -0.019841590896248817, + -0.015659235417842865, + 0.0008487723534926772, + -0.01258397288620472, + -0.050729524344205856, + -0.03673093020915985, + -0.02841542288661003, + 0.05255008116364479, + -0.044382184743881226, + 0.0010832611005753279, + 0.03734598308801651, + -0.005532396491616964, + 0.0042038834653794765, + -0.008413917385041714, + 0.011353868059813976, + 0.01487196795642376, + -0.00888750795274973, + -0.005381708964705467, + 0.037936434149742126, + 0.029891548678278923, + 0.057372089475393295, + 0.03166290000081062, + 0.010492794215679169, + -0.050729524344205856, + -0.00655030831694603, + 0.023851733654737473, + 0.05077872797846794, + 0.049474816769361496, + -0.025463171303272247, + 0.015880653634667397, + 0.013285132125020027, + 0.03483656793832779, + -0.023581109941005707, + 0.042906057089567184, + -0.015573127195239067, + -0.04056885838508606, + 0.016581812873482704, + -0.017073854804039, + -0.01922653801739216, + -0.0025816825218498707, + -0.04600592330098152, + -0.03951096907258034, + -0.042512424290180206, + 0.056732434779405594, + -0.00655645877122879, + -0.0027754241600632668, + 0.029104281216859818, + 0.013272831216454506, + -0.06229250878095627, + -0.008032584562897682, + -0.031564489006996155, + 0.043127477169036865, + 0.027382133528590202, + -0.011809006333351135, + -0.000500498921610415, + -0.017332177609205246, + 0.03112165257334709, + 0.005372482817620039, + -0.04411156103014946, + 0.04750664904713631, + 0.02299065887928009, + -0.008598432876169682, + 0.051664404571056366, + 0.0073437257669866085, + -0.018980517983436584, + 0.022289499640464783, + 0.031367674469947815, + -0.03161369636654854, + 0.024466784670948982, + 0.020518148317933083, + 0.022080382332205772, + -0.03631269559264183, + 0.0085369274020195, + -0.0030475847888737917, + -0.01519179530441761, + 0.006740974728018045, + 0.00329053052701056, + -0.016495706513524055, + -0.0463995561003685, + 0.004243861883878708, + -0.02412235550582409, + -0.030752621591091156, + -0.004828161559998989, + 0.01653260923922062, + -0.006304287351667881, + -0.0038594540674239397, + 0.03387708589434624, + 0.009773182682693005, + -0.041454534977674484, + -0.04108550399541855, + 0.04054425656795502, + -0.031170856207609177, + -0.0035427019465714693, + 0.00257399445399642, + -0.0005066494341008365, + 0.01590525545179844, + -0.03299141302704811, + 0.01914043165743351, + -0.00007865943916840479, + 0.007829617708921432, + -0.02996535412967205, + -0.024885021150112152, + 0.0028892087284475565, + 0.04118391126394272, + 0.02935030125081539, + 0.012399457395076752, + 0.05776572227478027, + 0.007768112234771252, + 0.030457396060228348, + 0.07031279057264328, + -0.036780133843421936, + 0.00709770480170846, + -0.01819325052201748, + 0.03237636014819145, + -0.012171887792646885, + -0.0039640129543840885, + 0.040937889367341995, + -0.01915273256599903, + -0.002643187763169408, + 0.013887884095311165, + 0.00018461182480677962, + -0.025536976754665375, + -0.011353868059813976, + 0.012805391103029251, + -0.02381483092904091, + 0.012916101142764091, + 0.014675150625407696, + -0.03695235028862953, + 0.013309734873473644, + 0.011716748587787151, + 0.0011109384940937161, + -0.030039161443710327, + -0.04108550399541855, + -0.024909622967243195, + 0.016827834770083427, + -0.012608574703335762, + -0.017738111317157745, + -0.0068086301907896996, + 0.05496108531951904, + -0.010031505487859249, + 0.03508258983492851, + 0.0004747436032630503, + -0.03840387240052223, + 0.0004017061146441847, + -0.029473312199115753, + 0.007675854489207268, + 0.0071838125586509705, + -0.005566224455833435, + -0.024368377402424812, + -0.0680001974105835, + -0.03741978853940964, + 0.03830546513199806, + 0.02568458952009678, + -0.023150572553277016, + 0.060816384851932526, + 0.049671635031700134, + 0.007472887169569731, + 0.026029018685221672, + 0.005898352712392807, + 0.023335089907050133, + -0.013186723925173283, + -0.004523710813373327, + 0.007792714051902294, + -0.03318822756409645, + 0.05845458433032036, + -0.012485564686357975, + -0.017221467569470406, + 0.02600441686809063, + -0.016397297382354736, + 0.06652407348155975, + 0.0045821405947208405, + 0.007884971797466278, + 0.013580357655882835, + 0.0033089821226894855, + -0.005335579626262188, + -0.014798161573708057, + -0.0235196053981781, + -0.015228698030114174, + 0.0007276838878169656, + 0.003036821261048317, + -0.0008733744616620243, + 0.03340964764356613, + -0.014121604152023792, + 0.03599286824464798, + 0.03997840732336044, + 0.01975548453629017, + 0.02372872270643711, + -0.023371992632746696, + -0.007460585795342922, + 0.03139227628707886, + 0.01925114169716835, + 0.0063719432801008224, + 0.016913941130042076, + 0.006962393410503864, + -0.01706155389547348, + 0.013604959473013878, + -0.04411156103014946, + 0.045612286776304245, + 0.006335040088742971, + -0.014896569773554802, + -0.020468944683670998, + 0.0029414882883429527, + 0.01926344260573387, + -0.01112629845738411, + 0.020013805478811264, + 0.02339659444987774, + 0.005784567911177874, + -0.04502183943986893, + -0.0023894787300378084, + -0.03776421770453453, + 0.0056338803842663765, + -0.003192122094333172, + -0.011113997548818588, + -0.029473312199115753, + 0.012706982903182507, + -0.023679519072175026, + -0.00689473794773221, + -0.015154891647398472, + -0.0071776616387069225, + -0.04794948548078537, + 0.0328684002161026, + 0.006876286119222641, + -0.0724777802824974, + -0.0130514120683074, + 0.016311191022396088, + -0.05245167016983032, + -0.009028969332575798, + -0.001762125175446272, + -0.01169829722493887, + 0.006365792825818062, + -0.017332177609205246, + 0.014109302312135696, + -0.038010239601135254, + 0.014675150625407696, + 0.04772806912660599, + -0.08069487661123276, + -0.11946777999401093, + 0.0023187475744634867, + -0.05136917904019356, + -0.03628809377551079, + -0.003988614771515131, + 0.05796254053711891, + -0.055502332746982574, + 0.008512325584888458, + -0.03535321354866028, + -0.030014557763934135, + -0.02297835797071457, + -0.022191092371940613, + 0.007522091269493103, + -0.03466435521841049, + -0.021969672292470932, + -0.014441430568695068, + -0.03419691324234009, + 0.021465329453349113, + -0.0031367673072963953, + 0.07577446103096008, + -0.04548927769064903, + -0.007884971797466278, + -0.01310061663389206, + -0.020973287522792816, + 0.004326893948018551, + -0.02267083339393139, + -0.005200268235057592, + -0.016089770942926407, + 0.04098709300160408, + 0.017221467569470406, + -0.01696314662694931, + 0.013322035782039165, + 0.09703066945075989, + 0.0033797130454331636, + -0.02861223928630352, + 0.003954787272959948, + 0.028981270268559456, + -0.016901640221476555, + -0.016778631135821342, + 0.044898826628923416, + -0.01831626147031784, + -0.06307977437973022, + -0.01788572408258915, + -0.07046040892601013, + -0.025881405919790268, + -0.014146205969154835, + -0.0434965081512928, + -0.05225485563278198, + 0.00821710005402565, + 0.041971176862716675, + 0.01207347959280014, + 0.02049354650080204, + -0.06588441878557205, + 0.02487272024154663, + -0.04711301624774933, + -0.02706230618059635, + -0.00795262772589922, + 0.023335089907050133, + -0.05004066601395607, + -0.0336802713572979, + -0.049253396689891815, + 0.020837975665926933, + 0.0023648766800761223, + 0.014638247899711132, + 0.022806143388152122, + -0.011913565918803215, + 0.03318822756409645, + 0.009631721302866936, + -0.0267424788326025, + -0.03176130726933479, + 0.03112165257334709, + 0.013568056747317314, + 0.0005204881308600307, + 0.02029673010110855, + -0.02976853772997856, + 0.024159260094165802, + 0.022412510588765144, + 0.027185317128896713, + -0.060914792120456696, + -0.00512031139805913, + 0.02049354650080204, + -0.005581600591540337, + -0.006067492067813873, + 0.05043429881334305, + -0.012977606616914272, + 0.04386553913354874, + 0.01768890768289566, + 0.015117988921701908, + 0.022018877789378166, + 0.0014515237417072058, + -0.01778731681406498, + -0.022326402366161346, + 0.020259827375411987, + 0.03973238542675972, + 0.024011647328734398, + -0.021071696653962135, + -0.0045267860405147076, + 0.012497865594923496, + -0.023544207215309143, + -0.06253853440284729, + -0.002457134425640106, + 0.007134607993066311, + -0.013076014816761017, + 0.04167595133185387, + -0.002992230001837015, + 0.012030425481498241, + 0.004717451985925436, + 0.018180949613451958, + 0.009951548650860786, + -0.01253476832062006, + 0.01430611964315176, + -0.03727217763662338, + 0.03181051090359688, + 0.023962441831827164, + -0.013850980438292027, + -0.014035496860742569, + -0.014392226934432983, + 0.016717124730348587, + -0.016704823821783066, + 0.014994977973401546, + 0.0071776616387069225, + 0.010314429178833961, + 0.020653460174798965, + 0.009428753517568111, + 0.012122683227062225, + -0.03129386901855469, + -0.016089770942926407, + 0.006494953762739897, + 0.0033458853140473366, + -0.0002317978796781972, + -0.010277526453137398, + 0.04814630374312401, + -0.030506599694490433, + 0.0044991085305809975, + 0.011833609081804752, + -0.006962393410503864, + -0.015769943594932556, + 0.0027139189187437296, + 0.028464626520872116, + 0.016397297382354736, + -0.023150572553277016, + 0.021047094836831093, + -0.031072448939085007, + -0.0012839219998568296, + -0.0391419380903244, + -0.002108092186972499, + 0.011575286276638508, + 0.0029983806889504194, + -0.0055508483201265335, + -0.005852223839610815, + -0.005606202874332666, + -0.002394091570749879, + -0.0045729149132966995, + -0.0017821143846958876, + -0.0002231487160315737, + 0.029473312199115753, + -0.020013805478811264, + -0.0006246626144275069, + 0.005996761377900839, + -0.010271375998854637, + 0.04167595133185387, + 0.036780133843421936, + 0.017405983060598373, + 0.0059198797680437565, + -0.012424059212207794, + -0.04578450322151184, + 0.01086797658354044, + 0.004769731778651476, + -0.006230480968952179, + 0.011685996316373348, + -0.05589596554636955, + 0.01996460184454918, + 0.007909574545919895, + -0.013395842164754868, + 0.005781492684036493, + 0.0030829503666609526, + -0.04138072580099106, + -0.006728673353791237, + -0.011747501790523529, + -0.023495003581047058, + -0.03970778360962868, + -0.02903047390282154, + -0.000643498613499105, + -0.026029018685221672, + 0.014121604152023792, + 0.0015760718379169703, + -0.016913941130042076, + 0.01367876585572958, + -0.04588291049003601, + 0.03473816066980362, + -0.011409222148358822, + 0.005461665336042643, + -0.0119627695530653, + 0.009644022211432457, + 0.02767735905945301, + 0.0615544468164444, + 0.014023195020854473, + 0.03358186408877373, + -0.010283676907420158, + -0.050089869648218155, + 0.007288371212780476, + -0.02217879146337509, + 0.025340160354971886, + 0.07375708967447281, + 0.041454534977674484, + -0.017652004957199097, + -0.032081134617328644, + 0.020247526466846466, + 0.018906712532043457, + 0.004800484050065279, + 0.003410465782508254, + 0.016052868217229843, + 0.021822059527039528, + -0.002384865889325738, + 0.010314429178833961, + -0.021366922184824944, + 0.022031178697943687, + 0.039584774523973465, + 0.0314168781042099, + -0.005277149844914675, + 0.03498418256640434, + -0.011544534005224705, + 0.0025493924040347338, + -0.0053571066819131374, + 0.018955916166305542, + 0.0011778253829106688, + -0.010726514272391796, + 0.03601747006177902, + -0.0108741270378232, + 0.0025094139855355024, + 0.019509462639689445, + 0.03358186408877373, + -0.014933472499251366, + 0.015437816269695759, + 0.005735363811254501, + 0.013949388638138771, + -0.036140479147434235, + 0.05545312538743019, + -0.011913565918803215, + 0.008690690621733665, + -0.02380252815783024, + 0.02519254758954048, + 0.0889119803905487, + 0.029670128598809242, + -0.009453356266021729, + 0.024183861911296844, + 0.008930561132729053, + -0.0434965081512928, + 0.04398854821920395, + -0.030924836173653603, + -0.010585051961243153, + 0.022191092371940613, + -0.005501643754541874, + 0.01612667553126812, + -0.05048350244760513, + 0.019595570862293243, + -0.004253087565302849, + -0.02684088796377182, + 0.0040009161457419395, + -0.019534064456820488, + 0.03783802688121796, + -0.0059660086408257484, + -0.00512031139805913, + 0.0026893166359514, + 0.006820931565016508, + 0.006845533382147551, + -0.03975698724389076, + -0.026029018685221672, + 0.0024048550985753536, + -0.03348345309495926, + 0.00019816220446955413, + -0.06524476408958435, + 0.028858259320259094, + 0.009767032228410244, + -0.007454435341060162, + -0.02466360293328762, + -0.026767082512378693, + -0.0227938424795866, + 0.01654491014778614, + -0.036411102861166, + 0.005855299066752195, + -0.017184564843773842, + -0.006962393410503864, + -0.026693275198340416, + -0.011403071694076061, + -0.012460961937904358, + -0.014933472499251366, + 0.0013754109386354685, + 0.014109302312135696, + 0.028636841103434563, + 0.010831072926521301, + -0.006617964245378971, + 0.03505798801779747, + 0.04969623684883118, + 0.01946025900542736, + 0.010271375998854637, + -0.006716372445225716, + 0.0357714481651783, + 0.020850276574492455, + -0.02829241193830967, + 0.005987535230815411, + 0.036460306495428085, + -0.003096788888797164, + -0.013408143073320389, + 0.008746045641601086, + -0.00354885240085423, + -0.016778631135821342, + 0.0130514120683074, + -0.006196653004735708, + -0.02276924066245556, + -0.04571069777011871, + -0.02516794577240944, + -0.015966761857271194, + -0.0017467489233240485, + 0.01946025900542736, + -0.004019367508590221, + 0.019165033474564552, + -0.02839081920683384, + 0.023654917255043983, + -0.01693854294717312, + -0.036140479147434235, + -0.009121227078139782, + -0.006030588876456022, + 0.009564065374433994, + -0.008998217061161995, + 0.02276924066245556, + -0.003096788888797164, + -0.04544007405638695, + 0.020063010975718498, + 0.013248229399323463, + -0.010744965635240078, + 0.00967477448284626, + 0.010326730087399483, + -0.00909662526100874, + 0.021785156801342964, + 0.03815785422921181, + 0.02841542288661003, + 0.02839081920683384, + 0.02050584740936756, + 0.02308906801044941, + -0.019521763548254967, + -0.009324194863438606, + 0.012547069229185581, + -0.040199827402830124, + 0.019484860822558403, + -0.009305743500590324, + -0.015646934509277344, + -0.03409850597381592, + -0.026914693415164948, + -0.026865489780902863, + -0.011267760768532753, + 0.01138462033122778, + 0.06696690618991852, + -0.01986619271337986, + 0.037296779453754425, + -0.0025693816132843494, + -0.01684013567864895, + -0.022006575018167496, + 0.0372229740023613, + -0.01367876585572958, + -0.003751819720491767, + -0.0016468028770759702, + -0.0314168781042099, + -0.028218604624271393, + 0.022633928805589676, + -0.04492342844605446, + 0.019091228023171425, + 0.021243911236524582, + 0.0069746943190693855, + -0.011673695407807827, + 0.04452979564666748, + 0.006519555579870939, + -0.006691770628094673, + -0.021969672292470932, + 0.02799718640744686, + -0.02217879146337509, + 0.013826378621160984, + -0.005157214589416981, + -0.05688004940748215, + 0.040322836488485336, + 0.04120851308107376, + -0.025340160354971886, + -0.004800484050065279, + 0.04969623684883118, + 0.014183108694851398, + 0.0011140137212350965, + 0.0022464790381491184, + 0.022240296006202698, + -0.001085567520931363, + 0.023039864376187325, + -0.0405934602022171, + -0.014367625117301941, + 0.005744589492678642, + -0.04037204012274742, + 0.008124842308461666, + 0.04266003519296646, + -0.03493497893214226, + -0.014589043334126472, + 0.0085369274020195, + -0.014158506877720356, + 0.03712456300854683, + -0.02372872270643711, + 0.040519654750823975, + -0.011913565918803215, + 0.0014630559599027038, + 0.0031383049208670855, + 0.00041900447104126215, + -0.01664331927895546, + 0.0026893166359514, + 0.02195737138390541, + 0.00826630461961031, + 0.00021565276256296784, + 0.0320565328001976, + 0.002417156007140875, + 0.002040436491370201, + 0.002072726609185338, + -0.031589094549417496, + -0.0171599630266428, + 0.033655669540166855, + -0.011157050728797913, + -0.01778731681406498, + -0.0012416370445862412, + 0.018180949613451958, + 0.003132154466584325, + 0.03276999294757843, + -0.04536626860499382, + 0.0004647489986382425, + -0.019423356279730797, + 0.019730882719159126, + 0.002395629184320569, + 0.012048876844346523, + -0.028661442920565605, + 0.01060965470969677, + 0.01964477449655533, + -0.0024356076028198004, + -0.021305415779352188, + -0.006617964245378971, + 0.011298513039946556, + 0.004695925395935774, + 0.01601596549153328, + 0.02069036290049553, + -0.023359691724181175, + -0.02060425654053688, + -0.007042350247502327, + -0.037395186722278595, + -0.008358562365174294, + 0.02777576819062233, + 0.013223627582192421, + -0.013039111159741879, + 0.03471355885267258, + 0.0037856476847082376, + -0.02861223928630352, + 0.0037118413019925356, + 0.009576366282999516, + -0.006073642522096634, + -0.0070177484303712845, + -0.02620123326778412, + 0.03048199787735939, + -0.02164984494447708, + 0.023777926340699196, + 0.007632800843566656, + 0.002563230926170945, + 0.013654164038598537, + 0.024515990167856216, + 0.04307827353477478, + -0.012670080177485943, + -0.05141838267445564, + 0.014699753373861313, + 0.0037395188119262457, + 0.025143343955278397, + -0.010806471109390259, + -0.00047743445611558855, + -0.032499369233846664, + 0.033434249460697174, + -0.0028353917878121138, + -0.0006561840418726206, + 0.00193126464728266, + 0.014527538791298866, + -0.037075359374284744, + 0.0019220388494431973, + -0.02434377558529377, + -0.01202427502721548, + 0.03395089507102966, + -0.026348846033215523, + -0.02152683585882187, + 0.00489274226129055, + 0.001061734277755022, + 0.020567353814840317, + -0.005086483433842659, + -0.010621955618262291, + 0.004640570376068354, + 0.014589043334126472, + -0.006648716516792774, + 0.039363354444503784, + -0.02133001759648323, + 0.013002208434045315, + -0.005166440270841122, + 0.0009640946518629789, + -0.002131156623363495, + -0.006531856954097748, + 0.01770120859146118, + -0.018045637756586075, + 0.04086408391594887, + 0.010191419161856174, + -0.005360181909054518, + 0.019804688170552254, + 0.043742530047893524, + 0.007300672121345997, + 0.0430290661752224, + -0.03254857286810875, + 0.010744965635240078, + -0.03340964764356613, + -0.02037053555250168, + -0.007263769395649433, + 0.03185971453785896, + -0.04054425656795502, + 0.03970778360962868, + -0.015376310795545578, + 0.01634809374809265, + 0.01861148700118065, + 0.006691770628094673, + -0.04371792823076248, + 0.02038283832371235, + 0.002610897645354271, + 0.024885021150112152, + -0.05953707545995712, + -0.01809484325349331, + -0.0024617472663521767, + -0.0007553612813353539, + -0.003841002471745014, + 0.04548927769064903, + -0.013334336690604687, + -0.014343022368848324, + 0.01914043165743351, + 0.0026923920959234238, + -0.0003476968267932534, + 0.007300672121345997, + 0.017196865752339363, + -0.01976778544485569, + 0.03380328044295311, + -0.00603673979640007, + 0.021711351349949837, + 0.003352035768330097, + 0.021502232179045677, + -0.005806094966828823, + 0.015290203504264355, + -0.025364762172102928, + 0.0009933096589520574, + -0.0042038834653794765, + 0.045932114124298096, + 0.011876662261784077, + -0.01747979037463665, + 0.016065169125795364, + 0.05909423902630806, + 0.013518852181732655, + -0.020136816427111626, + -0.026545662432909012, + 0.019324947148561478, + 0.007946477271616459, + 0.04206958785653114, + 0.017086155712604523, + -0.01055429968982935, + 0.03171210363507271, + 0.0054309130646288395, + -0.01310061663389206, + 0.009059722535312176, + -0.02183436043560505, + 0.015487019903957844, + -0.007349876686930656, + 0.03724757581949234, + 0.02131771668791771, + 0.0326961874961853, + 0.00806948821991682, + 0.015991363674402237, + -0.003585755592212081, + -0.005778417456895113, + -0.006704071536660194, + 0.003447368973866105, + 0.018980517983436584, + 0.03181051090359688, + -0.003278229385614395, + -0.002443295670673251, + -0.006796329282224178, + -0.009311893954873085, + 0.02652106061577797, + -0.027332929894328117, + -0.03461515158414841, + 0.01777501590549946, + 0.012190339155495167, + 0.016508007422089577, + -0.001190126407891512, + -0.009195033460855484, + 0.01891901344060898, + 0.013961690478026867, + 0.01430611964315176, + -0.005114160943776369, + 0.046768587082624435, + -0.03828086331486702, + 0.05146758630871773, + -0.019054323434829712, + 0.03837927058339119, + -0.016384996473789215, + 0.025610782206058502, + 0.017086155712604523, + 0.02339659444987774, + 0.02590600773692131, + 0.04610433056950569, + 0.0016114374157041311, + -0.014060098677873611, + -0.0290058720856905, + 0.020026106387376785, + 0.003447368973866105, + 0.0027723489329218864, + -0.027603553608059883, + 0.02195737138390541, + 0.0008710679830983281, + -0.025438567623496056, + -0.03289300203323364, + -0.003358186222612858, + -0.003634959924966097, + 0.017910325899720192, + -0.003013756824657321, + 0.004111625254154205, + -0.038649894297122955, + -0.005449364427477121, + 0.014650548808276653, + 0.002251091878861189, + 0.02797258459031582, + -0.013039111159741879, + -0.0023433498572558165, + 0.012682381086051464, + -0.0005516251549124718, + 0.010129913687705994, + 0.0054370635189116, + 0.014539839699864388, + -0.033139023929834366, + -0.01290380023419857, + -0.014662849716842175, + -0.005812245421111584, + -0.02548777312040329, + -0.010978685691952705, + 0.031244663521647453, + 0.02693929709494114, + 0.008930561132729053, + -0.008260154165327549, + 0.0030322084203362465, + 0.023888636380434036, + -0.022031178697943687, + 0.007202263921499252, + 0.004760505631566048, + 0.006427297834306955, + 0.04804789647459984, + -0.012048876844346523, + 0.03550082445144653, + -0.02620123326778412, + 0.011747501790523529, + 0.01696314662694931, + 0.018463874235749245, + 0.01592985726892948, + -0.021612942218780518, + 0.010941782966256142, + 0.008118691854178905, + -0.015117988921701908, + 0.021723652258515358, + -0.036755532026290894, + -0.0023910163436084986, + 0.007165360730141401, + -0.01944795809686184, + 0.02099788933992386, + 0.01685243658721447, + 0.011335416696965694, + 0.03815785422921181, + 0.0008234014385379851, + 0.0014984214212745428, + -0.004932720679789782, + -0.022744638845324516, + -0.003585755592212081, + 0.016889339312911034, + 0.024110054597258568, + -0.008444669656455517, + -0.0335080549120903, + -0.0006892431410960853, + 0.009373399429023266, + -0.028218604624271393, + -0.011888963170349598, + 0.017393682152032852, + -0.018131745979189873, + 0.005759966094046831, + 0.020013805478811264, + 0.006015212740749121, + -0.02495882660150528, + 0.012953003868460655, + -0.03035898692905903, + -0.009963849559426308, + 0.01799643412232399, + 0.014638247899711132, + -0.0006104395142756402, + 0.043004464358091354, + 0.016766328364610672, + 0.02217879146337509, + -0.01654491014778614, + 0.02757895179092884, + 0.024380678310990334, + -0.007503639440983534, + -0.03653411567211151, + -0.0470392107963562, + -0.014847365207970142, + -0.0026862414088100195, + -0.00889980886131525, + -0.024269968271255493, + 0.015880653634667397, + 0.011323114857077599, + 0.015991363674402237, + 0.018353164196014404, + -0.014232313260436058, + -0.012756187468767166, + 0.02829241193830967, + -0.012620875611901283, + -0.005043429788202047, + 0.06499873846769333, + 0.019386451691389084, + 0.004729753360152245, + -0.0428568534553051, + -0.012264145538210869, + -0.0015237923944368958, + 0.010369784198701382, + -0.007878821343183517, + 0.0376904122531414, + 0.018759099766612053, + 0.013494250364601612, + -0.017000049352645874, + 0.02017371915280819, + -0.023138271644711494, + 0.005175665952265263, + -0.00920733530074358, + 0.01533940713852644, + -0.005114160943776369, + -0.0028769078198820353, + 0.0057907188311219215, + 0.02037053555250168, + -0.023261282593011856, + 0.033852484077215195, + 0.01728297397494316, + -0.015474718995392323, + 0.003361261449754238, + -0.024712806567549706, + 0.001405394752509892, + 0.023568809032440186, + 0.03680473566055298, + 0.002946101129055023, + 0.04216799512505531, + -0.019915398210287094, + -0.006101320032030344, + 0.04295526072382927, + -0.016913941130042076, + -0.00039286474930122495, + -0.000988696818239987, + -0.009527161717414856, + -0.0004324587353039533, + 0.002464822493493557, + -0.015376310795545578, + -0.022855348885059357, + -0.02652106061577797, + 0.0033089821226894855, + 0.014798161573708057, + -0.052796099334955215, + -0.00822325050830841, + 0.0021496082190424204, + -0.017836520448327065, + 0.03852688521146774, + 0.015880653634667397, + 0.02477431111037731, + -0.005243321880698204, + 0.02706230618059635, + -0.0016006738878786564, + 0.004659022204577923, + -0.019472559913992882, + -0.024909622967243195, + -0.0008972077048383653, + -0.01580684818327427, + -0.004695925395935774, + -0.000015112030268937815, + 0.010794170200824738, + 0.005200268235057592, + 0.008112541399896145, + -0.05016367509961128, + 0.02361801266670227, + -0.04243861883878708, + -0.0014707441441714764, + -0.02404855005443096, + -0.0040101418271660805, + -0.007835768163204193, + -0.02725912444293499, + 0.00623663142323494, + 0.01164294220507145, + 0.006147448904812336, + 0.04275844618678093, + 0.008936711587011814, + -0.04034743830561638, + -0.02880905568599701, + -0.030211376026272774, + 0.023359691724181175, + 0.021809758618474007, + 0.009188883006572723, + -0.003705690847709775, + -0.0019358774879947305, + 0.011661394499242306, + 0.004443753976374865, + -0.0015660772332921624, + -0.01138462033122778, + -0.00822325050830841, + 0.01798413321375847, + 0.01850077696144581, + -0.015117988921701908, + 0.01285459566861391, + -0.01936184987425804, + 0.0008610733784735203, + -0.04443138837814331, + -0.015523923560976982, + -0.01118780393153429, + -0.024515990167856216, + -0.01955866813659668, + 0.017024651169776917, + -0.014859667047858238, + -0.006196653004735708, + 0.022855348885059357, + -0.010191419161856174, + 0.00509263388812542, + 0.01346964854747057, + -0.018045637756586075, + -0.016618717461824417, + 0.01259627379477024, + -0.02204347960650921, + -0.00185899599455297, + 0.0008249390521086752, + 0.023753324523568153, + 0.0017267597140744328, + 0.001848232583142817, + 0.02027212828397751, + 0.03245016559958458, + 0.004240786656737328, + 0.015769943594932556, + -0.047703467309474945, + -0.011735199950635433, + -0.027308328077197075, + 0.014761257916688919, + 0.025155644863843918, + -0.02944871038198471, + -0.001299298251979053, + -0.008026434108614922, + -0.007472887169569731, + -0.005046505015343428, + 0.002778499387204647, + -0.031785909086465836, + 0.006464201025664806, + -0.022830745205283165, + -0.0075528440065681934, + 0.042709238827228546, + -0.0014676688006147742, + 0.010289827361702919, + 0.03515639528632164, + 0.011021739803254604, + 0.0033458853140473366, + 0.015117988921701908, + -0.03535321354866028, + -0.030039161443710327, + -0.03340964764356613, + 0.012091930955648422, + 0.006144373677670956, + -0.06312897801399231, + -0.005363257136195898, + -0.013973991386592388, + -0.012682381086051464, + -0.0015307117719203234, + 0.011679845862090588, + 0.03122006170451641, + -0.01335893850773573, + -0.015425514429807663, + -0.0057630413211882114, + -0.035599235445261, + -0.01717226393520832, + 0.016286589205265045, + 0.021600641310214996, + 0.0042961412109434605, + 0.014060098677873611, + 0.009127378463745117, + 0.01725837029516697, + 0.01112629845738411, + -0.02048124559223652, + -0.011464577168226242, + 0.028981270268559456, + -0.0491303876042366, + 0.02131771668791771, + -0.000052423609304241836, + -0.0075466930866241455, + -0.029670128598809242, + 0.03828086331486702, + 0.0026139728724956512, + -0.00211731786839664, + -0.023138271644711494, + 0.005913729313760996, + -0.03370487317442894, + 0.01642189919948578, + 0.017110759392380714, + -0.009428753517568111, + 0.0008403153624385595, + 0.002657026518136263, + -0.01954636536538601, + -0.016188180074095726, + -0.01145227625966072, + 0.0018989744130522013, + -0.01841467060148716, + 0.002763123018667102, + -0.02748054265975952, + -0.017332177609205246, + -0.010923330672085285, + 0.048220109194517136, + 0.0010317504638805985, + -0.006648716516792774, + -0.06558918952941895, + 0.0064026955515146255, + -0.0030383591074496508, + 0.02829241193830967, + -0.013764873147010803, + 0.005913729313760996, + -0.0008318584295921028, + 0.03232715651392937, + 0.014084700495004654, + 0.020210621878504753, + -0.010732664726674557, + 0.006857834756374359, + -0.0024063927121460438, + 0.0037149167619645596, + 0.03682934120297432, + -0.021588340401649475, + -0.00486198952421546, + 0.03862529247999191, + -0.022621627897024155, + -0.0021865114104002714, + -0.01936184987425804, + -0.019066624343395233, + -0.0195709690451622, + -0.0016237384406849742, + -0.0019958452321588993, + -0.02267083339393139, + 0.007897273637354374, + 0.0051541393622756, + -0.03872369974851608, + -0.018390066921710968, + -0.009791634976863861, + 0.03628809377551079, + 0.011870511807501316, + -0.01684013567864895, + -0.012756187468767166, + 0.006255083251744509, + 0.013715669512748718, + 0.01118165347725153, + 0.023593410849571228, + 0.031047847121953964, + -0.021785156801342964, + -0.04015062376856804, + 0.0015760718379169703, + -0.0006162056233733892, + -0.014601344242691994, + -0.02290455251932144, + 0.012989907525479794, + 0.0188452061265707, + -0.0296455267816782, + 0.002240328583866358, + -0.0012139597674831748, + 0.03358186408877373, + 0.003456594655290246, + -0.004591366276144981, + 0.0016006738878786564, + -0.022843047976493835, + 0.03129386901855469, + -0.0019235764630138874, + -0.029670128598809242, + -0.022006575018167496, + 0.011987371370196342, + -0.019497161731123924, + 0.006378093734383583, + 0.02498343028128147, + 0.009010517969727516, + 0.023076767101883888, + 0.010941782966256142, + 0.018894409760832787, + -0.002490962389856577, + 0.001476125791668892, + 0.001763662789016962, + -0.01316212210804224, + -0.014170807786285877, + -0.007085403893142939, + -0.03724757581949234, + -0.0042131091468036175, + 0.0034166162367910147, + -0.017947230488061905, + 0.033975496888160706, + -0.04420996829867363, + -0.0528453029692173, + 0.015843750908970833, + -0.004339194856584072, + -0.02342119626700878, + 0.02454059198498726, + -0.0006158212199807167, + 0.06460510939359665, + 0.03122006170451641, + -0.019054323434829712, + -0.014736656099557877, + -0.00921348575502634, + 0.0164342001080513, + 0.010517396964132786, + 0.015302504412829876, + 0.012313349172472954, + 0.009908494539558887, + 0.010628106072545052, + -0.012829993851482868, + -0.003012219211086631, + 0.02214188687503338, + 0.011944318190217018, + 0.019337248057127, + -0.007817316800355911, + 0.006734824273735285, + 0.008481573313474655, + 0.028563035652041435, + 0.027701960876584053, + 0.039584774523973465, + 0.04327508807182312, + 0.020309031009674072, + -0.01107094343751669, + -0.027824971824884415, + -0.02050584740936756, + 0.00598138477653265, + -0.03380328044295311, + -0.010597352869808674, + -0.007780413143336773, + 0.040396641939878464, + -0.03545162081718445, + 0.036140479147434235, + -0.013174423016607761, + -0.013912485912442207, + 0.028120197355747223, + -0.01770120859146118, + -0.06362102180719376, + -0.01108324434608221, + -0.022129585966467857, + 0.005818395875394344, + -0.032007329165935516, + 0.016569511964917183, + -0.023777926340699196, + 0.024823516607284546, + -0.0024386828299611807, + -0.01902972161769867, + -0.011538383550941944, + 0.033532656729221344, + -0.0067717269994318485, + 0.016803232952952385, + 0.0049788495525717735, + 0.0032966809812933207, + 0.03975698724389076, + -0.009484108537435532, + -0.0005754584562964737, + -0.01642189919948578, + -0.012553219683468342, + -0.003465820336714387, + 0.0066118137910962105, + -0.016717124730348587, + 0.012547069229185581, + 0.018697593361139297, + -0.020837975665926933, + -0.013174423016607761, + 0.02495882660150528, + -0.0008149444474838674, + 0.020124515518546104, + -0.01946025900542736, + -0.00271699414588511, + -0.011421523988246918, + 0.01456444151699543, + -0.020985588431358337, + 0.004668247886002064, + -0.011519932188093662, + -0.013248229399323463, + 0.007073102984577417, + -0.010197569616138935, + 0.002335661556571722, + -0.016471104696393013, + -0.0032474768813699484, + 0.03527940809726715, + -0.005618503782898188, + -0.0056338803842663765, + 0.006104395259171724, + 0.011729049496352673, + 0.008573831059038639, + 0.004071647301316261, + 0.00015722277748864144, + -0.00023083687119651586, + 0.03090023435652256, + 0.001370798097923398, + -0.0007861139019951224, + -0.002123468555510044, + 0.015942158177495003, + 0.014490635134279728, + 0.02237560786306858, + 0.005249472334980965, + -0.02871064655482769, + -0.031023245304822922, + -0.015683837234973907, + -0.03276999294757843 + ] + }, + { + "HotelId": "12", + "HotelName": "Winter Panorama Resort", + "Description": "Plenty of great skiing, outdoor ice skating, sleigh rides, tubing and snow biking. Yoga, group exercise classes and outdoor hockey are available year-round, plus numerous options for shopping as well as great spa services. Newly-renovated with large rooms, free 24-hr airport shuttle & a new restaurant. Rooms/suites offer mini-fridges & 49-inch HDTVs.", + "Description_fr": "Beaucoup de superbes pistes de ski, de patinage sur glace en plein air, de promenades en traĆ®neau, de tubes et de vĆ©lo de neige. Yoga, cours de groupe et hockey en plein air sont disponibles toute l'annĆ©e, ainsi que de nombreuses options de shopping ainsi que d'excellents services de spa. RĆ©cemment rĆ©novĆ©, avec de grandes chambres, une navette gratuite de 24 heures par aĆ©roport et un nouveau restaurant. Les chambres/suites offrent des mini-frigos et des TVHD de 49 pouces.", + "Category": "Resort and Spa", + "Tags": [ + "restaurant", + "bar", + "pool" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2022-09-16T00:00:00Z", + "Rating": 4.5, + "Address": { + "StreetAddress": "9025 SW Hillman Ct", + "City": "Wilsonville", + "StateProvince": "OR", + "PostalCode": "97070", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.770576, + 45.322392 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "suite", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 141.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 154.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower", + "tv" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 133.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "suite" + ] + } + ], + "embedding": [ + -0.05550942197442055, + 0.0023678867146372795, + 0.012079835869371891, + 0.0022170457523316145, + -0.03491964936256409, + 0.014920671470463276, + -0.016642769798636436, + 0.034944791346788406, + 0.048369623720645905, + -0.016240527853369713, + 0.008145404048264027, + -0.006549005396664143, + -0.018553420901298523, + 0.03411516547203064, + -0.05007915198802948, + 0.04474944248795509, + -0.0240591112524271, + 0.03391404449939728, + 0.011526752263307571, + 0.05928044393658638, + 0.007303209509700537, + 0.02153252623975277, + -0.028182093054056168, + -0.035673853009939194, + -0.013776795007288456, + 0.04585560783743858, + -0.01189756952226162, + 0.0035541867837309837, + 0.051637839525938034, + 0.017560385167598724, + -0.029338538646697998, + -0.031500592827796936, + 0.02735246904194355, + -0.0016608203295618296, + 0.03318497911095619, + -0.04218515008687973, + -0.03776048496365547, + -0.0041544074192643166, + 0.04464888200163841, + -0.06244809925556183, + 0.01582571677863598, + 0.026522845029830933, + -0.004889756441116333, + -0.05198980122804642, + -0.0032650751527398825, + 0.046006448566913605, + -0.009289280511438847, + 0.006944962777197361, + 0.005332851316779852, + 0.002781127579510212, + -0.03072124719619751, + 0.012758619152009487, + -0.022462712600827217, + -0.05108475685119629, + -0.05329709127545357, + 0.03952029347419739, + -0.042461689561605453, + 0.025441817939281464, + 0.03994767740368843, + 0.022311871871352196, + 0.03625207766890526, + -0.025341257452964783, + 0.014443008229136467, + 0.0631520226597786, + -0.003947001416236162, + 0.035849835723638535, + 0.010200610384345055, + 0.03328553959727287, + -0.027578730136156082, + -0.016856461763381958, + 0.03625207766890526, + -0.01133191678673029, + 0.017761506140232086, + -0.07205162942409515, + -0.005254288669675589, + 0.04789195954799652, + -0.004478086717426777, + -0.03534703329205513, + 0.018792252987623215, + -0.014782399870455265, + -0.011155935935676098, + -0.004069559741765261, + 0.0010173899354413152, + 0.08804076164960861, + -0.0016938167391344905, + -0.0039878543466329575, + -0.014568708837032318, + 0.01705758273601532, + -0.040375057607889175, + 0.0704929456114769, + 0.03738338500261307, + 0.04447290301322937, + 0.002966536208987236, + -0.02974078245460987, + 0.04454832151532173, + -0.0038935786578804255, + 0.02612060122191906, + -0.02953965961933136, + -0.03547273203730583, + 0.06868285685777664, + 0.008748767897486687, + -0.08859384059906006, + -0.00803227350115776, + 0.021281125023961067, + 0.05958212539553642, + -0.020036688074469566, + 0.004880329128354788, + 0.05550942197442055, + 0.046132151037454605, + -0.004594360012561083, + -0.10262203961610794, + -0.01485782116651535, + -0.03160115331411362, + -0.02410939149558544, + -0.07305723428726196, + 0.047188036143779755, + 0.023392897099256516, + -0.033386100083589554, + -0.054202135652303696, + 0.015260063111782074, + 0.039294034242630005, + 0.07315779477357864, + 0.017811786383390427, + -0.05030541494488716, + -0.01026346068829298, + -0.01301002036780119, + -0.01691931113600731, + -0.026397142559289932, + -0.019923558458685875, + -0.017849497497081757, + 0.002748131286352873, + -0.00850365124642849, + 0.03147545084357262, + -0.048445042222738266, + 0.021947339177131653, + -0.01576286554336548, + -0.0385398305952549, + 0.011910139583051205, + -0.01612739823758602, + -0.02622116170823574, + 0.0261708814650774, + -0.0028408353682607412, + 0.06486155092716217, + -0.011746728792786598, + -0.02035094052553177, + -0.02602004073560238, + 0.06129165366292, + 0.013575674034655094, + -0.03185255452990532, + 0.0003395882376935333, + -0.03909291326999664, + 0.015234922990202904, + -0.031198909506201744, + 0.02255070209503174, + -0.04233599081635475, + 0.007812297437340021, + -0.01363852433860302, + 0.02614574134349823, + 0.018804822117090225, + 0.014455578289926052, + -0.050556816160678864, + -0.005543400067836046, + -0.018980802968144417, + -0.0010763121536001563, + 0.025580089539289474, + -0.012557498179376125, + -0.050682514905929565, + 0.030168164521455765, + -0.043819259852170944, + -0.03559843450784683, + 0.04565448686480522, + -0.02614574134349823, + 0.01142619177699089, + 0.04781654104590416, + 0.008359095081686974, + 0.05254288390278816, + 0.062045857310295105, + 0.04419635981321335, + -0.010426871478557587, + 0.0025061573833227158, + -0.02277696318924427, + -0.023493457585573196, + 0.020112108439207077, + -0.011734158731997013, + -0.004302105866372585, + 0.052794285118579865, + -0.03386376425623894, + 0.014933241531252861, + 0.027050787582993507, + 0.05007915198802948, + -0.043567854911088943, + 0.0004493799351621419, + -0.011155935935676098, + 0.0411544032394886, + -0.015360623598098755, + 0.03773534670472145, + -0.02048921212553978, + -0.01316086109727621, + 0.004135552328079939, + 0.04060132056474686, + -0.010822828859090805, + -0.024222521111369133, + 0.08487310260534286, + -0.05020485445857048, + -0.057570911943912506, + -0.05354849249124527, + 0.028659755364060402, + 0.042461689561605453, + -0.012306096963584423, + -0.019621876999735832, + -0.0015327626606449485, + -0.021017154678702354, + 0.03989739716053009, + 0.050556816160678864, + 0.038288429379463196, + 0.020124679431319237, + 0.017987767234444618, + -0.030394425615668297, + 0.01705758273601532, + 0.04319075495004654, + -0.04655953124165535, + -0.018465429544448853, + -0.016768470406532288, + 0.04821878299117088, + 0.007447765674442053, + 0.04437234252691269, + -0.005637675523757935, + -0.022236451506614685, + 0.0072780693881213665, + -0.039344314485788345, + 0.004456089343875647, + -0.0036861724220216274, + -0.023405468091368675, + -0.019747577607631683, + -0.02515270747244358, + 0.03077152743935585, + -0.014367587864398956, + 0.0020787750836461782, + 0.02725190855562687, + -0.025818919762969017, + 0.0019546456169337034, + -0.021054863929748535, + -0.0021526243072003126, + 0.057369790971279144, + 0.024687614291906357, + -0.0013316415715962648, + -0.00047609134344384074, + -0.06616883724927902, + 0.00803227350115776, + 0.012299811467528343, + -0.053146250545978546, + -0.022525561973452568, + -0.0024778747465461493, + -0.02835807390511036, + 0.042713090777397156, + -0.05374961346387863, + 0.005232290830463171, + 0.008107693865895271, + 0.005552827846258879, + -0.04248683154582977, + 0.016617629677057266, + 0.000741634052246809, + -0.009917783550918102, + -0.01826430857181549, + -0.01837744005024433, + 0.0015249063726514578, + -0.02515270747244358, + 0.05923016369342804, + 0.0431404747068882, + -0.010225750505924225, + -0.020853742957115173, + -0.0022060470655560493, + -0.008535075932741165, + 0.000981251010671258, + 0.06455986946821213, + -0.017862066626548767, + -0.0032902152743190527, + 0.001927934237755835, + 0.0453779473900795, + -0.027629010379314423, + 0.019722437486052513, + -0.011470187455415726, + 0.03215423598885536, + -0.028232373297214508, + -0.0016608203295618296, + 0.0031079493928700686, + 0.01026346068829298, + 0.002749702427536249, + -0.043919820338487625, + 0.004324103705585003, + 0.007850008085370064, + 0.01194784976541996, + 0.0039061487186700106, + -0.0390426330268383, + 0.0026507130824029446, + 0.027855271473526955, + 0.0026727106887847185, + 0.031274329870939255, + 0.024725323542952538, + -0.002922540996223688, + -0.031299471855163574, + 0.007127228658646345, + -0.01713300310075283, + -0.01836486905813217, + -0.009352130815386772, + 0.06355426460504532, + 0.003937574103474617, + -0.0021620518527925014, + 0.04346729442477226, + -0.0016231100307777524, + -0.0032870727591216564, + 0.03994767740368843, + 0.001882367767393589, + -0.01813860796391964, + -0.032279934734106064, + -0.025844059884548187, + -0.01820145919919014, + 0.0237448588013649, + -0.012243246659636497, + -0.006882112473249435, + 0.011621028184890747, + 0.03446712717413902, + 0.036981139332056046, + -0.01194784976541996, + -0.006636996287852526, + -0.04341701418161392, + 0.0389169305562973, + -0.007102088537067175, + -0.034844230860471725, + -0.036805160343647, + 0.003972141537815332, + 0.04175776615738869, + -0.015209782868623734, + 0.044950563460588455, + -0.028182093054056168, + -0.006498725153505802, + -0.025466958060860634, + -0.026397142559289932, + 0.0008484796271659434, + 0.02604518085718155, + -0.029212838038802147, + -0.0054679797030985355, + -0.005816799122840166, + 0.01316086109727621, + -0.02151995711028576, + -0.02506471611559391, + -0.027729570865631104, + 0.026824526488780975, + -0.002063062507659197, + 0.03504535183310509, + -0.0021636229939758778, + -0.013424833305180073, + -0.019043654203414917, + 0.055358581244945526, + 0.005480549763888121, + -0.04205944761633873, + 0.03175199404358864, + -0.01573772542178631, + 0.004632070194929838, + 0.007868862710893154, + -0.05138643831014633, + -0.01301002036780119, + 0.013651094399392605, + 0.021281125023961067, + 0.03527161106467247, + 0.021369116380810738, + -0.028760315850377083, + 0.030293865129351616, + 0.019835567101836205, + -0.006068200338631868, + 0.002474732231348753, + 0.001564187929034233, + 0.012092405930161476, + -0.017535245046019554, + 0.012306096963584423, + 0.04630813002586365, + 0.040425337851047516, + 0.04439748078584671, + 0.02833293378353119, + -0.004817478824406862, + 0.0033247831743210554, + -0.004283250775188208, + 0.022223880514502525, + -0.04012365639209747, + 0.02490130439400673, + 0.014455578289926052, + -0.017434684559702873, + 0.0017048155423253775, + -0.005043739918619394, + 0.009251570329070091, + 0.017899777740240097, + -0.04452318325638771, + -0.04231084883213043, + 0.008711057715117931, + -0.017359264194965363, + -0.02730218879878521, + 0.00268999463878572, + 0.013852215372025967, + -0.015172072686254978, + -0.008189399726688862, + 0.012293526902794838, + -0.06450959295034409, + -0.0008689059759490192, + -0.046157289296388626, + -0.038062166422605515, + -0.03439170867204666, + -0.015146932564675808, + -0.04060132056474686, + -0.03409002348780632, + -0.004201545380055904, + -0.0544535368680954, + -0.04472430422902107, + 0.010206895880401134, + -0.01080397330224514, + 0.002922540996223688, + -0.04321589320898056, + 0.005540257785469294, + -0.028207233175635338, + 0.035724133253097534, + -0.0035636143293231726, + 0.0012357948580756783, + 0.013387123122811317, + -0.03162629157304764, + 0.02047664113342762, + -0.06405706703662872, + 0.04555392637848854, + -0.01358824409544468, + -0.037106841802597046, + -0.06722472608089447, + 0.012620348483324051, + -0.023254625499248505, + -0.014933241531252861, + 0.04223543033003807, + 0.030545266345143318, + -0.0457550473511219, + 0.018553420901298523, + -0.02267640270292759, + 0.02596976049244404, + -0.020816033706068993, + -0.006285034120082855, + 0.030520126223564148, + 0.001517050084657967, + -0.014706979505717754, + 0.011583318002521992, + 0.004990316927433014, + 0.020200099796056747, + -0.005028027109801769, + 0.0503556951880455, + 0.006234753876924515, + -0.028232373297214508, + 0.034190583974123, + 0.006127908360213041, + -0.01701987162232399, + -0.028207233175635338, + 0.026849666610360146, + 0.00735977478325367, + 0.02941395901143551, + -0.042612530291080475, + -0.01578800566494465, + -0.019923558458685875, + 0.033562082797288895, + 0.008799048140645027, + 0.0069512478075921535, + 0.01803804747760296, + 0.025504669174551964, + -0.006303889211267233, + -0.004339816048741341, + 0.03280787914991379, + 0.007529471069574356, + -0.027050787582993507, + -0.04995345324277878, + -0.02604518085718155, + 0.02404654026031494, + 0.024536773562431335, + 0.0008131262729875743, + -0.03398946300148964, + -0.0008579071727581322, + 0.0017488107550889254, + 0.022047899663448334, + 0.01363852433860302, + -0.017975198104977608, + 0.0007208148599602282, + -0.002347460249438882, + 0.010030914098024368, + 0.03713198006153107, + -0.047162897884845734, + -0.040475621819496155, + -0.014003056101500988, + -0.06903481483459473, + 0.028785455971956253, + 0.012488363310694695, + 0.019948698580265045, + 0.003321640659123659, + -0.012651774100959301, + 0.0008162687881849706, + 0.028182093054056168, + -0.05007915198802948, + 0.004358671139925718, + 0.00034724813303910196, + 0.00565338833257556, + 0.03514591231942177, + 0.005150585435330868, + -0.01205469574779272, + 0.029992183670401573, + 0.038112446665763855, + 0.00920129008591175, + -0.0007011741399765015, + -0.023480888456106186, + 0.04107898473739624, + -0.006687276531010866, + 0.0033467807807028294, + 0.010942244902253151, + -0.020036688074469566, + -0.009735518135130405, + 0.017673516646027565, + -0.0002631857933010906, + -0.011809579096734524, + -0.005445981863886118, + -0.022148460149765015, + 0.003246220061555505, + -0.030067604035139084, + -0.014480718411505222, + 0.04117954522371292, + -0.007265499327331781, + 0.027905551716685295, + 0.011771868914365768, + -0.0072215041145682335, + -0.057520631700754166, + -0.001266434439457953, + -0.02522812783718109, + -0.03401460498571396, + -0.034768808633089066, + 0.003786733141168952, + 0.010370306670665741, + 0.0090755894780159, + 0.03788618743419647, + -0.01588856615126133, + 0.010898249223828316, + 0.018817393109202385, + -0.0655151978135109, + 0.023103784769773483, + 0.018993373960256577, + -0.010904534719884396, + -0.001231081085279584, + 0.022412432357668877, + -0.010364021174609661, + -0.03308441862463951, + 0.024323081597685814, + 0.0026255729608237743, + 0.005122303031384945, + -0.007806012406945229, + 0.024737894535064697, + -0.011256496421992779, + -0.007397485431283712, + 0.019056223332881927, + 0.028031252324581146, + 0.00679412204772234, + -0.020137248560786247, + -0.017522675916552544, + 0.025580089539289474, + 0.0038810085970908403, + 0.012167826294898987, + -0.007265499327331781, + 0.014078476466238499, + 0.0008052699849940836, + 0.002100772690027952, + 0.009037879295647144, + 0.014505858533084393, + -0.00971666257828474, + 0.03660403937101364, + 0.02858433499932289, + 0.014543568715453148, + -0.009477831423282623, + -0.014794970862567425, + 0.013902495615184307, + -0.011281636543571949, + 0.018855102360248566, + -0.018390009179711342, + -0.01710786297917366, + 0.009446406736969948, + -0.0054711224511265755, + -0.05912959948182106, + 0.0340648852288723, + 0.031123489141464233, + -0.02282724343240261, + 0.03187769278883934, + -0.009006453678011894, + 0.022462712600827217, + 0.0029728212393820286, + 0.02525326795876026, + -0.029967043548822403, + 0.010276030749082565, + -0.005741378758102655, + -0.01197298988699913, + -0.021356545388698578, + 0.017396975308656693, + -0.03997281566262245, + 0.004792338702827692, + -0.050682514905929565, + 0.010558857582509518, + -0.005015457049012184, + -0.04469916224479675, + -0.007227789144963026, + 0.006907252594828606, + -0.025655509904026985, + 0.010571427643299103, + -0.006420162506401539, + -0.0103200264275074, + 0.02043893188238144, + -0.014292167499661446, + 0.02170850709080696, + -0.017522675916552544, + 0.03082180768251419, + -0.000416383525589481, + -0.01805061846971512, + 0.004635212477296591, + -0.04092814400792122, + -0.023053504526615143, + -0.008101409301161766, + -0.007611176464706659, + -0.0027559874579310417, + -0.04210972785949707, + -0.003128375858068466, + 0.043819259852170944, + 0.0070078130811452866, + 0.03836384788155556, + -0.0018069472862407565, + -0.038112446665763855, + -0.0032745026983320713, + 0.009358416311442852, + 0.017950057983398438, + 0.04130524396896362, + 0.06048716977238655, + -0.008271104656159878, + -0.032279934734106064, + 0.012362661771476269, + -0.007133513689041138, + -0.011124510318040848, + 0.0026491419412195683, + 0.03388890251517296, + 0.008792762644588947, + -0.017987767234444618, + 0.04437234252691269, + -0.012425512075424194, + 0.0315760113298893, + 0.027804991230368614, + -0.010420586913824081, + 0.00015408154285978526, + -0.0044969418086111546, + 0.02511499635875225, + -0.0008571215439587831, + -0.011011379770934582, + 0.03738338500261307, + 0.008403090760111809, + 0.003698742715641856, + 0.02511499635875225, + 0.025693219155073166, + 0.0012271528830751777, + 0.019144214689731598, + 0.02403397113084793, + -0.04243655130267143, + 0.03180227428674698, + -0.028106672689318657, + 0.002804696559906006, + 0.02048921212553978, + 0.025705790147185326, + 0.016190247610211372, + -0.004742058459669352, + -0.010797688737511635, + 0.030067604035139084, + 0.06541463732719421, + 0.017510104924440384, + 0.014443008229136467, + 0.010087479837238789, + 0.031500592827796936, + 0.02285238355398178, + -0.003899863688275218, + -0.005848224274814129, + -0.01417903695255518, + 0.0478668212890625, + -0.01691931113600731, + -0.026874806731939316, + -0.04879700392484665, + -0.010766263119876385, + 0.009182434529066086, + -0.031073208898305893, + -0.009949209168553352, + 0.0037490229588001966, + 0.007227789144963026, + -0.03092236816883087, + 0.008107693865895271, + -0.03270731866359711, + 0.02830779366195202, + 0.00008273658022517338, + -0.01580057665705681, + -0.011991845443844795, + -0.010866823606193066, + -0.0007813083357177675, + -0.000313662487315014, + -0.052995409816503525, + -0.009842363186180592, + 0.032355356961488724, + 0.02715134806931019, + -0.068632572889328, + -0.007428910583257675, + -0.023267196491360664, + 0.008139119483530521, + -0.0027968401554971933, + 0.002680567093193531, + -0.022261591628193855, + 0.016265667974948883, + -0.06290062516927719, + -0.016592489555478096, + -0.014267027378082275, + 0.012236961163580418, + -0.003280787728726864, + -0.03273245692253113, + 0.020086968317627907, + 0.001106951618567109, + -0.028232373297214508, + -0.00002318833867320791, + 0.01194784976541996, + 0.019043654203414917, + 0.002473160857334733, + 0.03874095156788826, + 0.008396805264055729, + -0.0038401558995246887, + -0.025693219155073166, + -0.04208458960056305, + 0.07748190313577652, + -0.02294037491083145, + 0.004311533644795418, + 0.015084082260727882, + 0.01608968712389469, + -0.024624763056635857, + 0.00017617736011743546, + 0.008189399726688862, + 0.004025564529001713, + -0.019634446129202843, + -0.02830779366195202, + 0.008843042887747288, + -0.045126546174287796, + 0.018653981387615204, + -0.019735006615519524, + 0.0589284785091877, + -0.03373806178569794, + -0.001766094588674605, + 0.004742058459669352, + -0.040249358862638474, + -0.0022390433587133884, + -0.02964022196829319, + 0.009980633854866028, + -0.00863563735038042, + -0.00852879136800766, + -0.015674876049160957, + -0.013487683609127998, + -0.002517156070098281, + 0.008761337958276272, + 0.003170799696817994, + -0.010609137825667858, + -0.014505858533084393, + -0.011093085631728172, + 0.025630369782447815, + 0.02715134806931019, + 0.039118051528930664, + -0.024624763056635857, + 0.006124765612185001, + -0.0075797513127326965, + -0.04560420662164688, + 0.03295871987938881, + 0.01602683775126934, + -0.002749702427536249, + 0.018741972744464874, + -0.023644298315048218, + -0.014996091835200787, + -0.023053504526615143, + -0.008245964534580708, + -0.0052385758608579636, + 0.02062748186290264, + -0.0059110745787620544, + 0.024373361840844154, + -0.034793950617313385, + 0.030268725007772446, + 0.016391368582844734, + -0.040576182305812836, + -0.0015209782868623734, + 0.032657038420438766, + 0.00012903960305266082, + 0.006234753876924515, + -0.009854933246970177, + -0.01471954956650734, + -0.059682685881853104, + 0.028081532567739487, + -0.027654150500893593, + -0.008761337958276272, + -0.0499785915017128, + 0.00974808819591999, + -0.01368880458176136, + 0.054252415895462036, + 0.022475281730294228, + -0.027025647461414337, + 0.02033837139606476, + 0.008799048140645027, + -0.019986407831311226, + 0.038187868893146515, + 0.026598265394568443, + -0.0137390848249197, + 0.010527431964874268, + 0.01585085690021515, + -0.045981310307979584, + -0.03645319864153862, + 0.024763034656643867, + 0.003167657181620598, + 0.024750463664531708, + -0.006498725153505802, + -0.030193304643034935, + -0.0019295054953545332, + 0.037961605936288834, + -0.010684558190405369, + -0.011074230074882507, + -0.02943909913301468, + -0.03308441862463951, + 0.006787837017327547, + 0.03625207766890526, + -0.006454729940742254, + -0.008975028991699219, + -0.02047664113342762, + 0.010866823606193066, + 0.0060964832082390785, + -0.04180804640054703, + -0.009817223064601421, + 0.038338709622621536, + 0.012073550373315811, + 0.02292780391871929, + 0.006982672959566116, + 0.006674706470221281, + 0.042637672275304794, + 0.04349243640899658, + 0.036905720829963684, + -0.021092575043439865, + -0.02148224599659443, + 0.01717071421444416, + -0.019860707223415375, + 0.004289535805583, + -0.02383285015821457, + 0.03449226915836334, + 0.01701987162232399, + 0.015486324205994606, + 0.011338201351463795, + -0.028860876336693764, + 0.027075927704572678, + -0.04371869936585426, + -0.003236792515963316, + -0.005018599797040224, + -0.021947339177131653, + -0.009572107344865799, + 0.01601426675915718, + 0.011734158731997013, + -0.016554780304431915, + -0.001403133850544691, + -0.016730761155486107, + 0.022500421851873398, + 0.017472395673394203, + -0.013123150914907455, + -0.029011717066168785, + 0.01142619177699089, + 0.017686085775494576, + -0.017686085775494576, + 0.02622116170823574, + -0.0013245709706097841, + 0.0027889839839190245, + -0.03215423598885536, + 0.013098010793328285, + -0.0037364528980106115, + 0.015310343354940414, + -0.0168438907712698, + 0.016579920426011086, + 0.033511802554130554, + 0.004396381322294474, + -0.005357991438359022, + 0.014091046527028084, + 0.00863563735038042, + 0.004132410045713186, + -0.020250380039215088, + 0.001346568576991558, + -0.00034194515319541097, + -0.011935279704630375, + 0.02742788940668106, + 0.007491760887205601, + 0.05020485445857048, + 0.019068794324994087, + 0.03542245179414749, + 0.04804280027747154, + -0.02262612245976925, + -0.02383285015821457, + 0.004223542753607035, + -0.006636996287852526, + 0.049676910042762756, + -0.0023647441994398832, + 0.006706131622195244, + -0.005621963180601597, + -0.0015492609236389399, + 0.0024904448073357344, + -0.020941734313964844, + 0.032330214977264404, + -0.006017920095473528, + -0.005823084153234959, + -0.008843042887747288, + -0.041456084698438644, + -0.0026491419412195683, + 0.016554780304431915, + -0.042738232761621475, + -0.024637334048748016, + -0.0044435192830860615, + -0.005310853943228722, + -0.0012350091710686684, + -0.06445930898189545, + 0.03288329765200615, + 0.002179335569962859, + -0.00301367393694818, + 0.03187769278883934, + 0.05701782926917076, + -0.011960419826209545, + -0.018767112866044044, + -0.053045690059661865, + -0.003670459846034646, + 0.016466788947582245, + -0.051889240741729736, + -0.01542347390204668, + 0.009245284833014011, + -0.013475113548338413, + -0.019835567101836205, + 0.023531168699264526, + -0.00018423006986267865, + 0.01932019554078579, + 0.021846778690814972, + 0.010250890627503395, + 0.014543568715453148, + -0.008465941064059734, + -0.00713979871943593, + -0.022425001487135887, + 0.0205772016197443, + 0.02041379176080227, + -0.017158143222332, + 0.002609860384836793, + -0.028659755364060402, + 0.005266858730465174, + -0.011891284957528114, + 0.07632545381784439, + -0.003409631084650755, + 0.05912959948182106, + 0.027905551716685295, + 0.014996091835200787, + -0.01710786297917366, + -0.02167079783976078, + -0.012312381528317928, + -0.032279934734106064, + 0.018968233838677406, + 0.012746049091219902, + 0.015612024813890457, + -0.01952131651341915, + -0.03522133082151413, + 0.03753422573208809, + -0.00018157856538891792, + 0.024536773562431335, + 0.018603701144456863, + 0.026397142559289932, + 0.03315984085202217, + 0.009465261362493038, + -0.0007659885450266302, + 0.00394071638584137, + 0.03778562694787979, + 0.005788516253232956, + 0.023594018071889877, + -0.02961508184671402, + 0.029288258403539658, + 0.023443177342414856, + 0.05581110343337059, + -0.03552301228046417, + 0.012783759273588657, + 0.03881637006998062, + 0.07215218991041183, + 0.02612060122191906, + -0.010558857582509518, + 0.007014098111540079, + 0.016190247610211372, + 0.027830131351947784, + -0.008095123805105686, + 0.03386376425623894, + -0.023229485377669334, + 0.026422282680869102, + -0.02964022196829319, + -0.01026974618434906, + 0.01194784976541996, + -0.0477411188185215, + 0.017849497497081757, + 0.00007713897502981126, + 0.04095328226685524, + 0.02384541928768158, + 0.009188720025122166, + 0.0043838112615048885, + -0.006687276531010866, + -0.020816033706068993, + -0.05126073956489563, + 0.014530998654663563, + -0.0023757428862154484, + 0.01412875670939684, + 0.04329131543636322, + -0.014430438168346882, + -0.000262596586253494, + -0.005116018000990152, + 0.004581789951771498, + 0.016730761155486107, + -0.0033719209022819996, + -0.03788618743419647, + -0.039268892258405685, + 0.04296449199318886, + -0.005317138973623514, + 0.006102768238633871, + 0.010671988129615784, + 0.004779768642038107, + 0.014468148350715637, + 0.009993203915655613, + -0.010338881053030491, + 0.02183420956134796, + -0.0322045162320137, + 0.026372002437710762, + -0.010816543363034725, + 0.01938304491341114, + -0.012350091710686684, + 0.008579071611166, + -0.002132197842001915, + 0.0012232247972860932, + 0.02173364721238613, + 0.007812297437340021, + -0.009257854893803596, + -0.027629010379314423, + -0.02260098233819008, + -0.015612024813890457, + 0.0004470230487640947, + -0.025416677817702293, + 0.005452267359942198, + -0.004952606745064259, + 0.038137588649988174, + -0.02853405475616455, + 0.01244436763226986, + 0.025404108688235283, + 0.011696448549628258, + 0.031098349019885063, + 0.01573772542178631, + 0.013839645311236382, + -0.02953965961933136, + 0.00019120251818094403, + -0.004452946595847607, + -0.007491760887205601, + 0.028684895485639572, + -0.00396585650742054, + -0.02276439405977726, + 0.01301002036780119, + -0.006756411865353584, + 0.005848224274814129, + 0.01603940688073635, + 0.02490130439400673, + -0.008409375324845314, + -0.035824693739414215, + 0.007070663385093212, + -0.021017154678702354, + -0.010690842755138874, + 0.012683198787271976, + -0.015209782868623734, + 0.03519619256258011, + 0.030117884278297424, + 0.03564871475100517, + -0.028936296701431274, + 0.00543026952072978, + -0.012337521649897099, + -0.010338881053030491, + 0.018628841266036034, + -0.004701205529272556, + 0.04195888713002205, + 0.014706979505717754, + 0.006580430548638105, + -0.01701987162232399, + 0.043819259852170944, + -0.029967043548822403, + -0.00567538570612669, + 0.014141326770186424, + -0.012532358057796955, + 0.02492644637823105, + 0.02174621820449829, + -0.01918192394077778, + 0.011771868914365768, + 0.005163155496120453, + 0.025454388931393623, + -0.041682347655296326, + 0.006385594606399536, + 0.039268892258405685, + 0.03539731353521347, + -0.014417868107557297, + -0.003657889785245061, + 0.03313469886779785, + -0.008076269179582596, + 0.02958994172513485, + -0.006674706470221281, + -0.027126207947731018, + -0.01363852433860302, + -0.020225239917635918, + -0.012368947267532349, + -0.02294037491083145, + 0.010332596488296986, + -0.030520126223564148, + -0.009113299660384655, + 0.008799048140645027, + -0.011683878488838673, + 0.0008115550153888762, + 0.010282316245138645, + 0.00570052582770586, + 0.02290266379714012, + -0.006131050642579794, + 0.012130116112530231, + 0.018867673352360725, + -0.013676234520971775, + 0.020137248560786247, + 0.031374890357255936, + -0.006511295214295387, + -0.008654491975903511, + 0.019709866493940353, + 0.0016466788947582245, + 0.013148291036486626, + -0.014091046527028084, + -0.014870391227304935, + -0.027704430744051933, + -0.008069983683526516, + -0.022437572479248047, + 0.0027905551251024008, + 0.0004835548170376569, + -0.008271104656159878, + -0.03509563207626343, + 0.001869797706604004, + 0.016768470406532288, + -0.021155424416065216, + 0.022173600271344185, + -0.018741972744464874, + 0.006662136409431696, + -0.014593848958611488, + -0.02403397113084793, + -0.01026346068829298, + 0.06717444211244583, + 0.04359299689531326, + -0.007076948415488005, + -0.01420417707413435, + 0.027050787582993507, + 0.02154509723186493, + 0.013248852454125881, + 0.018767112866044044, + -0.013827075250446796, + -0.02037608064711094, + 0.0003441056178417057, + 0.0037144552916288376, + -0.018565990030765533, + -0.02491387538611889, + -0.012746049091219902, + 0.002944538602605462, + -0.025617798790335655, + 0.019797857850790024, + 0.007378629874438047, + -0.025680650025606155, + 0.018591130152344704, + -0.02163308672606945, + -0.006706131622195244, + 0.026372002437710762, + -0.026673685759305954, + -0.0130854407325387, + 0.008359095081686974, + -0.004427806474268436, + 0.031349752098321915, + 0.0066684214398264885, + -0.023367756977677345, + 0.02521555684506893, + 0.018465429544448853, + 0.010904534719884396, + 0.018905382603406906, + 0.0016608203295618296, + 0.009861218743026257, + -0.02853405475616455, + 0.04286393150687218, + 0.006611855700612068, + -0.018440289422869682, + -0.011966705322265625, + -0.013827075250446796, + -0.0007239573751576245, + 0.04190860688686371, + 0.0006717130308970809, + -0.018478000536561012, + -0.01194784976541996, + -0.0030262439977377653, + -0.01717071421444416, + 0.0169067420065403, + 0.013361983001232147, + 0.01313572097569704, + -0.008956173434853554, + -0.01298488024622202, + 0.03660403937101364, + 0.00005396291089709848, + -0.04105384275317192, + -0.040224216878414154, + -0.024486493319272995, + -0.002614574274048209, + -0.013801935128867626, + -0.00844708550721407, + 0.015524034388363361, + -0.00961610209196806, + -0.027930691838264465, + -0.013211141340434551, + -0.015096652321517467, + -0.015172072686254978, + -0.005945642478764057, + 0.016554780304431915, + 0.03288329765200615, + 0.00034194515319541097, + -0.006913537625223398, + -0.002795269014313817, + 0.035874973982572556, + 0.01078511867672205, + 0.03999795764684677, + -0.004028706811368465, + 0.023040935397148132, + 0.015549174509942532, + -0.0007777729770168662, + 0.012243246659636497, + -0.0017283844063058496, + 0.02740274928510189, + -0.00540512939915061, + -0.007428910583257675, + -0.0057948012836277485, + 0.018490569666028023, + -0.007787157315760851, + -0.004773483611643314, + -0.011551892384886742, + 0.008484795689582825, + -0.024687614291906357, + 0.023468317463994026, + 0.014644129201769829, + -0.004594360012561083, + 0.018842533230781555, + -0.029891623184084892, + -0.03514591231942177, + -0.021167995408177376, + 0.0054711224511265755, + 0.000843765854369849, + 0.018628841266036034, + -0.030520126223564148, + 0.0037615930195897818, + 0.00033349962905049324, + -0.0007443837239407003, + 0.046232711523771286, + 0.030042463913559914, + 0.0029618223197758198, + -0.002482588402926922, + -0.010452011600136757, + 0.0014243458863347769, + 0.0023348901886492968, + 0.00025277622626163065, + 0.0025014434941112995, + 0.006561575457453728, + -0.0022641834802925587, + 0.0023081786930561066, + 0.031400032341480255, + 0.00565338833257556, + 0.019760146737098694, + -0.006338457111269236, + -0.00905044935643673, + -0.04344215616583824, + -0.014443008229136467, + -0.005266858730465174, + 0.025328688323497772, + -0.02385799027979374, + 0.036679457873106, + 0.019860707223415375, + 0.005408271681517363, + -0.009414981119334698, + -0.01590113714337349, + 0.0053391363471746445, + -0.029212838038802147, + 0.0056408182717859745, + 0.030067604035139084, + -0.02825751341879368, + -0.034793950617313385, + 0.04633327201008797, + 0.0034253436606377363, + -0.03295871987938881, + -0.013098010793328285, + -0.015058942139148712, + -0.04703719541430473, + 0.009326990693807602, + 0.061090532690286636, + -0.01135705690830946, + -0.026950227096676826, + 0.0009396126260980964, + 0.02410939149558544, + -0.03439170867204666, + 0.0336877815425396, + 0.010030914098024368, + 0.014996091835200787, + -0.015084082260727882, + 0.00849736575037241, + 0.020112108439207077, + -0.024297941476106644, + -0.012199250981211662, + 0.0027905551251024008, + 0.00372074032202363, + 0.026547985151410103, + -0.007586036343127489, + -0.01469440944492817, + 0.059783246368169785, + 0.006731271743774414, + 0.034819088876247406, + -0.017535245046019554, + 0.010351451113820076, + -0.0007196363876573741, + 0.008271104656159878, + 0.02165822684764862, + 0.01202327013015747, + -0.015247493050992489, + -0.006263036746531725, + -0.006401307415217161, + 0.008817902766168118, + 0.014065906405448914, + 0.007372344844043255, + 0.02177135832607746, + 0.00679412204772234, + 0.02966536208987236, + -0.027603870257735252, + -0.005474264733493328, + 0.0008940460975281894, + -0.0215073861181736, + -0.03212909400463104, + -0.0004965176922269166, + 0.02154509723186493, + -0.010998809710144997, + 0.03391404449939728, + -0.018528280779719353, + -0.03416544571518898, + 0.010389161296188831, + 0.03303413838148117, + 0.03273245692253113, + -0.049626629799604416, + -0.041581787168979645, + -0.025454388931393623, + -0.025919480249285698, + -0.03270731866359711, + -0.01596398651599884, + -0.008780192583799362, + 0.02492644637823105, + 0.011489042080938816, + 0.02510242722928524, + 0.018465429544448853, + -0.02144453674554825, + 0.016768470406532288, + -0.03962085396051407, + -0.0017849496798589826, + 0.04080244153738022, + 0.03421572595834732, + -0.008572787046432495, + 0.04331645369529724, + 0.010370306670665741, + -0.014267027378082275, + -0.023091215640306473, + -0.01928248442709446, + 0.00044191646156832576, + -0.01813860796391964, + 0.0007149226148612797, + -0.004522081930190325, + -0.0018415149534121156, + 0.02162051759660244, + 0.010100049898028374, + -0.020916594192385674, + 0.01832715980708599, + 0.011790724471211433, + 0.01949617639183998, + -0.0274781696498394, + 0.013236282393336296, + 0.009270424954593182, + 0.019647017121315002, + -0.022135891020298004, + 0.043567854911088943, + -0.006278749089688063, + -0.02294037491083145, + -0.03336096182465553, + 0.015159502625465393, + 0.017887206748127937, + -0.007730592042207718, + 0.006225326098501682, + 0.005408271681517363, + -0.01415389683097601, + 0.0238077100366354, + -0.008170544169843197, + 0.03373806178569794, + 0.013424833305180073, + 0.008836758323013783, + 0.002504586009308696, + 0.004160692449659109, + -0.03411516547203064, + 0.01127535104751587, + 0.0030843804124742746, + -0.020778322592377663, + 0.00706437835469842, + 0.028735175728797913, + 0.014681839384138584, + 0.0014958381652832031, + 0.01598912663757801, + -0.00035412239958532155, + -0.0014754118165001273, + -0.021268555894494057, + 0.013211141340434551, + -0.011665022931993008, + 0.0018792252521961927, + -0.004792338702827692, + 0.03992253541946411, + -0.025429248809814453, + -0.009999489411711693, + -0.015750296413898468, + -0.028735175728797913, + -0.008887038566172123, + 0.003318498143926263, + 0.04452318325638771, + 0.017484964802861214, + -0.031198909506201744, + 0.015096652321517467, + -0.012224391102790833, + -0.03672973811626434, + -0.0073346346616744995, + -0.01928248442709446, + 0.028810596093535423, + 0.0315760113298893, + -0.027025647461414337, + 0.01259520836174488, + 0.023317476734519005, + 0.02030066028237343, + -0.017158143222332, + -0.019948698580265045, + -0.036956001073122025, + 0.052794285118579865, + -0.027930691838264465, + -0.016730761155486107, + 0.02407168038189411, + 0.039243753999471664, + 0.018729401752352715, + -0.022588413208723068, + -0.0007765945047140121, + 0.021972479298710823, + 0.021381685510277748, + 0.011269066482782364, + -0.0015775435604155064, + 0.003194368677213788, + -0.0062536089681088924, + 0.005222863517701626, + 0.02389569953083992, + -0.00964752770960331, + -0.009345846250653267, + 0.013940205797553062, + -0.012425512075424194, + -0.011394767090678215, + 0.01930762454867363, + 0.04004823789000511, + 0.014681839384138584, + 0.004742058459669352, + 0.004732630681246519, + 0.013072870671749115, + 0.007868862710893154, + 0.0046540675684809685, + -0.015121792443096638, + 0.011797009035944939, + -0.034643109887838364, + -0.008899608626961708, + -0.03222965449094772, + 0.03997281566262245, + 0.028031252324581146, + 0.01187871489673853, + -0.02486359514296055, + -0.00627246405929327, + -0.0501042939722538, + -0.003962714225053787, + 0.0068946825340390205, + 0.0028549768030643463, + -0.007435195613652468, + -0.0308972280472517, + 0.040173936635255814, + 0.010967385023832321, + 0.015511464327573776, + 0.008968743495643139, + -0.03743366524577141, + 0.016718190163373947, + 0.01417903695255518, + 0.012186680920422077, + 0.026573125272989273, + 0.010326310992240906, + -0.0032132237683981657, + 0.004817478824406862, + 0.016718190163373947, + -0.02169593796133995, + 0.0005672243423759937, + -0.01928248442709446, + 0.03429114818572998, + -0.03424086421728134, + 0.014430438168346882, + -0.021193135529756546, + 0.024712754413485527, + 0.0025941478088498116, + -0.016403939574956894, + -0.023568877950310707, + 0.002507728524506092, + -0.04228571057319641, + -0.011394767090678215, + 0.010961099527776241, + 0.026723966002464294, + -0.023518597707152367, + 0.016416508704423904, + -0.04532766714692116, + 0.0026412855368107557, + -0.009270424954593182, + -0.003331068204715848, + -0.03564871475100517, + 0.007026668172329664, + 0.04004823789000511, + 0.001369351870380342, + 0.01142619177699089, + -0.003293357789516449, + -0.045076265931129456, + 0.008874468505382538, + 0.0034819089341908693, + 0.042612530291080475, + 0.002815695246681571, + -0.02403397113084793, + -0.012607778422534466, + -0.01420417707413435 + ] + }, + { + "HotelId": "13", + "HotelName": "Luxury Lion Resort", + "Description": "Unmatched Luxury. Visit our downtown hotel to indulge in luxury accommodations. Moments from the stadium and transportation hubs, we feature the best in convenience and comfort.", + "Description_fr": "Un luxe incomparable. Visitez notre hĆ“tel du centre-ville pour profiter d'un hĆ©bergement de luxe. ƀ quelques minutes du stade et des centres de transport, nous vous proposons le meilleur en matiĆØre de commoditĆ© et de confort.", + "Category": "Luxury", + "Tags": [ + "bar", + "concierge", + "restaurant" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2020-03-18T00:00:00Z", + "Rating": 4.1, + "Address": { + "StreetAddress": "3 Cityplace Dr", + "City": "St. Louis", + "StateProvince": "MO", + "PostalCode": "63141", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -90.44081, + 38.67219 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 242.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 137.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 128.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 163.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "suite" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + } + ], + "embedding": [ + -0.00514281215146184, + -0.0528482161462307, + 0.05077844113111496, + 0.028148919343948364, + -0.03840579837560654, + -0.021537141874432564, + -0.03606005385518074, + 0.007428186945617199, + 0.020789723843336105, + -0.010923804715275764, + -0.015603791922330856, + 0.0015552047407254577, + -0.011314761824905872, + -0.03677297383546829, + 0.027596980333328247, + 0.026539094746112823, + -0.014879371039569378, + 0.011291763745248318, + 0.01778855361044407, + 0.018237004056572914, + 0.030701639130711555, + -0.0053699123673141, + -0.0022149451542645693, + -0.026516098529100418, + -0.010734074749052525, + 0.033392343670129776, + -0.030885620042681694, + 0.007100472692400217, + 0.019329383969306946, + 0.021790115162730217, + -0.0016285092569887638, + -0.012476134113967419, + 0.020226286724209785, + -0.021698124706745148, + 0.013304043561220169, + 0.029091816395521164, + 0.05795365571975708, + 0.038543783128261566, + 0.003213898278772831, + -0.017386097460985184, + -0.029137810692191124, + 0.07828342914581299, + -0.007974376901984215, + 0.0019921569619327784, + -0.0065370346419513226, + 0.005364162847399712, + -0.014315932989120483, + 0.03955566883087158, + 0.006284062284976244, + 0.04746680334210396, + -0.016788162291049957, + -0.023342445492744446, + -0.017777053639292717, + -0.042361363768577576, + -0.0033605073112994432, + -0.006709515582770109, + 0.01831749454140663, + -0.034013278782367706, + 0.06434695422649384, + -0.030333679169416428, + -0.04601796343922615, + -0.019904321059584618, + -0.015638288110494614, + 0.09842922538518906, + -0.008244597353041172, + 0.005875857081264257, + -0.016167230904102325, + 0.026401109993457794, + -0.022721512243151665, + -0.01740909367799759, + 0.045006074011325836, + 0.005950598511844873, + -0.026263125240802765, + -0.0055740149691700935, + 0.02865486405789852, + 0.007985875941812992, + -0.009434717707335949, + 0.018064523115754128, + -0.0033260108903050423, + -0.0057234987616539, + -0.006456543225795031, + -0.02440032921731472, + -0.051284387707710266, + 0.05560791492462158, + -0.03281740844249725, + -0.016638679429888725, + -0.021686626598238945, + -0.0031564044766128063, + -0.0009486461640335619, + 0.07216610014438629, + 0.01352251973003149, + 0.03251844272017479, + 0.011412501335144043, + -0.03143756091594696, + -0.012476134113967419, + 0.047880761325359344, + 0.022583527490496635, + -0.03750889375805855, + -0.0010269813938066363, + 0.06430096179246902, + 0.04551202058792114, + -0.08509068936109543, + 0.018328994512557983, + 0.010021152906119823, + -0.011337758973240852, + -0.07414388656616211, + 0.006496788933873177, + -0.013154560700058937, + 0.03175952285528183, + 0.0240783654153347, + -0.06213919818401337, + 0.011901197023689747, + -0.01302807405591011, + 0.0026475852355360985, + 0.019329383969306946, + 0.018535971641540527, + -0.0008602496236562729, + -0.05413607507944107, + -0.030655644834041595, + -0.03665798902511597, + 0.01830599643290043, + 0.012280656024813652, + -0.016155730932950974, + -0.040567558258771896, + -0.020973704755306244, + -0.055055975914001465, + -0.00823884829878807, + -0.002746761776506901, + -0.045994967222213745, + -0.016880152747035027, + -0.05588388442993164, + -0.014775882475078106, + -0.024722294881939888, + -0.006519786547869444, + -0.029321791604161263, + 0.029229801148176193, + -0.031092597171664238, + -0.010745573788881302, + 0.0065370346419513226, + -0.0004685737076215446, + -0.029482772573828697, + -0.06756660342216492, + 0.036497004330158234, + -0.022928491234779358, + -0.04279831424355507, + -0.003972815349698067, + 0.028010934591293335, + 0.026516098529100418, + 0.0017708061495795846, + 0.04217738285660744, + -0.024952268227934837, + 0.01314306166023016, + 0.0005648756632581353, + -0.02591816335916519, + -0.0022882495541125536, + -0.025734184309840202, + -0.026677079498767853, + -0.005197430960834026, + -0.029091816395521164, + 0.019938817247748375, + -0.0005041479598730803, + 0.00007680799899389967, + 0.0012591121485456824, + -0.03005770966410637, + 0.06282912194728851, + 0.0001502921513747424, + -0.03005770966410637, + 0.010239629074931145, + -0.06158725917339325, + -0.022916991263628006, + 0.034197255969047546, + 0.005105441436171532, + -0.013511021621525288, + 0.0453050397336483, + 0.036497004330158234, + 0.008670050650835037, + -0.04309728369116783, + 0.019501864910125732, + 0.026447106152772903, + 0.0056257592514157295, + 0.012131172232329845, + -0.06269113719463348, + 0.08265295624732971, + -0.016247721388936043, + 0.0007797583821229637, + 0.051468368619680405, + -0.030931614339351654, + 0.021594636142253876, + 0.012579623609781265, + 0.05648181959986687, + -0.008923023007810116, + 0.00753742503002286, + -0.036933958530426025, + 0.02713702991604805, + -0.023664409294724464, + 0.01694914512336254, + -0.035991061478853226, + 0.03412826359272003, + 0.001950473990291357, + -0.005867233034223318, + -0.007727154064923525, + 0.02142215520143509, + 0.04606395959854126, + -0.02119217999279499, + -0.021583138033747673, + -0.01702963560819626, + -0.0301956944167614, + 0.015695782378315926, + -0.022549031302332878, + 0.006462292745709419, + 0.02557320147752762, + 0.014338931068778038, + 0.02515924721956253, + 0.027206022292375565, + 0.018800443038344383, + -0.04682287573814392, + -0.03771587088704109, + -0.02543521672487259, + 0.04210839048027992, + 0.03516315296292305, + -0.016788162291049957, + 0.015833767130970955, + -0.008371083997189999, + 0.05257224664092064, + -0.007370693143457174, + 0.05289421230554581, + -0.0363360233604908, + -0.012936084531247616, + -0.0012030558427795768, + -0.004915711935609579, + -0.02354942262172699, + -0.03939468786120415, + -0.034565217792987823, + -0.03652000427246094, + -0.027206022292375565, + 0.04709884524345398, + 0.006749761290848255, + -0.02807992696762085, + 0.028378894552588463, + 0.013683502562344074, + -0.007083224598318338, + -0.0020209038630127907, + 0.002728076418861747, + 0.03242645040154457, + 0.025412218645215034, + -0.030655644834041595, + 0.0005411595338955522, + 0.01835199072957039, + 0.05730972811579704, + 0.045718997716903687, + -0.030080707743763924, + 0.02959776110947132, + -0.014706890098750591, + -0.01991582103073597, + 0.03318536654114723, + 0.016914648935198784, + -0.02321595884859562, + 0.022618023678660393, + 0.0391877107322216, + -0.029804738238453865, + 0.031736526638269424, + 0.03265642747282982, + -0.01954786106944084, + -0.014994358643889427, + -0.003699720138683915, + -0.015592293813824654, + -0.0028100048657506704, + -0.02181311324238777, + 0.006508287508040667, + 0.0008300654008053243, + -0.07717955112457275, + -0.03440423309803009, + -0.053538139909505844, + 0.027780959382653236, + -0.04279831424355507, + -0.05478000268340111, + -0.031092597171664238, + 0.02591816335916519, + 0.049720559269189835, + 0.01655818708240986, + -0.04870866984128952, + -0.04017660394310951, + 0.044293150305747986, + -0.019708842039108276, + -0.02906881831586361, + -0.015442810021340847, + 0.05399809032678604, + 0.016857154667377472, + -0.053446151316165924, + -0.02614813856780529, + -0.00681875366717577, + -0.03341534361243248, + -0.02146814949810505, + -0.02189360372722149, + -0.0005522989085875452, + -0.018018526956439018, + 0.0008559375419281423, + -0.04171743243932724, + 0.029413780197501183, + -0.017593074589967728, + 0.04114249721169472, + 0.0731779932975769, + -0.02449231967329979, + -0.022618023678660393, + 0.008014623075723648, + 0.031782522797584534, + 0.03944068402051926, + 0.007796146906912327, + 0.04889264702796936, + 0.005545268300920725, + -0.0032311463728547096, + 0.023135468363761902, + -0.006991234607994556, + -0.00683025224134326, + -0.014143452048301697, + 0.007934131659567356, + -0.014315932989120483, + -0.0032771413680166006, + -0.02453831396996975, + -0.012993577867746353, + 0.0627831295132637, + 0.020318275317549706, + -0.024561312049627304, + -0.01637420803308487, + 0.02601015381515026, + -0.01826000213623047, + -0.038957737386226654, + -0.02312396839261055, + -0.029390783980488777, + -0.02722902037203312, + 0.016293717548251152, + -0.005082443822175264, + 0.01507485006004572, + 0.024860279634594917, + -0.03251844272017479, + -0.011228521354496479, + -0.021882105618715286, + -0.007566171698272228, + 0.006761259865015745, + 0.01953636109828949, + -0.02865486405789852, + -0.036359019577503204, + -0.012142671272158623, + -0.01543131098151207, + 0.0008279093890450895, + -0.04921461269259453, + 0.007462683133780956, + 0.034243252128362656, + 0.01599474996328354, + 0.04201640188694, + -0.025849170982837677, + -0.011297513730823994, + 0.03293239697813988, + 0.048110734671354294, + -0.006617525592446327, + -0.008100863546133041, + 0.044477131217718124, + 0.026723075658082962, + -0.018719950690865517, + -0.013177557848393917, + -0.018995920196175575, + 0.0023845515679568052, + -0.024722294881939888, + -0.011291763745248318, + 0.05105441063642502, + 0.012269156984984875, + -0.027114031836390495, + 0.0022551906295120716, + -0.005838485900312662, + -0.009687690064311028, + 0.004470135550945997, + 0.004562125541269779, + 0.04583398252725601, + 0.06296710669994354, + -0.025849170982837677, + 0.05358413606882095, + 0.03001171536743641, + 0.04001561924815178, + -0.03228846564888954, + -0.04093552008271217, + 0.026355115696787834, + 0.0069394903257489204, + 0.027022043243050575, + -0.03010370582342148, + 0.07055627554655075, + 0.023848390206694603, + -0.014258439652621746, + -0.02085871621966362, + -0.011947192251682281, + 0.014235441572964191, + -0.010193634778261185, + -0.026171134784817696, + 0.024377331137657166, + -0.041556451469659805, + -0.04682287573814392, + 0.021491147577762604, + 0.053032197058200836, + 0.011855202727019787, + 0.005344040226191282, + -0.03580708056688309, + 0.02826390601694584, + -0.0429362989962101, + -0.001885793637484312, + -0.047834765166044235, + -0.008244597353041172, + -0.027642974629998207, + 0.01543131098151207, + -0.047788769006729126, + -0.019283389672636986, + 0.03251844272017479, + -0.010021152906119823, + -0.004631117917597294, + -0.0077846478670835495, + -0.01408595871180296, + 0.0015911383088678122, + 0.036359019577503204, + 0.01399396825581789, + -0.037738870829343796, + 0.026309121400117874, + 0.0382218174636364, + 0.024975266307592392, + 0.053032197058200836, + 0.007508678361773491, + 0.04705284908413887, + -0.016224723309278488, + 0.02251453511416912, + 0.05436604842543602, + -0.04656990244984627, + -0.034956175833940506, + 0.013982469215989113, + -0.0538141094148159, + -0.02001930959522724, + 0.043258264660835266, + 0.032587435096502304, + -0.06117330491542816, + 0.06347305327653885, + -0.03058665245771408, + 0.005565390922129154, + -0.020801223814487457, + -0.011958691291511059, + -0.0453050397336483, + -0.042407359927892685, + -0.03847479075193405, + 0.008537815883755684, + -0.027114031836390495, + 0.032081488519907, + 0.013338539749383926, + 0.02982773445546627, + 0.019317885860800743, + -0.0034668706357479095, + -0.013212054036557674, + -0.017685065045952797, + 0.002880434738472104, + -0.028010934591293335, + -0.015120845288038254, + 0.05450403317809105, + 0.04893864318728447, + -0.014097456820309162, + 0.03578408434987068, + -0.019789334386587143, + 0.006128828972578049, + -0.028309902176260948, + 0.05266423523426056, + 0.005093942396342754, + 0.0014006904093548656, + -0.0009184619993902743, + 0.0014064398128539324, + 0.012602620758116245, + 0.034657206386327744, + -0.030310682952404022, + 0.006019591353833675, + -0.01642020232975483, + 0.06186322867870331, + 0.046845871955156326, + 0.014373427256941795, + -0.03592206910252571, + -0.01408595871180296, + 0.018581965938210487, + 0.0058471099473536015, + -0.022480038926005363, + -0.03139156475663185, + -0.013706499710679054, + -0.037025947123765945, + -0.02463030442595482, + -0.046454913914203644, + -0.005318168085068464, + -0.006008092314004898, + -0.007606417406350374, + -0.07865139096975327, + -0.0219510979950428, + -0.014660895802080631, + -0.004984704311937094, + -0.0523882657289505, + -0.009492211043834686, + -0.013062570244073868, + -0.0005084599833935499, + -0.011981688439846039, + -0.0026288998778909445, + -0.0000751460756873712, + -0.011786210350692272, + -0.017397595569491386, + -0.05386010557413101, + 0.037163931876420975, + 0.014281436800956726, + 0.03746290132403374, + 0.035186149179935455, + -0.008520567789673805, + -0.03670398145914078, + 0.04507506638765335, + 0.011084786616265774, + -0.01991582103073597, + 0.006031089928001165, + -0.023399939760565758, + 0.030264686793088913, + 0.010716826654970646, + 0.04029158875346184, + -0.00031891040271148086, + -0.001368350232951343, + -0.0009666129481047392, + -0.012395643629133701, + 0.0150978472083807, + -0.002500976203009486, + -0.00257140607573092, + 0.00802612118422985, + 0.0205252543091774, + 0.02142215520143509, + -0.009152998216450214, + -0.04006161540746689, + 0.006330057047307491, + 0.017248112708330154, + -0.001766494126059115, + -0.022008590400218964, + -0.02236505225300789, + 0.021134687587618828, + 0.0009910478256642818, + 0.03054065816104412, + 0.020042305812239647, + 0.011573483236134052, + 0.049674563109874725, + -0.019191399216651917, + 0.03927969932556152, + -0.00038556716754101217, + 0.0006176980095915496, + 0.009365725331008434, + 0.006761259865015745, + -0.027619976550340652, + -0.029804738238453865, + -0.002534035127609968, + 0.016696171835064888, + 0.030609650537371635, + -0.008859780617058277, + 0.027022043243050575, + 0.008267595432698727, + -0.0021962595637887716, + -0.011010045185685158, + 0.006364553235471249, + 0.00894602108746767, + 0.008543564938008785, + 0.020329775288701057, + 0.00941746961325407, + -0.0034639958757907152, + -0.0018484226893633604, + -0.010716826654970646, + 0.009986656717956066, + 0.026700077578425407, + 0.03907272219657898, + 0.028608867898583412, + 0.03750889375805855, + -0.004337900318205357, + -0.01401696540415287, + -0.009221990592777729, + 0.04610995203256607, + -0.0022566281259059906, + -0.014890870079398155, + -0.020030807703733444, + 0.008175604976713657, + 0.02105419524013996, + -0.022629523649811745, + -0.017305605113506317, + 0.02387138642370701, + 0.024009373039007187, + -0.02104269713163376, + 0.03996962681412697, + 0.025826172903180122, + -0.03557710722088814, + -0.007911134511232376, + 0.018087521195411682, + -0.0013920663623139262, + 0.015373817645013332, + 0.05307818949222565, + 0.004720233380794525, + 0.012016184628009796, + 0.01111353375017643, + -0.00765816168859601, + 0.007037229835987091, + -0.0008494695066474378, + -0.04737481474876404, + -0.010435108095407486, + -0.010325869545340538, + 0.011889698915183544, + 0.023802394047379494, + -0.03185151517391205, + 0.009354226291179657, + -0.01694914512336254, + -0.01608673855662346, + 0.004855343606323004, + 0.006243816576898098, + 0.0076179164461791515, + 0.01206217985600233, + -0.004309153184294701, + 0.030172698199748993, + -0.01570728048682213, + 0.021640632301568985, + 0.002683518687263131, + -0.035393126308918, + 0.03192050755023956, + -0.035853076726198196, + -0.009405970573425293, + 0.01821400597691536, + -0.009802676737308502, + 0.029344787821173668, + 0.028631865978240967, + 0.08702247589826584, + 0.021962596103549004, + 0.002387426095083356, + 0.01448841392993927, + 0.015845265239477158, + -0.043580230325460434, + 0.0030212942510843277, + -0.02207758277654648, + -0.0008070679032243788, + 0.036083050072193146, + 0.032771412283182144, + -0.008112361654639244, + -0.0077846478670835495, + 0.042867306619882584, + 0.004231536760926247, + 0.009515208192169666, + -0.02412435971200466, + -0.014189447276294231, + -0.03217347711324692, + 0.011515989899635315, + 0.037600886076688766, + 0.012729106470942497, + 0.02690705470740795, + 0.024653302505612373, + 0.05464201793074608, + -0.00039814392221160233, + -0.007353445049375296, + 0.004303404130041599, + -0.023284951224923134, + -0.011044541373848915, + 0.018248502165079117, + 0.019927319139242172, + -0.004122298676520586, + 0.008060617372393608, + -0.0006209320272319019, + -0.0006256034248508513, + 0.034105267375707626, + 0.05919552221894264, + 0.016121234744787216, + 0.05390610173344612, + -0.028378894552588463, + -0.010228130966424942, + -0.015592293813824654, + 0.04912262409925461, + 0.022733012214303017, + 0.01661568135023117, + -0.02038726955652237, + 0.020755227655172348, + 0.060575369745492935, + 0.02001930959522724, + 0.011947192251682281, + 0.002153139328584075, + 0.04926060885190964, + 0.0008149733184836805, + 0.00014777679461985826, + -0.01029137335717678, + -0.0007926945108920336, + -0.0467078872025013, + 0.006272563245147467, + -0.007100472692400217, + -0.06020741164684296, + 0.018397986888885498, + 0.023848390206694603, + -0.012407141737639904, + 0.031874511390924454, + 0.04049856588244438, + 0.015385315753519535, + -0.024101361632347107, + -0.007077475544065237, + -0.010095895268023014, + 0.023664409294724464, + -0.003992937970906496, + 0.006933741271495819, + -0.02038726955652237, + 0.008175604976713657, + 0.03923370689153671, + 0.008077865466475487, + -0.025849170982837677, + 0.009032261557877064, + 0.005801115185022354, + 0.003987188450992107, + -0.035393126308918, + -0.0046914867125451565, + -0.01661568135023117, + 0.027734965085983276, + -0.03624403476715088, + 0.005962097551673651, + 0.016822658479213715, + 0.015937255695462227, + -0.015937255695462227, + -0.003530113724991679, + -0.028010934591293335, + 0.017018137499690056, + 0.011481493711471558, + -0.01972034201025963, + 0.025044258683919907, + -0.004084927961230278, + -0.03755488991737366, + -0.003055790439248085, + -0.0057838670909404755, + 0.0034409984946250916, + 0.028424888849258423, + 0.0016141358064487576, + -0.004004436545073986, + 0.009624446742236614, + 0.006542783696204424, + -0.009066757746040821, + 0.04870866984128952, + 0.024101361632347107, + 0.006054087541997433, + -0.03403627499938011, + 0.02058274671435356, + 0.02789594605565071, + -0.00981992483139038, + 0.015971751883625984, + 0.024423327296972275, + -0.043166276067495346, + -0.0022868122905492783, + 0.010222380980849266, + 0.015120845288038254, + -0.01929488778114319, + -0.03516315296292305, + 0.04371821507811546, + -0.028562873601913452, + 0.008923023007810116, + -0.01444241963326931, + -0.05588388442993164, + 0.009198993444442749, + -0.04498307779431343, + 0.007554673124104738, + 0.005200305953621864, + -0.050042521208524704, + -0.004274656996130943, + -0.07708756625652313, + 0.03743990138173103, + 0.03095461241900921, + 0.01713312417268753, + 0.05110040679574013, + -0.03166753426194191, + 0.008428577333688736, + 0.0016313839005306363, + 0.03488718345761299, + 0.012637116946280003, + -0.029390783980488777, + 0.02175561897456646, + 0.020651739090681076, + -0.0457879900932312, + -0.01967434585094452, + 0.002815754385665059, + -0.016351209953427315, + 0.018018526956439018, + -0.014637897722423077, + 0.036221034824848175, + -0.02520524151623249, + 0.00215888861566782, + -0.04291330277919769, + -0.018512973561882973, + -0.02874685451388359, + 0.02009980008006096, + 0.00514568667858839, + 0.024998264387249947, + -0.024975266307592392, + -0.018087521195411682, + -0.027780959382653236, + 0.014097456820309162, + -0.006479540839791298, + 0.02978174015879631, + 0.013304043561220169, + 0.0068762474693357944, + -0.004987579304724932, + 0.024952268227934837, + -0.005091067869216204, + -0.008411329239606857, + 0.02812592126429081, + 0.016811160370707512, + -0.004162544384598732, + -0.00028944486984983087, + 0.020801223814487457, + 0.03665798902511597, + 0.0021703874226659536, + 0.017627570778131485, + -0.0003422672161832452, + -0.01585676521062851, + 0.001622759853489697, + -0.022951487451791763, + -0.0195938553661108, + -0.015580794773995876, + -0.030379675328731537, + 0.03624403476715088, + 0.057217735797166824, + 0.003742840373888612, + -0.022687016054987907, + -0.0004958832287229598, + 0.005576889496296644, + -0.01562679000198841, + 0.008290592581033707, + -0.05298620089888573, + -0.028769850730895996, + -0.008951770141720772, + -0.026654083281755447, + -0.026447106152772903, + 0.016638679429888725, + 0.0022005715873092413, + -0.0012353960191830993, + -0.028562873601913452, + 0.008583810180425644, + -0.004861093126237392, + -0.07704156637191772, + -0.03215048089623451, + 0.014361928217113018, + 0.005059446208178997, + 0.02067473717033863, + 0.0057321228086948395, + -0.0069394903257489204, + 0.01527032908052206, + 0.023917382583022118, + -0.0002565656614024192, + 0.011625227518379688, + 0.020134296268224716, + -0.0068360017612576485, + -0.06163325533270836, + 0.01283259503543377, + -0.018133515492081642, + -0.009871669113636017, + 0.015580794773995876, + -0.01780005171895027, + -0.026976047083735466, + -0.006370302755385637, + 0.02614813856780529, + 0.04408617317676544, + 0.016155730932950974, + -0.05638982728123665, + 0.02231905795633793, + -0.02647010236978531, + 0.0024506691843271255, + -0.001057165558449924, + -0.020329775288701057, + -0.0198238305747509, + -0.01977783441543579, + 0.018616462126374245, + 0.0077329035848379135, + -0.04176342859864235, + -0.02888483926653862, + 0.03318536654114723, + -0.00845157541334629, + 0.017443591728806496, + 0.017236612737178802, + -0.016213225200772285, + -0.029229801148176193, + 0.000278125808108598, + -0.0030011716298758984, + -0.013108565472066402, + -0.020329775288701057, + -0.012706109322607517, + 0.03852078318595886, + 0.035991061478853226, + 0.006261064670979977, + -0.023365443572402, + 0.028539875522255898, + 0.0035904820542782545, + -0.013396034017205238, + 0.019559359177947044, + -0.017098627984523773, + -0.007612166926264763, + -0.01803002692759037, + 0.042453352361917496, + 0.0012052118545398116, + -0.046891868114471436, + 0.035370130091905594, + 0.01883493922650814, + 0.010883558541536331, + -0.036221034824848175, + -0.02552720531821251, + 0.007111971732228994, + -0.008509068749845028, + 0.03005770966410637, + -0.02713702991604805, + 0.04201640188694, + -0.009124251082539558, + -0.0067957560531795025, + -0.025021260604262352, + 0.0077731492929160595, + -0.013936474919319153, + 0.013901978731155396, + -0.00418841652572155, + 0.006094332784414291, + 0.012407141737639904, + -0.004953083116561174, + 0.010969799011945724, + 0.012372645549476147, + -0.0008458761731162667, + -0.02228456176817417, + -0.021721122786402702, + 0.05266423523426056, + -0.041694436222314835, + -0.01643170230090618, + 0.00039239454781636596, + 0.014902369119226933, + -0.01363750733435154, + 0.0018829188775271177, + -0.035462118685245514, + 0.024998264387249947, + 0.014430920593440533, + 0.0055740149691700935, + -0.038957737386226654, + 0.021537141874432564, + 0.01408595871180296, + -0.009003514423966408, + -0.03217347711324692, + 0.002722327131778002, + -0.03405927121639252, + -0.0015278952196240425, + 0.0391647145152092, + 0.04884665459394455, + 0.0429592989385128, + 0.010193634778261185, + -0.00585285946726799, + 0.009026512503623962, + -0.017167620360851288, + 0.04040657728910446, + 0.01599474996328354, + 0.015477306209504604, + 0.011889698915183544, + -0.014407923445105553, + -0.0005882324767298996, + 0.02058274671435356, + -0.01493686530739069, + 0.0055998871102929115, + 0.0031247830484062433, + 0.013901978731155396, + -0.012706109322607517, + -0.010320120491087437, + -0.031230581924319267, + -0.02284799888730049, + 0.006117330398410559, + -0.015868263319134712, + -0.025228239595890045, + -0.011061789467930794, + 0.029666753485798836, + 0.04903063178062439, + 0.023480430245399475, + -0.040751539170742035, + 0.013890479691326618, + 0.01784604601562023, + -0.012970580719411373, + 0.04516705498099327, + -0.040521565824747086, + -0.017064131796360016, + -0.047834765166044235, + 0.042591337114572525, + 0.02449231967329979, + -0.02000780962407589, + -0.02377939783036709, + 0.04640892148017883, + 0.015109346248209476, + -0.030609650537371635, + 0.033622320741415024, + 0.011303262785077095, + 0.019938817247748375, + 0.04916862025856972, + 0.02959776110947132, + -0.0202952791005373, + 0.020709233358502388, + -0.008198603056371212, + 0.02732100896537304, + 0.04171743243932724, + 0.0665547177195549, + -0.013557015918195248, + 0.038244813680648804, + -0.012246159836649895, + 0.006266814190894365, + -0.0011153778759762645, + -0.015937255695462227, + -0.004438514355570078, + -0.002230755751952529, + 0.0391647145152092, + 0.01608673855662346, + 0.0028631866443902254, + -0.01731710508465767, + 0.00041898537892848253, + -0.02184760943055153, + -0.010302872397005558, + -0.008997765369713306, + 0.0006910024676471949, + 0.011774711310863495, + 0.04880065843462944, + 0.012602620758116245, + -0.025688188150525093, + 0.003619228955358267, + 0.023802394047379494, + -0.0160407442599535, + 0.02888483926653862, + -0.00788238737732172, + 0.007991624996066093, + 0.01347652543336153, + -0.008181354962289333, + -0.004938709549605846, + 0.05436604842543602, + 0.017282608896493912, + 0.015638288110494614, + 0.016500694677233696, + 0.01949036680161953, + 0.0013345726765692234, + -0.02557320147752762, + 0.02686106041073799, + 0.03642801195383072, + 0.018961424008011818, + -0.000871029682457447, + 0.019122406840324402, + -0.002186198253184557, + 0.026930052787065506, + 0.03378330171108246, + -0.005128438584506512, + 0.007778898812830448, + -0.0011168152559548616, + -0.0167536661028862, + -0.014856373891234398, + 0.026700077578425407, + 0.016604183241724968, + 0.014982860535383224, + 0.00608858373016119, + 0.02062874287366867, + -0.011579232290387154, + -0.0011829329887405038, + 0.004185541998594999, + 0.01704113557934761, + 0.03852078318595886, + 0.002972424728795886, + 0.027206022292375565, + -0.009221990592777729, + 0.007623665500432253, + 0.010820316150784492, + -0.00800312403589487, + 0.013384534977376461, + -0.00983717292547226, + -0.0217096246778965, + 0.04535103589296341, + -0.016926147043704987, + -0.008428577333688736, + -0.0015997623559087515, + -0.01968584582209587, + -0.03224246948957443, + -0.01765056885778904, + 0.005766618996858597, + -0.03700295090675354, + -0.030126702040433884, + -0.019892822951078415, + 0.005335416179150343, + 0.013924975879490376, + 0.049444589763879776, + 0.02511325106024742, + -0.007433936465531588, + -0.014430920593440533, + 0.008842532522976398, + 0.00798012688755989, + -0.009595699608325958, + 0.021307168528437614, + 0.02566519007086754, + -0.005082443822175264, + 0.01432743202894926, + -0.015017356723546982, + 0.021640632301568985, + -0.03171353042125702, + 0.012246159836649895, + 0.017593074589967728, + 0.021433653309941292, + 0.00752592645585537, + -0.011561984196305275, + 0.039716653525829315, + 0.01836349070072174, + -0.02695305086672306, + -0.005303794518113136, + 0.008227349258959293, + -0.018420983105897903, + 0.017098627984523773, + 0.02991972491145134, + 0.014913867227733135, + 0.020548250526189804, + 0.01314306166023016, + 0.03578408434987068, + 0.027068037539720535, + -0.0076811593025922775, + 0.0162822175770998, + 0.0013913477305322886, + -0.009336978197097778, + -0.0030586651992052794, + -0.008779289200901985, + -0.010872060433030128, + 0.02596415765583515, + 0.012706109322607517, + 0.0032167730387300253, + 0.033484335988759995, + 0.023963376879692078, + 0.016178729012608528, + 0.015569295734167099, + 0.019122406840324402, + -0.03973964974284172, + -0.01493686530739069, + 0.03180551901459694, + -0.0439021959900856, + 0.01594875380396843, + -0.006289811804890633, + -0.010728325694799423, + 0.006203570868819952, + -0.007899635471403599, + 0.020030807703733444, + -0.003921071067452431, + 0.027022043243050575, + 0.005979345645755529, + -0.017696563154459, + -0.027872949838638306, + -0.012407141737639904, + -0.026723075658082962, + -0.042591337114572525, + 0.016408704221248627, + 0.045098062604665756, + -0.0011656848946586251, + -0.007520176935940981, + 0.007520176935940981, + -0.018133515492081642, + 0.008578061126172543, + -0.0214796494692564, + 0.03534713014960289, + -0.029298793524503708, + 0.017547080293297768, + 0.058505598455667496, + 0.012257657945156097, + 0.0056056366302073, + 0.016293717548251152, + 0.0029666752088814974, + -0.012499132193624973, + -0.0010780070442706347, + -0.010745573788881302, + 0.019478868693113327, + 0.019743338227272034, + -0.007715655490756035, + -0.009290982969105244, + -0.035554107278585434, + -0.00562863377854228, + -0.007474182173609734, + -0.039992623031139374, + 0.002153139328584075, + -0.006376052275300026, + 0.01123427040874958, + -0.012740605510771275, + 0.03610605001449585, + 0.030241690576076508, + 0.004473010543733835, + 0.010699578560888767, + -0.01408595871180296, + 0.0004329994844738394, + -0.009267985820770264, + 0.02709103561937809, + 0.022664019837975502, + 0.02591816335916519, + 0.01827150024473667, + -0.0048064738512039185, + -0.01160797942429781, + -0.03645101189613342, + 0.005070944782346487, + -0.006445044651627541, + -0.01789204217493534, + 0.005114065483212471, + 0.012027683667838573, + -0.005545268300920725, + 0.021491147577762604, + 0.01349952258169651, + -0.0056372578255832195, + -0.024101361632347107, + 0.027160027995705605, + 0.023238956928253174, + -0.03950967639684677, + -0.03010370582342148, + 0.01647769659757614, + 0.009015013463795185, + 0.031552545726299286, + 0.007888136431574821, + -0.014396424405276775, + 0.0008997765253297985, + -0.015546298585832119, + -0.00716371601447463, + 0.026930052787065506, + -0.01642020232975483, + -0.004556376487016678, + -0.043672218918800354, + -0.009244987741112709, + -0.028424888849258423, + 0.0020453387405723333, + -0.015005857683718204, + 0.012487633153796196, + -0.008928772993385792, + -0.05924151465296745, + 0.05436604842543602, + -0.05280221998691559, + 0.020364271476864815, + 0.016270719468593597, + -0.013740995898842812, + -0.02180161327123642, + -0.025987155735492706, + -0.026608087122440338, + 0.0191109087318182, + 0.016029246151447296, + 0.042683329433202744, + -0.012361147440969944, + 0.02920680306851864, + 0.000027421803679317236, + 0.013488023541867733, + 0.013062570244073868, + 0.0038607025053352118, + -0.044615115970373154, + -0.012936084531247616, + 0.010210882872343063, + 0.02780395746231079, + -0.0031592792365700006, + -0.0016572561580687761, + -0.004458636976778507, + -0.014292935840785503, + -0.00341512612067163, + -0.006864748429507017, + -0.008008873090147972, + 0.02426234446465969, + 0.011383754201233387, + -0.016017746180295944, + 0.0018110517412424088, + -0.03233446180820465, + 0.002447794657200575, + -0.01783454790711403, + -0.02713702991604805, + 0.039003729820251465, + -0.022031588479876518, + 0.00043371814535930753, + -0.00042257874156348407, + -0.02020328864455223, + -0.030264686793088913, + -0.01827150024473667, + -0.017351601272821426, + -0.018145013600587845, + 0.026562092825770378, + -0.02345743216574192, + 0.0009637382463552058, + -0.013269547373056412, + -0.016500694677233696, + 0.023537924513220787, + -0.029183804988861084, + 0.02108869142830372, + 0.02727501466870308, + 0.02566519007086754, + 0.0031247830484062433, + -0.003731341566890478, + 0.016029246151447296, + -0.020824220031499863, + -0.01953636109828949, + 0.03336934745311737, + -0.02001930959522724, + 0.02695305086672306, + 0.004171168431639671, + 0.01585676521062851, + -0.03718692809343338, + 0.001066508237272501, + -0.03224246948957443, + 0.0018685455434024334, + -0.029942722991108894, + -0.005430280696600676, + 0.03953267261385918, + 0.01314306166023016, + -0.013786991126835346, + 0.004136672243475914, + -0.008445825427770615, + 0.002672020113095641, + 0.0599314421415329, + 0.007807645481079817, + -0.027619976550340652, + -0.00872754491865635, + 0.0424763523042202, + -0.011745964176952839, + -0.01822550594806671, + 0.006462292745709419, + 0.001460340223275125, + -0.022583527490496635, + 0.025780178606510162, + -0.027619976550340652, + 0.01460340153425932, + -0.03373730927705765, + 0.01004990004003048, + 0.0005591263179667294, + -0.0012159919133409858, + -0.022307557985186577, + -0.009038010612130165, + 0.01007289718836546, + 0.01944437250494957, + -0.002283937530592084, + -0.022434044629335403, + -0.014879371039569378, + -0.028631865978240967, + 0.021341664716601372, + -0.023802394047379494, + -0.012165668420493603, + -0.012959081679582596, + 0.04374121129512787, + -0.01690315082669258, + 0.023894384503364563, + -0.0160407442599535, + 0.014764384366571903, + 0.022457042708992958, + 0.00739944027736783, + -0.013384534977376461, + -0.004015935584902763, + -0.0017981156706809998, + 0.016811160370707512, + 0.012970580719411373, + 0.017777053639292717, + -0.015557797625660896, + -0.016581185162067413, + -0.014212444424629211, + -0.001681690919212997, + -0.00328576541505754, + 0.0027668846305459738, + 0.0102626271545887, + 0.005990844219923019, + 0.0090840058401227, + -0.008359584957361221, + -0.0018814816139638424, + 0.029505770653486252, + 0.0034122515935450792, + 0.03238045424222946, + -0.03284040465950966, + -0.023917382583022118, + 0.02213507704436779, + -0.03180551901459694, + 0.01040636096149683, + 0.010021152906119823, + 0.023204460740089417, + 0.026792068034410477, + 0.020778225734829903, + -0.005433155223727226, + -0.008555063977837563, + -0.01040636096149683, + 0.021767117083072662, + -0.0026547720190137625, + 0.04091252386569977, + -0.0020783974323421717, + -0.017903540283441544, + 0.0453050397336483, + -0.016362709924578667, + -0.0048840902745723724, + 0.002611651550978422, + -0.007019981741905212, + -0.0015681408112868667, + 0.026516098529100418, + -0.02812592126429081, + 0.007704156916588545, + 0.037922848016023636, + 0.017213616520166397, + 0.0017391846049576998, + 0.02175561897456646, + -0.0217096246778965, + 0.003958441782742739, + -0.014913867227733135, + -0.03879675269126892, + -0.00549927307292819, + 0.00007572999311378226, + 0.005502147600054741, + 0.0032110235188156366, + 0.005916102323681116, + -0.010601839981973171, + -0.014695391990244389, + -0.013384534977376461, + 0.025826172903180122, + -0.018328994512557983, + -0.03014970012009144, + 0.0014819003408774734, + -0.003889449406415224, + -0.008146858774125576, + -0.044914085417985916, + 0.004102176055312157, + 0.002042463980615139, + 0.00965319387614727, + -0.0039038227405399084, + 0.006140328012406826, + -0.010676581412553787, + 0.001469682902097702, + 0.032633427530527115, + -0.0030414171051234007, + -0.029942722991108894, + -0.006381801329553127, + 0.013085567392408848, + 0.007790397386997938, + -0.0008451574831269681, + 0.01614423282444477, + -0.00003829170600511134, + 0.007060227449983358, + 0.026125140488147736, + 0.008951770141720772, + -0.00514568667858839, + 0.02119217999279499, + -0.023054976016283035, + 0.0076926578767597675, + -0.007957128807902336, + 0.007922632619738579, + -0.02637811377644539, + -0.024239346385002136, + -0.012349648401141167, + -0.03355332836508751, + 0.003601980861276388, + -0.0069394903257489204, + -0.039992623031139374, + -0.038543783128261566, + -0.021272672340273857, + -0.009808426722884178, + 0.00022117111075203866, + -0.022951487451791763, + 0.03741690516471863, + 0.041648440062999725, + 0.008509068749845028, + -0.02624012716114521, + 0.001259830896742642, + 0.0028229409363120794, + -0.006761259865015745, + 0.028424888849258423, + -0.015224333852529526, + 0.0018814816139638424, + -0.025366224348545074, + 0.008365334011614323, + 0.02335394360125065, + 0.023802394047379494, + 0.012844094075262547, + -0.02321595884859562, + -0.007652412634342909, + 0.01401696540415287, + 0.004064805340021849, + 0.010688080452382565, + 0.010624837130308151, + 0.056619804352521896, + 0.0093197301030159, + -0.004694361239671707, + -0.010538596659898758, + -0.013235051184892654, + 0.017144624143838882, + 0.02326195314526558, + 0.023376941680908203, + 0.009038010612130165, + 0.0207667276263237, + 0.015132343396544456, + -0.00977393053472042, + 0.03592206910252571, + -0.025780178606510162, + 0.01835199072957039, + -0.0069394903257489204, + 0.023480430245399475, + -0.07069426029920578, + 0.007830643095076084, + -0.001635695924051106, + 0.005571140442043543, + -0.0003097473527304828, + 0.02920680306851864, + 0.025642193853855133, + 0.037922848016023636, + -0.007295951247215271, + -0.013131562620401382, + -0.010941052809357643, + 0.05018050596117973, + -0.023284951224923134, + -0.0019289138726890087, + 0.025274233892560005, + -0.004171168431639671, + 0.0240783654153347, + -0.003949817735701799, + 0.027206022292375565, + 0.003944068215787411, + 0.027734965085983276, + 0.006318558473140001, + -0.025090252980589867, + -0.025987155735492706, + 0.04068254679441452, + 0.027550984174013138, + 0.024607306346297264, + -0.029758742079138756, + 0.01029137335717678, + -0.046454913914203644, + 0.013189056888222694, + -0.014361928217113018, + -0.0198238305747509, + -0.03534713014960289, + -0.02906881831586361, + -0.011901197023689747, + 0.049950532615184784, + -0.024285342544317245, + -0.002433421090245247, + 0.013465026393532753, + 0.012855593115091324, + 0.010440857149660587, + -0.017294107005000114, + 0.01742059364914894, + 0.04376421123743057, + 0.008273344486951828, + 0.021537141874432564, + 0.0013863170752301812, + 0.010935302823781967, + -0.0046109952963888645, + 0.007985875941812992, + -0.04546602442860603, + 0.03856677934527397, + 0.025458212941884995, + -0.012660114094614983, + 0.014718389138579369, + 0.010613338090479374, + 0.006266814190894365, + 0.02444632351398468, + 0.00046498034498654306, + 0.009848671965301037, + 0.019283389672636986, + -0.01125726755708456, + 0.012970580719411373, + -0.005160060245543718 + ] + }, + { + "HotelId": "14", + "HotelName": "Twin Vortex Hotel", + "Description": "New experience in the making. Be the first to experience the luxury of the Twin Vortex. Reserve one of our newly-renovated guest rooms today.", + "Description_fr": "Nouvelle expĆ©rience dans la fabrication. Soyez les premiers Ć  dĆ©couvrir le luxe du Twin vortex. RĆ©servez une de nos chambres rĆ©cemment rĆ©novĆ©es aujourd'hui.", + "Category": "Luxury", + "Tags": [ + "bar", + "restaurant", + "concierge" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2023-11-14T00:00:00Z", + "Rating": 4.4, + "Address": { + "StreetAddress": "1950 N Stemmons Fw", + "City": "Dallas", + "StateProvince": "TX", + "PostalCode": "75207", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -96.819412, + 32.800762 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "tv" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 151.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 151.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + } + ], + "embedding": [ + -0.04531921446323395, + 0.015367514453828335, + 0.002720292191952467, + -0.0084955720230937, + -0.04953495413064957, + 0.00455043651163578, + -0.018529320135712624, + 0.02449687197804451, + 0.045433152467012405, + 0.002729193540289998, + 0.028356553986668587, + -0.013637066818773746, + -0.00006987661618040875, + -0.028043221682310104, + 0.02451111376285553, + 0.05187069997191429, + -0.04580345377326012, + 0.008111028000712395, + -0.0035018420312553644, + 0.0005015983479097486, + -0.025906866416335106, + -0.012924948707222939, + -0.01080283522605896, + -0.0173899307847023, + 0.03540652617812157, + 0.008858752436935902, + -0.015125393867492676, + 0.0006324501009657979, + 0.04355315864086151, + -0.0034965011291205883, + 0.006501640658825636, + -0.033925317227840424, + 0.04828162491321564, + 0.004219301510602236, + 0.01207040622830391, + 0.03532107174396515, + 0.02617747150361538, + 0.028840793296694756, + -0.019697193056344986, + 0.0065870946273207664, + 0.0021114309784024954, + 0.020238403230905533, + -0.0031920706387609243, + 0.047142237424850464, + 0.0013459037290886045, + 0.010817077942192554, + -0.030421696603298187, + -0.02039507031440735, + 0.0030888135079294443, + 0.010019505396485329, + -0.007007244508713484, + -0.052468881011009216, + -0.03640349209308624, + -0.0687621459364891, + -0.04523376002907753, + -0.0223890021443367, + -0.022616880014538765, + -0.02246021293103695, + 0.00005941737617831677, + 0.02785807102918625, + -0.009812991134822369, + -0.002465709811076522, + 0.04981980100274086, + 0.05184221640229225, + -0.015196605585515499, + -0.01513963658362627, + -0.02735958807170391, + 0.06278035789728165, + -0.009941172786056995, + 0.015538422390818596, + 0.01325252279639244, + 0.0019387422362342477, + -0.05366523936390877, + -0.011336924508213997, + 0.026063531637191772, + 0.0004606515576597303, + -0.006715276278555393, + -0.025493837893009186, + -0.04312588647007942, + -0.02456808276474476, + 0.011799801141023636, + -0.02322930097579956, + -0.00600671861320734, + 0.05779552459716797, + 0.0007428284734487534, + 0.0447780042886734, + 0.012704191729426384, + -0.030621089041233063, + 0.02287324145436287, + 0.04620223864912987, + 0.03500773757696152, + 0.07878877222537994, + -0.026433832943439484, + -0.004532633349299431, + -0.003777788020670414, + 0.019312649965286255, + 0.031788963824510574, + -0.0005790412542410195, + -0.005298160482198, + 0.051642823964357376, + 0.04036286845803261, + -0.022502940148115158, + 0.005839370656758547, + 0.04232831671833992, + 0.014997213147580624, + -0.04198649898171425, + -0.022317789494991302, + 0.011835407465696335, + -0.006882623769342899, + 0.01828720048069954, + -0.062096722424030304, + -0.03828348219394684, + 0.013523127883672714, + 0.0022609757725149393, + -0.0057325526140630245, + 0.0006284444825723767, + 0.03871075436472893, + -0.031333208084106445, + -0.015054182149469852, + -0.047113750129938126, + 0.028399281203746796, + -0.0018782122060656548, + 0.000870119605679065, + -0.07371849566698074, + -0.01615084521472454, + -0.04312588647007942, + -0.01746114157140255, + -0.051329489797353745, + -0.027957767248153687, + 0.0003936679277103394, + -0.011571923270821571, + -0.016108117997646332, + 0.024183539673686028, + -0.033839862793684006, + -0.024012630805373192, + 0.020679917186498642, + 0.002889420371502638, + 0.034295618534088135, + -0.015951450914144516, + -0.0061242179945111275, + 0.02284475788474083, + -0.030535634607076645, + 0.02331475540995598, + -0.05813734233379364, + 0.0011652036337181926, + -0.003970060031861067, + 0.0257929265499115, + -0.012326768599450588, + -0.029738062992691994, + 0.030848966911435127, + -0.07981422543525696, + 0.04848101735115051, + -0.008680722676217556, + -0.04406588524580002, + -0.01038268581032753, + -0.03939438611268997, + 0.006473155692219734, + -0.00807542260736227, + -0.04865192621946335, + 0.01569508947432041, + -0.02414081245660782, + -0.012960554100573063, + -0.01583751291036606, + -0.035890765488147736, + 0.04936404526233673, + -0.02280203066766262, + -0.028442006558179855, + 0.01820174604654312, + -0.09229054301977158, + -0.07200940698385239, + 0.06221066042780876, + 0.003284645965322852, + -0.004155210684984922, + 0.052440397441387177, + 0.050503432750701904, + 0.03788469731807709, + -0.05563068762421608, + -0.04722768813371658, + 0.010760108008980751, + 0.014498730190098286, + 0.0032775248400866985, + 0.03156108409166336, + 0.06460338085889816, + 0.011465105228126049, + -0.0679645761847496, + 0.016378723084926605, + -0.01781720109283924, + 0.019269922748208046, + 0.015296302735805511, + -0.04443618655204773, + -0.05765310302376747, + 0.014584183692932129, + -0.055488262325525284, + 0.02411232702434063, + 0.04167316481471062, + 0.0003050982195418328, + -0.017717504873871803, + 0.029396245256066322, + 0.014213882386684418, + -0.01370115764439106, + -0.015225091017782688, + -0.022104153409600258, + 0.03862529993057251, + -0.03415319696068764, + 0.035890765488147736, + -0.003640705021098256, + 0.044635578989982605, + 0.008979812264442444, + -0.019383862614631653, + -0.023499906063079834, + 0.039194993674755096, + 0.01411418616771698, + -0.0015684406971558928, + 0.03201683983206749, + -0.03349804878234863, + -0.06483125686645508, + -0.025622019544243813, + -0.01185677107423544, + 0.02661898359656334, + 0.014463123865425587, + -0.010781471617519855, + -0.0017090840265154839, + -0.018415380269289017, + 0.04608830064535141, + 0.02902594394981861, + 0.04534769803285599, + -0.028798066079616547, + -0.04887980595231056, + -0.023385966196656227, + 0.02536565624177456, + -0.051244039088487625, + -0.01247631385922432, + -0.0311907846480608, + -0.048765864223241806, + -0.038853179663419724, + 0.04118892550468445, + -0.003491160226985812, + 0.019255680963397026, + 0.034637436270713806, + 0.033811379224061966, + -0.021520216017961502, + 0.014683880843222141, + -0.049990709871053696, + 0.02154870145022869, + 0.02318657375872135, + -0.0166635699570179, + -0.0035908569116145372, + -0.04816768690943718, + 0.07388940453529358, + 0.0010761888697743416, + -0.026675954461097717, + 0.04785435274243355, + -0.0021577186416834593, + -0.012447829358279705, + 0.0658567026257515, + 0.00244256597943604, + -0.059077341109514236, + 0.056200381368398666, + 0.0120276790112257, + -0.017233263701200485, + 0.057909466326236725, + -0.007178152911365032, + -0.012191466055810452, + -0.009549506939947605, + -0.025038082152605057, + -0.028484733775258064, + 0.009862839244306087, + 0.005864294711500406, + 0.003640705021098256, + -0.007188834715634584, + -0.04685738682746887, + -0.03976469114422798, + -0.01346615795046091, + -0.002805746393278241, + -0.010696018114686012, + -0.008865873329341412, + -0.02696080133318901, + -0.018543561920523643, + 0.059590063989162445, + 0.05016161873936653, + -0.028484733775258064, + -0.030621089041233063, + 0.020964764058589935, + -0.02404111623764038, + -0.006483837496489286, + 0.006241717375814915, + 0.012554646469652653, + 0.0007895612507127225, + -0.00467861769720912, + -0.0257929265499115, + 0.0265905000269413, + 0.004304755479097366, + -0.015082666650414467, + -0.031048361212015152, + -0.0004833503335248679, + 0.0173899307847023, + 0.037656817585229874, + -0.0589064322412014, + 0.02993745543062687, + 0.0390525721013546, + 0.059134308248758316, + 0.03814106062054634, + 0.020964764058589935, + 0.03831196948885918, + 0.023813238367438316, + 0.09160690754652023, + 0.0177887175232172, + -0.03851136192679405, + 0.011878134682774544, + 0.02038082666695118, + 0.0007085577817633748, + -0.0009257538476958871, + -0.002513777930289507, + -0.03517864644527435, + 0.0026704438496381044, + 0.00829617865383625, + -0.018814167007803917, + 0.05602947250008583, + -0.0011714347638189793, + -0.008424360305070877, + 0.00808966439217329, + -0.00834602676331997, + 0.010047989897429943, + -0.013238280080258846, + 0.029168367385864258, + -0.018415380269289017, + 0.040106505155563354, + -0.007897392846643925, + 0.0398501418530941, + -0.0347798615694046, + 0.022189607843756676, + -0.02411232702434063, + 0.016464175656437874, + 0.009549506939947605, + -0.06147005781531334, + -0.01140101533383131, + -0.0041160439141094685, + 0.031247753649950027, + 0.038824692368507385, + -0.003806272754445672, + -0.044607095420360565, + -0.03415319696068764, + -0.01452009379863739, + 0.011977830901741982, + 0.0022093472070991993, + 0.030222304165363312, + 0.05469068884849548, + -0.01120162196457386, + 0.01079571433365345, + 0.024653537198901176, + -0.015851754695177078, + -0.029766548424959183, + 0.011123288422822952, + 0.0040056658908724785, + 0.005736113525927067, + 0.004326119087636471, + 0.07947240769863129, + 0.02285899966955185, + -0.04204346984624863, + 0.028755338862538338, + -0.03401077166199684, + -0.00021697356714867055, + 0.008467087522149086, + 0.018016595393419266, + 0.006252399180084467, + 0.02904018759727478, + -0.005358690861612558, + -0.003435971215367317, + -0.03281441330909729, + -0.009599355980753899, + 0.006462474353611469, + -0.0056257350370287895, + 0.043325282633304596, + -0.0029517305083572865, + -0.022488698363304138, + 0.030877452343702316, + 0.05241191014647484, + 0.0017437998903915286, + 0.0059746732003986835, + -0.04489194229245186, + -0.01613660156726837, + 0.0020829462446272373, + -0.012376616708934307, + -0.02449687197804451, + 0.01539599895477295, + -0.004343921784311533, + -0.011992073617875576, + -0.012291163206100464, + -0.02362808771431446, + 0.038454391062259674, + 0.0042655891738832, + -0.010040869005024433, + 0.0009150721016339958, + -0.019725678488612175, + 0.01664932817220688, + 0.0023410890717059374, + 0.009414204396307468, + 0.04204346984624863, + 0.027188679203391075, + -0.0023143847938627005, + 0.03771378844976425, + -0.042499225586652756, + -0.02576444298028946, + -0.018999317660927773, + -0.02402687445282936, + -0.00017057459626812488, + -0.014441760256886482, + -0.06033066660165787, + 0.013622824102640152, + -0.0031635859049856663, + -0.017233263701200485, + -0.051614340394735336, + 0.0134590370580554, + 0.020865067839622498, + -0.030108364298939705, + 0.06295126676559448, + 0.04096104949712753, + -0.00910087302327156, + 0.024738991633057594, + 0.04483497142791748, + -0.04748405143618584, + 0.02862715907394886, + 0.012547525577247143, + 0.00812527071684599, + -0.0018408260075375438, + -0.008851631544530392, + -0.03227320313453674, + -0.028313826769590378, + -0.006839897017925978, + -0.040476806461811066, + -0.028100190684199333, + -0.051301006227731705, + 0.024610809981822968, + 0.006982320453971624, + -0.04907919839024544, + 0.0399925671517849, + -0.04190104454755783, + -0.02114991471171379, + 0.006736639887094498, + 0.013444794341921806, + 0.003824075683951378, + -0.004664375446736813, + 0.0030567680951207876, + -0.004101801663637161, + 0.015438726171851158, + 0.0399925671517849, + -0.018102047964930534, + 0.011087683029472828, + 0.017674777656793594, + -0.055431295186281204, + -0.009905566461384296, + -0.008103907108306885, + -0.0020241965539753437, + -0.048708897083997726, + -0.02569323033094406, + -0.026262925937771797, + -0.014669638127088547, + -0.02240324392914772, + 0.00993405096232891, + -0.014755092561244965, + 0.007932998239994049, + -0.03076351247727871, + -0.022303547710180283, + -0.0028199886437505484, + 0.033868350088596344, + -0.033925317227840424, + -0.012604494579136372, + 0.03116229921579361, + -0.02082234062254429, + -0.07275000959634781, + -0.031788963824510574, + -0.06591367721557617, + -0.006483837496489286, + -0.011180258356034756, + -0.008025573566555977, + -0.022075669839978218, + -0.01533902995288372, + 0.035093192011117935, + 0.027587465941905975, + 0.040448322892189026, + -0.011678741313517094, + 0.026761408895254135, + -0.030564120039343834, + 0.00791875645518303, + 0.017133567482233047, + 0.0059817940928041935, + -0.05195615440607071, + -0.025536565110087395, + -0.09508204460144043, + -0.05107313022017479, + 0.011044955812394619, + 0.03936590254306793, + -0.010596320964396, + -0.01660660095512867, + 0.0431828573346138, + 0.02704625576734543, + -0.00003096045838901773, + 0.008880116045475006, + 0.0088943587616086, + -0.010133444331586361, + 0.015951450914144516, + -0.011180258356034756, + 0.02951018512248993, + 0.01827295683324337, + 0.03688773140311241, + 0.08243481814861298, + -0.010282989591360092, + -0.008595268242061138, + 0.010489503853023052, + 0.05409251153469086, + -0.017931140959262848, + 0.012732676230370998, + -0.04070468619465828, + 0.00788315013051033, + 0.017546596005558968, + 0.022260820493102074, + 0.016464175656437874, + -0.01207752712070942, + -0.0010423632338643074, + -0.05201312527060509, + 0.02498111128807068, + -0.008175118826329708, + 0.0006342304404824972, + -0.01572357304394245, + 0.00006420192221412435, + -0.0109951077029109, + -0.025835653766989708, + -0.0671670064330101, + -0.017176294699311256, + -0.005996036808937788, + -0.018785681575536728, + -0.0066867913119494915, + -0.00828905776143074, + -0.02290172688663006, + -0.009499658830463886, + 0.0031724872533231974, + 0.022203849628567696, + 0.0011509612668305635, + -0.001329881022684276, + 0.010845562443137169, + 0.025622019544243813, + 0.03871075436472893, + -0.012155860662460327, + -0.02042355388402939, + -0.011685862205922604, + -0.0006725067505612969, + -0.008061179891228676, + 0.005134373437613249, + 0.014456002973020077, + 0.03822651505470276, + 0.010432533919811249, + 0.017375687137246132, + -0.0237277839332819, + -0.00004397887096274644, + -0.007327698171138763, + -0.012355254031717777, + 0.01870022900402546, + 0.02456808276474476, + 0.009407083503901958, + -0.0013147485442459583, + -0.009278901852667332, + 0.02163415588438511, + 0.009877081960439682, + -0.020238403230905533, + 0.0018960151355713606, + -0.0014785357052460313, + -0.0052767968736588955, + 0.048708897083997726, + -0.012654343619942665, + -0.005554523319005966, + 0.01743265800178051, + 0.025807170197367668, + 0.014299336820840836, + -0.0311907846480608, + 0.018116291612386703, + -0.01555266510695219, + 0.0169911440461874, + 0.01664932817220688, + -0.04526224359869957, + 0.017176294699311256, + -0.007989968173205853, + -0.03073502890765667, + 0.019284164533019066, + 0.04098953306674957, + -0.024582326412200928, + 0.012789646163582802, + 0.000146874415804632, + -0.023428693413734436, + 0.038796208798885345, + 0.035862281918525696, + -0.00024924142053350806, + 0.0010459237964823842, + 0.03364047035574913, + 0.015424483455717564, + 0.023969903588294983, + -0.007541333325207233, + 0.0037101367488503456, + 0.015452968887984753, + -0.015125393867492676, + 0.004899374209344387, + -0.015524180606007576, + 0.0019458634778857231, + 0.004130286630243063, + -0.03851136192679405, + -0.05152888596057892, + 0.0006382360588759184, + 0.00031043909257277846, + -0.006765124388039112, + -0.002373134484514594, + 0.0025956714525818825, + 0.04540466517210007, + -0.01747538521885872, + 0.014911758713424206, + 0.008224966935813427, + -0.04346770420670509, + -0.013480400666594505, + -0.033868350088596344, + 0.0040697562508285046, + 0.00853829924017191, + -0.004436497576534748, + 0.007153228856623173, + -0.00832466408610344, + 0.02280203066766262, + 0.029367761686444283, + 0.006337853614240885, + 0.031304724514484406, + 0.007413152139633894, + -0.06756579130887985, + 0.04164468124508858, + 0.040904078632593155, + 0.01474084984511137, + 0.014783577062189579, + 0.031731992959976196, + -0.0038133938796818256, + -0.04828162491321564, + -0.0042655891738832, + 0.010240262374281883, + 0.0030140408780425787, + -0.0005741454078815877, + -0.024995354935526848, + 0.0009907346684485674, + -0.01264722179621458, + 0.02567898854613304, + 0.0005007082363590598, + 0.006822093855589628, + 0.0007730934885330498, + 0.049221619963645935, + -0.012654343619942665, + -0.008160876110196114, + -0.022218093276023865, + -0.010047989897429943, + 0.022688090801239014, + 0.05523189902305603, + 0.013152826577425003, + 0.018999317660927773, + 0.005486872047185898, + 0.00786890834569931, + 0.01222707238048315, + -0.0020348781254142523, + 0.02456808276474476, + -0.005785961635410786, + 0.03349804878234863, + -0.019711436703801155, + -0.009271780960261822, + -0.03127623721957207, + 0.03873923793435097, + -0.035862281918525696, + -0.013679794035851955, + -0.04241377115249634, + 0.026732923462986946, + 0.0687621459364891, + 0.0109951077029109, + 0.021007491275668144, + 0.010055111721158028, + 0.0398501418530941, + 0.01207040622830391, + 0.01781720109283924, + -0.027915040031075478, + 0.04264164716005325, + -0.006369898561388254, + 0.029367761686444283, + 0.011180258356034756, + -0.010838441550731659, + 0.008972691372036934, + 0.0042549073696136475, + -0.008146634325385094, + -0.018600530922412872, + -0.01784568652510643, + -0.008986934088170528, + 0.008723449893295765, + -0.02206142619252205, + -0.0014002027455717325, + 0.004180134739726782, + -0.00540141761302948, + 0.0223890021443367, + -0.04771193116903305, + -0.01989658735692501, + -0.0006938703008927405, + -0.0005510015762411058, + -0.0455755740404129, + 0.014050095342099667, + -0.00915072113275528, + 0.0007130085141398013, + -0.00601383950561285, + -0.005006192252039909, + 0.024724749848246574, + 0.035890765488147736, + -0.016919931396842003, + 0.02036658488214016, + 0.003382562194019556, + 0.016307510435581207, + -0.05058888718485832, + -0.0037279396783560514, + 0.00244256597943604, + 0.0095281433314085, + 0.044664062559604645, + -0.05850764364004135, + 0.01992507092654705, + 0.009086630307137966, + -0.006572852376848459, + -0.002757678274065256, + 0.023884449154138565, + 0.02864140085875988, + 0.0018354851054027677, + -0.022958695888519287, + -0.026675954461097717, + 0.012369495816528797, + -0.0016405426431447268, + 0.01038268581032753, + 0.024212025105953217, + 0.006202551070600748, + -0.023072635754942894, + -0.007131865248084068, + 0.0049634650349617004, + 0.0166635699570179, + 0.014377669431269169, + 0.016407206654548645, + -0.021007491275668144, + -0.020095979794859886, + -0.012668585404753685, + -0.00455043651163578, + -0.03358350321650505, + 0.04608830064535141, + -0.0013120780931785703, + 0.015381756238639355, + 0.0084955720230937, + 0.01533902995288372, + 0.011101924814283848, + -0.0382549986243248, + 0.008431481197476387, + -0.03532107174396515, + 0.012497677467763424, + 0.029595639556646347, + -0.027131710201501846, + -0.05443432927131653, + -0.06055854633450508, + 0.03121926821768284, + 0.012597373686730862, + 0.0009675908368080854, + 0.021007491275668144, + 0.02443990297615528, + -0.011472227051854134, + -0.02452535554766655, + 0.019284164533019066, + -0.003827636130154133, + 0.015025697648525238, + -0.0069289118982851505, + 0.016862962394952774, + -0.04190104454755783, + -0.005476190242916346, + 0.03127623721957207, + -0.01391479279845953, + -0.024268994107842445, + -0.012818130664527416, + -0.0023054832126945257, + -0.023756269365549088, + 0.011023592203855515, + -0.028085948899388313, + 0.00696095684543252, + -0.014548578299582005, + 0.02371354214847088, + -0.009756021201610565, + -0.03910953924059868, + -0.04566102847456932, + -0.003720818553119898, + -0.02206142619252205, + 0.017703263089060783, + -0.032558050006628036, + 0.013864944688975811, + -0.02451111376285553, + -0.004543315153568983, + -0.027943525463342667, + 0.06619852036237717, + -0.019198711961507797, + 0.016022663563489914, + 0.02080809883773327, + -0.02359960228204727, + -0.05782401189208031, + 0.028755338862538338, + 0.005390735808759928, + -0.023457178846001625, + -0.00002738595867413096, + 0.003934454172849655, + -0.010852684266865253, + -0.04147377237677574, + -0.005689825862646103, + -0.025493837893009186, + -0.01991082914173603, + 0.007954361848533154, + -0.007997089065611362, + -0.040448322892189026, + 0.007252925541251898, + -0.00890147965401411, + 0.001642322982661426, + 0.017589323222637177, + 0.0033042291179299355, + -0.020608704537153244, + -0.01657811552286148, + -0.007064213976264, + -0.06135611981153488, + 0.007633908651769161, + -0.051642823964357376, + 0.010332837700843811, + 0.045860420912504196, + 0.032956838607788086, + -0.04981980100274086, + -0.015410241670906544, + 0.027744131162762642, + 0.012362374924123287, + -0.02740231528878212, + 0.007299213204532862, + 0.004899374209344387, + -0.014541457407176495, + -0.020637189969420433, + 0.01575205847620964, + 0.012177224270999432, + 0.02076537162065506, + -0.025550806894898415, + -0.01615084521472454, + -0.019768405705690384, + 0.04643011838197708, + -0.01120162196457386, + -0.03580531105399132, + 0.033868350088596344, + 0.004774753469973803, + -0.010738745331764221, + 0.004753389861434698, + 0.010112080723047256, + 0.0019618861842900515, + 0.035890765488147736, + -0.006063688080757856, + -0.02075112983584404, + 0.045433152467012405, + -0.0314471460878849, + 0.027957767248153687, + 0.00310661643743515, + 0.0017874171026051044, + 0.013572975993156433, + 0.010033748112618923, + 0.0038703633472323418, + -0.0414452888071537, + -0.0047142235562205315, + -0.011500711552798748, + -0.00828905776143074, + 0.0001647886383580044, + 0.012412223033607006, + -0.042527709156274796, + -0.015039939433336258, + 0.037970151752233505, + -0.013031765818595886, + -0.0373150035738945, + -0.003781348466873169, + -0.022631121799349785, + 0.003895287401974201, + 0.04369558393955231, + -0.00807542260736227, + -0.0009675908368080854, + 0.014698122628033161, + -0.023827480152249336, + -0.029738062992691994, + 0.0095281433314085, + 0.02247445471584797, + -0.028085948899388313, + -0.010247383266687393, + -0.018159018829464912, + 0.029965940862894058, + -0.006056566722691059, + 0.017275990918278694, + -0.02663322724401951, + 0.03443804383277893, + -0.02204718440771103, + 0.03418168053030968, + 0.0018960151355713606, + -0.05756764858961105, + -0.011436620727181435, + -0.05805188789963722, + 0.00915072113275528, + -0.011878134682774544, + -0.019412346184253693, + 0.03483682870864868, + -0.01707659848034382, + -0.011771316640079021, + -0.0053159636445343494, + 0.04472103342413902, + 0.0036335838958621025, + 0.019782647490501404, + -0.011422378942370415, + 0.016279025003314018, + 0.016464175656437874, + -0.01582326926290989, + 0.016079632565379143, + -0.023884449154138565, + -0.0035997582599520683, + 0.043353766202926636, + 0.006985881365835667, + -0.00047978974180296063, + -0.020694158971309662, + 0.011742832139134407, + -0.01790265552699566, + -0.0034680163953453302, + 0.0006760673713870347, + 0.012305404990911484, + -0.06232459843158722, + 0.0005883877747692168, + 0.007790574803948402, + 0.03853984549641609, + -0.0311907846480608, + -0.009905566461384296, + 0.019412346184253693, + -0.016022663563489914, + -0.02613474428653717, + 0.031048361212015152, + -0.005048919003456831, + -0.003916651010513306, + 0.00275233737193048, + 0.00275233737193048, + 0.032985322177410126, + -0.005839370656758547, + -0.0066796704195439816, + -0.03167502582073212, + 0.028541704639792442, + -0.010567836463451385, + 0.03207381069660187, + -0.004732026718556881, + 0.01452009379863739, + 0.00915784202516079, + 0.046230725944042206, + 0.033441077917814255, + 0.017689019441604614, + -0.011764195747673512, + 0.002216468332335353, + 0.011023592203855515, + -0.00600671861320734, + 0.0021149914246052504, + 0.028370795771479607, + 0.007370424922555685, + -0.0010681775165721774, + 0.02824261412024498, + -0.011785559356212616, + 0.0030158213339746, + -0.014363427646458149, + 0.0219902154058218, + 0.0165923573076725, + -0.027174437418580055, + -0.04782586917281151, + -0.012939190492033958, + -0.03694470226764679, + 0.01783144287765026, + -0.0061883083544671535, + -0.00603876356035471, + -0.005533159710466862, + 0.025522321462631226, + 0.009250417351722717, + -0.019170226529240608, + -0.011279954575002193, + 0.053351908922195435, + 0.022189607843756676, + 0.029965940862894058, + 0.0088943587616086, + -0.014548578299582005, + -0.010688896290957928, + 0.0414452888071537, + -0.008032695390284061, + -0.018942348659038544, + -0.005554523319005966, + 0.029367761686444283, + 0.027530495077371597, + -0.013686914928257465, + 0.026747165247797966, + -0.02284475788474083, + 0.03862529993057251, + -0.011992073617875576, + -0.003827636130154133, + 0.03480834513902664, + -0.011123288422822952, + -0.01656387373805046, + -0.024639295414090157, + 0.0187287125736475, + 0.021477490663528442, + 0.03449501469731331, + 0.008858752436935902, + 0.0036852124612778425, + 0.001717095379717648, + -0.030165333300828934, + -0.00787602923810482, + 0.009442689828574657, + 0.006775806192308664, + 0.03067805990576744, + -0.015865996479988098, + 0.0035588114988058805, + 0.011358288116753101, + 0.05722583085298538, + -0.015239332802593708, + 0.02367081493139267, + -0.04660102725028992, + 0.025465352460741997, + -0.00006820758426329121, + -0.015168121084570885, + -0.02197597175836563, + -0.009713294915854931, + 0.013793732970952988, + -0.015267817303538322, + 0.03369744122028351, + -0.017603565007448196, + 0.03241562843322754, + -0.02654777280986309, + 0.04244225472211838, + 0.0018443865701556206, + -0.0025030961260199547, + 0.004393770359456539, + 0.01790265552699566, + -0.021050218492746353, + 0.01958325505256653, + -0.030905937775969505, + 0.010055111721158028, + -0.004845965653657913, + -0.003660288406535983, + 0.004400891251862049, + 0.006003157701343298, + 0.028413522988557816, + -0.0031724872533231974, + -0.03067805990576744, + 0.0037315001245588064, + 0.02076537162065506, + 0.0013770589139312506, + 0.015296302735805511, + -0.013473279774188995, + 0.02076537162065506, + 0.0407901406288147, + -0.0191274993121624, + 0.017988109961152077, + -0.010738745331764221, + 0.010297231376171112, + 0.0023891571909189224, + 0.008830267935991287, + -0.010404049418866634, + -0.016805993393063545, + -0.013829338364303112, + 0.012981917709112167, + -0.010453897528350353, + -0.030991390347480774, + -0.018899621441960335, + -0.003574834205210209, + -0.028427764773368835, + -0.025080809369683266, + 0.013152826577425003, + -0.021292338147759438, + -0.03153260052204132, + -0.015623876824975014, + 0.006344974506646395, + 0.017375687137246132, + 0.033412594348192215, + -0.0323871448636055, + -0.0215914286673069, + -0.007117622997611761, + -0.007242243736982346, + -0.008317542262375355, + 0.003533887444064021, + 0.003498281352221966, + 0.013473279774188995, + 0.006045884918421507, + -0.00447210343554616, + -0.0373150035738945, + -0.002659762045368552, + 0.0145272146910429, + -0.0034929406829178333, + 0.02988048642873764, + 0.012789646163582802, + 0.015452968887984753, + 0.030222304165363312, + 0.001069067744538188, + -0.006458913441747427, + -0.013330855406820774, + 0.01472660806030035, + 0.018187502399086952, + -0.012732676230370998, + 0.02327202819287777, + 0.011386772617697716, + 0.025579292327165604, + 0.0059782336466014385, + 0.015310544520616531, + 0.0065408069640398026, + 0.029339276254177094, + 0.002615254605188966, + -0.026448076590895653, + -0.03247259557247162, + -0.003019381780177355, + 0.007576939184218645, + -0.017617808654904366, + -0.023955661803483963, + 0.011671620421111584, + -0.0236565712839365, + 0.007733605336397886, + 0.02073688618838787, + 0.021477490663528442, + 0.011386772617697716, + -0.01828720048069954, + -0.01620781421661377, + 0.01533902995288372, + -0.023571118712425232, + -0.019341135397553444, + -0.023784752935171127, + -0.010781471617519855, + -0.002625936409458518, + 0.013266765512526035, + 0.014897515997290611, + 0.028028978034853935, + 0.0075983027927577496, + 0.010909653268754482, + 0.011728589423000813, + -0.00035138591192662716, + 0.007997089065611362, + -0.00041836954187601805, + -0.009706173092126846, + 0.0014812061563134193, + -0.006483837496489286, + 0.022659607231616974, + 0.021363550797104836, + 0.0045041488483548164, + 0.001226623891852796, + 0.025622019544243813, + -0.0004228202742524445, + -0.002857374958693981, + -0.0002259863103972748, + 0.01709084026515484, + 0.0010388026712462306, + 0.026376863941550255, + 0.11747104674577713, + -0.0029232457745820284, + -0.020936280488967896, + -0.007349061314016581, + 0.006035203114151955, + -0.003863242221996188, + -0.017660535871982574, + -0.008253451436758041, + 0.014826304279267788, + -0.0166635699570179, + 0.020252646878361702, + -0.010104959830641747, + -0.0017233263934031129, + 0.010781471617519855, + 0.024767477065324783, + 0.0013378923758864403, + -0.01654963009059429, + -0.01140101533383131, + 0.04244225472211838, + -0.034608952701091766, + 0.03147563338279724, + 0.011372529901564121, + -0.018842652440071106, + 0.0008607730851508677, + -0.029709577560424805, + 0.020081738010048866, + -0.009606476873159409, + 0.01080283522605896, + 0.01037556491792202, + 0.005251872818917036, + 0.017275990918278694, + 0.042954981327056885, + -0.02203294262290001, + -0.037628334015607834, + 0.013451916165649891, + 0.017261749133467674, + 0.005700507666915655, + 0.0155953923240304, + 0.018985075876116753, + 0.013373582623898983, + 0.008851631544530392, + 0.007377546280622482, + 0.005102328024804592, + -0.0014384790556505322, + 0.0038169543258845806, + 0.016279025003314018, + -0.059590063989162445, + -0.02244597114622593, + 0.006668988615274429, + -0.011215864680707455, + -0.010710259899497032, + -0.004728465806692839, + -0.00747012160718441, + 0.031788963824510574, + -0.010261625982820988, + -0.030848966911435127, + 0.03805560618638992, + -0.023542633280158043, + -0.01909901387989521, + -0.02112143114209175, + -0.038112573325634, + -0.008153755217790604, + 0.0019939313642680645, + -0.0002973094233311713, + 0.0024835127405822277, + -0.022218093276023865, + -0.02455384097993374, + 0.07309182733297348, + -0.05560220032930374, + 0.03187441825866699, + 0.01533902995288372, + 0.032558050006628036, + -0.0071817138232290745, + -0.014028731733560562, + -0.017247507348656654, + -0.0028858596924692392, + 0.021278096362948418, + 0.03033624216914177, + -0.018828408792614937, + -0.0010797494323924184, + 0.002579648746177554, + -0.017760232090950012, + 0.032159265130758286, + 0.007569818291813135, + 0.004301195032894611, + 0.0011687643127515912, + 0.007370424922555685, + 0.003453774144873023, + -0.006028081756085157, + 0.003510743612423539, + -0.03070654347538948, + -0.015566907823085785, + 0.028798066079616547, + 0.0020402190275490284, + 0.002456808462738991, + 0.019697193056344986, + -0.03230169042944908, + -0.010297231376171112, + 0.009898445568978786, + -0.01248343475162983, + 0.01472660806030035, + -0.03611864522099495, + -0.016905689612030983, + 0.05309554561972618, + 0.00791875645518303, + -0.006095733027905226, + 0.0032953277695924044, + 0.00996965728700161, + -0.017290234565734863, + 0.018856894224882126, + 0.01100222859531641, + -0.007683757226914167, + -0.009485417045652866, + -0.033839862793684006, + 0.03489379957318306, + 0.014306457713246346, + 0.024169297888875008, + -0.04822465404868126, + 0.02456808276474476, + 0.013330855406820774, + 0.016364479437470436, + -0.03227320313453674, + 0.007153228856623173, + -0.06226763129234314, + -0.023884449154138565, + -0.05395008623600006, + 0.04195801541209221, + 0.022132638841867447, + 0.009478295221924782, + -0.010396928526461124, + 0.01575205847620964, + -0.004931419622153044, + 0.00624527782201767, + 0.002682905877009034, + 0.005027555860579014, + 0.00848845113068819, + -0.016065390780568123, + -0.0033291534055024385, + 0.011842528358101845, + -0.01555266510695219, + 0.01411418616771698, + -0.006469595246016979, + 0.017560839653015137, + 0.012212829664349556, + -0.008381633087992668, + -0.017632050439715385, + -0.02703201398253441, + -0.0048566474579274654, + 0.03688773140311241, + 0.01824447326362133, + -0.0066796704195439816, + 0.009243296459317207, + -0.006312929093837738, + -0.02610625885426998, + 0.025052323937416077, + -0.001077969209291041, + -0.010154807940125465, + -0.015324787236750126, + 0.04235680028796196, + -0.009941172786056995, + 0.014256609603762627, + -0.012519041076302528, + -0.0015168121317401528, + 0.007089138496667147, + 0.044293761253356934, + 0.0024283237289637327, + 0.0077976961620152, + -0.00476407166570425, + -0.009812991134822369, + 0.007762090303003788, + -0.032529566437006, + -0.01868598535656929, + -0.023941420018672943, + 0.021249612793326378, + 0.017162052914500237, + 0.021092945709824562, + 0.015082666650414467, + 0.04392345994710922, + -0.0033985849004238844, + -0.016335995867848396, + -0.02734534442424774, + 0.010923895984888077, + -0.013637066818773746, + 0.018030837178230286, + -0.023086877539753914, + -0.01780295930802822, + -0.030079878866672516, + -0.0008736802265048027, + -0.041331350803375244, + -0.04776889830827713, + -0.0014482707483693957, + -0.024397175759077072, + -0.0009622499346733093, + 0.032558050006628036, + -0.028968974947929382, + -0.019839618355035782, + -0.016506902873516083, + 0.028071705251932144, + -0.011080562137067318, + 0.026362622156739235, + -0.052440397441387177, + -0.05526038631796837, + -0.008687843568623066, + -0.022289304062724113, + -0.024169297888875008, + 0.01656387373805046, + 0.018557803705334663, + -0.0008492011693306267, + -0.0005020434618927538, + 0.0170623566955328, + -0.002723852638155222, + -0.025394141674041748, + -0.009869960136711597, + -0.014085701666772366, + -0.01079571433365345, + 0.006423307582736015, + -0.008509814739227295, + 0.044635578989982605, + 0.02029537409543991, + 0.03660288453102112, + 0.0021541579626500607, + 0.016891447827219963, + -0.02700352855026722, + 0.028869278728961945, + -0.0177887175232172, + -0.012120254337787628, + 0.0011100145056843758, + 0.007420273497700691, + -0.013359340839087963, + -0.01346615795046091, + -0.0036638490855693817, + 0.025650503113865852, + 0.016022663563489914, + -0.009834354743361473, + -0.016407206654548645, + -0.007954361848533154, + 0.018871136009693146, + 0.04141680523753166, + -0.012554646469652653, + 0.022559909150004387, + 0.006423307582736015, + -0.033925317227840424, + -0.021263854578137398, + 0.017361445352435112, + 0.003856120863929391, + 0.020509008318185806, + 0.007210198324173689, + -0.017674777656793594, + -0.034637436270713806, + 0.03284290060400963, + 0.009257539175450802, + 0.04862344264984131, + 0.026248682290315628, + 0.026818377897143364, + 0.010781471617519855, + -0.01902780309319496, + -0.017176294699311256, + -0.004593163263052702, + -0.007434515748172998, + -0.004443618468940258, + 0.011806922033429146, + -0.023357482627034187, + 0.013572975993156433, + -0.009542386047542095, + 0.02573595754802227, + -0.01788841374218464, + -0.0071425470523536205, + 0.02164839766919613, + 0.030450182035565376, + 0.00127291155513376, + -0.0012408662587404251, + -0.0074914852157235146, + -0.01248343475162983, + 0.01740417256951332, + -0.025095051154494286, + 0.01579478569328785, + 0.0009925150079652667, + -0.004967025481164455, + 0.002969533670693636, + 0.0014366988325491548, + -0.039622265845537186, + -0.04161619767546654, + -0.0003631803556345403, + -0.013017524033784866, + 0.015922967344522476, + -0.005365811754018068, + 0.02822837233543396, + -0.012170102447271347, + 0.03076351247727871, + -0.006975199561566114, + -0.019241437315940857, + 0.0032953277695924044, + -0.010809957049787045, + 0.02782958559691906, + 0.01944083161652088, + 0.039650749415159225, + -0.017119325697422028, + -0.0025778685230761766, + -0.0023232861422002316, + 0.0007766541093587875, + 0.017689019441604614, + 0.0008629984222352505, + -0.0018390456680208445, + 0.030421696603298187, + -0.0019423027988523245, + -0.017133567482233047, + -0.015082666650414467, + 0.03945135697722435, + -0.0265905000269413, + -0.01788841374218464, + -0.004372406750917435, + -0.0236565712839365, + -0.0021221127826720476, + 0.023884449154138565, + -0.011593286879360676, + -0.006113536190241575, + -0.007527091074734926, + 0.03685924783349037, + 0.011386772617697716, + -0.0095281433314085, + -0.01285373605787754, + 0.010938137769699097, + 0.014954485930502415, + 0.030877452343702316, + -0.04472103342413902, + -0.009549506939947605, + 0.01283949427306652, + -0.005615053232759237, + 0.03161805495619774, + 0.02737382985651493, + 0.02035234309732914, + 0.008609510958194733, + 0.007576939184218645, + -0.03139017894864082, + -0.016407206654548645, + 0.006555049680173397, + 0.01391479279845953, + -0.02620595507323742, + 0.020039010792970657, + -0.01058920007199049, + 0.04848101735115051, + -0.03401077166199684, + 0.06631246209144592, + -0.0017936481162905693, + 0.008103907108306885, + -0.006430428940802813, + 0.016805993393063545, + -0.013879186473786831, + 0.005867855157703161, + 0.028940489515662193, + -0.023414451628923416, + -0.004440058022737503, + 0.0012337450170889497, + 0.0032472596503794193, + 0.03683076053857803, + -0.001969007309526205, + 0.012205708771944046, + -0.03241562843322754, + -0.021676883101463318, + 0.013900550082325935, + -0.02660474181175232, + 0.003072790801525116, + -0.02451111376285553, + -0.006074369419366121, + 0.007213759236037731, + 0.03036472760140896, + -0.024824446067214012, + -0.016293268650770187, + 0.06021672859787941, + -0.05070282891392708, + 0.017560839653015137, + -0.00766951497644186, + -0.005896340124309063, + 0.0166635699570179, + -0.025137778371572495, + -0.037542879581451416, + 0.025550806894898415, + -0.014598426409065723, + 0.022246576845645905, + 0.02448263019323349, + -0.010980864986777306, + 0.016492661088705063, + 0.009464053437113762, + -0.009805870242416859, + 0.00436884630471468, + 0.021890519186854362, + -0.03250108286738396, + -0.014769335277378559, + -0.010396928526461124 + ] + }, + { + "HotelId": "15", + "HotelName": "By the Market Hotel", + "Description": "Book now and Save up to 30%. Central location. Walking distance from the Empire State Building & Times Square, in the Chelsea neighborhood. Brand new rooms. Impeccable service.", + "Description_fr": "RĆ©servez dĆØs maintenant et Ć©conomisez jusqu'Ć  30%. Emplacement central. A quelques pas de l'Empire State Building & Times Square, dans le quartier de Chelsea. Chambres flambant neuves. Service impeccable.", + "Category": "Budget", + "Tags": [ + "coffee in lobby", + "free wifi", + "24-hour front desk service" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2023-10-30T00:00:00Z", + "Rating": 3.3, + "Address": { + "StreetAddress": "11 Times Sq", + "City": "New York", + "StateProvince": "NY", + "PostalCode": "10036", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -73.989792, + 40.756729 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 130.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 259.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 135.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower", + "suite" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 131.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "suite", + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 154.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "vcr/dvd", + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.027709804475307465, + -0.04005079343914986, + 0.0030852474737912416, + 0.002156018977984786, + -0.02290705032646656, + -0.035080987960100174, + -0.015890851616859436, + 0.005022010300308466, + 0.04259834066033363, + 0.03280489891767502, + 0.0038448136765509844, + -0.012445397675037384, + -0.048236358910799026, + 0.004724448546767235, + 0.006744737736880779, + 0.027125120162963867, + -0.059094760566949844, + 0.021487105637788773, + 0.05896947160363197, + -0.0031217902433127165, + -0.008723263628780842, + 0.00790888350456953, + -0.02457757294178009, + -0.017446527257561684, + 0.0012013411615043879, + 0.04247305169701576, + -0.007271996233612299, + -0.042285118252038956, + 0.05579547584056854, + 0.02012980543076992, + -0.0024509707000106573, + -0.029777076095342636, + 0.04815283045172691, + -0.018365314230322838, + 0.003220977494493127, + -0.0024209534749388695, + -0.07358654588460922, + 0.0013331557856872678, + -0.006013883743435144, + -0.017175067216157913, + -0.018782945349812508, + 0.018135618418455124, + -0.006488938815891743, + -0.0182087030261755, + -0.03234550729393959, + 0.01049819402396679, + -0.010111886076629162, + 0.04232688248157501, + -0.022468537092208862, + 0.027855975553393364, + -0.02207178808748722, + -0.004536514636129141, + -0.04781872779130936, + -0.07905751466751099, + -0.043558891862630844, + 0.027104239910840988, + -0.010091003961861134, + -0.03155200928449631, + 0.04038489982485771, + -0.005293470341712236, + 0.019931429997086525, + 0.013593882322311401, + 0.0030513149686157703, + 0.07241718471050262, + -0.03176082298159599, + 0.011119420640170574, + -0.04163779318332672, + 0.031155258417129517, + -0.06072352081537247, + -0.0555448979139328, + 0.006713415030390024, + 0.06544274836778641, + 0.02209267020225525, + 0.02070404775440693, + 0.00875458586961031, + 0.05516903102397919, + -0.02319939061999321, + 0.03190699219703674, + -0.0066612111404538155, + -0.04556352272629738, + -0.02902534045279026, + -0.020244654268026352, + -0.060598231852054596, + 0.06456572562456131, + 0.02418082393705845, + 0.009307947009801865, + -0.014606637880206108, + -0.019534680992364883, + -0.03787911310791969, + 0.03846379742026329, + 0.02543371543288231, + 0.004142375662922859, + -0.0016822690377011895, + -0.04318302497267723, + 0.004805364646017551, + 0.029108867049217224, + 0.00964727159589529, + -0.029965009540319443, + -0.003701253095641732, + 0.027605395764112473, + 0.026039279997348785, + -0.02555900625884533, + 0.002329596783965826, + 0.0015883021987974644, + -0.02637338452041149, + -0.011349117383360863, + -0.01424121018499136, + -0.06189288571476936, + 0.03639652580022812, + -0.0035263700410723686, + -0.07158192247152328, + 0.03293018788099289, + -0.04322478920221329, + -0.026644844561815262, + -0.020213330164551735, + -0.008905977010726929, + 0.033535752445459366, + -0.03069586493074894, + -0.0525379553437233, + -0.030466167256236076, + -0.007799255196005106, + -0.027605395764112473, + -0.008707602508366108, + -0.020234212279319763, + -0.016298042610287666, + -0.05805068090558052, + 0.0003853296802844852, + -0.02516225539147854, + -0.005220385268330574, + -0.018960438668727875, + 0.016068344935774803, + -0.02376319281756878, + 0.020923303440213203, + 0.016193633899092674, + 0.010205852799117565, + 0.026874542236328125, + 0.022197077050805092, + -0.005836390424519777, + -0.025788702070713043, + -0.012059089727699757, + -0.012549805454909801, + 0.008639737032353878, + 0.011432643048465252, + 0.009589847177267075, + -0.05278853327035904, + 0.04044754430651665, + -0.012205259874463081, + 0.014470907859504223, + -0.02528754621744156, + -0.009527202695608139, + 0.014262092299759388, + 0.04101134464144707, + 0.015514984726905823, + -0.0024131229147315025, + -0.013865342363715172, + -0.0300067737698555, + -0.007799255196005106, + 0.012622890993952751, + -0.028691235929727554, + 0.025872228667140007, + -0.017582256346940994, + 0.0258304663002491, + -0.0007184554706327617, + 0.007705288473516703, + 0.02192561700940132, + 0.032449912279844284, + -0.05679779127240181, + -0.03539421036839485, + -0.05454258248209953, + -0.04489530995488167, + 0.07024550437927246, + 0.006922230590134859, + 0.041053108870983124, + 0.054083190858364105, + 0.058677129447460175, + 0.030466167256236076, + -0.0047844829969108105, + 0.02223884128034115, + 0.013510356657207012, + 0.009537643752992153, + 0.0039152889512479305, + 0.02347085066139698, + 0.07734522223472595, + -0.016914047300815582, + -0.008571872487664223, + 0.03773294389247894, + -0.04744286090135574, + 0.03779558837413788, + 0.003087857738137245, + 0.02207178808748722, + -0.004199799615889788, + -0.010325921699404716, + -0.06773971766233444, + -0.011422202922403812, + -0.009412353858351707, + 0.040739886462688446, + -0.011265590786933899, + -0.031990520656108856, + -0.010378125123679638, + -0.0035394211299717426, + -0.035644788295030594, + 0.004400784615427256, + 0.0150764724239707, + 0.006092189345508814, + 0.021278290078043938, + -0.00015962959150783718, + 0.019106609746813774, + -0.031176140531897545, + 0.030487049371004105, + -0.009401913732290268, + 0.04485354945063591, + -0.03483041003346443, + 0.020641403272747993, + 0.005008959677070379, + -0.03927817568182945, + -0.02499520406126976, + -0.06828263401985168, + -0.022719115018844604, + -0.0006111113470979035, + 0.027688922360539436, + -0.007934985682368279, + -0.016600824892520905, + -0.008895535953342915, + 0.01249760203063488, + -0.007428607903420925, + 0.03503922373056412, + 0.007684406824409962, + -0.017811954021453857, + -0.004912382457405329, + -0.003181824693456292, + -0.024097297340631485, + 0.022698234766721725, + -0.028816524893045425, + -0.04011343792080879, + -0.03762853518128395, + 0.053540270775556564, + -0.02081889659166336, + -0.007099723909050226, + -0.010352023877203465, + 0.0036359981168061495, + 0.0033984705805778503, + -0.03940346837043762, + -0.007595660164952278, + 0.010858400724828243, + 0.011787629686295986, + 0.0035916250199079514, + 0.021424461156129837, + -0.030194707214832306, + -0.021445341408252716, + 0.05955415219068527, + -0.0036490492057055235, + 0.034224845468997955, + 0.03345222771167755, + -0.0380670465528965, + 0.05650544911623001, + 0.02040126547217369, + 0.012863028794527054, + 0.05337321758270264, + 0.05237090215086937, + 0.016298042610287666, + 0.014450025744736195, + 0.02722952887415886, + 0.05115977302193642, + -0.029777076095342636, + 0.009213979355990887, + -0.024932559579610825, + -0.011098538525402546, + 0.010211072862148285, + 0.01014842838048935, + -0.030069418251514435, + -0.04877927899360657, + -0.012591568753123283, + 0.010466871783137321, + -0.026415148749947548, + 0.046732887625694275, + -0.0006081748870201409, + -0.016621707007288933, + 0.04581410065293312, + -0.06606919318437576, + 0.03760765492916107, + 0.0025697345845401287, + -0.03921553120017052, + 0.026832779869437218, + -0.021737683564424515, + -0.0105608394369483, + -0.002944297157227993, + 0.017039336264133453, + 0.07083018124103546, + -0.039779335260391235, + 0.028023026883602142, + -0.037774708122015, + 0.035352446138858795, + -0.0017631850205361843, + -0.06481630355119705, + -0.01721682958304882, + -0.0007360742893069983, + 0.05095095932483673, + -0.06456572562456131, + 0.017947683110833168, + 0.024473166093230247, + -0.0013860121835023165, + 0.04038489982485771, + 0.02083977684378624, + 0.009344489313662052, + 0.03192787617444992, + 0.07258423417806625, + 0.00251753069460392, + 0.009438456036150455, + 0.012393194250762463, + -0.02793950028717518, + -0.01473192684352398, + 0.014335177838802338, + -0.02083977684378624, + -0.06189288571476936, + -0.011860715225338936, + -0.04038489982485771, + 0.00130118103697896, + 0.012904792092740536, + -0.03556126356124878, + -0.02927592024207115, + -0.00409278180450201, + -0.01974349655210972, + -0.02904622256755829, + -0.006927451118826866, + 0.0012404939625412226, + 0.017289916053414345, + -0.00040099082980304956, + 0.029630905017256737, + 0.00493326410651207, + -0.022113550454378128, + 0.00972035713493824, + -0.03808793053030968, + 0.08619900047779083, + 0.015608951449394226, + 0.014679722487926483, + 0.016465093940496445, + 0.006828263867646456, + -0.0013325032778084278, + -0.0002776592446025461, + 0.011213387362658978, + -0.0038317625876516104, + -0.03994638845324516, + -0.008509228006005287, + -0.00234395288862288, + 0.043809469789266586, + -0.046858176589012146, + 0.02831536903977394, + 0.019753936678171158, + 0.03355663642287254, + 0.0185950119048357, + -0.03848467767238617, + -0.04067724198102951, + -0.0009122623014263809, + 0.002748532686382532, + 0.02557988651096821, + 0.01677831821143627, + 0.04568881168961525, + 0.002414428163319826, + -0.03176082298159599, + 0.018135618418455124, + -0.026832779869437218, + -0.01707065850496292, + 0.03829674422740936, + -0.032282862812280655, + 0.00929750595241785, + 0.02543371543288231, + -0.021278290078043938, + 0.01637112721800804, + -0.036459170281887054, + 0.024222586303949356, + -0.02597663551568985, + 0.02349173277616501, + 0.007783594075590372, + 0.04539646953344345, + -0.05416671559214592, + 0.02900446020066738, + 0.013625205494463444, + 0.024139059707522392, + 0.014763249084353447, + -0.002683277940377593, + -0.018949998542666435, + -0.02862859144806862, + 0.027876855805516243, + 0.022886168211698532, + -0.013854902237653732, + 0.01173542533069849, + 0.00021729852596763521, + 0.006739517208188772, + 0.005340454168617725, + 0.0325334407389164, + -0.022259721532464027, + 0.024514928460121155, + -0.00027586473152041435, + -0.0033593177795410156, + 0.0023961567785590887, + 0.039800215512514114, + 0.04635702073574066, + 0.04015520215034485, + -0.04598115012049675, + 0.03217845410108566, + 0.021737683564424515, + -0.0627281442284584, + 0.0036568797659128904, + -0.04522941634058952, + -0.0037795586977154016, + -0.043934762477874756, + -0.023387325927615166, + -0.07709464430809021, + -0.024076415225863457, + -0.035770077258348465, + -0.015389694832265377, + -0.04740109667181969, + -0.004774041939526796, + -0.02152886800467968, + -0.018135618418455124, + -0.0036177269648760557, + -0.016726113855838776, + -0.01458575576543808, + -0.009537643752992153, + 0.01049819402396679, + 0.04180484265089035, + 0.03551949933171272, + 0.005251707509160042, + -0.002380495658144355, + -0.005768525414168835, + 0.0076948474161326885, + 0.02415994182229042, + -0.0258304663002491, + -0.06009707227349281, + -0.00917221698909998, + 0.012288786470890045, + -0.029526498168706894, + 0.0779716745018959, + 0.013802697882056236, + -0.013792257755994797, + 0.04669112339615822, + -0.03731531277298927, + 0.01624583825469017, + 0.0020450858864933252, + 0.01334330439567566, + -0.014554433524608612, + -0.021320052444934845, + -0.06155877932906151, + 0.003116569947451353, + 0.005502285901457071, + 0.013666967861354351, + -0.0016248448519036174, + 0.03963316231966019, + 0.02944297157227993, + -0.030319996178150177, + -0.001157620339654386, + -0.05529431998729706, + -0.04669112339615822, + 0.04999040812253952, + -0.051034484058618546, + 0.03568655252456665, + -0.0010753993410617113, + -0.015859529376029968, + 0.036041539162397385, + 0.010117106139659882, + 0.03654269501566887, + -0.010858400724828243, + -0.019211016595363617, + 0.01569247804582119, + 0.06941024214029312, + -0.003448064438998699, + -0.045772336423397064, + 0.037419721484184265, + 0.019398950040340424, + -0.02890005148947239, + -0.055043742060661316, + -0.06744737178087234, + 0.0295682605355978, + 0.02026553452014923, + 0.03802528604865074, + 0.006541142705827951, + -0.024139059707522392, + 0.021549750119447708, + 0.02014024555683136, + -0.017958125099539757, + -0.0105608394369483, + -0.008342175744473934, + -0.01807297393679619, + -0.008738924749195576, + -0.024974321946501732, + -0.017289916053414345, + -0.05955415219068527, + -0.0009788222378119826, + -0.038672611117362976, + 0.0015086912317201495, + -0.007888002321124077, + 0.03265872970223427, + 0.02735481783747673, + -0.006488938815891743, + 0.005048112478107214, + -0.005343064200133085, + -0.023846719413995743, + -0.007449489552527666, + -0.017321238294243813, + 0.001931542530655861, + -0.034350134432315826, + -0.009610729292035103, + -0.026707490906119347, + 0.01222614198923111, + -0.0011054165661334991, + 0.035916250199079514, + -0.03278401866555214, + -0.030027655884623528, + 0.05608781799674034, + -0.006593346130102873, + -0.0002303494984516874, + 0.04376770928502083, + -0.011714544147253036, + 0.03309724107384682, + -0.0003319838724564761, + 0.02043258771300316, + 0.019680852070450783, + 0.03934082016348839, + 0.0026937187649309635, + -0.012998758815228939, + 0.04155426472425461, + 0.026477793231606483, + 0.0075486768037080765, + -0.0064993794076144695, + 0.024055534973740578, + 0.03130142763257027, + -0.03151024505496025, + -0.003703863127157092, + 0.009344489313662052, + 0.024911677464842796, + -0.015159998089075089, + -0.04815283045172691, + -0.00930272601544857, + -0.0004179570823907852, + -0.015796884894371033, + 0.010466871783137321, + -0.004108442924916744, + -0.0008874654886312783, + -0.017864158377051353, + -0.007470371201634407, + 0.047735199332237244, + 0.010305040515959263, + -0.01396975014358759, + -0.01792680285871029, + -0.013364185579121113, + -0.016277160495519638, + -0.04656583443284035, + 0.025893110781908035, + -0.0022682573180645704, + -0.004677465185523033, + 0.00875980593264103, + -0.015149557963013649, + -0.008916418068110943, + -0.009339269250631332, + 0.0031766043975949287, + -0.017321238294243813, + 0.03516451269388199, + 0.0036046758759766817, + 0.01863677427172661, + 0.01598481833934784, + -0.05454258248209953, + 0.03871437534689903, + 0.009073029272258282, + 0.02890005148947239, + 0.026728371158242226, + 0.012090411968529224, + -0.0036281675565987825, + 0.03443365916609764, + -0.011161183007061481, + -0.00998659711331129, + 0.0255381241440773, + 0.005946018733084202, + -0.010576500557363033, + 0.04065635800361633, + 0.008644958026707172, + -0.010111886076629162, + 0.04188837110996246, + 0.0035472516901791096, + -0.033681925386190414, + 0.005272589158266783, + 0.016559060662984848, + -0.014282973483204842, + 0.035352446138858795, + 0.06794853508472443, + -0.016840962693095207, + -0.004312037955969572, + -0.02041170559823513, + -0.002017678925767541, + 0.018511485308408737, + 0.03599977493286133, + -0.004285936243832111, + -0.011422202922403812, + 0.046732887625694275, + -0.029965009540319443, + -0.0071884701028466225, + 0.020536994561553, + -0.04786049202084541, + -0.012664654292166233, + -0.019231898710131645, + 0.000773922074586153, + -0.030487049371004105, + -0.01069134846329689, + -0.008420481346547604, + -0.01778063178062439, + 0.03656357526779175, + 0.008712822571396828, + -0.04343360289931297, + -0.003066976321861148, + 0.02390936389565468, + -0.020077601075172424, + 0.01957644335925579, + -0.021424461156129837, + 0.014606637880206108, + 0.010017919354140759, + -0.008368276990950108, + 0.02390936389565468, + -0.0371900238096714, + -0.004252003505825996, + 0.012904792092740536, + -0.051577404141426086, + -0.0594288632273674, + 0.01816694065928459, + 0.014700604602694511, + 0.03829674422740936, + -0.008702381514012814, + -0.007345081772655249, + 0.006932671181857586, + -0.04652407020330429, + 0.017321238294243813, + -0.028273604810237885, + 0.015765562653541565, + 0.015212202444672585, + 0.029067104682326317, + 0.00006598893378395587, + -0.007950646802783012, + 0.019962752237915993, + 0.013426830060780048, + 0.007480811793357134, + -0.013760935515165329, + 0.029380327090620995, + -0.016496416181325912, + -0.03581184148788452, + 0.0073555223643779755, + -0.008237767964601517, + -0.032846663147211075, + 0.005029840860515833, + 0.02862859144806862, + -0.018553247675299644, + -0.008175123482942581, + 0.010273718275129795, + 0.009114792570471764, + -0.002033340046182275, + 0.003521149745211005, + 0.0014421313535422087, + -0.0026010568253695965, + 0.0021442731376737356, + 0.03428748995065689, + -0.015943055972456932, + 0.020735369995236397, + 0.02695806883275509, + -0.0014577925903722644, + 0.06381398439407349, + -0.0513685904443264, + 0.028440658003091812, + 0.021320052444934845, + -0.005810288712382317, + -0.012267905287444592, + 0.04015520215034485, + -0.04013432189822197, + -0.014178565703332424, + 0.031468480825424194, + 0.046440545469522476, + -0.00965249165892601, + 0.03710649535059929, + 0.0005804415559396148, + 0.011171624064445496, + -0.017853716388344765, + -0.04944748803973198, + -0.013625205494463444, + -0.03627123683691025, + -0.02207178808748722, + -0.004061459563672543, + -0.025078730657696724, + -0.0014029784360900521, + 0.024410519748926163, + -0.037127379328012466, + -0.014533552341163158, + -0.008571872487664223, + 0.03376545011997223, + 0.0036986428312957287, + 0.0005598862771876156, + 0.001931542530655861, + 0.02764715999364853, + -0.038839664310216904, + -0.010085783898830414, + -0.029630905017256737, + -0.02833625115454197, + -0.010785315185785294, + -0.008999943733215332, + -0.06222698837518692, + 0.013625205494463444, + -0.033681925386190414, + -0.00043296569492667913, + -0.014763249084353447, + -0.01138043962419033, + 0.027396580204367638, + -0.012988317757844925, + -0.05600428953766823, + 0.04752638563513756, + -0.017028896138072014, + -0.013447712175548077, + -0.05546136945486069, + -0.002772024367004633, + -0.04082341119647026, + -0.0039152889512479305, + -0.027438344433903694, + -0.013259777799248695, + 0.0017122862627729774, + -0.00007626656588399783, + 0.00799240916967392, + -0.01547322142869234, + 0.0042363423854112625, + 0.02722952887415886, + -0.0028111774008721113, + -0.03890230879187584, + 0.017122862860560417, + 0.0022826134227216244, + -0.02167503908276558, + -0.016579942777752876, + 0.008707602508366108, + 0.036166828125715256, + -0.0301529448479414, + 0.015650713816285133, + -0.028378013521432877, + -0.005434420891106129, + 0.008832891471683979, + -0.03457983210682869, + -0.01257068756967783, + -0.030466167256236076, + 0.008039393462240696, + 0.014115921221673489, + 0.005113366991281509, + -0.014575314708054066, + 0.013844461180269718, + 0.021288730204105377, + 0.004729669075459242, + -0.008780688047409058, + -0.03303459659218788, + -0.04648230969905853, + -0.013562560081481934, + -0.04969806596636772, + 0.0038526442367583513, + -0.006488938815891743, + -0.02056831680238247, + -0.031009087339043617, + -0.0477769635617733, + 0.022322366014122963, + -0.013385067693889141, + -0.019137931987643242, + 0.03677239269018173, + 0.007329420652240515, + -0.004826245829463005, + -0.040217846632003784, + -0.029651787132024765, + 0.03934082016348839, + -0.032282862812280655, + -0.0010245005832985044, + 0.023429088294506073, + -0.024514928460121155, + -0.017185507342219353, + -0.023282917216420174, + 0.019252780824899673, + 0.009161775931715965, + -0.042013660073280334, + -0.0005840305821038783, + -0.0017814564052969217, + -0.04539646953344345, + -0.036187708377838135, + -0.019472036510705948, + -0.014335177838802338, + 0.03723178803920746, + 0.007131046149879694, + 0.03890230879187584, + 0.0019445933867245913, + 0.01747784949839115, + 0.010211072862148285, + -0.006201817654073238, + -0.03948699310421944, + 0.024347875267267227, + 0.01779107190668583, + 0.008154241368174553, + -0.012100853025913239, + 0.020317738875746727, + 0.030236469581723213, + 0.017018456012010574, + 0.019795700907707214, + 0.011965123005211353, + -0.02071448788046837, + 0.0008979062549769878, + 0.007433828432112932, + 0.011234268546104431, + -0.006609007716178894, + -0.007997630164027214, + -0.04025961086153984, + 0.009845646098256111, + -0.02585134655237198, + -0.0033462669234722853, + -0.00190935586579144, + 0.0012561551993712783, + -0.0297144316136837, + -0.003393250284716487, + 0.006066087633371353, + 0.02125740796327591, + 0.01041988842189312, + 0.020516112446784973, + -0.006609007716178894, + 0.0355403833091259, + 0.021027710288763046, + -0.03071674518287182, + -0.04264010488986969, + 0.008368276990950108, + -0.0433083139359951, + 0.0013834020355716348, + 0.03662622347474098, + 0.024661099538207054, + -0.011119420640170574, + -0.018031209707260132, + -0.007318980060517788, + 0.026185451075434685, + -0.0008424396510235965, + 0.0037743384018540382, + 0.0017148965271189809, + -0.009146114811301231, + -0.013364185579121113, + 0.020338620990514755, + -0.027166884392499924, + -0.031197020784020424, + -0.0018649825360625982, + -0.0058311703614890575, + 0.014282973483204842, + 0.032032281160354614, + -0.04138721153140068, + -0.006927451118826866, + -0.002018983941525221, + -0.027855975553393364, + -0.012414075434207916, + 0.002847720170393586, + -0.003218367462977767, + 0.018949998542666435, + -0.01932586543262005, + 0.004729669075459242, + -0.003944001160562038, + 0.0003386724856682122, + -0.018240025267004967, + -0.0039022378623485565, + -0.0006590736447833478, + -0.02706247568130493, + 0.015024268068373203, + 0.022823523730039597, + -0.020526554435491562, + -0.018501045182347298, + -0.000041151317418552935, + 0.00217168009839952, + -0.05220384895801544, + 0.008514448069036007, + 0.05086743086576462, + 0.028565946966409683, + -0.041032224893569946, + 0.005152520257979631, + 0.04044754430651665, + -0.023930246010422707, + -0.023366443812847137, + 0.0009951358661055565, + 0.0003026191843673587, + 0.05830125883221626, + -0.0140323955565691, + 0.0018284398829564452, + 0.01765534281730652, + -0.005324792582541704, + 0.005883373785763979, + 0.04065635800361633, + 0.009746459312736988, + 0.005580591503530741, + 0.02555900625884533, + 0.012936114333570004, + 0.022301485762000084, + -0.03123878501355648, + 0.04385123401880264, + -0.023282917216420174, + -0.015577629208564758, + 0.03094644285738468, + 0.02445228397846222, + 0.035331565886735916, + 0.016642587259411812, + -0.010367684997618198, + -0.01833399198949337, + -0.0024640217889100313, + 0.05387437343597412, + -0.05663073807954788, + 0.03416220098733902, + 0.01958688534796238, + 0.0279186200350523, + 0.03739883750677109, + -0.025663413107395172, + 0.015880411490797997, + 0.04009255766868591, + 0.010435549542307854, + 0.005397878121584654, + 0.033013716340065, + 0.010378125123679638, + -0.007600880693644285, + -0.00806549470871687, + -0.02347085066139698, + -0.01138043962419033, + 0.00468790577724576, + 0.021549750119447708, + 0.007611321285367012, + 0.02585134655237198, + -0.0019237118540331721, + -0.03610418364405632, + 0.009386252611875534, + -0.0011602306040003896, + -0.024201706051826477, + 0.012758621014654636, + 0.022739997133612633, + -0.01793724298477173, + -0.004677465185523033, + 0.03057057596743107, + 0.01886647194623947, + 0.0187411829829216, + -0.021570630371570587, + 0.00010864926298381761, + 0.00874936580657959, + 0.0044503784738481045, + 0.06026412546634674, + 0.013385067693889141, + 0.020202890038490295, + -0.0156820360571146, + -0.016298042610287666, + -0.0036803714465349913, + 0.019941870123147964, + 0.0158282071352005, + -0.011871155351400375, + -0.03134319186210632, + -0.002907754387706518, + -0.009751679375767708, + 0.03234550729393959, + -0.004622650798410177, + 0.01305096223950386, + -0.0020855439361184835, + -0.004494751337915659, + 0.024661099538207054, + -0.006906569469720125, + -0.027709804475307465, + 0.01637112721800804, + 0.006546362768858671, + -0.01395931001752615, + 0.019764378666877747, + 0.009130453690886497, + -0.0024640217889100313, + -0.013917546719312668, + 0.0004316605918575078, + 0.01611010916531086, + -0.04372594505548477, + -0.008812010288238525, + 0.007804475724697113, + -0.014147243462502956, + 0.03315988555550575, + 0.01973305642604828, + 0.01653818041086197, + 0.004567836876958609, + 0.0671967938542366, + 0.022030025720596313, + 0.0005487930029630661, + 0.0020711878314614296, + 0.048821039497852325, + -0.0024718523491173983, + -0.015045150183141232, + -0.009125232696533203, + 0.03430837020277977, + -0.007663525175303221, + 0.021215645596385002, + 0.012090411968529224, + -0.03468423709273338, + 0.016308482736349106, + 0.04211806505918503, + 0.05128506198525429, + 0.04435238987207413, + 0.016360687091946602, + -0.00009249869617633522, + 0.037022970616817474, + 0.022301485762000084, + 0.032282862812280655, + -0.01172498520463705, + -0.02555900625884533, + -0.010806197300553322, + 0.003651659470051527, + -0.001925016986206174, + 0.012737739831209183, + 0.031593769788742065, + -0.0010597382206469774, + 0.0002655870921444148, + 0.0007099723443388939, + 0.030361760407686234, + 0.013353745453059673, + 0.01751961186528206, + 0.01119250524789095, + 0.02860770933330059, + -0.010294599458575249, + 0.013186692260205746, + 0.011004571802914143, + 0.023136746138334274, + 0.010639145039021969, + 0.007183250039815903, + -0.042702749371528625, + -0.008389159105718136, + 0.028565946966409683, + 0.03290930762887001, + -0.0206831656396389, + 0.0255381241440773, + 0.024619335308670998, + 0.005742423702031374, + 0.01873074099421501, + 0.0022160534281283617, + 0.026999831199645996, + -0.004507802426815033, + 0.013092725537717342, + -0.009057368151843548, + -0.01520176138728857, + 0.01125515066087246, + 0.03347310796380043, + -0.0022904439829289913, + 0.0300067737698555, + 0.03528980165719986, + -0.005747643765062094, + -0.007934985682368279, + 0.03303459659218788, + 0.008697161450982094, + -0.004351190757006407, + 0.0253919530659914, + -0.011850274167954922, + 0.0010584330884739757, + 0.014919860288500786, + -0.008765026926994324, + -0.016840962693095207, + 0.03403691202402115, + 0.012612449936568737, + 0.018093854188919067, + 0.04065635800361633, + -0.005068994127213955, + -0.0037273550406098366, + -0.011296913027763367, + 0.013134488835930824, + 0.00025204670964740217, + -0.033786334097385406, + 0.03821321949362755, + 0.02374231070280075, + -0.030633220449090004, + -0.008242988027632236, + -0.03407867252826691, + 0.03485129028558731, + 0.009052148088812828, + 0.016746995970606804, + -0.02319939061999321, + -0.003341046394780278, + 0.005392657592892647, + -0.004873229656368494, + -0.030027655884623528, + -0.030319996178150177, + 0.026477793231606483, + -0.014637960121035576, + 0.03236638754606247, + -0.004030137322843075, + -0.020871099084615707, + 0.012236583046615124, + 0.006723856087774038, + -0.00868150033056736, + 0.00023279654851648957, + -0.004147595725953579, + 0.013489475473761559, + -0.02789773792028427, + 0.026143688708543777, + -0.03336870297789574, + -0.028545064851641655, + -0.03318076580762863, + 0.03407867252826691, + 0.0322410985827446, + -0.028795644640922546, + -0.011902477592229843, + 0.014972064644098282, + 0.0016144041437655687, + 0.011892037466168404, + -0.01973305642604828, + 0.018521925434470177, + 0.03614594787359238, + -0.004027527291327715, + 0.030737627297639847, + 0.015400135889649391, + 0.004105832893401384, + 0.03716914355754852, + 0.01311360765248537, + -0.02585134655237198, + 0.013875783421099186, + -0.0258304663002491, + -0.0150764724239707, + 0.0015883021987974644, + 0.010774875059723854, + -0.04781872779130936, + -0.04735933244228363, + -0.02376319281756878, + 0.01724815182387829, + -0.004131934605538845, + 0.026185451075434685, + 0.030215589329600334, + 0.016987133771181107, + 0.07521530985832214, + 0.03531068563461304, + 0.02334556169807911, + 0.01985834538936615, + -0.010539957322180271, + 0.002127307001501322, + -0.029338564723730087, + 0.003502878360450268, + 0.009276623837649822, + 0.013719172216951847, + 0.0020372553262859583, + 0.008039393462240696, + -0.007626982405781746, + -0.0014277753653004766, + 0.03497657924890518, + 0.02042214572429657, + -0.008738924749195576, + 0.0007530405418947339, + -0.012361872009932995, + 0.026749253273010254, + -0.003542031394317746, + -0.014042835682630539, + 0.011244709603488445, + 0.015922173857688904, + -0.019273661077022552, + 0.0008189479121938348, + 0.005987781565636396, + -0.004228511825203896, + -0.004293766804039478, + 0.03808793053030968, + -0.017310796305537224, + 0.012633332051336765, + 0.054918449372053146, + -0.009365370497107506, + -0.0319487564265728, + -0.012800384312868118, + 0.00868672039359808, + 0.02651955559849739, + -0.016987133771181107, + -0.02499520406126976, + 0.0023883262183517218, + 0.004304207395762205, + 0.01677831821143627, + -0.025371070951223373, + 0.012863028794527054, + 0.0012900877045467496, + -0.01040944829583168, + 0.027688922360539436, + 0.012487160973250866, + -0.011965123005211353, + 0.039361704140901566, + -0.017321238294243813, + 0.015452340245246887, + 0.035644788295030594, + 0.006718635559082031, + 0.0256842952221632, + 0.014001072384417057, + 0.02248941920697689, + -0.006562023889273405, + -0.014596196822822094, + -0.007595660164952278, + 0.0019328475464135408, + 0.030361760407686234, + 0.005387437529861927, + 0.02459845505654812, + -0.033410463482141495, + -0.009485439397394657, + 0.027125120162963867, + -0.04057283326983452, + 0.010101445019245148, + -0.012863028794527054, + 0.0005703270435333252, + -0.022698234766721725, + -0.0008352615986950696, + -0.0258304663002491, + 0.022552063688635826, + 0.032971952110528946, + 0.006713415030390024, + -0.013218015432357788, + -0.015222642570734024, + 0.02612280659377575, + 0.017697105184197426, + 0.008916418068110943, + 0.0030434844084084034, + -0.030299115926027298, + -0.002011153381317854, + 0.001721421955153346, + -0.04057283326983452, + 0.0028398893773555756, + 0.00260236207395792, + 0.03384897857904434, + 0.005332623142749071, + 0.0047766524367034435, + -0.012173937633633614, + -0.004755770787596703, + 0.041157517582178116, + 0.0001612609630683437, + 0.0138862244784832, + 0.012549805454909801, + -0.007501693442463875, + -0.036480050534009933, + 0.005987781565636396, + 0.006963993888348341, + -0.0022173586767166853, + -0.03148936107754707, + -0.03614594787359238, + 0.00756433792412281, + 0.0003248058201279491, + -0.012560246512293816, + 0.014418703503906727, + -0.005071604158729315, + -0.014961623586714268, + 0.011871155351400375, + -0.024494046345353127, + 0.017008014023303986, + 0.0012992232805117965, + -0.011025452986359596, + 0.010858400724828243, + 0.027313055470585823, + 0.0020228992216289043, + 0.037127379328012466, + -0.006979655008763075, + 0.03599977493286133, + -0.004043188411742449, + 0.014533552341163158, + 0.019242338836193085, + 0.0380670465528965, + 0.035603027790784836, + -0.009166995994746685, + 0.007851459085941315, + -0.016444213688373566, + 0.007668745703995228, + 0.02095462568104267, + 0.008028952404856682, + -0.05638016015291214, + 0.002460106508806348, + -0.0010864926734939218, + -0.033681925386190414, + 0.01200688537210226, + 0.02317851036787033, + -0.009344489313662052, + 0.011140301823616028, + -0.02043258771300316, + -0.024139059707522392, + 0.017258593812584877, + -0.0015165219083428383, + -0.0064993794076144695, + -0.026749253273010254, + -0.013082285411655903, + 0.01014320831745863, + -0.022593826055526733, + -0.026310740038752556, + 0.042848922312259674, + 0.0024627167731523514, + -0.007151927333325148, + -0.02637338452041149, + 0.012549805454909801, + 0.014053276740014553, + 0.04343360289931297, + 0.012320108711719513, + 0.01249760203063488, + 0.02319939061999321, + 0.006734296679496765, + 0.006060867104679346, + -0.005215164739638567, + 0.024932559579610825, + -0.01291523315012455, + -0.019398950040340424, + -0.004836686886847019, + 0.025078730657696724, + 0.02624809555709362, + 0.013792257755994797, + 0.02693718671798706, + -0.010247616097331047, + 0.013040522113442421, + -0.015431458130478859, + -0.00216907006688416, + 0.025099610909819603, + -0.018417518585920334, + -0.03871437534689903, + 0.0480693057179451, + -0.04919691011309624, + -0.026832779869437218, + 0.016318922862410545, + 0.02904622256755829, + -0.01916925422847271, + 0.003508098889142275, + -0.007251115050166845, + 0.006588126067072153, + -0.03403691202402115, + 0.005217774771153927, + 0.02390936389565468, + 0.00108584004919976, + -0.03545685485005379, + 0.01583864912390709, + -0.03261696547269821, + 0.042848922312259674, + -0.01957644335925579, + -0.020453467965126038, + 0.0003869610372930765, + 0.03025735169649124, + 0.009595068171620369, + -0.011850274167954922, + 0.008102037943899632, + -0.01013798825442791, + 0.029526498168706894, + 0.0058050681836903095, + 0.004700956866145134, + 0.022677352651953697, + -0.0010786621132865548, + -0.002313935663551092, + -0.01749873161315918, + -0.02109035663306713, + 0.00461221020668745, + 0.02900446020066738, + -0.008201224729418755, + 0.012017326429486275, + 0.006901348941028118, + 0.0038735256530344486, + -0.001829745015129447, + 0.025893110781908035, + -0.0021507986821234226, + 0.016224956139922142, + -0.029797958210110664, + -0.03723178803920746, + 0.02501608617603779, + -0.02793950028717518, + -0.0017305576475337148, + -0.02585134655237198, + 0.008102037943899632, + 0.007266776170581579, + 0.004434717353433371, + -0.033953383564949036, + -0.01424121018499136, + -0.0059721204452216625, + -0.001917186425998807, + -0.026978950947523117, + -0.014669282361865044, + 0.0419510155916214, + 0.025893110781908035, + 0.025224899873137474, + 0.03190699219703674, + 0.0005037671653553843, + 0.012027767486870289, + 0.03934082016348839, + 0.008070715703070164, + 0.03802528604865074, + -0.04781872779130936, + -0.029422089457511902, + 0.00005102110662846826, + 0.03963316231966019, + -0.02516225539147854, + -0.018292229622602463, + 0.002243460388854146, + -0.02501608617603779, + 0.006723856087774038, + -0.012988317757844925, + -0.004011865705251694, + 0.0056380159221589565, + 0.008425701409578323, + -0.023157628253102303, + -0.0024627167731523514, + -0.0036359981168061495, + -0.008149021305143833, + 0.02595575526356697, + -0.03727354854345322, + -0.017550934106111526, + 0.026707490906119347, + 0.032429032027721405, + -0.02334556169807911, + 0.00039316024049185216, + -0.00711538502946496, + -0.02821096032857895, + -0.014627519063651562, + -0.015327050350606441, + -0.04786049202084541, + -0.011004571802914143, + 0.0012411465868353844, + -0.010983690619468689, + 0.01777019165456295, + -0.02152886800467968, + 0.006045205984264612, + 0.0016104887472465634, + 0.021779445931315422, + 0.013698290102183819, + -0.005930357612669468, + -0.02626897767186165, + -0.0011112894862890244, + 0.03384897857904434, + -0.011662340722978115, + -0.027688922360539436, + 0.0013272828655317426, + -0.03278401866555214, + -0.043976522982120514, + -0.021215645596385002, + 0.03898583725094795, + -0.033264294266700745, + 0.015285287983715534, + 0.015535865910351276, + 0.03516451269388199, + 0.035060107707977295, + 0.01222614198923111, + -0.030507929623126984, + -0.018125176429748535, + -0.0300067737698555, + -0.01873074099421501, + -0.008629296906292439, + -0.013677408918738365, + -0.026310740038752556, + -0.02860770933330059, + 0.029192393645644188, + 0.0010982385138049722, + -0.0159743782132864, + 0.005029840860515833, + -0.008550990372896194, + -0.01819826290011406, + -0.013186692260205746, + -0.016339804977178574, + 0.01845928095281124, + 0.051744457334280014, + -0.017958125099539757, + -0.030445285141468048, + 0.014042835682630539, + -0.00022202949912752956, + -0.021038152277469635, + 0.003696032566949725, + -0.0319487564265728, + 0.003218367462977767, + -0.009579407051205635, + -0.02317851036787033, + -0.0023426478728652, + 0.010278938338160515, + 0.031990520656108856, + -0.04848693683743477, + -0.015139116905629635, + 0.04218071326613426, + -0.0008182953461073339, + 0.01242451649159193, + 0.0159743782132864, + 0.01424121018499136, + -0.018302669748663902, + 0.023387325927615166, + 0.0015360983088612556, + -0.021779445931315422, + -0.02180032804608345, + 0.01735256053507328, + 0.04502060264348984, + -0.024494046345353127, + -0.0063532087951898575, + 0.03526892140507698, + 0.027459224686026573, + 0.00753823621198535, + -0.03739883750677109, + -0.007084062788635492, + 0.006374089978635311, + 0.001526962616480887, + -0.021904734894633293, + 0.013364185579121113, + 0.03222021833062172, + -0.0032235877588391304, + -0.011171624064445496, + 0.008446583524346352, + 0.007684406824409962, + 0.021612394601106644, + -0.019273661077022552, + -0.0368976816534996, + 0.03487217053771019, + -0.029881484806537628, + -0.011547491885721684, + -0.014533552341163158, + -0.01581776700913906, + -0.0012724688276648521, + 0.023115865886211395, + -0.04585586115717888, + -0.013917546719312668, + -0.010973249562084675, + 0.015723800286650658, + 0.018929116427898407, + -0.00806549470871687, + 0.023512614890933037, + 0.04719228297472, + 0.04222247377038002, + 0.021695921197533607, + 0.0049567557871341705, + 0.021424461156129837, + -0.01305096223950386, + 0.009777781553566456, + -0.02555900625884533, + -0.00048516952665522695, + -0.016068344935774803, + 0.006384531036019325, + -0.044519443064928055, + 0.01654862053692341, + -0.015149557963013649, + -0.007950646802783012, + 0.0017449137521907687, + -0.0005941450945101678, + 0.016047462821006775, + -0.023951126262545586, + 0.0008124224259518087, + 0.012048648670315742, + -0.0008039392996579409, + 0.05161916837096214, + -0.004729669075459242, + -0.010524296201765537, + 0.0018127787625417113, + -0.020933743566274643, + -0.0032784019131213427, + 0.025642530992627144, + 0.011965123005211353, + 0.0020450858864933252, + 0.014669282361865044, + -0.003972712904214859, + -0.011599695309996605, + 0.023972008377313614, + 0.042034540325403214, + 0.02470286190509796, + 0.012487160973250866, + -0.030883798375725746, + -0.032429032027721405, + -0.0038526442367583513 + ] + }, + { + "HotelId": "16", + "HotelName": "Double Sanctuary Resort", + "Description": "5 star Luxury Hotel - Biggest Rooms in the city. #1 Hotel in the area listed by Traveler magazine. Free WiFi, Flexible check in/out, Fitness Center & espresso in room.", + "Description_fr": "5 star hĆ“tel de luxe-plus grandes chambres de la ville. #1 hĆ“tel dans les environs Ć©numĆ©rĆ©s par Traveler magazine. WiFi gratuit, Check-in/out flexible, centre de fitness et espresso dans la chambre.", + "Category": "Resort and Spa", + "Tags": [ + "view", + "pool", + "restaurant", + "bar", + "continental breakfast" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-08-05T00:00:00Z", + "Rating": 4.2, + "Address": { + "StreetAddress": "2211 Elliott Ave", + "City": "Seattle", + "StateProvince": "WA", + "PostalCode": "98121", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.347771, + 47.61166 + ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 68.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 108.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 97.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "tv", + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 67.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "suite", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 131.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + } + ], + "embedding": [ + -0.06012851372361183, + -0.006971006281673908, + 0.03593941032886505, + 0.02529069595038891, + -0.03798194229602814, + -0.03378212824463844, + -0.07426559925079346, + 0.018635250627994537, + 0.02188264951109886, + -0.030775701627135277, + 0.034401774406433105, + 0.005163708236068487, + -0.04539473354816437, + -0.005751797463744879, + 0.004013348836451769, + 0.032932985574007034, + -0.04690942168235779, + 0.030615054070949554, + 0.0400015264749527, + 0.033093634992837906, + -0.02721848152577877, + 0.01043642871081829, + 0.0027812307234853506, + -0.005499349441379309, + 0.03506731614470482, + 0.037821296602487564, + -0.03428702428936958, + 0.008227508515119553, + 0.013035494834184647, + 0.01577799767255783, + -0.026736535131931305, + -0.0192089956253767, + 0.050627291202545166, + 0.002972000977024436, + -0.007527539506554604, + -0.03793604299426079, + -0.020138463005423546, + 0.048148710280656815, + 0.05003059655427933, + 0.010533965192735195, + 0.01884179748594761, + 0.05462056025862694, + -0.0013791404198855162, + -0.0016265681479126215, + -0.009357786737382412, + -0.043466947972774506, + -0.0003037264687009156, + -0.005579673685133457, + -0.005665735807269812, + 0.02797582373023033, + -0.032634638249874115, + 0.01713203638792038, + -0.022903915494680405, + -0.055354952812194824, + 0.006758720614016056, + 0.0012292495230212808, + 0.0064144735224545, + -0.005654260516166687, + 0.052187878638505936, + 0.030913401395082474, + -0.007057067938148975, + -0.011050336062908173, + 0.03699510172009468, + 0.044729188084602356, + -0.03118879906833172, + -0.02545134536921978, + -0.024051405489444733, + 0.0070054312236607075, + 0.01121098455041647, + 0.0012672600569203496, + 0.005694422870874405, + 0.031326498836278915, + -0.011119185015559196, + -0.001592143438756466, + 0.042962051928043365, + -0.0053243571892380714, + -0.020941706374287605, + 0.0013934840681031346, + -0.022513767704367638, + -0.04029987379908562, + -0.021228579804301262, + -0.015066553838551044, + -0.008497169241309166, + 0.04323745146393776, + 0.0040047429502010345, + -0.01779758185148239, + -0.02071220800280571, + -0.043719395995140076, + -0.03426407277584076, + -0.012783046811819077, + 0.01959914155304432, + -0.02409730665385723, + -0.01134294643998146, + -0.023041613399982452, + -0.0007053482113406062, + 0.00038189926999621093, + 0.05774173513054848, + -0.008726667612791061, + -0.042457159608602524, + 0.08037025481462479, + 0.049204401671886444, + -0.05287637561559677, + 0.014607557095587254, + 0.0012493305839598179, + -0.010792150162160397, + -0.02515299804508686, + 0.013723989017307758, + 0.007734087761491537, + 0.031234698370099068, + 0.002461367752403021, + -0.10538554936647415, + -0.010103655979037285, + -0.04851590842008591, + 0.03867043927311897, + -0.035205017775297165, + 0.00902501493692398, + 0.03185434266924858, + 0.0030724063981324434, + -0.07077722996473312, + -0.014217410236597061, + 0.057787634432315826, + 0.07036413252353668, + -0.015066553838551044, + -0.04199816286563873, + -0.0005938264657743275, + -0.056777842342853546, + -0.0206089336425066, + -0.012553548440337181, + -0.03125764802098274, + -0.0024800144601613283, + -0.034700121730566025, + 0.018015604466199875, + 0.0320608913898468, + -0.009019277058541775, + 0.003803931875154376, + 0.07394430041313171, + 0.010373316705226898, + 0.002405427396297455, + 0.006609546951949596, + -0.03300183266401291, + -0.009007802233099937, + 0.007929161190986633, + 0.04466034099459648, + 0.02595624141395092, + -0.023753058165311813, + -0.01352891605347395, + 0.003898599883541465, + -0.004894047975540161, + -0.015938647091388702, + 0.02731028012931347, + -0.010637239553034306, + 0.03222154080867767, + 0.012530598789453506, + 0.009811045601963997, + -0.006833307445049286, + -0.0187385231256485, + 0.036467257887125015, + 0.02216952107846737, + -0.0321526899933815, + 0.05852202698588371, + -0.01323056872934103, + -0.013597765006124973, + -0.02228427119553089, + 0.03511321544647217, + 0.005126414820551872, + 0.06894124299287796, + -0.028549570590257645, + 0.006345623638480902, + -0.060403913259506226, + -0.02646113745868206, + 0.07036413252353668, + 0.02772337570786476, + 0.0009775187354534864, + 0.05081089213490486, + 0.02490055002272129, + 0.004842410795390606, + 0.021790849044919014, + 0.037775397300720215, + -0.027631577104330063, + 0.020895807072520256, + -0.007464427500963211, + -0.008554543368518353, + 0.02206624671816826, + 0.0036633643321692944, + -0.0010499540949240327, + 0.02524479664862156, + -0.018222153186798096, + -0.0022175258491188288, + 0.00531575083732605, + 0.009816783480346203, + -0.00498871598392725, + 0.008284883573651314, + -0.022617042064666748, + -0.022949814796447754, + -0.046840570867061615, + 0.04874540865421295, + 0.0073955780826509, + -0.02579559199512005, + -0.004380546044558287, + -0.01683368906378746, + -0.01428626012057066, + -0.014722306281328201, + 0.03270348533987999, + -0.03451652079820633, + -0.02347766049206257, + -0.09831700474023819, + 0.015330476686358452, + 0.031326498836278915, + -0.01814182847738266, + -0.02036796137690544, + -0.0243497546762228, + -0.008726667612791061, + 0.04631272703409195, + 0.029192164540290833, + -0.03632955625653267, + -0.020046662539243698, + -0.01153801940381527, + 0.02464810200035572, + 0.024074355140328407, + 0.06164320185780525, + 0.007665238343179226, + 0.007665238343179226, + 0.022617042064666748, + 0.030110158026218414, + -0.012094552628695965, + 0.017613982781767845, + 0.011233934201300144, + 0.002175929257646203, + -0.016959913074970245, + -0.012599448673427105, + 0.010063493624329567, + -0.016340268775820732, + 0.014653457328677177, + -0.0640299841761589, + -0.03809669241309166, + 0.022869490087032318, + -0.01874999888241291, + 0.018474601209163666, + -0.0026851282455027103, + -0.007389840669929981, + -0.027402078732848167, + -0.012783046811819077, + 0.01109049841761589, + -0.007906211540102959, + 0.003941630944609642, + -0.03561811149120331, + 0.021182678639888763, + 0.004102279432117939, + 0.03352968022227287, + 0.03527386486530304, + -0.03180844336748123, + 0.021538401022553444, + -0.002852948848158121, + -0.055309053510427475, + 0.04293910413980484, + 0.04952570050954819, + -0.001432929071597755, + 0.026277538388967514, + 0.02026468701660633, + -0.02418910525739193, + 0.03818849101662636, + 0.00950122345238924, + 0.002828564727678895, + -0.051774781197309494, + -0.01598454639315605, + -0.00826767086982727, + -0.0450504869222641, + 0.018027080222964287, + 0.013907588087022305, + -0.04202111065387726, + -0.08491431921720505, + -0.00869798008352518, + 0.022158047184348106, + 0.012932220473885536, + 0.03899173438549042, + 0.029008565470576286, + -0.013574815355241299, + -0.03229038789868355, + -0.01974831521511078, + 0.018268052488565445, + -0.006517747417092323, + -0.014596082270145416, + 0.04108016937971115, + -0.039588432759046555, + 0.017074663192033768, + 0.006971006281673908, + 0.044270191341638565, + 0.019427018240094185, + -0.038578640669584274, + 0.0025718137621879578, + 0.02545134536921978, + 0.01098722405731678, + 0.011251146905124187, + -0.039129436016082764, + -0.021343328058719635, + 0.022697366774082184, + 0.0006920803571119905, + -0.02877906896173954, + 0.0071259173564612865, + 0.020884331315755844, + 0.006483322940766811, + 0.038027845323085785, + 0.002270597266033292, + -0.04218176007270813, + -0.02066630870103836, + 0.06871174275875092, + -0.05292227491736412, + 0.00359164597466588, + -0.0006268168217502534, + -0.01222077663987875, + -0.01534195151180029, + 0.03219858929514885, + 0.018658200278878212, + -0.01628289371728897, + -0.04750611633062363, + -0.032382190227508545, + -0.03839503973722458, + 0.026920132339000702, + -0.0212630033493042, + -0.029857710003852844, + 0.048883106559515, + -0.0029662635643035173, + -0.010579864494502544, + 0.027700426056981087, + 0.0048682293854653835, + -0.015250151976943016, + -0.0061735003255307674, + 0.048607707023620605, + 0.0009631750290282071, + -0.04622092843055725, + 0.05388616397976875, + -0.006758720614016056, + 0.04199816286563873, + -0.003201499115675688, + -0.04147031530737877, + 0.007539014331996441, + -0.03917533531785011, + 0.0438341461122036, + -0.0028873735573142767, + 0.016661565750837326, + -0.00816439650952816, + -0.0017355798045173287, + -0.024877600371837616, + 0.04055232182145119, + 0.008738142438232899, + -0.0033736228942871094, + 0.005482137203216553, + 0.03915238380432129, + 0.013322367332875729, + 0.0211712047457695, + -0.013333842158317566, + 0.002302153268828988, + -0.025634942576289177, + 0.04158506542444229, + 0.0041854726150631905, + -0.011429008096456528, + 0.03059210255742073, + 0.00638578599318862, + -0.07261321693658829, + 0.022903915494680405, + -0.02802172489464283, + 0.016110770404338837, + 0.01586979627609253, + 0.01101591158658266, + 0.04153916612267494, + 0.013907588087022305, + -0.04791921377182007, + 0.06104650720953941, + 0.016248468309640884, + 0.0040563796646893024, + -0.036765605211257935, + 0.017051711678504944, + 0.0823439359664917, + -0.004389151930809021, + -0.03922123461961746, + 0.006540697067975998, + 0.04406364634633064, + 0.053289469331502914, + 0.02802172489464283, + 0.0023724371567368507, + 0.021435126662254333, + 0.0017986918101087213, + 0.03274938464164734, + -0.015009178780019283, + 0.024326803162693977, + 0.020999081432819366, + -0.018153304234147072, + 0.01628289371728897, + -0.01788938045501709, + 0.011457694694399834, + -0.03548041358590126, + 0.009793833829462528, + 0.06329558789730072, + -0.0050116656348109245, + 0.018027080222964287, + 0.02389075793325901, + 0.054712358862161636, + 0.0026177132967859507, + -0.020494185388088226, + -0.015146877616643906, + 0.010740512982010841, + -0.07293451577425003, + 0.028434820473194122, + -0.023098988458514214, + -0.007039855699986219, + -0.046542223542928696, + 0.01723531074821949, + -0.06072521209716797, + 0.005961214657872915, + -0.0015605874359607697, + -0.001530465786345303, + -0.05971542000770569, + 0.0038068005815148354, + -0.011004436761140823, + -0.042457159608602524, + 0.005232557654380798, + 0.015846846625208855, + 0.003580171149224043, + 0.006643971428275108, + -0.051315788179636, + 0.03945073112845421, + 0.03871633857488632, + 0.001848894520662725, + 0.04137851670384407, + 0.015204252675175667, + 0.005163708236068487, + 0.019794216379523277, + -0.03502141684293747, + -0.07123622298240662, + 0.016810739412903786, + -0.03054620325565338, + -0.025107096880674362, + 0.030821600928902626, + 0.0693543404340744, + -0.07518359273672104, + 0.04902080446481705, + -0.027929924428462982, + -0.004532588645815849, + -0.015433751046657562, + 0.035709913820028305, + -0.054758258163928986, + -0.023776007816195488, + -0.013712514191865921, + -0.029674110934138298, + 0.02393665723502636, + 0.023867808282375336, + 0.0014802630757912993, + 0.06132190674543381, + 0.020436810329556465, + -0.0013289377093315125, + -0.04335220158100128, + -0.06894124299287796, + -0.03226744011044502, + -0.01663861609995365, + -0.02332848682999611, + 0.015502599999308586, + 0.05709914118051529, + -0.03534271568059921, + 0.042204711586236954, + -0.017602508887648582, + 0.033231332898139954, + -0.006948056630790234, + 0.0412178672850132, + -0.02887086756527424, + 0.026897182688117027, + -0.04833231121301651, + -0.006643971428275108, + 0.05388616397976875, + 0.0007304495666176081, + -0.0141370864585042, + -0.066738061606884, + -0.050764989107847214, + 0.022364594042301178, + 0.024464502930641174, + 0.023408811539411545, + -0.05966952070593834, + -0.014068236574530602, + 0.014894429594278336, + 0.04984699934720993, + 0.034700121730566025, + 0.0034510784316807985, + -0.050627291202545166, + -0.05953181907534599, + -0.05191248282790184, + 0.0019163095857948065, + -0.01623699441552162, + -0.06219399720430374, + -0.004546931944787502, + -0.04007037729024887, + -0.009960219264030457, + -0.0033248544204980135, + 0.01632879301905632, + 0.01567472331225872, + -0.009386474266648293, + 0.014630506746470928, + 0.011084760539233685, + -0.04436199367046356, + -0.028687268495559692, + 0.010654451325535774, + -0.032129742205142975, + -0.008319308049976826, + -0.027287330478429794, + -0.018577875569462776, + 0.007441477384418249, + 0.04782741516828537, + 0.03093635104596615, + -0.0056112296879291534, + -0.0386015884578228, + -0.02115972898900509, + -0.02423500455915928, + -0.003970318008214235, + -0.0020224524196237326, + -0.043925944715738297, + 0.01870409958064556, + -0.0027367654256522655, + 0.01769430749118328, + 0.008474219590425491, + 0.014733781106770039, + -0.0033334605395793915, + -0.04188341274857521, + 0.019587667658925056, + -0.0022146571427583694, + 0.00236813398078084, + 0.014986229129135609, + -0.007011168636381626, + 0.026139838621020317, + -0.018818847835063934, + -0.04429314285516739, + 0.01222077663987875, + -0.006735770497471094, + -0.009868420660495758, + -0.025680843740701675, + 0.004268665798008442, + 0.004503901116549969, + -0.002828564727678895, + 0.011842104606330395, + 0.03789014369249344, + -0.0010148121509701014, + 0.023420285433530807, + -0.004340383689850569, + 0.04248010739684105, + 0.006523484829813242, + 0.024579251185059547, + -0.025864440947771072, + 0.013368267565965652, + -0.03210679069161415, + -0.009208613075315952, + 0.0040018740110099316, + 0.030775701627135277, + -0.02473990060389042, + 0.03173959255218506, + 0.005060434341430664, + -0.018107404932379723, + -0.009374999441206455, + 0.002885939320549369, + 0.009122551418840885, + 0.0347689688205719, + 0.008933215402066708, + 0.022651467472314835, + 0.03823439031839371, + -0.010637239553034306, + 0.009254513308405876, + -0.010901162400841713, + 0.02338586188852787, + -0.03245103731751442, + 0.01848607510328293, + 0.018072979524731636, + 0.07454100251197815, + 0.04746021702885628, + 0.0055567240342497826, + 0.020643359050154686, + 0.03791309520602226, + 0.012484699487686157, + 0.031074048951268196, + 0.012427324429154396, + -0.011761779896914959, + 0.017051711678504944, + -0.03109699860215187, + -0.024257954210042953, + 0.016971388831734657, + 0.013161718845367432, + -0.02288096584379673, + 0.02731028012931347, + 0.02409730665385723, + -0.0270578321069479, + -0.0371098518371582, + 0.03428702428936958, + 0.00927746295928955, + 0.02806762419641018, + 0.0398179292678833, + 0.04665697365999222, + 0.009730721823871136, + 0.009851207956671715, + -0.06816095113754272, + -0.00013931254216004163, + 0.01297812070697546, + -0.03942778334021568, + 0.002926101442426443, + -0.004420707933604717, + 0.057328637689352036, + 0.0033535417169332504, + -0.0372016504406929, + 0.005797697231173515, + -0.01018398068845272, + -0.005100596230477095, + 0.034906670451164246, + -0.006362836342304945, + 0.0020927363075315952, + -0.01181915495544672, + -0.0359853096306324, + 0.013207618147134781, + -0.012209301814436913, + 0.0010277214460074902, + -0.015491125173866749, + -0.019231945276260376, + 0.05755813792347908, + -0.0012177745811641216, + 0.00534443836659193, + 0.0038068005815148354, + -0.017705781385302544, + 0.01934669353067875, + 0.01451575756072998, + 0.00907091423869133, + 0.007378365378826857, + 0.004354727454483509, + 0.04433904215693474, + -0.02338586188852787, + -0.02384485863149166, + 0.0015161221381276846, + 0.004426445346325636, + 0.004908391740173101, + 0.03456242009997368, + 0.045830778777599335, + -0.014194460585713387, + -0.022353120148181915, + 0.014125610701739788, + -0.023546509444713593, + 0.0014422524254769087, + -0.008290620520710945, + 0.010751988738775253, + 0.06302019208669662, + -0.0029203640297055244, + 0.0029949508607387543, + -0.023661259561777115, + 0.04596848040819168, + 0.029697060585021973, + 0.04697827249765396, + -0.017315635457634926, + -0.014986229129135609, + -0.004016217775642872, + 0.034906670451164246, + -0.021251529455184937, + -0.002963394857943058, + -0.0028013119008392096, + -0.009656134992837906, + 0.00605875113978982, + 0.028159422799944878, + -0.00962170958518982, + 0.007963585667312145, + 0.04096541926264763, + -0.027838125824928284, + 0.04337514936923981, + -0.03573286160826683, + -0.019943390041589737, + 0.003987530246376991, + 0.028044674545526505, + 0.0060071139596402645, + 0.02298424020409584, + -0.055813949555158615, + 0.05085679143667221, + 0.02671358548104763, + 0.03529681637883186, + 0.0030064256861805916, + 0.03151009604334831, + -0.017051711678504944, + -0.03013310767710209, + 0.023798957467079163, + -0.052784573286771774, + 0.0002529858611524105, + -0.0012880583526566625, + -0.006861994508653879, + -0.0012278150534257293, + -0.0461750291287899, + -0.014423958957195282, + 0.04801101237535477, + -0.03109699860215187, + 0.006913631688803434, + -0.021584300324320793, + -0.015135402791202068, + 0.007963585667312145, + -0.010149555280804634, + -0.016007496044039726, + -0.009237300604581833, + 0.00841684453189373, + -0.012289625592529774, + -0.05856792628765106, + 0.00718329194933176, + 0.0011804811656475067, + -0.018772948533296585, + -0.06173500418663025, + 0.04105721786618233, + 0.01854345016181469, + 0.007848836481571198, + -0.003069537691771984, + -0.008652079850435257, + 0.003978924360126257, + -0.0003168150142300874, + -0.04521113634109497, + 0.03366737812757492, + 0.009983169846236706, + -0.003482634434476495, + -0.015135402791202068, + -0.02680538408458233, + -0.03442472219467163, + 0.04048347473144531, + 0.00656364718452096, + 0.0017642669845372438, + 0.020723683759570122, + 0.006448897998780012, + -0.03591645881533623, + 0.02071220800280571, + 0.02932986430823803, + 0.04319155216217041, + -0.0017829138087108731, + 0.025382494553923607, + -0.008434057235717773, + -0.02347766049206257, + -0.010769200511276722, + -0.020781056955456734, + 0.03821144253015518, + -0.002808483550325036, + 0.015789473429322243, + -0.022697366774082184, + 0.015479650348424911, + 0.04532588645815849, + 0.01076346356421709, + -0.022513767704367638, + -0.012243726290762424, + -0.04665697365999222, + 0.005433368496596813, + 0.026093939319252968, + -0.03229038789868355, + -0.00023523560957983136, + 0.00031771149951964617, + 0.037522949278354645, + -0.04883720725774765, + 0.009644660167396069, + -0.01527310162782669, + -0.026025090366601944, + 0.014194460585713387, + -0.05007649585604668, + 0.007567701395601034, + 0.012381425127387047, + -0.016489442437887192, + -0.01990896463394165, + -0.026231639087200165, + 0.03330017998814583, + 0.03038555569946766, + -0.006098913494497538, + 0.024579251185059547, + -0.033185433596372604, + 0.013712514191865921, + 0.014274785295128822, + 0.0025158734060823917, + -0.0037035264540463686, + -0.03325428068637848, + -0.004208422265946865, + -0.005378862842917442, + -0.026920132339000702, + -0.024808749556541443, + -0.01352891605347395, + 0.011170822195708752, + 0.018279528245329857, + -0.004627256654202938, + -0.010218405164778233, + -0.007516064215451479, + -0.0013970700092613697, + -0.04250305891036987, + -0.0384179912507534, + -0.004466607701033354, + 0.04998469725251198, + 0.004064986016601324, + 0.00004684093073592521, + -0.014469858258962631, + -0.022341644391417503, + 0.008617655374109745, + 0.02490055002272129, + -0.0019492999417707324, + 0.027172580361366272, + -0.0034797657281160355, + -0.012714197859168053, + -0.026484087109565735, + 0.011159347370266914, + -0.01818772777915001, + 0.011520806699991226, + 0.046243876218795776, + -0.005903840065002441, + -0.012599448673427105, + 0.032887086272239685, + 0.016351742669939995, + 0.0028142209630459547, + -0.0006060185260139406, + 0.01312729436904192, + 0.019817166030406952, + 0.022617042064666748, + -0.008904527872800827, + -0.019886014983057976, + 0.008112759329378605, + -0.03518206626176834, + -0.050627291202545166, + 0.007280828896909952, + 0.0054677934385836124, + -0.011119185015559196, + -0.005375994369387627, + 0.0020913018379360437, + -0.014756730757653713, + 0.007458690088242292, + 0.012255201116204262, + -0.015514074824750423, + -0.0071660797111690044, + 0.006207924801856279, + -0.03421817347407341, + 0.0005213911063037813, + 0.006374311167746782, + 0.0023982557468116283, + -0.00024724839022383094, + -0.009851207956671715, + -0.007458690088242292, + 0.019874539226293564, + -0.03382802754640579, + 0.017522184178233147, + 0.021205628290772438, + -0.004592831712216139, + 0.026943081989884377, + -0.04773561656475067, + -0.01970241591334343, + -0.0039129434153437614, + -0.004426445346325636, + -0.046289775520563126, + 0.025566093623638153, + -0.012714197859168053, + -0.0002648193622007966, + -0.013758414424955845, + 0.004219897091388702, + -0.030247855931520462, + -0.005470662377774715, + 0.01946144364774227, + -0.004836673382669687, + 0.006615284364670515, + -0.0031986304093152285, + 0.008147184737026691, + -0.0020640490110963583, + 0.01885327324271202, + -0.01779758185148239, + 0.020597459748387337, + 0.015089503489434719, + 0.0037580321077257395, + 0.03300183266401291, + -0.025589043274521828, + 0.0020224524196237326, + -0.02273179218173027, + 0.06820684671401978, + -0.00605875113978982, + -0.023615360260009766, + 0.013643665239214897, + 0.02010403759777546, + -0.019323743879795074, + 0.004440789110958576, + 0.020184362307190895, + 0.00994874443858862, + -0.0013353923568502069, + -0.031372398138046265, + -0.016764840111136436, + 0.008916002698242664, + 0.029949508607387543, + 0.01149212010204792, + 0.023271111771464348, + 0.016707465052604675, + 0.010149555280804634, + -0.030316704884171486, + 0.021641675382852554, + 0.008525855839252472, + -0.012243726290762424, + 0.028549570590257645, + -0.0020970392506569624, + -0.0009710640297271311, + -0.029765909537672997, + 0.035962361842393875, + 0.02680538408458233, + -0.006351361516863108, + 0.03190024197101593, + 0.032634638249874115, + 0.004102279432117939, + 0.01101591158658266, + 0.00985694583505392, + 0.0010191152105107903, + -0.027493879199028015, + 0.016041921451687813, + 0.007504589390009642, + 0.020746633410453796, + -0.02373010851442814, + -0.005548117682337761, + 0.01257649902254343, + 0.005086252931505442, + 0.022662943229079247, + 0.062010399997234344, + -0.03892288729548454, + 0.008514381013810635, + 0.013196143321692944, + -0.01809592917561531, + 0.009122551418840885, + -0.04768971726298332, + -0.020482709631323814, + -0.010459378361701965, + 0.00950122345238924, + 0.02650703676044941, + -0.0026908658910542727, + -0.011297046206891537, + -0.0027970087248831987, + 0.016753364354372025, + 0.0030638002790510654, + 0.059899017214775085, + -0.030569152906537056, + -0.015800947323441505, + -0.017866430804133415, + 0.016914013773202896, + -0.022812116891145706, + 0.031211748719215393, + 0.009179926477372646, + 0.022399019449949265, + -0.014228885062038898, + 0.026667684316635132, + 0.013586290180683136, + 0.02389075793325901, + 0.0400015264749527, + 0.014205935411155224, + -0.003999005071818829, + 0.000363252533134073, + 0.023798957467079163, + -0.00010049509000964463, + 0.005476399790495634, + 0.012783046811819077, + 0.006810357794165611, + -0.03300183266401291, + -0.01043642871081829, + -0.039381884038448334, + 0.01403381209820509, + -0.012840421870350838, + -0.013987911865115166, + -0.011429008096456528, + 0.009690559469163418, + 0.06123010814189911, + -0.00409654201939702, + -0.019415544345974922, + -0.020184362307190895, + -0.027952874079346657, + -0.005057565402239561, + 0.0005299972835928202, + 0.022456394508481026, + 0.010023331269621849, + -0.002857252024114132, + 0.03300183266401291, + 0.03265758603811264, + -0.021962972357869148, + -0.002574682468548417, + 0.017005812376737595, + -0.029811808839440346, + 0.02273179218173027, + -0.020849907770752907, + 0.0024986611679196358, + -0.009965957142412663, + 0.03935893252491951, + 0.0044379206374287605, + 0.008726667612791061, + -0.024212054908275604, + 0.04119491949677467, + 0.013723989017307758, + 0.035205017775297165, + 0.03635250777006149, + 0.026093939319252968, + 0.027333229780197144, + 0.03173959255218506, + 0.04091951996088028, + -0.02373010851442814, + 0.016317319124937057, + 0.003468290902674198, + 0.015491125173866749, + 0.045027535408735275, + 0.0371098518371582, + 0.01693696342408657, + -0.008376682177186012, + -0.010373316705226898, + -0.023867808282375336, + 0.04390299692749977, + -0.015238677151501179, + -0.013069919310510159, + -0.017063187435269356, + 0.01925489492714405, + 0.018658200278878212, + 0.0065865968354046345, + -0.001587840379215777, + 0.011945378966629505, + 0.01091263722628355, + -0.008686505258083344, + -0.022800641134381294, + -0.005944001954048872, + 0.030201956629753113, + 0.03453947231173515, + 0.031234698370099068, + -0.013620715588331223, + 0.006724295672029257, + 0.0025818541180342436, + -0.013092869892716408, + -0.024923499673604965, + -0.026920132339000702, + -0.031624846160411835, + 0.024005506187677383, + 0.011750305071473122, + -0.02197444811463356, + 0.007120179943740368, + 0.020494185388088226, + 0.023064564913511276, + 0.03924418240785599, + -0.009214350953698158, + 0.009879895485937595, + 0.011406058445572853, + 0.04697827249765396, + 0.04713892191648483, + 0.0167763140052557, + -0.0007867483654990792, + 0.02292686514556408, + -0.017407434061169624, + 0.01985158957540989, + 0.01689106412231922, + 0.003178549464792013, + 0.005089121405035257, + -0.013735463842749596, + -0.012909270823001862, + -0.003081012750044465, + 0.00922008790075779, + 0.020540084689855576, + 0.00909960176795721, + 0.019771264865994453, + -0.0011489251628518105, + -0.05622704699635506, + 0.023753058165311813, + -0.013104344718158245, + -0.005734585225582123, + 0.04998469725251198, + -0.033942777663469315, + 0.011262621730566025, + -0.0424342080950737, + -0.016351742669939995, + -0.012060128152370453, + -0.0335526280105114, + 0.02105645462870598, + -0.0050145345740020275, + -0.009535647928714752, + 0.017063187435269356, + -0.017258260399103165, + 0.054850056767463684, + -0.015559974126517773, + 0.002150110900402069, + -0.033598531037569046, + -0.014905904419720173, + 0.0011819155188277364, + -0.03635250777006149, + -0.02937576361000538, + -0.00003738309533218853, + 0.0058435965329408646, + 0.004153916612267494, + 0.030179006978869438, + 0.049571599811315536, + -0.018531976267695427, + -0.031578946858644485, + -0.030982250347733498, + 0.030752751976251602, + 0.013046969659626484, + 0.023776007816195488, + 0.037063952535390854, + 0.01895654760301113, + 0.03231333941221237, + -0.018004130572080612, + 0.046840570867061615, + -0.005364519078284502, + 0.020838432013988495, + -0.002607672708109021, + -0.02570379339158535, + -0.00024957922869361937, + 0.004412102047353983, + 0.009300412610173225, + 0.013287942856550217, + -0.012128977105021477, + 0.02570379339158535, + -0.04381119832396507, + -0.0003718587104231119, + 0.03593941032886505, + 0.027998775243759155, + 0.0028629894368350506, + 0.015364901162683964, + 0.01748775877058506, + 0.011509331874549389, + 0.01066018920391798, + -0.0400015264749527, + -0.000967478146776557, + -0.00985694583505392, + 0.0193007942289114, + -0.019943390041589737, + -0.005665735807269812, + -0.03304773196578026, + -0.004549800883978605, + -0.011474907398223877, + 0.012691247276961803, + 0.0282282717525959, + 0.018531976267695427, + 0.005312882363796234, + 0.00823898334056139, + 0.0011109145125374198, + -0.00555385509505868, + -0.01895654760301113, + -0.0089963274076581, + 0.0008118497207760811, + 0.03371327742934227, + 0.023798957467079163, + 0.006580859422683716, + 0.044476740062236786, + 0.027677476406097412, + 0.021905599161982536, + -0.017522184178233147, + 0.01277157198637724, + 0.005364519078284502, + -0.000051726732635870576, + -0.002926101442426443, + -0.01689106412231922, + -0.013150244019925594, + -0.009156975895166397, + -0.009231562726199627, + -0.010178242810070515, + 0.036214809864759445, + 0.02625458873808384, + 0.016145193949341774, + 0.033139534294605255, + 0.014561657793819904, + -0.009610234759747982, + -0.007320990785956383, + -0.04126376658678055, + 0.013287942856550217, + 0.05030599609017372, + 0.013138769194483757, + 0.00432030251249671, + 0.0003641490184236318, + 0.026598835363984108, + 0.013471540994942188, + 0.00794063601642847, + 0.02747092768549919, + 0.024257954210042953, + 0.020677782595157623, + -0.020230261608958244, + -0.0043116966262459755, + -0.014160036109387875, + -0.020677782595157623, + 0.013173193670809269, + 0.019117195159196854, + -0.0031699431128799915, + 0.015410800464451313, + 0.04537178575992584, + -0.0257496926933527, + 0.01996633969247341, + 0.013081394135951996, + 0.006380048580467701, + 0.01895654760301113, + 0.001881884876638651, + 0.0011259752791374922, + -0.006288249511271715, + 0.03357557952404022, + -0.0014056761283427477, + 0.010442165657877922, + -0.0033535417169332504, + 0.0006992521812207997, + 0.014676406979560852, + -0.0011668546358123422, + 0.028893817216157913, + -0.024716950953006744, + -0.026025090366601944, + 0.015364901162683964, + -0.00631119916215539, + -0.002698037540540099, + -0.01103312335908413, + -0.012209301814436913, + -0.014469858258962631, + 0.0017527921590954065, + 0.012312576174736023, + 0.01870409958064556, + -0.03954252973198891, + -0.015319001860916615, + -0.005186658352613449, + -0.00598416430875659, + 0.008502906188368797, + -0.005608361214399338, + -0.009988906793296337, + 0.004862491972744465, + -0.00004329984585638158, + -0.013207618147134781, + -0.0025216108188033104, + -0.05494185537099838, + -0.009088126942515373, + 0.010459378361701965, + -0.0038440939970314503, + 0.0008362338994629681, + -0.023294061422348022, + 0.003628939390182495, + 0.01971389167010784, + -0.032129742205142975, + -0.014504282735288143, + 0.031578946858644485, + -0.055768050253391266, + 0.0422506108880043, + 0.016007496044039726, + 0.024923499673604965, + -0.025566093623638153, + -0.0006296855281107128, + -0.005697291810065508, + 0.001992330886423588, + 0.0009531344985589385, + 0.04231945797801018, + -0.0360771082341671, + -0.009581548161804676, + -0.014561657793819904, + -0.022387543693184853, + 0.01895654760301113, + -0.012783046811819077, + 0.005000190809369087, + -0.018818847835063934, + 0.017258260399103165, + 0.017017288133502007, + -0.0002701982157304883, + -0.028595469892024994, + 0.012186352163553238, + -0.006420210935175419, + -0.002686562715098262, + -0.00718329194933176, + 0.009943007491528988, + 0.022892439737915993, + 0.017373010516166687, + -0.013942012563347816, + -0.03708690032362938, + 0.008020960725843906, + 0.0048710983246564865, + 0.0063169365748763084, + -0.00864060502499342, + 0.021102355793118477, + 0.006598071660846472, + -0.008302095346152782, + 0.01833690144121647, + 0.003927287179976702, + -0.004033430013805628, + -0.01438953448086977, + -0.011733093298971653, + -0.02554314397275448, + 0.01708613708615303, + -0.025611992925405502, + 0.004173997789621353, + -0.0028601207304745913, + 0.02595624141395092, + 0.01965651661157608, + -0.01848607510328293, + 0.015835372731089592, + 0.02545134536921978, + 0.013001070357859135, + 0.013815788552165031, + -0.030867502093315125, + -0.008870103396475315, + -0.01949586719274521, + 0.009116814471781254, + 0.0038182754069566727, + -0.005410418845713139, + 0.0008563149604015052, + -0.009684821590781212, + -0.005089121405035257, + -0.014079711399972439, + -0.006752983201295137, + -0.030982250347733498, + -0.015950120985507965, + -0.012381425127387047, + -0.005051827989518642, + 0.020081087946891785, + 0.007843099534511566, + 0.010390528477728367, + 0.0058808899484574795, + -0.000007362318683590274, + -0.02887086756527424, + 0.03997857868671417, + 0.00010031579586211592, + -0.034906670451164246, + 0.0022806378547102213, + 0.02409730665385723, + 0.0141370864585042, + -0.046748772263526917, + 0.0019980682991445065, + 0.020092563703656197, + -0.013838738203048706, + 0.03391982614994049, + -0.022651467472314835, + 0.015559974126517773, + -0.014423958957195282, + 0.007831624709069729, + -0.019128670915961266, + 0.0009108207887038589, + -0.009988906793296337, + 0.0048510171473026276, + 0.026988983154296875, + 0.014664932154119015, + 0.010895424522459507, + 0.011073285713791847, + 0.01637469232082367, + -0.011486382223665714, + 0.0011905216379091144, + -0.001445121131837368, + -0.007952110841870308, + 0.0003829750348813832, + 0.03770654648542404, + -0.014825580641627312, + -0.011681456118822098, + 0.003729345044121146, + -0.0026550067123025656, + 0.026851283386349678, + 0.005763272289186716, + -0.03109699860215187, + 0.015605874359607697, + -0.032841186970472336, + 0.026644734665751457, + 0.0019363906467333436, + -0.02010403759777546, + 0.006190712563693523, + -0.015319001860916615, + -0.024716950953006744, + 0.001995199592784047, + -0.008881578221917152, + 0.003201499115675688, + 0.008347995579242706, + 0.011853579431772232, + -0.01900244690477848, + -0.0134830167517066, + -0.0027453715447336435, + 0.03619185835123062, + 0.0193925928324461, + -0.03151009604334831, + -0.03642135486006737, + -0.04902080446481705, + -0.010029069148004055, + -0.009432373568415642, + -0.024854648858308792, + -0.0065693845972418785, + 0.01904834620654583, + 0.030477354303002357, + 0.025474295020103455, + 0.03901468589901924, + 0.01768283173441887, + 0.00039444994763471186, + -0.03805079311132431, + -0.0034223911352455616, + -0.0038268817588686943, + 0.0009882764425128698, + -0.0012909270590171218, + 0.012542073614895344, + -0.0009932967368513346, + -0.0295364111661911, + -0.008646342903375626, + -0.020849907770752907, + -0.015158352442085743, + -0.004480951465666294, + -0.02268589287996292, + -0.0109585365280509, + -0.0007910514250397682, + 0.013999387621879578, + 0.0072750914841890335, + -0.001554850023239851, + -0.031831394881010056, + -0.012381425127387047, + -0.0006354229990392923, + -0.04307680204510689, + 0.0020755238365381956, + 0.015387850813567638, + -0.029238063842058182, + 0.050627291202545166, + -0.027080781757831573, + 0.03733934834599495, + -0.005439106374979019, + -0.012633873149752617, + -0.024969398975372314, + -0.005192395765334368, + 0.010419216006994247, + 0.04309975355863571, + 0.019736841320991516, + 0.00304371933452785, + 0.005384600255638361, + 0.030500303953886032, + 0.010947061702609062, + -0.008720929734408855, + -0.012106027454137802, + -0.032336290925741196, + 0.0134830167517066, + -0.013402692042291164, + 0.00012891340884380043, + -0.012140451930463314, + -0.009374999441206455, + -0.0018402882851660252, + 0.0006712820613756776, + -0.004062117077410221, + 0.0041854726150631905, + 0.03743114694952965, + 0.03896878659725189, + 0.02932986430823803, + 0.012151926755905151, + 0.0397261306643486, + -0.010115130804479122, + 0.0009911451488733292, + 0.012851896695792675, + -0.007791462354362011, + -0.01728121004998684, + -0.014205935411155224, + -0.036054160445928574, + 0.008393894881010056, + -0.02187117375433445, + -0.016397641971707344, + 0.00786604918539524, + -0.01171588059514761, + -0.03805079311132431, + -0.021435126662254333, + -0.0009846905013546348, + -0.02228427119553089, + -0.019587667658925056, + 0.03068390302360058, + 0.04057527333498001, + 0.05875152722001076, + 0.007613601163029671, + -0.035250917077064514, + 0.014630506746470928, + 0.005596885923296213, + 0.007016906049102545, + 0.01617961935698986, + -0.027402078732848167, + 0.002888808026909828, + -0.035503365099430084, + -0.016959913074970245, + -0.004426445346325636, + -0.015238677151501179, + 0.008979114703834057, + -0.007774249650537968, + -0.021962972357869148, + 0.027080781757831573, + -0.01000611949712038, + 0.021607249975204468, + 0.015468175522983074, + 0.017017288133502007, + 0.00696526886895299, + -0.008933215402066708, + 0.009243037551641464, + -0.007481639739125967, + -0.02646113745868206, + 0.017499234527349472, + -0.015686199069023132, + -0.009019277058541775, + 0.02579559199512005, + 0.029674110934138298, + -0.0012177745811641216, + 0.024005506187677383, + -0.01718941144645214, + -0.023798957467079163, + 0.01885327324271202, + -0.001734145451337099, + -0.034906670451164246, + 0.0006641102954745293, + 0.01885327324271202, + -0.00023469771258533, + 0.002502964111045003, + 0.028251221403479576, + -0.007894736714661121, + 0.03405752405524254, + 0.011830629780888557, + -0.053748466074466705, + -0.009713509120047092, + 0.025267746299505234, + 0.015651773661375046, + -0.013609240762889385, + 0.011073285713791847, + 0.0070685432292521, + 0.03699510172009468, + -0.009891370311379433, + 0.01577799767255783, + -0.025841491296887398, + 0.011383107863366604, + 0.02591034024953842, + -0.0036461518611758947, + -0.01738448441028595, + 0.013735463842749596, + 0.009943007491528988, + 0.004314565099775791, + 0.017223836854100227, + -0.0022017478477209806, + -0.02206624671816826, + 0.051223985850811005, + -0.001090116216801107, + -0.005074777640402317, + -0.031923193484544754, + -0.004919866565614939, + 0.005803434643894434, + 0.01468788180500269, + -0.005367388017475605, + 0.033736228942871094, + 0.0000903200707398355, + 0.0040362984873354435, + -0.006598071660846472, + -0.02066630870103836, + 0.0061562880873680115, + 0.04369644820690155, + 0.013804313726723194, + 0.014205935411155224, + -0.029100365936756134, + -0.008686505258083344, + 0.00369778904132545, + 0.00043712224578484893, + -0.01900244690477848, + 0.026323437690734863, + -0.0013045535888522863, + 0.004314565099775791, + 0.03160189464688301, + 0.008353732526302338, + 0.007097230292856693, + 0.02035648562014103, + 0.021756425499916077, + 0.02494644932448864, + -0.03291003406047821, + -0.02772337570786476, + 0.005585411097854376, + -0.008325044997036457 + ] + }, + { + "HotelId": "17", + "HotelName": "City Skyline Antiquity Hotel", + "Description": "In vogue since 1888, the Antiquity Hotel takes you back to bygone era. From the crystal chandeliers that adorn the Green Room, to the arched ceilings of the Grand Hall, the elegance of old New York beckons. Elevate Your Experience. Upgrade to a premiere city skyline view for less, where old world charm combines with dramatic views of the city, local cathedral and midtown.", + "Description_fr": "En vogue depuis 1888, l'Antiquity Hotel vous ramĆØne Ć  une Ć©poque rĆ©volue. Des lustres en cristal qui ornent la Green Room aux plafonds voĆ»tĆ©s du Grand Hall, l'Ć©lĆ©gance du vieux New York embrasse tous les sens. Ɖlevez votre expĆ©rience. Passez Ć  une vue exceptionnelle sur les toits de la ville Ć  moindre coĆ»t, où le charme du vieux monde se combine avec des vues spectaculaires sur la ville, la cathĆ©drale locale et le centre.", + "Category": "Boutique", + "Tags": [ + "view", + "concierge", + "bar" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2015-10-10T00:00:00Z", + "Rating": 4.5, + "Address": { + "StreetAddress": "8th Ave", + "City": "New York", + "StateProvince": "NY", + "PostalCode": "10014", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -74.003571, + 40.738651 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 59.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "suite" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "suite" + ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "suite" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 68.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 97.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "suite", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "suite", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "jacuzzi tub", + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.04794292896986008, + -0.02999061532318592, + 0.02720445767045021, + 0.017873460426926613, + -0.05312097817659378, + -0.010868641547858715, + -0.022262971848249435, + -0.03919019177556038, + 0.0027220887131989002, + -0.010875212028622627, + 0.021198449656367302, + 0.021947558969259262, + -0.040977537631988525, + -0.005020339507609606, + 0.010954066179692745, + 0.025732526555657387, + -0.033407602459192276, + 0.014377621933817863, + 0.04718067869544029, + 0.037718258798122406, + -0.008772452361881733, + 0.03827023506164551, + -0.011998875066637993, + -0.02068590186536312, + -0.010047250427305698, + 0.03443269804120064, + -0.028650106862187386, + 0.032724205404520035, + 0.07307091355323792, + 0.026205647736787796, + -0.026271358132362366, + -0.014285625889897346, + 0.07927405834197998, + -0.007753927726298571, + -0.0041989488527178764, + -0.008562176488339901, + 0.0053390394896268845, + -0.05183303728699684, + 0.0045965020544826984, + -0.0018908412894234061, + 0.03974216431379318, + -0.007504225242882967, + 0.03863821551203728, + 0.01905626244843006, + -0.019621379673480988, + -0.02836097590625286, + -0.0017380625940859318, + 0.05735278129577637, + -0.013424809090793133, + 0.024392016232013702, + 0.014666751958429813, + -0.012544278055429459, + -0.08211278170347214, + -0.034958384931087494, + -0.029491210356354713, + -0.007228237576782703, + -0.04547218605875969, + -0.009863259270787239, + 0.00366011681035161, + 0.01661180518567562, + -0.008443895727396011, + -0.008358471095561981, + 0.0331447571516037, + 0.040189001709222794, + -0.047732654958963394, + 0.018294012174010277, + -0.0482846274971962, + 0.07196696102619171, + -0.018570000305771828, + 0.001153232529759407, + 0.043421994894742966, + 0.04089868441224098, + -0.006439702585339546, + -0.028413545340299606, + -0.0186094269156456, + 0.02109331265091896, + 0.019371677190065384, + 0.012373428791761398, + 0.059823524206876755, + -0.0255748201161623, + -0.03850679472088814, + -0.00652841292321682, + -0.05745792016386986, + 0.061348024755716324, + 0.05472433194518089, + 0.020567622035741806, + -0.0018596284789964557, + 0.0078459233045578, + -0.0027237313333898783, + 0.059718385338783264, + 0.06381876766681671, + 0.02682333253324032, + -0.051438767462968826, + -0.05745792016386986, + -0.019411103799939156, + 0.0186094269156456, + 0.030858004465699196, + -0.02193441614508629, + -0.025561677291989326, + 0.034353841096162796, + 0.029018089175224304, + -0.032619066536426544, + -0.0062491400167346, + -0.005674166604876518, + -0.021316729485988617, + -0.025246262550354004, + 0.014219914563000202, + -0.009843545965850353, + 0.009784405119717121, + -0.02778271771967411, + -0.10156331211328506, + -0.04628700762987137, + -0.06828713417053223, + -0.02780900150537491, + -0.03816509619355202, + 0.06108517944812775, + -0.011920020915567875, + -0.0049841986037790775, + 0.00501705426722765, + 0.0279141403734684, + -0.009968397207558155, + -0.013523375615477562, + 0.004957913886755705, + -0.029622633010149002, + 0.02988547831773758, + -0.03230364993214607, + -0.03438012674450874, + -0.059613246470689774, + -0.018294012174010277, + -0.03950560465455055, + 0.04242318496108055, + -0.03324989229440689, + 0.0017544904258102179, + -0.022538959980010986, + -0.00047065684339031577, + 0.0019204113632440567, + 0.02896551974117756, + -0.002257181564345956, + -0.020738471299409866, + -0.012695414014160633, + 0.03850679472088814, + -0.0024198167957365513, + -0.01142718642950058, + -0.02720445767045021, + 0.0016173182521015406, + 0.017847176641225815, + 0.06303023546934128, + 0.026192504912614822, + 0.01914825849235058, + 0.02662619948387146, + -0.028571251779794693, + 0.026941614225506783, + 0.029386071488261223, + -0.00590087054297328, + 0.005003911908715963, + -0.018688280135393143, + 0.035983480513095856, + -0.017400339245796204, + -0.029464924708008766, + 0.03664059564471245, + -0.03756055235862732, + 0.006337850354611874, + -0.021579574793577194, + -0.028781527653336525, + 0.036929722875356674, + 0.01891169883310795, + -0.08474123477935791, + -0.01704549975693226, + -0.051438767462968826, + -0.010553226806223392, + -0.031567685306072235, + 0.006518556270748377, + 0.05333125218749046, + 0.05049252510070801, + 0.044131677597761154, + -0.012399713508784771, + 0.01976594515144825, + 0.004028099589049816, + 0.024444585666060448, + 0.00437308382242918, + 0.02621879056096077, + 0.025114839896559715, + 0.09567558020353317, + -0.05651167780160904, + 0.0017824177630245686, + 0.007024533115327358, + -0.05206959694623947, + 0.04838976636528969, + 0.00010426527296658605, + 0.03151511773467064, + 0.008246761746704578, + 0.039479319006204605, + -0.02778271771967411, + -0.007070530671626329, + -0.017952313646674156, + 0.02364290878176689, + -0.0041989488527178764, + -0.01674322783946991, + 0.049467429518699646, + -0.016362102702260017, + -0.017400339245796204, + -0.007090243976563215, + 0.019989363849163055, + -0.03963702917098999, + 0.015271294862031937, + -0.019949935376644135, + 0.05409350246191025, + -0.019726518541574478, + 0.020160213112831116, + 0.016651231795549393, + 0.04229176044464111, + -0.0372188538312912, + 0.02377433143556118, + 0.05730021372437477, + -0.03240878880023956, + -0.06076976656913757, + -0.04833719879388809, + -0.012485138140618801, + -0.019279681146144867, + 0.04825834557414055, + -0.030148321762681007, + -0.03403842821717262, + 0.015245010145008564, + 0.013575945049524307, + 0.019069405272603035, + 0.03469553962349892, + -0.02000250481069088, + -0.04397397115826607, + -0.0007141991518437862, + 0.016217537224292755, + 0.0031623539980500937, + -0.016769511625170708, + -0.06487014889717102, + -0.006781401112675667, + -0.05383065715432167, + 0.05322611331939697, + -0.0028255837969481945, + -0.0042810882441699505, + 0.007517367135733366, + 0.020186496898531914, + -0.0036239756736904383, + 0.01701921410858631, + 0.00027804073761217296, + 0.01768946833908558, + 0.03416985273361206, + -0.018740849569439888, + -0.008706741034984589, + -0.02540397085249424, + -0.008167908526957035, + 0.022670382633805275, + -0.046103015542030334, + 0.0029980759136378765, + 0.037613119930028915, + -0.005598598625510931, + 0.048416052013635635, + 0.022131549194455147, + -0.0186094269156456, + -0.00830590259283781, + -0.01783403381705284, + 0.0020419771317392588, + 0.06066462770104408, + -0.016243821009993553, + 0.02625821717083454, + 0.025548534467816353, + 0.016217537224292755, + -0.026231931522488594, + -0.0012723341351374984, + -0.030411167070269585, + -0.004734495654702187, + -0.02815070003271103, + -0.09325741231441498, + 0.012557419948279858, + -0.009140435606241226, + -0.00034108245745301247, + 0.027283312752842903, + -0.04137180373072624, + -0.019844798371195793, + -0.019884224981069565, + 0.00839132722467184, + 0.041108958423137665, + -0.009436136111617088, + -0.014863885007798672, + 0.03303961828351021, + 0.02744101919233799, + 0.0055920276790857315, + 0.057510487735271454, + 0.002889652270823717, + 0.04720696434378624, + 0.01891169883310795, + -0.02550910785794258, + -0.011637463234364986, + -0.013345954939723015, + -0.008897303603589535, + -0.012517993338406086, + -0.018806559965014458, + -0.002976719755679369, + 0.01721634902060032, + -0.04612929746508598, + 0.017479192465543747, + -0.0372188538312912, + -0.0027992993127554655, + 0.02608736790716648, + 0.047732654958963394, + -0.01125633716583252, + 0.0226572398096323, + 0.06644722074270248, + 0.027966709807515144, + 0.030016900971531868, + 0.04081983119249344, + -0.010566369630396366, + 0.025719383731484413, + 0.02017335407435894, + -0.0009092794498428702, + -0.02917579561471939, + -0.0546191930770874, + -0.02465486153960228, + -0.015704989433288574, + 0.03164653852581978, + -0.02217097580432892, + 0.0017150636995211244, + 0.02859753742814064, + -0.008358471095561981, + -0.010323237627744675, + 0.027362165972590446, + 0.004284373484551907, + -0.0383753702044487, + -0.0006156322779133916, + -0.024155456572771072, + -0.005355467088520527, + -0.016375243663787842, + 0.016309533268213272, + -0.042633458971977234, + 0.019069405272603035, + -0.007109957281500101, + 0.007642218843102455, + 0.0003782504063565284, + -0.005595312919467688, + 0.030016900971531868, + 0.03522123023867607, + -0.019332250580191612, + -0.007859066128730774, + -0.043605986982584, + -0.007379373535513878, + -0.0058023035526275635, + 0.023051507771015167, + -0.00874616764485836, + -0.021553291007876396, + 0.021540148183703423, + 0.0023672478273510933, + 0.03080543503165245, + -0.06565868109464645, + -0.03070029802620411, + -0.013510233722627163, + 0.016900934278964996, + 0.03735027462244034, + 0.0027631581760942936, + 0.0010891640558838844, + 0.03256649523973465, + -0.04731210321187973, + 0.05919269472360611, + -0.03653545677661896, + -0.025456538423895836, + 0.03961074352264404, + -0.017584331333637238, + 0.020567622035741806, + -0.009495276026427746, + -0.02954377979040146, + 0.020331062376499176, + 0.01640152931213379, + -0.012005445547401905, + -0.060506921261548996, + 0.013983354903757572, + 0.014443333260715008, + -0.012439140118658543, + -0.027388449758291245, + 0.045997876673936844, + 0.00571359321475029, + -0.03916390612721443, + 0.024733714759349823, + -0.03511609509587288, + -0.002871581818908453, + -0.023038364946842194, + 0.05472433194518089, + -0.0639764741063118, + 0.029149511829018593, + 0.02047562599182129, + -0.03522123023867607, + -0.015639277175068855, + -0.029254648834466934, + 0.06565868109464645, + 0.03976844996213913, + -0.017912887036800385, + -0.011092059314250946, + 0.0038079670630395412, + -0.04003129526972771, + 0.016519809141755104, + 0.028650106862187386, + -0.033775582909584045, + 0.007392515894025564, + 0.044578514993190765, + 0.0036765446420758963, + -0.04907316341996193, + -0.030148321762681007, + -0.03903248533606529, + 0.02975405566394329, + -0.04195006191730499, + -0.03745541349053383, + -0.02862382121384144, + -0.00008989094203570858, + 0.021421868354082108, + -0.04363227263092995, + 0.00034026108914986253, + 0.02139558456838131, + -0.02754615619778633, + -0.007740785367786884, + 0.0022161121014505625, + 0.008167908526957035, + -0.007819638587534428, + -0.010691220872104168, + 0.023695478215813637, + 0.04247575253248215, + -0.01227486226707697, + 0.026231931522488594, + -0.01154546719044447, + 0.013733651489019394, + -0.016020404174923897, + 0.02604794129729271, + -0.023445775732398033, + -0.02478628419339657, + -0.032513927668333054, + -0.009620127268135548, + -0.03162025287747383, + 0.035746920853853226, + 0.035510361194610596, + -0.04618186876177788, + 0.07038989663124084, + -0.009882972575724125, + -0.023274926468729973, + -0.0009092794498428702, + -0.03629889711737633, + -0.04334314167499542, + -0.036798302084207535, + -0.06565868109464645, + -0.013345954939723015, + -0.014390763826668262, + 0.0453670471906662, + -0.0076685030944645405, + 0.02801927737891674, + -0.004442080855369568, + -0.044263098388910294, + -0.014850743114948273, + 0.02047562599182129, + -0.04126666486263275, + -0.019437387585639954, + -0.010599224828183651, + 0.04173978790640831, + 0.0004242482827976346, + 0.018215158954262733, + 0.02156643383204937, + -0.044263098388910294, + 0.02662619948387146, + -0.023550912737846375, + 0.004235090222209692, + 0.012393142096698284, + 0.056091126054525375, + 0.03322361037135124, + -0.010060392320156097, + 0.042160339653491974, + 0.02859753742814064, + -0.06613180786371231, + -0.03677201643586159, + -0.039453037083148956, + 0.05298955366015434, + -0.010586082935333252, + 0.04733838513493538, + -0.018083736300468445, + 0.01098692137748003, + 0.053541529923677444, + 0.03871706873178482, + 0.026744479313492775, + 0.011479755863547325, + -0.012517993338406086, + -0.01837286539375782, + -0.014561613090336323, + -0.03811252489686012, + -0.006728832144290209, + -0.06755116581916809, + 0.0017906316788867116, + -0.02662619948387146, + -0.006722261197865009, + 0.0020945461001247168, + 0.017873460426926613, + -0.035746920853853226, + -0.014364480040967464, + 0.04208148643374443, + 0.03582577407360077, + -0.026915328577160835, + -0.03012203797698021, + -0.04904687777161598, + -0.009777834638953209, + -0.005063051823526621, + 0.010586082935333252, + 0.011775456368923187, + 0.012215721420943737, + 0.03264534845948219, + 0.043895117938518524, + -0.0002464171848259866, + -0.0010078463237732649, + 0.05987609177827835, + -0.011032919399440289, + -0.0015351790934801102, + -0.0017495620995759964, + -0.027966709807515144, + -0.001692064804956317, + 0.001657566288486123, + -0.013510233722627163, + 0.011019776575267315, + 0.030621442943811417, + -0.016125541180372238, + -0.01884598657488823, + 0.031777963042259216, + 0.0030769293662160635, + -0.013115965761244297, + 0.022670382633805275, + 0.0529107004404068, + 0.04520934075117111, + -0.024668004363775253, + -0.0040412419475615025, + -0.001370901009067893, + 0.013457664288580418, + 0.008963014930486679, + -0.08747481554746628, + -0.02221040241420269, + 0.0011934805661439896, + -0.0038243948947638273, + 0.02928093448281288, + -0.007418800611048937, + 0.029675202444195747, + 0.03869078680872917, + -0.011834596283733845, + 0.05798361077904701, + -0.013280244544148445, + -0.022236688062548637, + -0.050387389957904816, + -0.003669973462820053, + -0.009140435606241226, + -0.024970276281237602, + 0.03871706873178482, + 0.006321422290056944, + 0.029228365048766136, + 0.0031623539980500937, + 0.010145816951990128, + -0.0009487062343396246, + -0.020554479211568832, + -0.005368609447032213, + -0.0007322697783820331, + 0.01366794016212225, + 0.027940424159169197, + 0.005680737551301718, + 0.03432755917310715, + -0.013004256412386894, + 0.0085753183811903, + -0.004330371506512165, + -0.01224200613796711, + 0.03640403226017952, + 0.00793134793639183, + 0.019108831882476807, + 0.07659303396940231, + -0.011834596283733845, + -0.03246136009693146, + 0.037245139479637146, + 0.022000126540660858, + 0.005463890731334686, + 0.012991114519536495, + -0.017413482069969177, + 0.0013437950983643532, + 0.03519494831562042, + 0.021369298920035362, + 0.016887791454792023, + -0.002257181564345956, + 0.023892611265182495, + -0.009666125290095806, + 0.01193973422050476, + 0.009468991309404373, + -0.00643641734495759, + -0.01378622092306614, + 0.05138619989156723, + 0.026166221126914024, + 0.03264534845948219, + 0.055512867867946625, + 0.002837083302438259, + 0.01124319527298212, + 0.011289193294942379, + -0.007951061241328716, + 0.0048264916986227036, + 0.010402090847492218, + -0.007129671052098274, + -0.001214015414007008, + 0.005056480877101421, + 0.0009232431184500456, + 0.02309093438088894, + -0.0027533015236258507, + -0.002777943154796958, + -0.003081857692450285, + 0.025995371863245964, + 0.01850428804755211, + 0.00860817451030016, + -0.006633550859987736, + -0.0273095965385437, + -0.021776709705591202, + 0.020961889997124672, + 0.0014530400512740016, + -0.017886603251099586, + 0.03805995732545853, + -0.055039744824171066, + 0.02469428814947605, + -0.0032658493146300316, + -0.010973779484629631, + 0.012813693843781948, + -0.012951687909662724, + -0.04152951017022133, + 0.016427813097834587, + 0.017742037773132324, + 0.026468493044376373, + 0.02441830188035965, + 0.041214097291231155, + -0.0028337978292256594, + -0.04160836338996887, + -0.013470807112753391, + -0.001986122690141201, + 0.028571251779794693, + 0.00366011681035161, + -0.000017659898730926216, + -0.002058404963463545, + 0.0180048830807209, + 0.0050893365405499935, + 0.016966644674539566, + -0.03779711201786995, + -0.010250955820083618, + -0.006475843954831362, + 0.024668004363775253, + -0.009179862216114998, + 0.009600413963198662, + 0.03154139965772629, + -0.007346517872065306, + -0.01198573224246502, + 0.03414356708526611, + -0.00935728196054697, + 0.02306464873254299, + 0.0010899853659793735, + -0.013083110563457012, + 0.018727706745266914, + 0.031225986778736115, + -0.0054967463947832584, + 0.016125541180372238, + 0.0084373252466321, + 0.011197197251021862, + 0.015520998276770115, + 0.03627261146903038, + 0.019910508766770363, + -0.008923588320612907, + 0.004028099589049816, + -0.013851932249963284, + 0.012682272121310234, + -0.0016164968255907297, + -0.008384755812585354, + 0.016927218064665794, + 0.007116528693586588, + -0.04881031811237335, + -0.006853683851659298, + 0.05430378019809723, + 0.022867515683174133, + 0.024392016232013702, + 0.040425561368465424, + 0.03185681626200676, + 0.010277239605784416, + 0.0016189609887078404, + -0.028045563027262688, + -0.010697792284190655, + -0.023866327479481697, + 0.011446899734437466, + -0.014679893851280212, + -0.008043057285249233, + -0.01809687912464142, + 0.016348959878087044, + -0.022302398458123207, + -0.01288597658276558, + 0.014206772670149803, + -0.011795169673860073, + 0.0017495620995759964, + 0.008325615897774696, + 0.019621379673480988, + -0.013865074142813683, + 0.008805307559669018, + 0.011749171651899815, + -0.018386008217930794, + -0.012117154896259308, + 0.018188875168561935, + 0.02017335407435894, + -0.023038364946842194, + -0.019174544140696526, + -0.0011244837660342455, + 0.021527007222175598, + -0.027966709807515144, + 0.010809500701725483, + 0.03127855435013771, + 0.028650106862187386, + -0.019555669277906418, + 0.03887477517127991, + -0.020764755085110664, + -0.0014694678829982877, + -0.009317855350673199, + -0.0007269307388924062, + -0.007681645452976227, + -0.009055010974407196, + 0.025824522599577904, + -0.028334692120552063, + -0.014075350016355515, + -0.02401089109480381, + -0.03976844996213913, + -0.008785594254732132, + 0.03395957499742508, + 0.0013774720719084144, + 0.013306528329849243, + -0.008739596232771873, + -0.04386883229017258, + -0.010218099690973759, + -0.005657739005982876, + -0.039952442049980164, + 0.035983480513095856, + -0.0008994227391667664, + -0.015034734271466732, + 0.00320999464020133, + -0.011479755863547325, + 0.007293948903679848, + 0.007372802589088678, + -0.00402481434866786, + 0.013181677088141441, + -0.03708742931485176, + 0.019726518541574478, + -0.016191253438591957, + -0.036798302084207535, + 0.003055573208257556, + -0.021369298920035362, + 0.027887854725122452, + -0.010014395229518414, + 0.003646974451839924, + -0.01477188989520073, + -0.03903248533606529, + 0.0319882370531559, + -0.04147694259881973, + 0.011354904621839523, + 0.008825020864605904, + -0.03380186855792999, + 0.0005864729173481464, + -0.03356530889868736, + 0.02625821717083454, + 0.008785594254732132, + -0.02418174035847187, + 0.018767133355140686, + 0.00535875279456377, + -0.016191253438591957, + -0.05199074372649193, + 0.03763940557837486, + 0.0016156753990799189, + -0.0005002269172109663, + 0.03380186855792999, + 0.033328745514154434, + -0.023590339347720146, + -0.03976844996213913, + -0.004402653779834509, + 0.017163779586553574, + -0.013470807112753391, + -0.03282934054732323, + -0.0029537207446992397, + -0.015363290905952454, + -0.0047443523071706295, + -0.018872272223234177, + 0.011860881000757217, + -0.008798737078905106, + 0.0063575636595487595, + -0.0459190234541893, + -0.006203142460435629, + -0.002856796607375145, + 0.008240191265940666, + -0.004366512876003981, + 0.006636836566030979, + -0.026573630049824715, + 0.014403906650841236, + 0.028755243867635727, + 0.05164904519915581, + -0.01701921410858631, + 0.0302271768450737, + 0.0014973952202126384, + 0.007280806545168161, + -0.01942424662411213, + -0.01429876871407032, + -0.038559362292289734, + 0.0008094804943539202, + 0.007182240020483732, + 0.011322048492729664, + -0.03976844996213913, + 0.022223545238375664, + -0.022499533370137215, + -0.02666562609374523, + 0.04962513968348503, + 0.004632643423974514, + -0.012550849467515945, + 0.010684649460017681, + -0.05393579602241516, + -0.044368237257003784, + 0.028860382735729218, + -0.020607048645615578, + 0.0069653927348554134, + 0.036325179040431976, + -0.005983009468764067, + 0.021040743216872215, + -0.010218099690973759, + 0.007136241998523474, + -0.017098067328333855, + -0.01151261106133461, + -0.04205520078539848, + -0.013983354903757572, + 0.0024461012799292803, + 0.016020404174923897, + -0.007924777455627918, + 0.003393986262381077, + 0.0019187686266377568, + 0.005743163637816906, + -0.026875901967287064, + 0.015363290905952454, + -0.010467802174389362, + -0.011755743063986301, + 0.034248705953359604, + 0.003637117799371481, + 0.02143501117825508, + -0.03196195140480995, + 0.014929596334695816, + -0.047364670783281326, + -0.005953439511358738, + 0.0528581328690052, + 0.016362102702260017, + -0.00008912088378565386, + 0.011966018937528133, + 0.007799925748258829, + -0.04139808937907219, + 0.020699044689536095, + 0.0018612712156027555, + 0.02544339746236801, + -0.009974967688322067, + 0.04252832382917404, + -0.005812160205096006, + 0.03382815420627594, + -0.0009610270499251783, + -0.004103667568415403, + -0.00723480898886919, + -0.008411040529608727, + 0.043421994894742966, + 0.013641656376421452, + 0.021211592480540276, + -0.0674460306763649, + 0.013681082986295223, + 0.008095626719295979, + -0.04003129526972771, + -0.02441830188035965, + 0.035273801535367966, + -0.010868641547858715, + -0.004212091211229563, + 0.009422993287444115, + -0.010678078979253769, + -0.04084611311554909, + 0.02292008511722088, + 0.037271421402692795, + 0.0069785350933671, + 0.010980349965393543, + 0.013943927362561226, + 0.04032042622566223, + 0.019792228937149048, + 0.015021592378616333, + -0.0412929505109787, + -0.010566369630396366, + -0.02523312158882618, + 0.012649415992200375, + 0.002934007439762354, + -0.01295825932174921, + 0.03850679472088814, + -0.042738597840070724, + 0.008463609032332897, + -0.03456411883234978, + -0.00009959361341316253, + 0.022538959980010986, + -0.007024533115327358, + 0.0049020592123270035, + -0.022013269364833832, + 0.011644033715128899, + -0.018386008217930794, + -0.0038671072106808424, + 0.04071469232439995, + -0.0349058173596859, + 0.02767757885158062, + 0.0061472877860069275, + -0.008266475982964039, + -0.009383566677570343, + 0.015429002232849598, + 0.011644033715128899, + 0.022328684106469154, + -0.029701486229896545, + 0.015849554911255836, + 0.027125604450702667, + -0.03083171881735325, + -0.005398179404437542, + -0.019371677190065384, + 0.00007613264460815117, + 0.03127855435013771, + 0.0372188538312912, + 0.02319607138633728, + -0.02656048908829689, + 0.0066401222720742226, + 0.005151762161403894, + -0.02051505260169506, + -0.019332250580191612, + -0.008963014930486679, + -0.04584017023444176, + 0.00956098735332489, + -0.0010341308079659939, + 0.040425561368465424, + -0.011565180495381355, + 0.017781464383006096, + -0.03698229417204857, + 0.004106953274458647, + -0.019726518541574478, + 0.004856061656028032, + -0.02846611477434635, + -0.005309469066560268, + 0.005999437533318996, + -0.015442144125699997, + 0.009501847438514233, + -0.005667595658451319, + 0.01989736780524254, + -0.010586082935333252, + 0.010356093756854534, + -0.018596284091472626, + -0.01562613621354103, + -0.0006427381886169314, + 0.009153577499091625, + -0.03763940557837486, + 0.011584893800318241, + 0.005506603047251701, + 0.015783842653036118, + 0.02767757885158062, + 0.044709935784339905, + 0.007635647431015968, + -0.017952313646674156, + 0.009784405119717121, + 0.0006706654676236212, + 0.014430191367864609, + -0.011282621882855892, + 0.04555103927850723, + -0.01749233528971672, + -0.0034662685357034206, + -0.009620127268135548, + 0.008963014930486679, + 0.0025890234392136335, + 0.031909383833408356, + -0.0156918466091156, + 0.016940360888838768, + -0.002176685258746147, + 0.032513927668333054, + -0.00956098735332489, + 0.011013206094503403, + -0.031015710905194283, + 0.01446961797773838, + 0.012866263277828693, + 0.006584267597645521, + 0.039137620478868484, + 0.04221290722489357, + 0.013148821890354156, + -0.06523813307285309, + 0.030148321762681007, + 0.004238375928252935, + -0.02720445767045021, + 0.008976156823337078, + 0.0068076858296990395, + -0.011762314476072788, + 0.029727770015597343, + 0.02988547831773758, + 0.06471244245767593, + 0.01989736780524254, + 0.023209214210510254, + 0.009751549921929836, + 0.02407660335302353, + -0.025758810341358185, + 0.029044372960925102, + -0.027230743318796158, + -0.01783403381705284, + 0.006741974502801895, + 0.008877590298652649, + 0.03240878880023956, + 0.007977345958352089, + -0.023892611265182495, + 0.0011762314243242145, + 0.018149448558688164, + 0.004274516832083464, + -0.019240254536271095, + 0.0016263534780591726, + 0.008785594254732132, + -0.00913386419415474, + 0.022302398458123207, + 0.0101721016690135, + -0.01711121015250683, + 0.03603605180978775, + 0.01477188989520073, + 0.007707929704338312, + 0.018977409228682518, + -0.031199702993035316, + -0.002038691658526659, + 0.005894299130886793, + -0.0019319108687341213, + -0.029333503916859627, + -0.02675762213766575, + 0.011420615948736668, + 0.008378184400498867, + 0.014509044587612152, + 0.025693099945783615, + 0.031120849773287773, + 0.027651295065879822, + 0.03209337592124939, + 0.018937982618808746, + -0.010835785418748856, + 0.007280806545168161, + 0.031015710905194283, + -0.03240878880023956, + 0.03861193358898163, + 0.01034295093268156, + -0.00006689200381515548, + 0.024497155100107193, + 0.0030703581869602203, + 0.0011926592560485005, + -0.0226835235953331, + 0.025798236951231956, + -0.013930785469710827, + -0.016559235751628876, + 0.004087239969521761, + -0.0019023407949134707, + 0.0037553980946540833, + 0.04357970133423805, + 0.03093685768544674, + 0.01680893823504448, + 0.056196264922618866, + 0.019713375717401505, + -0.003870392683893442, + 0.0006139895413070917, + -0.010250955820083618, + -0.01749233528971672, + -0.007057388313114643, + -0.01348394900560379, + 0.00652841292321682, + -0.05419864133000374, + 0.025193694978952408, + 0.004583359695971012, + -0.005861443933099508, + -0.01901683583855629, + 0.009396709501743317, + -0.03466925770044327, + -0.02662619948387146, + 0.004396082833409309, + -0.013063397258520126, + 0.01745290867984295, + -0.03677201643586159, + 0.03522123023867607, + 0.006479129660874605, + 0.018701422959566116, + -0.02085675112903118, + -0.027861570939421654, + -0.010480944998562336, + -0.004274516832083464, + -0.016532951965928078, + -0.01728205941617489, + 0.030542589724063873, + 0.003627261146903038, + 0.00732023362070322, + 0.014877027831971645, + 0.0077736410312354565, + -0.0030407882295548916, + -0.017847176641225815, + 0.010158959776163101, + 0.007648789789527655, + -0.012117154896259308, + 0.0024691002909094095, + 0.0017002786044031382, + -0.014088492840528488, + 0.026271358132362366, + -0.00571359321475029, + -0.026941614225506783, + 0.018123162910342216, + 0.010967208072543144, + 0.013010827824473381, + 0.007609363179653883, + -0.020396772772073746, + 0.007990487851202488, + 0.010770074091851711, + 0.008325615897774696, + 0.020804181694984436, + -0.018110021948814392, + -0.016716942191123962, + 0.01141404453665018, + -0.00670583313331008, + -0.02062019146978855, + -0.003244493156671524, + 0.001258370466530323, + -0.018412292003631592, + 0.00105055863969028, + 0.02870267443358898, + 0.027887854725122452, + -0.00178734608925879, + 0.004862632602453232, + 0.0024329591542482376, + -0.007004819344729185, + 0.034353841096162796, + -0.031120849773287773, + -0.0009569200919941068, + 0.002932364586740732, + -0.036325179040431976, + 0.012537706643342972, + 0.0029356502927839756, + 0.004813349340111017, + -0.0171506367623806, + -0.02292008511722088, + 0.018491147086024284, + 0.03674573078751564, + 0.00689311046153307, + -0.02129044570028782, + 0.022131549194455147, + -0.062136560678482056, + 0.014863885007798672, + -0.0010513800662010908, + -0.012301146052777767, + 0.008654171600937843, + -0.021513864398002625, + -0.0023968180175870657, + 0.0006029007490724325, + -0.01241285540163517, + -0.006377276964485645, + 0.009317855350673199, + 0.020528195425868034, + -0.013865074142813683, + 0.040767259895801544, + 0.06681520491838455, + -0.0030309315770864487, + 0.013004256412386894, + 0.014785031788051128, + 0.005608455277979374, + -0.012077728286385536, + -0.009955254383385181, + 0.028755243867635727, + 0.01952938362956047, + -0.007385944947600365, + -0.008982728235423565, + -0.040635839104652405, + -0.01159803569316864, + -0.011860881000757217, + -0.009298142045736313, + -0.005233901087194681, + -0.011026347987353802, + 0.00884473416954279, + 0.029727770015597343, + -0.02658677287399769, + -0.0054047503508627415, + 0.021303588524460793, + 0.014850743114948273, + 0.029044372960925102, + -0.0030440737027674913, + -0.0052470434457063675, + 0.0085753183811903, + 0.029675202444195747, + 0.03848050907254219, + 0.036903440952301025, + 0.029570063576102257, + 0.011519182473421097, + -0.02604794129729271, + -0.022473247721791267, + 0.015718132257461548, + 0.010336380451917648, + -0.0019811943639069796, + 0.018688280135393143, + -0.008338757790625095, + 0.0030046470928937197, + -0.002290037227794528, + -0.021343015134334564, + -0.019135117530822754, + 0.0024789569433778524, + 0.018661996349692345, + 0.030858004465699196, + -0.032145943492650986, + 0.006459415890276432, + 0.01783403381705284, + -0.009455849416553974, + -0.02550910785794258, + -0.002915936755016446, + -0.005253614857792854, + 0.011808312498033047, + -0.002741802018135786, + -0.02111959643661976, + -0.0035615498200058937, + 0.00411680992692709, + -0.003132784040644765, + -0.040688406676054, + 0.024746857583522797, + -0.0045439330860972404, + -0.021474437788128853, + 0.005822016857564449, + 0.010540084913372993, + -0.005220759194344282, + -0.0041365232318639755, + 0.016362102702260017, + -0.061926282942295074, + 0.0016206037253141403, + -0.0015475000254809856, + -0.003343059914186597, + -0.03989987075328827, + -0.0044913641177117825, + -0.012320860289037228, + 0.008056199178099632, + 0.018635710701346397, + 0.03816509619355202, + 0.017006071284413338, + 0.003446555230766535, + 0.018635710701346397, + -0.010448088869452477, + 0.0033545594196766615, + -0.009127292782068253, + -0.021947558969259262, + -0.032987046986818314, + 0.039242759346961975, + 0.022906942293047905, + -0.0017019214574247599, + -0.008010202087461948, + 0.006235997658222914, + -0.041450656950473785, + 0.007372802589088678, + 0.004938200581818819, + 0.049467429518699646, + 0.0010431661503389478, + -0.02696789801120758, + 0.0010719147976487875, + 0.0017659899313002825, + 0.0031886384822428226, + -0.004471650812774897, + 0.005526316352188587, + -0.044604796916246414, + 0.004254803527146578, + 0.008976156823337078, + -0.024444585666060448, + 0.01081607211381197, + 0.006748545449227095, + -0.04418424516916275, + 0.015586708672344685, + -0.00964641198515892, + -0.012038301676511765, + -0.01214343961328268, + -0.0013134037144482136, + -0.010198386386036873, + -0.0004940664512105286, + -0.011236623860895634, + -0.023314353078603745, + -0.02167157083749771, + -0.02999061532318592, + 0.022736093029379845, + 0.028912950307130814, + -0.018491147086024284, + -0.05871957540512085, + 0.01830715499818325, + -0.01884598657488823, + 0.0505450963973999, + -0.006439702585339546, + -0.015902122482657433, + 0.004616215359419584, + 0.019923651590943336, + 0.002506884280592203, + -0.0038933916948735714, + 0.023406347259879112, + 0.0022883943747729063, + -0.015494713559746742, + -0.006761687807738781, + -0.011046061292290688, + -0.02836097590625286, + 0.018635710701346397, + -0.003012860892340541, + -0.01826772838830948, + -0.004166093189269304, + -0.01477188989520073, + 0.015047877095639706, + -0.04791664704680443, + -0.0132276751101017, + -0.03474811092019081, + 0.015534140169620514, + 0.010277239605784416, + -0.03942675143480301, + -0.015389575622975826, + 0.017466051504015923, + -0.03406471386551857, + 0.039689596742391586, + -0.025351401418447495, + -0.009311284869909286, + -0.03114713355898857, + 0.002603808417916298, + 0.00022341826115734875, + 0.004159522242844105, + -0.0065152705647051334, + -0.017466051504015923, + -0.014285625889897346, + 0.0073136622086167336, + 0.010809500701725483, + -0.03577320650219917, + -0.016178110614418983, + -0.016322674229741096, + -0.008115340024232864, + 0.042265478521585464, + 0.003446555230766535, + 0.02975405566394329, + 0.018359724432229996, + -0.0049940552562475204, + 0.006232712417840958, + 0.016112398356199265, + 0.009909257292747498, + 0.025417111814022064, + -0.020869893953204155, + -0.040767259895801544, + -0.016992930322885513, + 0.006748545449227095, + 0.022302398458123207, + -0.002561096101999283, + -0.007484511472284794, + -0.0014440048253163695, + -0.018793419003486633, + -0.02210526540875435, + -0.03169910982251167, + 0.02581137977540493, + -0.014377621933817863, + 0.0264553502202034, + 0.023169787600636482, + -0.020225923508405685, + -0.013010827824473381, + -0.011046061292290688, + 0.002482242649421096, + -0.02169785462319851, + 0.014509044587612152, + -0.06718318164348602, + -0.020462483167648315, + -0.000672308262437582, + -0.02122473530471325, + -0.026468493044376373, + -0.020225923508405685, + 0.029149511829018593, + 0.014666751958429813, + 0.001268227118998766, + 0.017058640718460083, + -0.020055074244737625, + -0.0017035641940310597, + -0.0008267296943813562, + 0.019752802327275276, + 0.027730148285627365, + 0.010901496745646, + -0.010835785418748856, + 0.02255210094153881, + 0.03130483999848366, + -0.008338757790625095, + -0.032960765063762665, + -0.003009575419127941, + -0.02418174035847187, + -0.007090243976563215, + 0.018530573695898056, + 0.01418048795312643, + 0.0078459233045578, + 0.01579698547720909, + -0.022972654551267624, + 0.022696666419506073, + -0.027230743318796158, + 0.008641029708087444, + 0.008325615897774696, + -0.04279116913676262, + -0.009298142045736313, + 0.003699543420225382, + 0.012294575572013855, + 0.03117341734468937, + -0.0048494902439415455, + 0.026468493044376373, + -0.014141061343252659, + -0.018175732344388962, + 0.01931910775601864, + -0.029675202444195747, + -0.009685838595032692, + 0.015902122482657433, + -0.01477188989520073, + -0.009094437584280968, + -0.004340228158980608, + 0.033065903931856155, + -0.009436136111617088, + 0.007681645452976227, + 0.0017544904258102179, + -0.003765254747122526, + -0.013161963783204556, + -0.028071846812963486, + -0.018110021948814392, + 0.02812441624701023, + 0.00357797765173018, + -0.004668784327805042, + -0.016730085015296936, + -0.02068590186536312, + -0.02051505260169506, + 0.032750487327575684, + 0.0016189609887078404, + 0.006403561681509018, + -0.02495713345706463, + 0.03393328934907913, + 0.014574755914509296, + -0.01766318455338478, + -0.02259152941405773, + -0.01412791945040226, + -0.03175167739391327, + 0.025995371863245964, + -0.004869204014539719, + 0.014022781513631344, + -0.013247388415038586, + 0.014193630777299404, + 0.030752865597605705, + 0.009869829751551151, + -0.02027849294245243, + -0.016519809141755104, + -0.025049129500985146, + -0.0033447027672082186, + 0.017886603251099586, + -0.013549660332500935, + -0.0009692409657873213, + 0.01867513731122017, + -0.015954691916704178, + 0.0026678768917918205, + 0.03706114739179611, + 0.008752739056944847, + -0.04568246379494667, + 0.016940360888838768, + -0.02617936208844185, + -0.017479192465543747, + 0.009679267182946205, + 0.014890169724822044, + -0.02058076485991478, + -0.0073136622086167336, + 0.022630956023931503, + -0.008128481917083263, + 0.0014628967037424445, + -0.020160213112831116, + -0.012255148962140083, + 0.041687220335006714, + -0.020357346162199974, + 0.019555669277906418, + -0.0313836932182312, + -0.010073535144329071, + 0.03850679472088814, + -0.009127292782068253, + 0.032014522701501846, + 0.06055948883295059, + 0.01400963868945837, + 0.017847176641225815, + 0.0033447027672082186, + 0.036456603556871414, + -0.012997685931622982, + 0.0162701066583395, + -0.014706178568303585, + 0.017939172685146332, + -0.009666125290095806, + -0.0180048830807209, + -0.03395957499742508, + 0.02306464873254299, + 0.03393328934907913, + 0.005283184815198183, + -0.011814882978796959, + 0.007399086840450764, + 0.0058975848369300365, + 0.012708555907011032, + -0.050387389957904816, + -0.017308343201875687, + -0.0065579828806221485, + -0.023813758045434952, + -0.017229489982128143, + -0.04066212475299835, + -0.0014678251463919878, + 0.005477033089846373, + 0.028071846812963486, + -0.022762378677725792, + 0.0023803901858627796, + 0.016624946147203445, + -0.003791539231315255, + 0.011190625838935375, + -0.005191188771277666, + 0.02917579561471939, + 0.031909383833408356, + 0.046549852937459946, + 0.0020173355005681515, + -0.007537080440670252, + 0.0177288968116045, + 0.0194636732339859, + 0.0017495620995759964, + -0.0389799140393734, + -0.007556794211268425, + -0.016388386487960815, + 0.005079479888081551, + -0.048889171332120895, + 0.028991805389523506, + -0.005463890731334686, + -0.00823361985385418, + -0.0055920276790857315, + -0.028334692120552063, + 0.03148883208632469, + -0.020291633903980255, + 0.009554415941238403, + 0.015481570735573769, + 0.022262971848249435, + 0.026468493044376373, + -0.01901683583855629, + -0.014548471197485924, + -0.02577195316553116, + -0.01881970278918743, + -0.04363227263092995, + 0.015192441642284393, + -0.009087866172194481, + -0.004964485298842192, + 0.009698980487883091, + -0.045393332839012146, + 0.0168746504932642, + 0.016243821009993553, + -0.0007860708283260465, + 0.01464046724140644, + -0.004553789738565683, + -0.018570000305771828, + -0.001422648667357862, + -0.013983354903757572 + ] + }, + { + "HotelId": "18", + "HotelName": "Ocean Water Resort & Spa", + "Description": "New Luxury Hotel for the vacation of a lifetime. Bay views from every room, location near the pier, rooftop pool, waterfront dining & more.", + "Description_fr": "Nouvel hĆ“tel de luxe pour des vacances inoubliables. Vue sur la baie depuis chaque chambre, emplacement prĆØs de la jetĆ©e, piscine sur le toit, restaurant au bord de l'eau et plus encore.", + "Category": "Luxury", + "Tags": [ + "view", + "pool", + "restaurant" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2020-11-14T00:00:00Z", + "Rating": 4.2, + "Address": { + "StreetAddress": "5426 Bay Center Dr", + "City": "Tampa", + "StateProvince": "FL", + "PostalCode": "33609", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -82.537735, + 27.943701 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 89.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 112.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "tv", + "suite" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 163.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 151.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "tv" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "coffee maker", + "suite" + ] + } + ], + "embedding": [ + -0.03314158320426941, + 0.016443323343992233, + 0.004977031610906124, + 0.017787527292966843, + -0.030963044613599777, + -0.022225718945264816, + -0.006686256267130375, + 0.007190332747995853, + 0.025655755773186684, + -0.023419279605150223, + -0.0009726649150252342, + -0.010446551255881786, + -0.028529571369290352, + -0.01220212783664465, + 0.004669950343668461, + 0.026652321219444275, + -0.023616274818778038, + -0.005150850862264633, + 0.014172082766890526, + 0.011060713790357113, + 0.012584530748426914, + -0.028575923293828964, + 0.015863925218582153, + -0.025099534541368484, + 0.0238480344414711, + 0.04577246680855751, + -0.002517485525459051, + 0.024102969095110893, + 0.01052766665816307, + 0.0585424043238163, + 0.011240326799452305, + -0.020417995750904083, + 0.06479990482330322, + 0.012677234597504139, + 0.00017083196144085377, + -0.023175932466983795, + 0.0476960688829422, + 0.0071845389902591705, + 0.016825726255774498, + -0.0300128310918808, + 0.008882176131010056, + 0.053629107773303986, + 0.035969045013189316, + 0.017671648412942886, + 0.003725531045347452, + -0.00721930293366313, + -0.011813931167125702, + 0.05520506948232651, + -0.00396887818351388, + 0.028807682916522026, + -0.03200596198439598, + -0.01563216559588909, + -0.052238550037145615, + -0.021889667958021164, + -0.014786244370043278, + -0.010295907966792583, + -0.004012333229184151, + -0.02458966337144375, + -0.022805117070674896, + 0.012051484547555447, + 0.006355999503284693, + -0.010417581535875797, + -0.0073467702604830265, + 0.08241361379623413, + -0.057661719620227814, + 0.009710715152323246, + -0.09808054566383362, + 0.030499527230858803, + -0.007758143357932568, + 0.007439474109560251, + 0.034022267907857895, + 0.014994828030467033, + -0.009994620457291603, + 0.017903408035635948, + 0.015087531879544258, + -0.017914995551109314, + -0.010116294026374817, + -0.01813516765832901, + -0.010550842620432377, + -0.07476555556058884, + -0.011709639802575111, + -0.014044614508748055, + -0.046421390026807785, + 0.061184462159872055, + -0.00750900199636817, + -0.018784092739224434, + 0.03742913156747818, + -0.0023233871906995773, + -0.008546125143766403, + 0.08547283709049225, + 0.016095684841275215, + -0.0032214545644819736, + -0.025493524968624115, + -0.05984025448560715, + -0.012932170182466507, + 0.0014810869470238686, + 0.03379051014780998, + 0.02034846879541874, + -0.05937673896551132, + 0.029132146388292313, + 0.01713860221207142, + -0.07750031352043152, + 0.00448164576664567, + 0.0007597359945066273, + 0.027764765545725822, + -0.021124862134456635, + -0.02210983820259571, + 0.04238877817988396, + 0.02866862714290619, + 0.00897487998008728, + -0.10670199245214462, + 0.026466913521289825, + -0.04709349200129509, + -0.0011167902266606688, + -0.05784712731838226, + 0.04618963226675987, + 0.04904027283191681, + -0.035575054585933685, + 0.011900841258466244, + 0.004510615952312946, + -0.0036270334385335445, + 0.041415389627218246, + 0.026999961584806442, + -0.011257709003984928, + -0.009345694445073605, + -0.017439888790249825, + -0.0150064155459404, + -0.015620578080415726, + -0.0018019287381321192, + -0.012260068207979202, + -0.0026956505607813597, + 0.016246328130364418, + 0.002834706101566553, + -0.03436990827322006, + -0.03698878735303879, + 0.06957414746284485, + -0.04074328765273094, + 0.007769731339067221, + -0.0005703452043235302, + 0.006918015889823437, + 0.06220420077443123, + 0.018332162871956825, + 0.0164201483130455, + -0.011385176330804825, + -0.009896122850477695, + 0.028784507885575294, + 0.054370734840631485, + 0.019467782229185104, + 0.005733146332204342, + 0.02892356365919113, + -0.040998224169015884, + 0.0036154454573988914, + -0.014913712628185749, + 0.025725284591317177, + 0.01840168982744217, + -0.051867734640836716, + 0.011576377786695957, + -0.021785376593470573, + -0.038842860609292984, + 0.03467119485139847, + -0.01794975996017456, + -0.00016992665769066662, + 0.021808551624417305, + 0.021912842988967896, + 0.054973311722278595, + -0.024311551824212074, + -0.024520136415958405, + 0.008957497775554657, + -0.08241361379623413, + -0.045841991901397705, + 0.026049748063087463, + -0.002581219421699643, + -0.0049857222475111485, + 0.053026530891656876, + 0.03158879652619362, + 0.010151058435440063, + -0.0019424328347668052, + -0.011605347506701946, + 0.034624841064214706, + -0.003992054145783186, + 0.012920581735670567, + 0.0010392956901341677, + 0.03487977758049965, + -0.003858792595565319, + -0.037707243114709854, + 0.01348839234560728, + -0.010220586322247982, + 0.030545879155397415, + 0.0258179884403944, + 0.041021399199962616, + -0.05131151154637337, + 0.005570914596319199, + -0.016257915645837784, + -0.00703389523550868, + -0.017787527292966843, + 0.058635108172893524, + -0.025076357647776604, + 0.01956048607826233, + 0.0037573978770524263, + -0.06869345903396606, + 0.004782932810485363, + -0.028181932866573334, + 0.03995530679821968, + -0.044497787952423096, + -0.0015064355684444308, + -0.018494393676519394, + 0.03360510244965553, + 0.015829160809516907, + -0.01858709752559662, + -0.035992223769426346, + 0.009768655523657799, + -0.004693126305937767, + 0.04672268033027649, + 0.030198238790035248, + -0.004612010437995195, + -0.05988660827279091, + -0.007584323640912771, + -0.0053246705792844296, + 0.009890329092741013, + 0.028228284791111946, + 0.02045276015996933, + 0.025284942239522934, + 0.03126433119177818, + 0.023488806560635567, + -0.01309440191835165, + 0.035551879554986954, + 0.05376816168427467, + 0.012051484547555447, + 0.010736250318586826, + -0.007671233266592026, + -0.005950420629233122, + -0.01414890680462122, + -0.05117245763540268, + -0.0531192347407341, + -0.027625711634755135, + 0.0820891484618187, + -0.0007495965692214668, + -0.036339860409498215, + 0.016547614708542824, + -0.011744403280317783, + -0.04472954943776131, + -0.005973596591502428, + -0.05501966178417206, + -0.019989240914583206, + -0.0033576132263988256, + -0.0261888038367033, + -0.02503000572323799, + 0.03172785043716431, + 0.05974755436182022, + 0.0072019207291305065, + -0.0527484193444252, + -0.013407276943325996, + -0.012642471119761467, + -0.030986221507191658, + 0.04982825368642807, + 0.0321681946516037, + -0.07606340944766998, + 0.03879651054739952, + 0.0008328850381076336, + -0.026884080842137337, + 0.03708149120211601, + 0.00808260589838028, + -0.03779994323849678, + 0.0015107811195775867, + 0.03782312199473381, + -0.012283244170248508, + 0.01232959609478712, + 0.0002464253338985145, + 0.017787527292966843, + -0.03416132181882858, + -0.06924968212842941, + -0.050291772931814194, + -0.05793983116745949, + 0.00958324782550335, + 0.019154908135533333, + -0.03501883149147034, + -0.03374415636062622, + -0.007375740446150303, + 0.026327859610319138, + 0.007879816927015781, + 0.010545048862695694, + -0.04734842851758003, + 0.013685387559235096, + 0.0014666019706055522, + 0.0026492986362427473, + 0.028575923293828964, + -0.0017150189960375428, + -0.016617143526673317, + -0.026490090414881706, + 0.006871663965284824, + 0.008876382373273373, + -0.01297852210700512, + -0.019537311047315598, + -0.07694409042596817, + 0.00987294688820839, + 0.02887721173465252, + 0.025331294164061546, + -0.04032612219452858, + 0.08621446788311005, + 0.018227869644761086, + 0.005034971050918102, + 0.0029925922863185406, + 0.01483259629458189, + -0.0025160370860248804, + 0.035389646887779236, + 0.07138186693191528, + 0.003325746161863208, + -0.03467119485139847, + -0.02082357555627823, + -0.001108099240809679, + -0.009623805992305279, + 0.004765551071614027, + -0.026327859610319138, + -0.04982825368642807, + -0.03492612764239311, + -0.05117245763540268, + 0.008157928474247456, + 0.0007079523056745529, + -0.006118446122854948, + -0.011414146050810814, + 0.06391922384500504, + 0.031681500375270844, + -0.030963044613599777, + 0.004600422456860542, + 0.012711999006569386, + 0.00367917912080884, + 0.04090552031993866, + -0.023616274818778038, + 0.015840750187635422, + -0.024357903748750687, + 0.04090552031993866, + 0.03448578715324402, + 0.0019250508630648255, + 0.0372205451130867, + -0.029178498312830925, + -0.028969915583729744, + -0.05214584618806839, + 0.0005848301807418466, + 0.002229234902188182, + 0.0015122295590117574, + -0.022886233404278755, + -0.014114142395555973, + -0.01776435226202011, + 0.03979307413101196, + 0.032284073531627655, + -0.046421390026807785, + 0.0031490297988057137, + 0.040024835616350174, + 0.004620701540261507, + 0.015377230942249298, + -0.02503000572323799, + -0.013407276943325996, + 0.009565865620970726, + 0.03782312199473381, + -0.0007213508943095803, + -0.0054028891026973724, + 0.07017672061920166, + 0.013256632722914219, + -0.030175063759088516, + 0.029757896438241005, + -0.06637586653232574, + -0.007955138571560383, + -0.02372056618332863, + -0.006651492323726416, + 0.01413731835782528, + -0.005443446803838015, + -0.02200554683804512, + -0.0393759086728096, + 0.014473369345068932, + 0.01088689360767603, + -0.03297935053706169, + 0.02366262674331665, + 0.05158962309360504, + 0.04475272446870804, + -0.017891818657517433, + 0.04183255881071091, + 0.04343169555068016, + -0.01337251253426075, + -0.005967802368104458, + -0.014971652068197727, + -0.010730456560850143, + -0.0052580395713448524, + 0.0027970452792942524, + -0.020499112084507942, + 0.01782229170203209, + -0.01571328192949295, + -0.03202913701534271, + 0.01618838869035244, + -0.011419940739870071, + 0.004539585672318935, + 0.01559740211814642, + -0.01742830127477646, + 0.0008864793926477432, + -0.009786036796867847, + -0.010504490695893764, + 0.03256218507885933, + 0.04890121519565582, + -0.010614576749503613, + -0.019120143726468086, + 0.007752349134534597, + 0.009861359372735023, + -0.051867734640836716, + 0.00965856947004795, + -0.050708938390016556, + 0.00897487998008728, + -0.019699541851878166, + 0.004290444310754538, + -0.05196043848991394, + -0.014670364558696747, + 0.036757029592990875, + -0.03066175803542137, + -0.007897199131548405, + -0.011419940739870071, + -0.008401275612413883, + 0.010591400787234306, + 0.04384886473417282, + -0.012248479761183262, + -0.0238480344414711, + -0.0014427017886191607, + 0.019247611984610558, + 0.05288747698068619, + 0.006419733166694641, + -0.013013285584747791, + 0.04707031697034836, + 0.028158757835626602, + -0.0003621239447966218, + 0.06651492416858673, + -0.01385920774191618, + -0.06113810837268829, + 0.006384969223290682, + -0.027880646288394928, + -0.014763068407773972, + 0.03898191824555397, + 0.025864340364933014, + -0.052841123193502426, + 0.04092869535088539, + -0.010203204117715359, + -0.011535820551216602, + -0.03997848182916641, + 0.0020163061562925577, + -0.0225849449634552, + -0.012063072994351387, + -0.043756160885095596, + 0.00835492368787527, + -0.032863471657037735, + 0.04262053966522217, + 0.014878948219120502, + 0.039074622094631195, + -0.022248893976211548, + -0.010666722431778908, + -0.02834416553378105, + 0.018772505223751068, + -0.03360510244965553, + -0.04440508410334587, + -0.007665439508855343, + 0.045077186077833176, + 0.019884949550032616, + -0.04783512279391289, + 0.001218909164890647, + -0.02229524590075016, + 0.05525142326951027, + 0.014415429905056953, + 0.02334975078701973, + -0.010637752711772919, + 0.029734721407294273, + -0.00834333524107933, + -0.011576377786695957, + 0.0135579202324152, + -0.02097421884536743, + -0.013036461547017097, + -0.023616274818778038, + -0.03909779712557793, + 0.029966479167342186, + -0.0037458098959177732, + -0.019247611984610558, + -0.044057447463274, + 0.0017917891964316368, + 0.01699954643845558, + 0.0005920726107433438, + 0.02695360966026783, + -0.060211069881916046, + 0.00411952193826437, + -0.01606092043220997, + -0.049920957535505295, + -0.015493110753595829, + -0.02811240591108799, + 0.007393122185021639, + -0.027370775118470192, + -0.13571825623512268, + -0.00491619436070323, + 0.01676778681576252, + 0.0035198447294533253, + -0.01530770305544138, + -0.009925092570483685, + 0.01016264595091343, + 0.015052767470479012, + -0.050291772931814194, + 0.0054869018495082855, + 0.006077887956053019, + -0.0018497291021049023, + 0.04440508410334587, + -0.030128711834549904, + 0.0067789601162076, + -0.000649288238491863, + 0.043338991701602936, + 0.06739561259746552, + -0.014948476105928421, + -0.003899350529536605, + -0.005463725887238979, + 0.026443738490343094, + 0.0010595746571198106, + 0.019572073593735695, + -0.008795266039669514, + 0.01541199441999197, + -0.0077465553767979145, + 0.01414890680462122, + -0.01850598119199276, + -0.018645036965608597, + -0.024357903748750687, + -0.02184331603348255, + 0.04540165141224861, + 0.0086735924705863, + 0.0173471849411726, + -0.04403427243232727, + -0.0006456669652834535, + 0.009675951674580574, + -0.05664197728037834, + -0.0372205451130867, + -0.004756859969347715, + 0.003919629380106926, + 0.007016513496637344, + 0.0016614246414974332, + -0.0009618011536076665, + -0.0068832519464194775, + -0.008760502561926842, + 0.026142451912164688, + -0.0038124409038573503, + -0.02227207086980343, + 0.017683235928416252, + 0.028205109760165215, + 0.013407276943325996, + 0.0164549108594656, + -0.02221413142979145, + -0.04361710324883461, + -0.034972481429576874, + -0.01455448567867279, + -0.0033141581807285547, + 0.020881514996290207, + 0.0110143618658185, + -0.0023031083401292562, + -0.011900841258466244, + 0.00994826853275299, + -0.03411497175693512, + 0.00015118674491532147, + -0.0054869018495082855, + 0.023338163271546364, + 0.007132392842322588, + 0.032284073531627655, + -0.0164549108594656, + 0.03430037945508957, + 0.005799776874482632, + 0.035227417945861816, + 0.00035995119833387434, + 0.01043496374040842, + 0.015748046338558197, + 0.027092663571238518, + 0.03353557363152504, + 0.02445060759782791, + -0.011709639802575111, + 0.020197825506329536, + -0.0010986840352416039, + 0.03450896218419075, + 0.01442701742053032, + -0.002095973351970315, + 0.024937301874160767, + 0.005408683326095343, + 0.016814138740301132, + -0.025470349937677383, + 0.002374084433540702, + 0.0014347350224852562, + 0.030986221507191658, + -0.005753424949944019, + 0.012943757697939873, + 0.027811117470264435, + -0.02097421884536743, + -0.001558581367135048, + 0.041415389627218246, + 0.02026735246181488, + 0.012051484547555447, + 0.06456814706325531, + -0.025308117270469666, + -0.02358151040971279, + -0.014971652068197727, + -0.007167156785726547, + 0.017857056111097336, + 0.015075943432748318, + 0.004736580885946751, + 0.0016150727169588208, + -0.0244042556732893, + -0.006906427908688784, + 0.008447627536952496, + -0.03650209307670593, + -0.023511983454227448, + 0.0014108348404988647, + -0.02655961737036705, + 0.008609858341515064, + -0.01742830127477646, + -0.02024417743086815, + -0.024126145988702774, + -0.048391345888376236, + -0.01600298099219799, + -0.012827877886593342, + 0.03821711242198944, + -0.016547614708542824, + -0.0393759086728096, + 0.0003719012893270701, + -0.04421967640519142, + 0.007086041383445263, + 0.015388818457722664, + -0.001513677998445928, + -0.0229557603597641, + 0.0020264454651623964, + 0.03995530679821968, + 0.019966065883636475, + 0.016593966633081436, + -0.0013724496820941567, + 0.00007029731204966083, + -0.03766088932752609, + -0.0034068620298057795, + -0.003047635080292821, + 0.014079378917813301, + 0.015191823244094849, + 0.015284527093172073, + -0.018563920632004738, + -0.0034271408803761005, + 0.020777223631739616, + 0.009641187265515327, + 0.02771841548383236, + 0.009855564683675766, + -0.02055705152451992, + 0.006535612978041172, + -0.01424160972237587, + -0.003954393323510885, + -0.011217150837182999, + -0.04222654923796654, + 0.004359972197562456, + 0.01987336203455925, + -0.03374415636062622, + 0.011819724924862385, + -0.004026818089187145, + -0.007288830820471048, + 0.022944172844290733, + 0.03369780629873276, + 0.00586930476129055, + 0.01737036183476448, + -0.010203204117715359, + -0.0029810043051838875, + 0.018204694613814354, + 0.03390638902783394, + 0.03909779712557793, + -0.0021770892199128866, + 0.06016471982002258, + -0.003858792595565319, + -0.030105534940958023, + -0.016547614708542824, + 0.007532177958637476, + 0.00692380964756012, + -0.0012565701035782695, + -0.06906427443027496, + 0.009044407866895199, + 0.043918389827013016, + 0.05821794271469116, + -0.016037745401263237, + 0.013221869245171547, + 0.0013717254623770714, + -0.032840296626091, + 0.024914126843214035, + -0.0014202500460669398, + -0.013175517320632935, + -0.004959649406373501, + 0.005411580204963684, + 0.028784507885575294, + -0.05566858872771263, + 0.010127882473170757, + 0.0040615820325911045, + -0.03701196238398552, + 0.008986467495560646, + -0.02482142299413681, + -0.007306212559342384, + 0.002143773715943098, + -0.02316434308886528, + 0.0030881930142641068, + -0.022909408435225487, + -0.014624012634158134, + 0.015968216583132744, + -0.016721434891223907, + 0.002168398117646575, + 0.00267826858907938, + 0.02716219238936901, + -0.05608575418591499, + -0.0014311138074845076, + -0.018436454236507416, + -0.027092663571238518, + -0.034416258335113525, + -0.021078510209918022, + -0.02869180403649807, + -0.025725284591317177, + -0.02924802526831627, + 0.01668667048215866, + -0.02266606129705906, + 0.011136035434901714, + -0.03084716573357582, + -0.005466622766107321, + -0.017752764746546745, + 0.007375740446150303, + 0.003861689707264304, + -0.04248148202896118, + 0.015968216583132744, + 0.00035506251151673496, + 0.005446344148367643, + 0.014658777043223381, + 0.004417912103235722, + 0.01979224570095539, + 0.029757896438241005, + 0.011570584028959274, + 0.005116086918860674, + 0.027069488540291786, + -0.04649091884493828, + -0.007879816927015781, + 0.005637545604258776, + 0.0010132227325811982, + -0.009548484347760677, + 0.004012333229184151, + -0.019224435091018677, + 0.05529777333140373, + -0.011506849899888039, + -0.015469934791326523, + -0.03314158320426941, + 0.010643546469509602, + -0.025563053786754608, + -0.026142451912164688, + -0.011727022007107735, + 0.004820593632757664, + -0.014345902018249035, + 0.05877416208386421, + -0.053211938589811325, + 0.03263171389698982, + -0.03805487975478172, + -0.0205802284181118, + 0.02892356365919113, + -0.005640442483127117, + 0.007729173172265291, + -0.01043496374040842, + -0.04037247225642204, + 0.005617266520857811, + -0.05413897708058357, + 0.0037081490736454725, + 0.013639035634696484, + 0.020383231341838837, + 0.02537764608860016, + -0.010156852193176746, + 0.019757481291890144, + 0.038263462483882904, + -0.00462649529799819, + 0.014172082766890526, + -0.025841163471341133, + -0.010956421494483948, + 0.014392253942787647, + -0.018019286915659904, + -0.007850847207009792, + -0.023917561396956444, + 0.0020626578480005264, + 0.01950254663825035, + -0.005808467976748943, + 0.027231719344854355, + -0.023303398862481117, + 0.010574018582701683, + -0.002007615054026246, + -0.010359641164541245, + -0.007410504389554262, + 0.034045442938804626, + -0.026142451912164688, + 0.03392956405878067, + -0.019154908135533333, + -0.007868228480219841, + -0.014114142395555973, + 0.014322726055979729, + 0.007248272653669119, + 0.038286641240119934, + 0.015655342489480972, + -0.0041340067982673645, + -0.019282374531030655, + 0.024566488340497017, + -0.02540082111954689, + 0.044312380254268646, + 0.04014071449637413, + -0.0023465631529688835, + -0.014496545307338238, + -0.009757067076861858, + 0.02297893725335598, + -0.00020460002997424453, + -0.008418656885623932, + -0.003763191867619753, + -0.014821008779108524, + -0.00878947228193283, + -0.014577661640942097, + -0.027579359710216522, + 0.012422299943864346, + 0.008957497775554657, + -0.012700410559773445, + -0.010649341158568859, + 0.014345902018249035, + -0.031681500375270844, + -0.017914995551109314, + 0.0329098217189312, + 0.005990978330373764, + 0.014774656854569912, + -0.0023335267324000597, + -0.01396349910646677, + -0.03026776760816574, + 0.0173471849411726, + -0.0473252534866333, + 0.010487109422683716, + 0.061184462159872055, + 0.004035509191453457, + -0.005107395816594362, + -0.0023871210869401693, + 0.0290857944637537, + 0.035783637315034866, + -0.037707243114709854, + -0.015748046338558197, + 0.02595704421401024, + -0.028066053986549377, + 0.010759426280856133, + 0.005979390349239111, + 0.012538178823888302, + -0.004249886609613895, + 0.03372098132967949, + -0.005466622766107321, + 0.02540082111954689, + 0.01699954643845558, + -0.010203204117715359, + -0.0300128310918808, + 0.024311551824212074, + -0.011674875393509865, + -0.006245913449674845, + 0.02653644233942032, + -0.0022335804533213377, + -0.0005236312281340361, + 0.018100403249263763, + 0.004223813768476248, + -0.014658777043223381, + 0.035366471856832504, + -0.002327732741832733, + 0.0010443654609844089, + 0.012515002861618996, + 0.008430245332419872, + 0.03534329682588577, + 0.021599968895316124, + 0.011993545107543468, + -0.023894386366009712, + -0.006442909128963947, + -0.009084965102374554, + -0.006408145185559988, + -0.022341597825288773, + 0.00175847380887717, + -0.012433887459337711, + -0.015400406904518604, + 0.022237306460738182, + -0.03279394283890724, + -0.010487109422683716, + -0.037892647087574005, + -0.03661797195672989, + 0.04618963226675987, + 0.0015252659795805812, + 0.011141829192638397, + -0.012839466333389282, + 0.020730871707201004, + 0.0067673721350729465, + -0.027231719344854355, + 0.02639738656580448, + -0.008146340027451515, + -0.0017802012152969837, + 0.01581757329404354, + -0.0064544971100986, + 0.02401026524603367, + -0.005226172506809235, + 0.0034792867954820395, + -0.0012435335665941238, + -0.04106775298714638, + 0.004281753208488226, + 0.005521665792912245, + -0.007398916408419609, + -0.019363490864634514, + -0.019363490864634514, + 0.001459359424188733, + -0.004105037078261375, + 0.031704675406217575, + 0.036710675805807114, + 0.0026029469445347786, + -0.026258330792188644, + -0.020290527492761612, + -0.009762861765921116, + -0.003508256748318672, + -0.005353640299290419, + 0.019224435091018677, + -0.0057592191733419895, + -0.009635393507778645, + 0.02407979406416416, + -0.030592231079936028, + 0.005649133585393429, + -0.00806522462517023, + 0.009791831485927105, + 0.02355833537876606, + 0.020209413021802902, + 0.05636386573314667, + 0.009432604536414146, + -0.008482391014695168, + 0.0022133016027510166, + -0.0321681946516037, + -0.013905558735132217, + 0.006355999503284693, + -0.010759426280856133, + -0.005353640299290419, + -0.0024305758997797966, + -0.002476927824318409, + 0.0030534290708601475, + -0.0023074536584317684, + 0.036571621894836426, + -0.015527874231338501, + -0.006709432229399681, + 0.01726606860756874, + -0.005017589312046766, + 0.006541406735777855, + 0.023442454636096954, + 0.015330879017710686, + 0.03861110284924507, + -0.009971444495022297, + -0.00732359429821372, + 0.02866862714290619, + 0.034624841064214706, + 0.03100939653813839, + 0.00528990663588047, + -0.0022263380233198404, + 0.01763688400387764, + -0.03958449140191078, + 0.04051152989268303, + 0.029549313709139824, + -0.012468650937080383, + -0.02827463671565056, + 0.014960063621401787, + 0.008302778005599976, + 0.006587758660316467, + -0.01396349910646677, + -0.006576170679181814, + -0.00550138670951128, + -0.0009074825793504715, + 0.010064148344099522, + 0.04222654923796654, + -0.018413277342915535, + 0.0053855073638260365, + 0.05488060787320137, + 0.010707280598580837, + -0.01560899056494236, + -0.01337251253426075, + 0.01232959609478712, + -0.002553697908297181, + 0.03202913701534271, + 0.015354054979979992, + 0.038889214396476746, + -0.04164715111255646, + 0.016883665695786476, + 0.019722718745470047, + 0.0054869018495082855, + -0.004255680367350578, + 0.008546125143766403, + -0.009670157916843891, + 0.028552748262882233, + 0.009218227118253708, + -0.020568639039993286, + 0.002313247648999095, + 0.06276042014360428, + -0.03803170472383499, + -0.015956629067659378, + 0.018494393676519394, + 0.012839466333389282, + 0.014878948219120502, + 0.02987377718091011, + 0.02655961737036705, + 0.0019250508630648255, + -0.016964782029390335, + -0.03080081380903721, + 0.008772090077400208, + 0.03559822961688042, + -0.03766088932752609, + 0.009548484347760677, + 0.0022350288927555084, + 0.03353557363152504, + 0.03376733139157295, + 0.014415429905056953, + 0.017683235928416252, + 0.008186898194253445, + -0.015377230942249298, + -0.026119275018572807, + -0.01921284757554531, + 0.009171875193715096, + 0.005747631192207336, + 0.037915825843811035, + -0.014948476105928421, + -0.021379796788096428, + 0.015933454036712646, + 0.006726814433932304, + -0.02829781360924244, + 0.017996111884713173, + -0.0465836226940155, + -0.011651699431240559, + -0.020997393876314163, + -0.008690974675118923, + -0.01563216559588909, + 0.022017136216163635, + 0.012781526893377304, + -0.006831105798482895, + 0.009009643457829952, + 0.009310930967330933, + -0.005837437696754932, + -0.02003559283912182, + 0.02097421884536743, + 0.013048049993813038, + 0.053443700075149536, + -0.0029925922863185406, + 0.015863925218582153, + -0.02850639633834362, + 0.02026735246181488, + 0.009177668951451778, + 0.01319869328290224, + 0.00735835824161768, + -0.043709807097911835, + -0.012283244170248508, + -0.016570791602134705, + 0.0038008529227226973, + 0.03140338882803917, + 0.0015629269182682037, + 0.02363944984972477, + 0.015214999206364155, + 0.00030183029593899846, + 0.01660555601119995, + -0.027231719344854355, + 0.010481315664947033, + 0.06762737035751343, + -0.006130034103989601, + -0.01974589377641678, + 0.0004117349162697792, + -0.021970784291625023, + 0.01616521179676056, + -0.006170591805130243, + -0.021171214058995247, + -0.014751480892300606, + -0.002936100820079446, + 0.02479824796319008, + -0.02200554683804512, + 0.007335182279348373, + 0.04271324351429939, + 0.023106403648853302, + -0.018957912921905518, + 0.019143320620059967, + 0.04229607433080673, + -0.01689525507390499, + -0.0147283049300313, + -0.022920995950698853, + 0.03457849100232124, + 0.033257462084293365, + 0.014635601080954075, + 0.013024874031543732, + -0.0135579202324152, + -0.0070570711977779865, + -0.029132146388292313, + 0.010232173837721348, + 0.006819517817348242, + 0.047394782304763794, + 0.027602534741163254, + -0.009704921394586563, + 0.008233250118792057, + -0.019050616770982742, + 0.023465631529688835, + -0.01348839234560728, + -0.017775939777493477, + 0.01753259263932705, + -0.024937301874160767, + -0.0068832519464194775, + 0.0007340252050198615, + 0.008841617964208126, + 0.0003809543850366026, + -0.016072507947683334, + 0.020916279405355453, + 0.00317220576107502, + 0.012144188396632671, + 0.020012417808175087, + 0.011958780698478222, + 0.016327444463968277, + 0.006286471616476774, + 0.031658321619033813, + 0.017729587852954865, + -0.009646981954574585, + -0.031310684978961945, + -0.00893432181328535, + 0.034810248762369156, + 0.03100939653813839, + 0.013129165396094322, + -0.04211066663265228, + -0.02834416553378105, + 0.007787113077938557, + -0.008557712659239769, + 0.014369077980518341, + 0.016014568507671356, + 0.01202830858528614, + -0.0007553905597887933, + -0.0023595995735377073, + 0.00571866100654006, + -0.007839258760213852, + -0.031171629205346107, + -0.01713860221207142, + -0.006384969223290682, + 0.03784629702568054, + 0.017914995551109314, + 0.02424202486872673, + 0.01832057349383831, + 0.009050201624631882, + 0.01074204407632351, + 0.00721930293366313, + 0.026049748063087463, + -0.002763729775324464, + 0.011240326799452305, + -0.028761330991983414, + -0.0433853454887867, + -0.02113644964993, + 0.017648471519351006, + -0.016257915645837784, + 0.013233456760644913, + -0.0027767664287239313, + 0.031310684978961945, + 0.02042958326637745, + 0.027857469394803047, + -0.021808551624417305, + -0.012677234597504139, + 0.0036965610925108194, + 0.017683235928416252, + 0.006442909128963947, + 0.05603940412402153, + 0.04016388952732086, + -0.039839427918195724, + 0.036710675805807114, + -0.0187956802546978, + 0.01148946862667799, + -0.0067673721350729465, + 0.0023798784241080284, + 0.0024711338337510824, + 0.012584530748426914, + 0.01085792388767004, + -0.05511236563324928, + 0.010208997875452042, + -0.02003559283912182, + 0.017358772456645966, + -0.015620578080415726, + -0.0023480115924030542, + -0.007532177958637476, + 0.05131151154637337, + -0.0300128310918808, + 0.028969915583729744, + 0.01163431815803051, + 0.04053470492362976, + 0.02753300778567791, + -0.0067557841539382935, + -0.0036386214196681976, + 0.0014832596061751246, + 0.0031577206682413816, + -0.022932585328817368, + 0.0012993006967008114, + 0.01513388380408287, + 0.0032069694716483355, + -0.00988453533500433, + 0.021912842988967896, + 0.046629976481199265, + 0.02537764608860016, + 0.006118446122854948, + -0.008152133785188198, + -0.00037371189682744443, + 0.009646981954574585, + 0.015458346344530582, + -0.021785376593470573, + -0.015203411690890789, + -0.00491619436070323, + 0.024682367220520973, + 0.005773704033344984, + -0.05117245763540268, + 0.014508133754134178, + 0.0054695201106369495, + 0.008273807354271412, + 0.0015209205448627472, + 0.017914995551109314, + -0.0016252122586593032, + 0.002681165700778365, + 0.009670157916843891, + -0.013998262584209442, + -0.008656210266053677, + -0.06832264363765717, + -0.03103257343173027, + 0.01803087443113327, + -0.03295617550611496, + 0.004687332082539797, + -0.02558622881770134, + -0.005365228280425072, + 0.02832098864018917, + -0.03399909287691116, + -0.002000372624024749, + 0.05756901577115059, + -0.0368497334420681, + 0.038680631667375565, + 0.01396349910646677, + 0.02498365379869938, + 0.0034676988143473864, + -0.002304556779563427, + -0.01038281712681055, + 0.0007173675112426281, + 0.011663287878036499, + 0.06327029317617416, + -0.02811240591108799, + -0.022700825706124306, + -0.017775939777493477, + 0.006657286547124386, + 0.03912097215652466, + 0.0016324546886608005, + -0.01873774081468582, + -0.01579439826309681, + 0.018749328330159187, + 0.013708563521504402, + -0.020290527492761612, + -0.014473369345068932, + -0.01774117536842823, + -0.01776435226202011, + -0.025099534541368484, + 0.027069488540291786, + -0.025122709572315216, + 0.015585814602673054, + -0.004388941917568445, + 0.0009212432778440416, + -0.015805985778570175, + -0.011251915246248245, + -0.014334313571453094, + -0.02387120947241783, + -0.005715764127671719, + 0.029572488740086555, + 0.02537764608860016, + -0.006222737953066826, + 0.004438191186636686, + 0.013940323144197464, + -0.025864340364933014, + -0.0019047718960791826, + -0.025331294164061546, + -0.03260853514075279, + 0.013071225956082344, + -0.032075490802526474, + 0.023152755573391914, + 0.01782229170203209, + -0.0143574895337224, + -0.03158879652619362, + 0.027440303936600685, + 0.02716219238936901, + 0.014566073194146156, + -0.0008662004838697612, + 0.012063072994351387, + -0.03963084518909454, + -0.007532177958637476, + -0.02318751998245716, + 0.006373381242156029, + 0.014183670282363892, + 0.022364774718880653, + -0.004461366683244705, + 0.030963044613599777, + -0.00036067544715479016, + -0.023940738290548325, + -0.012874229811131954, + -0.015585814602673054, + 0.014936888590455055, + -0.039283204823732376, + -0.010295907966792583, + 0.017996111884713173, + 0.00550138670951128, + -0.025864340364933014, + 0.014878948219120502, + 0.006674668285995722, + -0.01631585694849491, + 0.0018859414849430323, + -0.037151020020246506, + -0.03587634116411209, + 0.002891197567805648, + 0.01776435226202011, + -0.0016324546886608005, + -0.04417332634329796, + -0.0023914664052426815, + -0.00285933050327003, + -0.05687373876571655, + 0.038286641240119934, + -0.002666680607944727, + 0.023778505623340607, + -0.02403344213962555, + 0.008992261253297329, + -0.028599100187420845, + 0.014867360703647137, + -0.01902743987739086, + 0.0071845389902591705, + -0.027996525168418884, + 0.04245830699801445, + 0.010394405573606491, + -0.01512229535728693, + 0.015701694414019585, + -0.01900426484644413, + 0.012132599949836731, + -0.01898108795285225, + 0.00863303430378437, + -0.008030460216104984, + 0.021229153499007225, + 0.002064106520265341, + 0.001223254599608481, + -0.020336879417300224, + 0.009270372800529003, + 0.018459629267454147, + -0.03409179672598839, + -0.03735960274934769, + 0.011981956660747528, + 0.006442909128963947, + 0.034995656460523605, + 0.0015629269182682037, + 0.03436990827322006, + -0.014114142395555973, + -0.007236684672534466, + -0.03979307413101196, + -0.04595787450671196, + 0.04377933591604233, + -0.012549767270684242, + 0.014751480892300606, + 0.009235609322786331, + -0.017196541652083397, + -0.0444282628595829, + 0.025331294164061546, + 0.0346943698823452, + 0.0056867944076657295, + -0.012144188396632671, + -0.052841123193502426, + -0.012155775912106037, + 0.007769731339067221, + -0.0031258538365364075, + 0.00256963144056499, + -0.005110293161123991, + 0.05441708862781525, + 0.011645905673503876, + 0.008656210266053677, + 0.004403427243232727, + -0.023303398862481117, + -0.012422299943864346, + 0.005773704033344984, + -0.02355833537876606, + 0.01442701742053032, + 0.00329967332072556, + -0.02458966337144375, + 0.03893556445837021, + -0.024960478767752647, + 0.013882382772862911, + 0.014044614508748055, + -0.006228531710803509, + -0.004287547431886196, + 0.018807269632816315, + -0.021148037165403366, + 0.016524439677596092, + 0.03126433119177818, + -0.00235235714353621, + -0.035412825644016266, + 0.015910277143120766, + -0.02458966337144375, + 0.007004925515502691, + 0.01384761929512024, + -0.027602534741163254, + -0.036965612322092056, + -0.017787527292966843, + 0.01377809140831232, + 0.015933454036712646, + 0.018865209072828293, + 0.006402351427823305, + 0.005455034784972668, + -0.019328726455569267, + -0.0024667882826179266, + -0.03717419505119324, + -0.03399909287691116, + 0.003143235808238387, + 0.000702520424965769, + 0.01597980596125126, + -0.014461781829595566, + 0.014948476105928421, + 0.00601415429264307, + 0.036363035440444946, + -0.000582295295316726, + -0.01981542259454727, + 0.0029694163240492344, + -0.026211978867650032, + 0.0030939870048314333, + 0.008325953967869282, + -0.0011674875859171152, + -0.02968836948275566, + -0.016628731042146683, + -0.001654182095080614, + 0.02268923819065094, + 0.014960063621401787, + 0.013499980792403221, + -0.010556637309491634, + -0.0009277615463361144, + 0.017706412822008133, + 0.014172082766890526, + -0.006796341855078936, + 0.0026391593273729086, + -0.009675951674580574, + 0.012155775912106037, + -0.020024005323648453, + 0.00674419617280364, + 0.021171214058995247, + 0.004470057785511017, + -0.01650126278400421, + 0.03854157403111458, + -0.022700825706124306, + -0.065680593252182, + 0.002954931231215596, + 0.0024914126843214035, + -0.05279477313160896, + 0.02458966337144375, + -0.0024682367220520973, + 0.03682655468583107, + 0.014114142395555973, + 0.019618425518274307, + -0.0325390100479126, + -0.015748046338558197, + -0.00045808678260073066, + -0.0357372872531414, + 0.008273807354271412, + 0.02579481154680252, + 0.009247196838259697, + -0.018842032179236412, + 0.027301248162984848, + 0.0016889460384845734, + 0.020754046738147736, + 0.020788811147212982, + -0.004226710647344589, + -0.022156190127134323, + 0.04890121519565582, + 0.02231842279434204, + 0.020255764946341515, + 0.006918015889823437, + 0.027301248162984848, + -0.02516906149685383, + -0.03476389870047569, + 0.019490959122776985, + 0.0026130862534046173, + 0.023778505623340607, + 0.02734760008752346, + -0.003398170927539468, + -0.0067384024150669575, + 0.017127012833952904, + 0.02314116805791855, + -0.0036386214196681976, + 0.020835163071751595, + -0.02658279426395893, + -0.006842693779617548, + 0.004328105133026838, + -0.007225096691399813, + -0.04180938005447388, + -0.02115962654352188, + 0.011640111915767193, + 0.01921284757554531, + 0.01413731835782528, + 0.008876382373273373, + -0.010985392145812511, + 0.024102969095110893, + -0.022434301674365997, + -0.039283204823732376, + -0.020916279405355453, + 0.005150850862264633, + 0.024728719145059586, + -0.01637379638850689, + 0.018366925418376923, + 0.012086248956620693, + 0.04282912239432335, + -0.022816704586148262, + -0.010776808485388756, + -0.014218434691429138, + 0.015933454036712646, + 0.000008227003490901552, + 0.010405993089079857, + 0.015805985778570175, + 0.01937507838010788, + 0.018123578280210495, + 0.016199976205825806, + 0.015388818457722664, + -0.00798990298062563, + -0.001565823913551867, + 0.037684064358472824, + 0.01724289357662201, + 0.025145886465907097, + -0.03550552949309349, + -0.01046393346041441, + 0.00484956381842494, + -0.002608740935102105, + 0.0038848656695336103, + -0.03214501589536667, + 0.002372635994106531, + 0.0271158404648304, + 0.04324628785252571, + -0.019595250487327576, + -0.021576792001724243, + 0.011483673937618732, + 0.007827671244740486, + 0.029526136815547943, + -0.00012158311437815428, + -0.013256632722914219, + -0.006361793261021376, + -0.0032504245173186064, + -0.02947978489100933, + 0.013615859672427177, + 0.016118859872221947, + 0.028367340564727783, + 0.01668667048215866, + -0.028761330991983414, + 0.026142451912164688, + 0.01443860586732626, + 0.018088815733790398, + 0.025841163471341133, + -0.004609113559126854, + 0.003235939424484968, + 0.02382485754787922, + -0.021066922694444656 + ] + }, + { + "HotelId": "19", + "HotelName": "Economy Universe Motel", + "Description": "Local, family-run hotel in bustling downtown Redmond. We are a pet-friendly establishment, near expansive Marymoor park, haven to pet owners, joggers, and sports enthusiasts. Close to the highway and just a short drive away from major cities.", + "Description_fr": "HĆ“tel local Ć  la gestion familiale dans le centre-ville animĆ© de Redmond. Nous sommes un Ć©tablissement acceptant les animaux de compagnie, Ć  proximitĆ© du vaste parc Marymoor, paradis des propriĆ©taires d'animaux, des joggeurs et des amateurs de sport. PrĆØs de l'autoroute et Ć  quelques minutes en voiture des grandes villes.", + "Category": "Budget", + "Tags": [ + "coffee in lobby", + "free wifi", + "free parking" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-11-21T00:00:00Z", + "Rating": 2.9, + "Address": { + "StreetAddress": "15255 NE 40th", + "City": "Redmond", + "StateProvince": "WA", + "PostalCode": "98052", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.13694, + 47.644508 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 165.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 134.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "tv", + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "suite" + ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "suite", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 261.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + } + ], + "embedding": [ + -0.02121247909963131, + -0.04148317873477936, + 0.04374793544411659, + 0.05560988187789917, + -0.016010263934731483, + -0.04673023894429207, + -0.008823583833873272, + 0.028410371392965317, + 0.008296635933220387, + 0.02179548516869545, + 0.041797105222940445, + 0.026369847357273102, + -0.010864107869565487, + 0.038411181420087814, + -0.011906793341040611, + 0.022535456344485283, + -0.024396592751145363, + -0.006586855743080378, + 0.025383220985531807, + 0.06457921862602234, + 0.031056325882673264, + 0.001207356690429151, + -0.016817504540085793, + -0.02834310010075569, + 0.02471051923930645, + 0.06099148467183113, + -0.012052545323967934, + -0.018275020644068718, + 0.04031716287136078, + -0.03390409052371979, + -0.005308725405484438, + -0.01971011608839035, + -0.007573483046144247, + -0.037357281893491745, + 0.0019382174359634519, + -0.004826623946428299, + -0.03883722424507141, + -0.03168417885899544, + 0.007685599382966757, + 0.02365662343800068, + -0.0594218485057354, + 0.004097865428775549, + 0.03581007197499275, + -0.020663106814026833, + -0.029531538486480713, + 0.0012704223627224565, + -0.004736930597573519, + 0.012175872921943665, + 0.02856733463704586, + -0.008134066127240658, + -0.019911926239728928, + -0.044465482234954834, + -0.009159933775663376, + -0.042716462165117264, + -0.04527272284030914, + 0.024867482483386993, + 0.012792514637112617, + -0.011357421055436134, + 0.0522015355527401, + 0.014418207108974457, + 0.0352494902908802, + -0.02261393703520298, + 0.02690800651907921, + 0.035608261823654175, + -0.04560907185077667, + 0.009131904691457748, + -0.04208860918879509, + -0.0005395616171881557, + 0.004731324501335621, + 0.008846007287502289, + 0.037828173488378525, + 0.009120693430304527, + 0.004232405219227076, + -0.010796837508678436, + 0.012377683073282242, + 0.00974294077605009, + -0.013891258276998997, + -0.039935968816280365, + -0.0555201880633831, + -0.021021880209445953, + -0.0708129033446312, + -0.007080169394612312, + 0.0016523197991773486, + 0.0032317638397216797, + -0.00460519315674901, + -0.05269484594464302, + -0.030518164858222008, + 0.005381601396948099, + 0.0023740711621940136, + 0.014653651975095272, + 0.06704578548669815, + 0.03973415866494179, + 0.01725476048886776, + -0.032805345952510834, + -0.019754961133003235, + -0.002250742632895708, + -0.026369847357273102, + -0.028701873496174812, + 0.0018849619664251804, + 0.03791786730289459, + -0.0017532248748466372, + -0.11534565687179565, + -0.006485951133072376, + -0.0050480542704463005, + -0.028589757159352303, + -0.06211265176534653, + 0.05269484594464302, + 0.03159448504447937, + 0.02482263743877411, + -0.02471051923930645, + -0.03518221899867058, + -0.01048291102051735, + -0.027558283880352974, + -0.0013573127798736095, + 0.01633540354669094, + 0.016873562708497047, + -0.02087612822651863, + -0.023723892867565155, + -0.042357686907052994, + -0.03565311059355736, + -0.015203024260699749, + 0.07776413857936859, + 0.002560465130954981, + -0.01690719835460186, + 0.003430770942941308, + -0.028029173612594604, + -0.03536160662770271, + 0.013566120527684689, + -0.024531133472919464, + 0.03897176310420036, + 0.019082261249423027, + -0.00044216023525223136, + -0.026526810601353645, + -0.03856814280152321, + -0.037828173488378525, + 0.020315544679760933, + -0.01564027927815914, + -0.07345885783433914, + -0.009720517322421074, + -0.03296230733394623, + 0.01575239561498165, + -0.016481153666973114, + -0.009255233220756054, + -0.014294878579676151, + -0.046685393899679184, + 0.010976224206387997, + 0.003898858092725277, + -0.005555382464081049, + -0.016402672976255417, + 0.027132241055369377, + 0.015146966092288494, + -0.024755366146564484, + -0.03161690756678581, + 0.013891258276998997, + -0.0004838536260649562, + 0.000117109389975667, + 0.036415502429008484, + -0.03336592763662338, + -0.011693770997226238, + 0.0003787442110478878, + -0.06363743543624878, + -0.0002179268340114504, + -0.04475698620080948, + 0.018398350104689598, + 0.005488112103193998, + 0.01503484882414341, + -0.022871805354952812, + 0.026504386216402054, + -0.05502687394618988, + -0.006401863414794207, + 0.07202376425266266, + 0.009569159708917141, + -0.04834472015500069, + 0.04977981373667717, + 0.011536807753145695, + 0.04300796613097191, + 0.054264482110738754, + 0.042828578501939774, + -0.0014925535069778562, + 0.05529595538973808, + -0.03459921106696129, + -0.02565230056643486, + -0.017860189080238342, + -0.0007841161568649113, + 0.009311291389167309, + 0.011323786340653896, + 0.01690719835460186, + 0.015505739487707615, + 0.020113734528422356, + 0.0315047912299633, + 0.010331553407013416, + -0.007579088676720858, + -0.009406590834259987, + -0.003977339714765549, + -0.006698972545564175, + -0.007495000958442688, + 0.007730446290224791, + -0.016750235110521317, + -0.03170660138130188, + -0.05641712248325348, + -0.01910468563437462, + -0.038276638835668564, + 0.05166337266564369, + -0.023611776530742645, + -0.03379197418689728, + -0.03302957862615585, + -0.0552511066198349, + -0.025203833356499672, + 0.0019256043015047908, + -0.012770092114806175, + 0.03995839133858681, + 0.03589976578950882, + 0.04036201164126396, + 0.032827768474817276, + 0.0058973380364477634, + -0.07655327767133713, + 0.01606632210314274, + 0.010808049701154232, + -0.002676786156371236, + 0.06825664639472961, + 0.00828542374074459, + 0.0066092791967093945, + 0.0067045786418020725, + 0.034576788544654846, + 0.011704983189702034, + 0.05381601303815842, + 0.007265161722898483, + -0.05430932715535164, + 0.0171426422894001, + -0.026190459728240967, + -0.013162500225007534, + -0.026302577927708626, + -0.04009293019771576, + -0.01912710815668106, + -0.011026676744222641, + 0.024284476414322853, + 0.03473375365138054, + -0.01549452729523182, + -0.00044636460370384157, + -0.05332270264625549, + -0.048658646643161774, + -0.006048695649951696, + -0.02903822436928749, + 0.04520545154809952, + 0.06534161418676376, + 0.005942184943705797, + -0.011312575079500675, + -0.026975277811288834, + 0.002533837454393506, + 0.007780898828059435, + -0.0380299836397171, + 0.015898147597908974, + 0.022434551268815994, + 0.006216870620846748, + 0.03383681923151016, + 0.03612399846315384, + -0.02462082728743553, + 0.04033958911895752, + 0.022826960310339928, + -0.01572997309267521, + -0.0035120556131005287, + -0.017411723732948303, + -0.013162500225007534, + -0.05202214792370796, + -0.00845359917730093, + -0.02493475377559662, + 0.0036970481742173433, + 0.021515194326639175, + -0.0017546262824907899, + 0.039106301963329315, + -0.06727001816034317, + -0.040989864617586136, + -0.030832091346383095, + -0.01130136288702488, + -0.006087936460971832, + -0.027064969763159752, + -0.03128055855631828, + -0.0001076495464076288, + -0.014485477469861507, + -0.005886126775294542, + -0.02740132063627243, + 0.019418612122535706, + 0.04172983393073082, + -0.03056301176548004, + -0.0008268606616184115, + 0.020450085401535034, + 0.03554099425673485, + 0.006474739406257868, + -0.04767201840877533, + 0.008890854194760323, + -0.027782516553997993, + -0.025091717019677162, + -0.013947317376732826, + -0.04699932038784027, + -0.009866269305348396, + 0.010337159037590027, + 0.03213264420628548, + -0.011172428727149963, + 0.015023637562990189, + -0.0008569919737055898, + 0.04264919087290764, + 0.049151960760354996, + -0.0463714674115181, + -0.03477859869599342, + 0.03314169496297836, + 0.013767930679023266, + 0.028522487729787827, + -0.04139348492026329, + 0.02762555330991745, + 0.02426205389201641, + -0.009978385642170906, + 0.0015051666414365172, + -0.004125894512981176, + -0.006020666565746069, + -0.0024525527842342854, + 0.03989112004637718, + -0.010303524322807789, + 0.027468590065836906, + -0.0012332836631685495, + -0.034195590764284134, + 0.03522706776857376, + 0.02158246375620365, + -0.008268605917692184, + -0.012108603492379189, + -0.04372551292181015, + -0.02764797769486904, + 0.024172360077500343, + -0.004490273538976908, + -0.013588543981313705, + 0.014451841823756695, + 0.06170903146266937, + -0.016761446371674538, + -0.011861946433782578, + 0.040048085153102875, + -0.04722355306148529, + -0.013431579805910587, + -0.05583411455154419, + -0.00008448168227914721, + 0.008655409328639507, + 0.021145209670066833, + -0.014115491881966591, + -0.051573678851127625, + -0.02271484211087227, + -0.013420368544757366, + -0.01854410208761692, + -0.017579898238182068, + 0.018947722390294075, + 0.023746317252516747, + 0.03751424700021744, + 0.04368066415190697, + -0.05489233508706093, + -0.01037640031427145, + 0.014373360201716423, + -0.040855325758457184, + -0.007943468168377876, + -0.03206537663936615, + 0.03128055855631828, + 0.04735809192061424, + -0.0131176533177495, + 0.020382815971970558, + -0.02717708796262741, + 0.02482263743877411, + -0.00710819847881794, + -0.012074967846274376, + -0.005546973552554846, + 0.00033529900247231126, + -0.04955558106303215, + 0.026773467659950256, + 0.030047275125980377, + 0.00002308027251274325, + 0.011503173038363457, + 0.03186356648802757, + 0.01375671848654747, + 0.040855325758457184, + -0.049959201365709305, + 0.025786839425563812, + 0.02867945097386837, + 0.04816533252596855, + 0.027109816670417786, + -0.0016817504074424505, + 0.04240253567695618, + 0.03251384198665619, + 0.007629541214555502, + -0.031885989010334015, + 0.026616504415869713, + -0.01446305401623249, + -0.04381520673632622, + -0.07480426132678986, + -0.050183434039354324, + 0.015528162941336632, + -0.016817504540085793, + -0.0326259583234787, + -0.021739427000284195, + 0.01936255395412445, + -0.04042927920818329, + -0.016369037330150604, + -0.0061439950950443745, + 0.0014743345091119409, + -0.0076351468451321125, + -0.03302957862615585, + 0.005039645358920097, + -0.021616099402308464, + -0.012635551393032074, + -0.00891327764838934, + -0.010281100869178772, + 0.006491556763648987, + 0.0016971664736047387, + -0.016380248591303825, + -0.06646277755498886, + -0.0063065639697015285, + -0.007685599382966757, + 0.0007602913537994027, + 0.029688501730561256, + 0.022344857454299927, + 0.00016388307267334312, + -0.036437924951314926, + 0.02950911410152912, + -0.045653920620679855, + -0.015830878168344498, + 0.023836009204387665, + 0.04798594489693642, + 0.0238808561116457, + -0.037603940814733505, + 0.0333210825920105, + -0.00798831507563591, + 0.021167632192373276, + 0.02915034070611, + -0.037357281893491745, + -0.029666077345609665, + -0.03450952097773552, + -0.06130541115999222, + -0.012893419712781906, + 0.052650000900030136, + 0.013252193108201027, + 0.015337564051151276, + -0.007074563764035702, + -0.05094582587480545, + 0.005518944468349218, + -0.014250032603740692, + -0.0021035894751548767, + -0.010068079456686974, + -0.0510803684592247, + -0.02367904596030712, + 0.026145612820982933, + -0.020248275250196457, + 0.014575170353055, + 0.023701470345258713, + 0.03484586998820305, + -0.00990551058202982, + 0.027311626821756363, + -0.04812048748135567, + -0.0009578970493748784, + 0.00332145718857646, + -0.0033326689153909683, + -0.014933943748474121, + 0.024082666262984276, + 0.030159391462802887, + -0.021862756460905075, + 0.006945629138499498, + -0.07534241676330566, + 0.03462163731455803, + -0.0011863347608596087, + 0.03650519624352455, + 0.008492839522659779, + 0.029307303950190544, + -0.06269565969705582, + -0.016851140186190605, + 0.041684988886117935, + -0.004980784375220537, + -0.03657246753573418, + 0.03998081386089325, + -0.004871470388025045, + 0.011918004602193832, + 0.009215992875397205, + -0.013386733829975128, + -0.037379708141088486, + 0.007130621932446957, + 0.012231932021677494, + 0.007046534214168787, + 0.018465619534254074, + 0.004874273203313351, + -0.005796433426439762, + -0.009171145968139172, + -0.014037010259926319, + 0.009294474497437477, + -0.023813586682081223, + -0.03536160662770271, + 0.08502930402755737, + -0.08018586039543152, + 0.015942994505167007, + -0.011525596491992474, + 0.013140076771378517, + 0.005162973888218403, + -0.009434619918465614, + 0.022468186914920807, + 0.056013502180576324, + -0.0008934299112297595, + -0.022098200395703316, + 0.015270293690264225, + 0.0046640546061098576, + -0.01631297916173935, + -0.04352370277047157, + -0.023365119472146034, + 0.014575170353055, + -0.006603673566132784, + 0.018039576709270477, + -0.019138319417834282, + -0.0373348593711853, + 0.04677508398890495, + 0.013454003259539604, + -0.008817978203296661, + 0.043882474303245544, + 0.010869713500142097, + 0.025136563926935196, + -0.027423743158578873, + 0.009143116883933544, + 0.018734699115157127, + 0.002089574933052063, + -0.03439740091562271, + 0.023499660193920135, + 0.015696337446570396, + 0.024194782599806786, + 0.002545048948377371, + 0.05314331501722336, + 0.01392489392310381, + -0.010449276305735111, + -0.0019676480442285538, + -0.04513818025588989, + 0.01182831171900034, + 0.009782182052731514, + 0.0008261598995886743, + -0.010499728843569756, + 0.0017840568907558918, + 0.009871874935925007, + -0.02179548516869545, + 0.011211670003831387, + 0.014653651975095272, + -0.01876833476126194, + 0.03123571164906025, + -0.02926245704293251, + 0.032244760543107986, + -0.003209340386092663, + -0.050317972898483276, + -0.021974872797727585, + -0.03462163731455803, + 0.02356692962348461, + -0.06166418269276619, + -0.03285019099712372, + 0.006351410876959562, + 0.003702653804793954, + 0.02027069963514805, + 0.058569762855768204, + -0.019497092813253403, + -0.011166823096573353, + 0.03578764945268631, + -0.03894934058189392, + 0.006362622603774071, + 0.009008576162159443, + 0.03650519624352455, + -0.0026487570721656084, + -0.0011765245581045747, + 0.02587653324007988, + 0.020427662879228592, + 0.009782182052731514, + -0.004596784710884094, + 0.003938098903745413, + 0.036325808614492416, + -0.012041333131492138, + -0.05453355982899666, + -0.0035653109662234783, + -0.010410035029053688, + -0.004355733748525381, + -0.03542887791991234, + -0.06700094044208527, + -0.00022651076142210513, + 0.017221124842762947, + -0.017232336103916168, + -0.00781453400850296, + 0.043658241629600525, + -0.007141833659261465, + 0.012915843166410923, + 0.0005469192401506007, + 0.004854653030633926, + -0.0062897466123104095, + 0.002566070994362235, + 0.01148074958473444, + 0.006396257318556309, + -0.025271102786064148, + 0.024105090647935867, + 0.06193326413631439, + -0.0012031523510813713, + 0.02551775984466076, + 0.0036325808614492416, + -0.02261393703520298, + 0.014115491881966591, + 0.014317302033305168, + -0.03334350511431694, + 0.00810603704303503, + -0.013689449056982994, + 0.01008489727973938, + -0.029307303950190544, + -0.005126535892486572, + 0.012355259619653225, + -0.004069835878908634, + -0.02728920429944992, + 0.013532484881579876, + -0.019967984408140182, + 0.005720754619687796, + -0.018230175599455833, + 0.018263809382915497, + 0.004209981765598059, + -0.02261393703520298, + 0.009249627590179443, + 0.035137373954057693, + -0.030114544555544853, + -0.01831986755132675, + -0.005987031385302544, + -0.016649330034852028, + -0.00002089049303322099, + -0.004507091362029314, + 0.02540564350783825, + 0.013061595149338245, + 0.02668377384543419, + 0.004232405219227076, + -0.012344048358500004, + 0.01979980804026127, + 0.020091312006115913, + -0.021268537268042564, + -0.003108435310423374, + -0.06749425083398819, + 0.017277183011174202, + 0.056148041039705276, + 0.006351410876959562, + -0.060229089111089706, + -0.011402267962694168, + -0.015068484470248222, + 0.0050648716278374195, + 0.007977102883160114, + -0.0015388017054647207, + -0.011682559736073017, + -0.007220315281301737, + 0.00020513852359727025, + -0.0015612250426784158, + -0.0042548286728560925, + 0.03500283136963844, + 0.008156489580869675, + -0.01911589689552784, + 0.039801426231861115, + 0.003027150873094797, + -0.010062473826110363, + -0.009070240892469883, + -0.017041737213730812, + 0.014608805999159813, + -0.0014743345091119409, + 0.005818856414407492, + 0.0018078817520290613, + -0.026952853426337242, + -0.004736930597573519, + 0.01621207408607006, + 0.030024850741028786, + 0.014081857167184353, + 0.03868025913834572, + -0.015158177353441715, + -0.030271507799625397, + -0.01972132734954357, + 0.0328950397670269, + 0.026392269879579544, + 0.012635551393032074, + -0.0361015759408474, + 0.008229365572333336, + 0.025271102786064148, + 0.02122369036078453, + 0.0708129033446312, + -0.02273726649582386, + 0.0077696871012449265, + -0.024419017136096954, + 0.0004509193531703204, + -0.03623611479997635, + 0.0016761446604505181, + -0.02948669157922268, + 0.01866742968559265, + -0.010185802355408669, + -0.04119167476892471, + 0.010286706499755383, + 0.04977981373667717, + -0.014642440713942051, + 0.02379116229712963, + 0.0018625386292114854, + 0.013980952091515064, + -0.01680629327893257, + 0.007248344365507364, + -0.029419420287013054, + 0.05125975236296654, + 0.005703936796635389, + -0.01549452729523182, + -0.017344452440738678, + 0.053098466247320175, + -0.005120930261909962, + 0.021246114745736122, + -0.053098466247320175, + 0.03711062669754028, + 0.0016649329336360097, + 0.004123091697692871, + -0.006783060263842344, + 0.010118531994521618, + -0.003977339714765549, + -0.02016979455947876, + -0.03511494770646095, + 0.009608400985598564, + -0.011749830096960068, + -0.0027580708265304565, + -0.02307361550629139, + -0.003702653804793954, + 0.008083613589406013, + -0.011172428727149963, + -0.022300010547041893, + -0.018577735871076584, + -0.0076183294877409935, + -0.01528150588274002, + -0.01456395909190178, + 0.010819260962307453, + 0.009871874935925007, + -0.010931378230452538, + -0.007876197807490826, + -0.024553555995225906, + -0.00460519315674901, + 0.04208860918879509, + -0.002934654476121068, + -0.01439578365534544, + 0.028993377462029457, + 0.018151693046092987, + 0.018633795902132988, + -0.032603535801172256, + 0.005109718535095453, + 0.004947149194777012, + -0.01475455705076456, + -0.01899256929755211, + 0.052156686782836914, + -0.018151693046092987, + -0.01621207408607006, + 0.00810603704303503, + 0.02589895762503147, + -0.008548897691071033, + -0.04334431514143944, + 0.0015374001814052463, + -0.03379197418689728, + -0.0013166704447939992, + 0.01817411743104458, + -0.07655327767133713, + -0.021829120814800262, + -0.021649735048413277, + 0.0058973380364477634, + -0.03933053836226463, + 0.010880925692617893, + 0.013364310376346111, + -0.0428958497941494, + 0.0012087580980733037, + -0.0022227135486900806, + 0.000748378923162818, + 0.043546125292778015, + -0.017198700457811356, + 0.029890311881899834, + 0.027715247124433517, + 0.040743209421634674, + 0.017165066674351692, + 0.00533395167440176, + 0.033971358090639114, + 0.030607858672738075, + -0.0077528697438538074, + -0.017759284004569054, + 0.0007672986248508096, + -0.018118057399988174, + 0.007220315281301737, + 0.0014687287621200085, + 0.04148317873477936, + -0.013678236864507198, + -0.0014175755204632878, + 0.018488043919205666, + 0.022333646193146706, + 0.0021400274708867073, + 0.04159529507160187, + -0.0073548550717532635, + 0.046909626573324203, + -0.044218823313713074, + -0.011962851509451866, + 0.013846412301063538, + -0.020808858796954155, + -0.02610076777637005, + -0.006855935789644718, + 0.012904631905257702, + -0.012523435056209564, + -0.05004889518022537, + 0.04502606391906738, + -0.029083071276545525, + -0.03807482868432999, + -0.03661731258034706, + -0.011312575079500675, + -0.020113734528422356, + 0.03578764945268631, + 0.03249141946434975, + -0.012837361544370651, + 0.005269484594464302, + 0.007293191272765398, + 0.026863159611821175, + -0.014586382545530796, + -0.03204295039176941, + -0.055206261575222015, + -0.025831686332821846, + 0.016985679045319557, + -0.006833512801676989, + -0.004128697328269482, + 0.005600228905677795, + -0.0027202314231544733, + -0.034464672207832336, + 0.015651490539312363, + 0.01587572507560253, + -0.005115324165672064, + 0.005468491930514574, + -0.027334051206707954, + -0.016952045261859894, + -0.017635956406593323, + -0.017288394272327423, + 0.03811967745423317, + 0.00938977301120758, + -0.030383624136447906, + -0.003980142530053854, + 0.005589017178863287, + 0.0211003627628088, + 0.013622178696095943, + -0.03370228037238121, + -0.029531538486480713, + -0.041101980954408646, + 0.004117485601454973, + 0.018745912238955498, + -0.01236647181212902, + -0.018028365448117256, + -0.0020461296662688255, + -0.004137106239795685, + -0.03868025913834572, + 0.010751991532742977, + 0.02529352717101574, + 0.01688477396965027, + -0.06170903146266937, + 0.01712021976709366, + -0.02740132063627243, + -0.00032706541242077947, + 0.008139671757817268, + -0.026392269879579544, + 0.003262595972046256, + -0.02612319029867649, + -0.00873949658125639, + 0.02027069963514805, + 0.02052856795489788, + -0.016458731144666672, + 0.02271484211087227, + 0.011794676072895527, + -0.02145913615822792, + -0.024665674194693565, + 0.027087394148111343, + -0.04018262401223183, + -0.016111169010400772, + -0.0063065639697015285, + -0.016705388203263283, + -0.0047201127745211124, + 0.0010574006009846926, + 0.017467781901359558, + 0.0026137204840779305, + -0.014597593806684017, + 0.016458731144666672, + -0.0008387730340473354, + -0.03181871771812439, + -0.002134421607479453, + -0.033164117485284805, + -0.02213183604180813, + 0.014014586806297302, + 0.02309603989124298, + -0.019407400861382484, + 0.037245165556669235, + -0.05121490731835365, + -0.014126704074442387, + 0.018633795902132988, + 0.02576441690325737, + 0.020337969064712524, + 0.02798432670533657, + -0.008369510993361473, + 0.008526475168764591, + -0.025338374078273773, + 0.019889501854777336, + -0.03399378061294556, + -0.022075777873396873, + 0.02670619636774063, + 0.02390328049659729, + 0.02193002589046955, + -0.021033091470599174, + -0.04520545154809952, + 0.03937538340687752, + -0.005476900842040777, + 0.01108273584395647, + -0.02796190418303013, + 0.02937457524240017, + 0.020842494443058968, + 0.019205590710043907, + -0.01620086282491684, + -0.015079695731401443, + 0.02659408003091812, + -0.02529352717101574, + -0.011761041358113289, + 0.004047412890940905, + -0.009014182724058628, + -0.024419017136096954, + 0.03755909204483032, + -0.02274847775697708, + -0.021773062646389008, + 0.021010668948292732, + -0.007455760147422552, + 0.011340604163706303, + -0.01922801323235035, + -0.0297109242528677, + -0.008246183395385742, + 0.03311927244067192, + -0.002811326179653406, + 0.02041644975543022, + -0.024105090647935867, + 0.041909221559762955, + 0.015808453783392906, + 0.00809482578188181, + -0.011637712828814983, + 0.043209776282310486, + 0.004069835878908634, + -0.010040050372481346, + 0.03204295039176941, + 0.00355409923940897, + 0.007298796903342009, + 0.0017013709293678403, + 0.06682155281305313, + 0.0007049337145872414, + 0.002563267946243286, + -0.02482263743877411, + 0.025002023205161095, + -0.014709710143506527, + -0.010247466154396534, + 0.016638116911053658, + 0.02937457524240017, + 0.004081047605723143, + -0.01726597175002098, + -0.05377116799354553, + -0.002669778885319829, + -0.006855935789644718, + 0.014597593806684017, + -0.014620017260313034, + 0.030383624136447906, + 0.033276233822107315, + 0.018577735871076584, + -0.03870268538594246, + -0.034083474427461624, + -0.005460083018988371, + -0.020259486511349678, + -0.026145612820982933, + 0.0021105967462062836, + -0.005087295081466436, + -0.012927055358886719, + 0.03563068434596062, + -0.0021512391977012157, + 0.009518707171082497, + -0.0018653415609151125, + -0.014732133597135544, + 0.019284071400761604, + 0.052874233573675156, + 0.008358299732208252, + 0.014137915335595608, + -0.025585029274225235, + 0.04233526438474655, + -0.010012021288275719, + -0.024508709087967873, + -0.020450085401535034, + -0.019777385517954826, + -0.0029907128773629665, + 0.061260562390089035, + 0.05296392738819122, + -0.00020741588377859443, + 0.002089574933052063, + 0.0777192935347557, + 0.0120076984167099, + -0.030495742335915565, + -0.014070644974708557, + 0.02179548516869545, + 0.005751586519181728, + 0.027692824602127075, + 0.0008170504006557167, + -0.00041132813203148544, + 0.03334350511431694, + 0.03605673089623451, + -0.005589017178863287, + -0.026728620752692223, + 0.003663412993773818, + 0.017299605533480644, + -0.016178438439965248, + 0.046461157500743866, + 0.013420368544757366, + 0.018958933651447296, + -0.012624340131878853, + 0.010578210465610027, + 0.004240814130753279, + 0.010869713500142097, + -0.030024850741028786, + -0.016862351447343826, + 0.04924165457487106, + 0.012310413643717766, + -0.03148236870765686, + 0.018958933651447296, + 0.0019157940987497568, + 0.029060646891593933, + 0.0044005801901221275, + 0.02982304058969021, + -0.03148236870765686, + 0.001346101053059101, + -0.0031280559487640858, + -0.021593675017356873, + -0.020304333418607712, + 0.018824392929673195, + 0.01586451195180416, + -0.0013019550824537873, + 0.04442063346505165, + 0.002208699006587267, + 0.03184114024043083, + -0.016369037330150604, + 0.030002428218722343, + 0.008117249235510826, + 0.01084168441593647, + 0.009115087799727917, + -0.003618566319346428, + 0.011929216794669628, + 0.028118867427110672, + 0.018488043919205666, + -0.005703936796635389, + 0.0006408169865608215, + -0.026369847357273102, + -0.020898552611470222, + 0.018465619534254074, + -0.010297918692231178, + -0.019160743802785873, + -0.011761041358113289, + 0.0007715030224062502, + 0.011761041358113289, + -0.054264482110738754, + -0.001323677715845406, + -0.007691205479204655, + -0.024889906868338585, + -0.0009403788135387003, + 0.016952045261859894, + 0.013655813410878181, + -0.0354064516723156, + -0.03031635470688343, + -0.0297109242528677, + 0.022569090127944946, + 0.023522082716226578, + -0.007736051920801401, + -0.00025489029940217733, + 0.004445427097380161, + -0.007831350900232792, + 0.02948669157922268, + 0.004333310294896364, + 0.00008049628377193585, + -0.0134652154520154, + -0.04233526438474655, + 0.006990476045757532, + -0.03780575096607208, + -0.006155206821858883, + 0.0008079409599304199, + 0.009675671346485615, + 0.021649735048413277, + 0.03937538340687752, + 0.0031224500853568316, + -0.004358536563813686, + 0.03098905459046364, + 0.009770969860255718, + 0.015920570120215416, + -0.019272860139608383, + 0.010768808424472809, + -0.023140886798501015, + 0.04838956519961357, + -0.030024850741028786, + 0.025450490415096283, + -0.010639874264597893, + -0.009933539666235447, + 0.044106706976890564, + 0.03686397150158882, + -0.004888287745416164, + -0.00927205104380846, + -0.014956367202103138, + 0.010124137625098228, + 0.009103875607252121, + -0.007332432083785534, + 0.00857132114470005, + 0.00646913331001997, + -0.012052545323967934, + 0.010292313061654568, + 0.06040847674012184, + 0.011407873593270779, + 0.018970144912600517, + -0.01784897781908512, + 0.01607753522694111, + -0.005078886169940233, + -0.004380960017442703, + -0.0030131363309919834, + 0.009513101540505886, + 0.00016143052198458463, + 0.0029402603395283222, + -0.009496284648776054, + 0.027356473729014397, + 0.0102026192471385, + -0.020124947652220726, + 0.009535524994134903, + -0.026055920869112015, + 0.0027006110176444054, + 0.018689854070544243, + 0.014788192696869373, + -0.008190124295651913, + -0.003980142530053854, + 0.028948530554771423, + 0.005575002636760473, + -0.026885583996772766, + 0.023589352145791054, + -0.020887341350317, + 0.006491556763648987, + -0.012198296375572681, + -0.031190864741802216, + -0.016716599464416504, + -0.007326825987547636, + 0.018824392929673195, + 0.025674723088741302, + -0.020707953721284866, + -0.015942994505167007, + 0.014025798998773098, + -0.04352370277047157, + 0.002382479840889573, + 0.0206182599067688, + 0.018611371517181396, + 0.0013103638775646687, + 0.018331080675125122, + 0.006878359243273735, + 0.005238652694970369, + -0.0012290793238207698, + 0.023948125541210175, + 0.01136302761733532, + 0.03807482868432999, + 0.0004838536260649562, + 0.040967442095279694, + 0.003060785820707679, + -0.0005195908015593886, + -0.016357826068997383, + -0.004991996102035046, + 0.009221598505973816, + -0.005603031720966101, + 0.006844724528491497, + 0.0014196776319295168, + -0.0037587122060358524, + 0.0048630619421601295, + 0.019295282661914825, + 0.0012360865948721766, + 0.00944583211094141, + 0.021627310663461685, + -0.004358536563813686, + 0.0058580972254276276, + 0.030854515731334686, + -0.01428366731852293, + -0.025697147473692894, + 0.003217749297618866, + -0.01621207408607006, + 0.006368228234350681, + 0.00810603704303503, + -0.010993042029440403, + -0.017546262592077255, + 0.0019326115725561976, + -0.002550654811784625, + 0.019732538610696793, + 0.007792110554873943, + -0.010152166709303856, + 0.020786436274647713, + 0.006312170065939426, + -0.02085370570421219, + 0.022243952378630638, + -0.014597593806684017, + 0.002473574597388506, + -0.008885248564183712, + 0.018835604190826416, + -0.011738617904484272, + 0.030518164858222008, + -0.01712021976709366, + -0.018443197011947632, + -0.004899499472230673, + 0.060318782925605774, + 0.032693229615688324, + -0.029980003833770752, + -0.01982223242521286, + 0.04298553988337517, + 0.012545858509838581, + 0.0035232671070843935, + 0.011155610904097557, + 0.008756314404308796, + -0.016301767900586128, + 0.03134782984852791, + 0.011329391971230507, + 0.02926245704293251, + -0.022883018478751183, + 0.02263636142015457, + -0.003489632159471512, + 0.007780898828059435, + 0.005717951338738203, + -0.004622010979801416, + 0.020820070058107376, + 0.014059433713555336, + -0.040496550500392914, + -0.010426852852106094, + 0.015707548707723618, + 0.012444953434169292, + -0.003685836447402835, + 0.008705861866474152, + -0.006777454167604446, + 0.015079695731401443, + -0.014620017260313034, + 0.013409157283604145, + 0.045183029025793076, + -0.019373765215277672, + 0.012355259619653225, + 0.0014119696570560336, + -0.020920975133776665, + -0.013274616561830044, + -0.0009557948214933276, + 0.016178438439965248, + -0.008593744598329067, + 0.020663106814026833, + -0.004417398013174534, + -0.0032205521129071712, + 0.02726677991449833, + -0.0013075609458610415, + 0.03202052786946297, + 0.010281100869178772, + -0.012770092114806175, + -0.009810211136937141, + 0.003601748961955309, + -0.0013573127798736095, + 0.025248680263757706, + -0.010651086457073689, + -0.012018909677863121, + -0.017333241179585457, + -0.019867079332470894, + -0.018925298005342484, + -0.05009374022483826, + 0.008330270648002625, + 0.018611371517181396, + -0.00341115053743124, + 0.01877954602241516, + -0.028051597997546196, + -0.021044304594397545, + 0.01620086282491684, + -0.011682559736073017, + -0.03681912273168564, + -0.02298392355442047, + 0.03773847967386246, + 0.008487233892083168, + 0.011312575079500675, + 0.003170099575072527, + 0.014709710143506527, + -0.008038767613470554, + -0.018465619534254074, + -0.012501011602580547, + 0.03639307990670204, + 0.05489233508706093, + 0.02261393703520298, + -0.008049978874623775, + -0.002999121556058526, + 0.005504929926246405, + 0.025383220985531807, + 0.028163714334368706, + 0.023051192983984947, + 0.007775292731821537, + -0.0029038223437964916, + 0.010768808424472809, + 0.023477235808968544, + -0.013386733829975128, + -0.025091717019677162, + 0.015819665044546127, + -0.011906793341040611, + 0.013667025603353977, + 0.02367904596030712, + 0.010180195793509483, + 0.015685126185417175, + 0.0442860946059227, + 0.020259486511349678, + -0.0070241112262010574, + -0.005045251455157995, + 0.006054301746189594, + -0.009871874935925007, + 0.023746317252516747, + 0.014507900923490524, + -0.00284075690433383, + -0.05713466927409172, + 0.009328109212219715, + -0.007965891622006893, + -0.002325020032003522, + -0.013566120527684689, + 0.014272455126047134, + 0.014519112184643745, + 0.0011926413280889392, + 0.0015261885710060596, + -0.024329323321580887, + -0.018375925719738007, + -0.03789544478058815, + -0.002999121556058526, + -0.006715789902955294, + 0.006357016507536173, + -0.02318573370575905, + -0.0054797036573290825, + -0.00955234281718731, + 0.005953396670520306, + -0.008941306732594967, + -0.004963966552168131, + 0.015135753899812698, + -0.03484586998820305, + -0.014440630562603474, + -0.02542806603014469, + -0.03302957862615585, + -0.06462406367063522, + -0.0031616908963769674, + -0.016514789313077927, + 0.002689399290829897, + -0.022871805354952812, + 0.013913681730628014, + -0.007713628932833672, + 0.019373765215277672, + 0.04933134838938713, + 0.02132459543645382, + -0.018499255180358887, + -0.005373192485421896, + 0.014956367202103138, + -0.007629541214555502, + 0.011155610904097557, + 0.027894634753465652, + -0.014866674318909645, + 0.03563068434596062, + -0.026975277811288834, + -0.01796109415590763, + 0.01102107111364603, + 0.037828173488378525, + -0.024060243740677834, + 0.0031224500853568316, + -0.049600426107645035, + -0.01609995774924755, + -0.012422529980540276, + -0.004465047270059586, + -0.01701931469142437, + -0.006659731734544039, + -0.002676786156371236, + 0.036774277687072754, + 0.00131877267267555, + -0.0012837362010031939, + -0.019900713115930557, + -0.03764878585934639, + 0.011772253550589085, + 0.013240981847047806, + 0.04789625108242035, + -0.021055515855550766, + -0.011346209794282913, + 0.03486829251050949, + 0.006844724528491497, + 0.02028191089630127, + -0.0006425688043236732, + -0.05619288980960846, + -0.01194042805582285, + -0.006962446961551905, + -0.036774277687072754, + 0.003702653804793954, + 0.020091312006115913, + -0.0024497497361153364, + -0.004226799588650465, + 0.013151288963854313, + -0.009187962859869003, + -0.003425165079534054, + 0.028701873496174812, + -0.020450085401535034, + -0.02423962950706482, + -0.005566594190895557, + 0.002982304198667407, + -0.02659408003091812, + -0.02390328049659729, + 0.019396187737584114, + -0.004787383135408163, + -0.03253626450896263, + 0.007696811109781265, + 0.024912329390645027, + -0.041797105222940445, + 0.0034616030752658844, + 0.014608805999159813, + 0.023723892867565155, + -0.010034444741904736, + 0.013263405300676823, + 0.002327822847291827, + -0.027558283880352974, + -0.01688477396965027, + -0.03473375365138054, + -0.011116370558738708, + -0.032939884811639786, + 0.047268398106098175, + -0.008403146639466286, + -0.01538241095840931, + 0.013846412301063538, + -0.0025268299505114555, + -0.04152802377939224, + -0.003582128556445241, + 0.023836009204387665, + 0.047402940690517426, + 0.018633795902132988, + 0.035384029150009155, + 0.028118867427110672, + -0.010499728843569756, + 0.03137025237083435, + 0.007203497923910618, + -0.028230983763933182, + -0.027244357392191887, + 0.030226660892367363, + -0.021268537268042564, + -0.0319308340549469, + 0.004484667908400297, + -0.027939481660723686, + 0.027311626821756363, + -0.02120126783847809, + 0.002760873641818762, + 0.02776009403169155, + 0.011413480155169964, + 0.004010974895209074, + -0.012332837097346783, + -0.010628663003444672, + 0.03361258655786514, + 0.01688477396965027, + -0.020831281319260597, + -0.021481558680534363, + -0.013846412301063538, + 0.021616099402308464, + -0.017568686977028847, + 0.004624813795089722, + -0.005953396670520306, + 0.046326618641614914, + -0.007231527008116245, + -0.027356473729014397, + -0.006015060935169458, + 0.029060646891593933, + 0.012669187039136887, + 0.01265797484666109, + 0.016156015917658806, + 0.008341481909155846, + 0.000059386813518358395, + 0.011592866852879524, + -0.016514789313077927, + 0.04430851712822914, + -0.013240981847047806, + 0.023006346076726913, + 0.0028071217238903046, + -0.02948669157922268, + 0.01364460214972496, + 0.000743473821785301, + -0.030742397531867027, + -0.03056301176548004, + 0.03190841153264046, + 0.06628338992595673, + 0.00845920480787754, + 0.041797105222940445, + -0.01275887992233038, + 0.005549776367843151, + -0.015898147597908974, + 0.035742804408073425, + -0.060229089111089706, + 0.002962683793157339, + -0.013779141940176487, + -0.011273333802819252, + 0.004389368463307619, + 0.01854410208761692, + 0.012444953434169292, + 0.031549639999866486, + 0.017232336103916168, + -0.0538608618080616, + -0.01993434876203537, + 0.032715652137994766, + -0.02050614356994629, + 0.060677554458379745, + 0.031033901497721672, + 0.006357016507536173, + 0.026033496484160423, + -0.006373834330588579, + -0.026975277811288834, + 0.00006919702718732879, + 0.015662701800465584, + 0.040496550500392914, + -0.006771848537027836, + 0.0033971359953284264, + 0.036191269755363464, + 0.006727001629769802, + 0.017871402204036713, + 0.006228082347661257, + 0.0002415764465695247, + -0.002595501486212015, + 0.02365662343800068, + -0.017310818657279015, + -0.010168984532356262, + -0.051573678851127625, + 0.00368863926269114, + -0.007808927912265062, + 0.02717708796262741, + -0.012747668661177158, + -0.01066790334880352, + -0.006743819452822208, + 0.01657084748148918, + 0.005628257989883423, + -0.022804535925388336, + -0.006099148187786341, + 0.001831706496886909, + 0.02320815622806549, + -0.0065756444819271564, + -0.004092259332537651, + -0.01618965156376362, + 0.0036606101784855127, + 0.020562201738357544, + -0.03634823486208916, + 0.016940832138061523, + -0.014900309033691883, + -0.005521747283637524, + -0.018005941063165665, + 0.023051192983984947, + 0.01653721183538437, + 0.02518141083419323, + 0.0010812253458425403, + 0.031190864741802216, + -0.02728920429944992, + -0.019328918308019638, + -0.001621487783268094, + -0.015516950748860836 + ] + }, + { + "HotelId": "2", + "HotelName": "Old Century Hotel", + "Description": "The hotel is situated in a nineteenth century plaza, which has been expanded and renovated to the highest architectural standards to create a modern, functional and first-class hotel in which art and unique historical elements coexist with the most modern comforts. The hotel also regularly hosts events like wine tastings, beer dinners, and live music.", + "Description_fr": "L'hĆ“tel est situĆ© sur une place du XIXe siĆØcle, qui a Ć©tĆ© agrandie et rĆ©novĆ©e selon les normes architecturales les plus Ć©levĆ©es pour crĆ©er un hĆ“tel moderne, fonctionnel et de premiĆØre classe dans lequel l'art et des Ć©lĆ©ments historiques uniques coexistent avec le confort le plus moderne. L'hĆ“tel accueille Ć©galement rĆ©guliĆØrement des Ć©vĆ©nements tels que des dĆ©gustations de vins, des dĆ®ners de biĆØre et de la musique live.", + "Category": "Boutique", + "Tags": [ + "pool", + "free wifi", + "concierge" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2019-02-18T00:00:00Z", + "Rating": 3.6, + "Address": { + "StreetAddress": "140 University Town Center Dr", + "City": "Sarasota", + "StateProvince": "FL", + "PostalCode": "34243", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -82.452843, + 27.384417 + ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "tv", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 127.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 63.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.04679151996970177, + -0.012856527231633663, + 0.03391271084547043, + -0.015251807868480682, + -0.003325540339574218, + -0.014717047102749348, + -0.012020964175462723, + -0.01164217572659254, + 0.0024676956236362457, + -0.03738865256309509, + 0.006550813093781471, + 0.02115645259618759, + -0.060205090790987015, + -0.03607403486967087, + 0.002716972026973963, + 0.03609631583094597, + -0.06065072491765022, + 0.01404859684407711, + 0.05227281525731087, + 0.017435412853956223, + -0.020632833242416382, + -0.017524538561701775, + -0.041287947446107864, + -0.07085572928190231, + 0.015218385495245457, + 0.013569541275501251, + -0.06403753906488419, + 0.050445716828107834, + 0.020855650305747986, + 0.055927008390426636, + -0.001703155692666769, + -0.02101162075996399, + 0.07241544872522354, + 0.038101665675640106, + -0.023930521681904793, + -0.05508030578494072, + 0.015051272697746754, + 0.011876133270561695, + 0.016488440334796906, + 0.014338258653879166, + -0.032709501683712006, + 0.012098950333893299, + 0.01219921838492155, + -0.011463922448456287, + -0.0008432221948169172, + -0.027250491082668304, + -0.0243315901607275, + 0.049955520778894424, + -0.007759593892842531, + 0.007252685725688934, + -0.042847663164138794, + 0.006422693375498056, + -0.0024231323041021824, + -0.0005932496278546751, + -0.03939400613307953, + 0.03542786464095116, + -0.008795691654086113, + -0.04821754992008209, + 0.05739760026335716, + 0.011268958449363708, + 0.05565962940454483, + 0.0020095286890864372, + 0.06706784665584564, + 0.0162099190056324, + -0.06876125186681747, + 0.03190736100077629, + -0.02644835039973259, + 0.02979060262441635, + 0.016321327537298203, + -0.009347163140773773, + 0.03836904838681221, + 0.03634141385555267, + -0.00420288136228919, + -0.043293297290802, + -0.03625228628516197, + -0.026849420741200447, + 0.005876792129129171, + -0.00022229454771149904, + -0.004768278915435076, + 0.015541469678282738, + -0.06662221252918243, + -0.008533881977200508, + -0.03498223423957825, + 0.07210350781679153, + 0.014249132014811039, + -0.005882362835109234, + -0.005191630683839321, + 0.011931837536394596, + -0.030904686078429222, + 0.045142676681280136, + 0.04471932351589203, + 0.04656870290637016, + 0.03411324694752693, + 0.005637264344841242, + 0.015485765412449837, + -0.017390849068760872, + 0.011987541802227497, + -0.009024078957736492, + -0.013235315680503845, + 0.06323540210723877, + 0.047192592173814774, + -0.05815517529845238, + 0.02161322720348835, + -0.012299485504627228, + -0.011408218182623386, + -0.0044312686659395695, + 0.015162681229412556, + -0.029902011156082153, + 0.014806174673140049, + -0.020799946039915085, + -0.07816412299871445, + -0.03019167110323906, + -0.06782542169094086, + -0.009341592900454998, + -0.028253166005015373, + -0.011257817037403584, + 0.028297729790210724, + -0.016299046576023102, + -0.018672045320272446, + -0.0020749811083078384, + -0.005759813357144594, + 0.00004123415783396922, + -0.061853934079408646, + -0.00998776126652956, + -0.008472607471048832, + -0.07598051428794861, + -0.014806174673140049, + -0.04959901422262192, + -0.008600727654993534, + -0.02112302929162979, + -0.019607875496149063, + -0.005623338278383017, + 0.03549471125006676, + -0.013569541275501251, + -0.02754015289247036, + 0.03126119077205658, + 0.022404225543141365, + 0.02155752293765545, + -0.03455888107419014, + -0.014282554388046265, + -0.0031723538413643837, + 0.02368542179465294, + -0.023507168516516685, + -0.02272731065750122, + 0.0036848322488367558, + 0.014004033990204334, + 0.031082939356565475, + 0.00037530699046328664, + -0.03282091021537781, + 0.05147067457437515, + 0.0006635761819779873, + 0.040240708738565445, + 0.015808850526809692, + 0.010906880721449852, + -0.034870825707912445, + 0.012544584460556507, + 0.018504932522773743, + -0.008923811838030815, + -0.0377005971968174, + 0.04915338009595871, + -0.031617701053619385, + 0.007247115485370159, + -0.02591359056532383, + 0.02368542179465294, + 0.014148864895105362, + 0.04901969060301781, + -0.037923414260149, + 0.0058600809425115585, + -0.03360076993703842, + 0.02217026799917221, + 0.006846045143902302, + 0.01673353835940361, + -0.030503615736961365, + 0.0644831731915474, + 0.0430927611887455, + 0.048663180321455, + 0.006311284843832254, + 0.00551749998703599, + 0.019763847813010216, + 0.01079547218978405, + 0.002501118229702115, + 0.010227289982140064, + 0.07820868492126465, + -0.008433614857494831, + -0.027384180575609207, + 0.02113416977226734, + -0.09474168717861176, + 0.010177155956625938, + -0.004333786200731993, + 0.014761610887944698, + -0.012901091016829014, + -0.014171146787703037, + -0.020153775811195374, + 0.03139488399028778, + -0.023128380998969078, + -0.009859642013907433, + -0.0215909443795681, + 0.028921617195010185, + -0.002658482640981674, + -0.0107843317091465, + -0.0646614283323288, + -0.06671134382486343, + 0.009915346279740334, + -0.003687617601826787, + -0.007642615120857954, + -0.04275853931903839, + 0.01623220182955265, + -0.005960348527878523, + -0.01457221619784832, + 0.0007290286011993885, + -0.0013375969137996435, + -0.03021395392715931, + 0.03400183841586113, + 0.02651519514620304, + 0.00499388063326478, + -0.03658651188015938, + -0.06265607476234436, + 0.031127503141760826, + -0.00513592641800642, + 0.05022289976477623, + -0.020632833242416382, + -0.017491117119789124, + -0.020866790786385536, + 0.02807491272687912, + -0.01719031296670437, + 0.0021084037143737078, + -0.006812622770667076, + -0.025156013667583466, + -0.02424246445298195, + -0.008996226824820042, + -0.013335583731532097, + -0.03660879656672478, + -0.02112302929162979, + 0.00048358202911913395, + -0.012555724941194057, + 0.004818412475287914, + -0.06082897633314133, + 0.007525636348873377, + 0.033667612820863724, + 0.049331631511449814, + -0.033779021352529526, + -0.011798148043453693, + 0.029010742902755737, + -0.006233299151062965, + 0.05004464462399483, + 0.004077546764165163, + -0.019585594534873962, + -0.04576656594872475, + 0.030548179522156715, + 0.03680932894349098, + -0.053164079785346985, + 0.01566401869058609, + -0.011302380822598934, + -0.010060177184641361, + 0.029968855902552605, + 0.005523070693016052, + -0.03885924443602562, + -0.009686958976089954, + -0.012444316409528255, + -0.012544584460556507, + 0.08306609094142914, + 0.0016293475637212396, + -0.030124826356768608, + -0.004534321371465921, + -0.005770954303443432, + -0.03402411937713623, + -0.00016737368423491716, + 0.040218427777290344, + -0.007024298422038555, + -0.0270276740193367, + -0.027139082551002502, + -0.017936749383807182, + -0.039705947041511536, + 0.002127900021150708, + 0.005539781879633665, + -0.029255840927362442, + 0.004367208573967218, + -0.019819552078843117, + 0.01776963658630848, + -0.014639061875641346, + -0.019084256142377853, + -0.061764806509017944, + 0.03709899261593819, + 0.014405104331672192, + -0.04035211727023125, + 0.0433824248611927, + 0.04897512495517731, + 0.006327996030449867, + -0.00996548030525446, + -0.005470151547342539, + 0.025601645931601524, + -0.0243315901607275, + 0.006706784479320049, + -0.0027086164336651564, + -0.00646725669503212, + 0.017635947093367577, + 0.015886835753917694, + -0.027406461536884308, + -0.031550854444503784, + -0.009297030046582222, + -0.03197420760989189, + 0.0242870282381773, + 0.04066406190395355, + 0.010433395393192768, + -0.03418009355664253, + 0.03660879656672478, + 0.0020847294945269823, + 0.00006936912541277707, + 0.022003155201673508, + 0.021178733557462692, + 0.032174739986658096, + 0.012455456890165806, + 0.009285888634622097, + -0.055927008390426636, + -0.028320010751485825, + 0.002256019739434123, + 0.001334811677224934, + 0.025802182033658028, + -0.013101626187562943, + -0.03598490729928017, + 0.007508925162255764, + 0.0058377995155751705, + 0.004988310392946005, + 0.017513398081064224, + 0.03355620428919792, + -0.07295020669698715, + -0.0030358785297721624, + 0.007325101178139448, + -0.01571972295641899, + -0.03943856805562973, + 0.0034453042317181826, + -0.019162241369485855, + 0.013881484977900982, + -0.027228208258748055, + -0.038636427372694016, + 0.040196143090724945, + -0.006678932812064886, + 0.07464361935853958, + 0.026671167463064194, + -0.02595815435051918, + -0.01053923275321722, + -0.05557050183415413, + -0.03413552790880203, + -0.019607875496149063, + 0.056417204439640045, + -0.047281719744205475, + -0.007948988117277622, + -0.03905978053808212, + 0.04211236909031868, + 0.03562840074300766, + -0.06697872281074524, + -0.012444316409528255, + 0.015318652614951134, + 0.04378349334001541, + 0.02912215143442154, + -0.0013828565133735538, + 0.05182718113064766, + 0.0378565676510334, + -0.08235307782888412, + 0.004570528864860535, + -0.03520504757761955, + -0.028453702107071877, + 0.0016432736301794648, + 0.01188727468252182, + -0.010856746695935726, + -0.00513592641800642, + -0.009954338893294334, + -0.006450545508414507, + -0.014739328995347023, + -0.04516495764255524, + -0.03892609104514122, + -0.027852095663547516, + 0.0048574055545032024, + -0.007926706224679947, + -0.05900188162922859, + 0.0377228781580925, + 0.030102545395493507, + 0.00022107601398602128, + 0.0069351717829704285, + -0.04253572225570679, + 0.032041050493717194, + -0.0029857447370886803, + 0.012622569687664509, + -0.03712127357721329, + 0.03578437119722366, + 0.0019231871701776981, + 0.023106098175048828, + -0.008249790407717228, + 0.00420288136228919, + 0.027205927297472954, + 0.019730424508452415, + -0.04710346460342407, + -0.017156891524791718, + -0.03883696347475052, + 0.02368542179465294, + -0.021267861127853394, + 0.03409096598625183, + -0.006188735831528902, + -0.026893984526395798, + -0.011809288524091244, + 0.017502257600426674, + -0.03905978053808212, + 0.0019245798466727138, + -0.048663180321455, + -0.02809719368815422, + -0.044474225491285324, + 0.01488415990024805, + -0.008650860749185085, + 0.007414227817207575, + 0.028765644878149033, + -0.027852095663547516, + -0.011207683011889458, + 0.016844946891069412, + -0.009820649400353432, + -0.013703230768442154, + -0.015608314424753189, + 0.025802182033658028, + -0.0433601438999176, + 0.0002578059502411634, + 0.027384180575609207, + 0.04683608561754227, + 0.028765644878149033, + 0.022359661757946014, + 0.013558399863541126, + 0.001058379653841257, + -0.009308170527219772, + -0.031595416367053986, + -0.03567296266555786, + -0.055347684770822525, + -0.04001789167523384, + -0.0007241544662974775, + -0.020844507962465286, + -0.01535207498818636, + -0.012878809124231339, + -0.04376121237874031, + 0.06586463749408722, + -0.05022289976477623, + 0.009542128071188927, + 0.010628359392285347, + 0.006807052064687014, + -0.05057940632104874, + -0.012800822965800762, + 0.005041229538619518, + -0.029968855902552605, + 0.00754234753549099, + 0.05450098216533661, + 0.013324442319571972, + 0.07500012218952179, + -0.000094000824901741, + -0.03658651188015938, + -0.0077261715196073055, + 0.0003780921979341656, + -0.024621251970529556, + -0.02163550816476345, + 0.0028005281928926706, + 0.002643164014443755, + 0.01771393232047558, + 0.012388612143695354, + 0.009581120684742928, + -0.017145751044154167, + 0.0035789944231510162, + -0.03582893684506416, + -0.02372998557984829, + 0.01723487675189972, + 0.02277187444269657, + -0.03609631583094597, + -0.03848045691847801, + 0.07424254715442657, + 0.011564190499484539, + -0.05664002150297165, + -0.029411813244223595, + -0.016633272171020508, + 0.061764806509017944, + 0.02315066196024418, + 0.006144172511994839, + -0.01351383700966835, + 0.0030470192432403564, + 0.05998227372765541, + 0.004918680060654879, + 0.012901091016829014, + 0.019518747925758362, + 0.009458571672439575, + 0.0020443438552320004, + -0.004322645254433155, + -0.012633711099624634, + -0.023885957896709442, + -0.04197867959737778, + -0.00005648753358400427, + -0.028342293575406075, + -0.015797708183526993, + -0.00525847589597106, + -0.007999122142791748, + 0.008026974275708199, + -0.007882143370807171, + -0.0018883721204474568, + 0.037076711654663086, + -0.029033025726675987, + -0.0243315901607275, + -0.023596296086907387, + -0.0026278451550751925, + 0.008238649927079678, + 0.01299021765589714, + 0.020655114203691483, + 0.016098512336611748, + 0.025690773501992226, + 0.06568638235330582, + -0.003177924081683159, + -0.0014497016090899706, + 0.04108741134405136, + -0.004016272258013487, + -0.007793016266077757, + -0.02057712897658348, + 0.0034258076921105385, + 0.011358085088431835, + 0.02923355996608734, + 0.0148730194196105, + 0.019151100888848305, + 0.014327118173241615, + -0.021368127316236496, + -0.013736654072999954, + 0.0162433423101902, + 0.018660904839634895, + -0.014215709641575813, + 0.011146408505737782, + 0.003325540339574218, + 0.04099828377366066, + -0.029857447370886803, + -0.06056159734725952, + -0.008428044617176056, + -0.02161322720348835, + -0.011235535144805908, + -0.013680949807167053, + 0.0006886430783197284, + -0.02321750670671463, + 0.019240228459239006, + -0.013881484977900982, + 0.018716609105467796, + 0.014795033261179924, + 0.033756740391254425, + 0.00473485654219985, + 0.038101665675640106, + 0.018493792042136192, + -0.037500061094760895, + -0.018081581220030785, + -0.015597173944115639, + -0.019329354166984558, + -0.02328435145318508, + 0.0025763188023120165, + -0.009308170527219772, + 0.0030247375834733248, + 0.05846711993217468, + 0.014204569160938263, + -0.03832448273897171, + 0.002219812013208866, + -0.009263606742024422, + -0.006233299151062965, + 0.023128380998969078, + 0.045053549110889435, + 0.0025944227818399668, + 0.04538777470588684, + -0.015552610158920288, + 0.0048880428075790405, + -0.004996666219085455, + 0.03634141385555267, + 0.026047280058264732, + -0.02698311023414135, + 0.007419798523187637, + 0.05071309581398964, + 0.01680038496851921, + -0.00005422455069492571, + -0.019284790381789207, + 0.020354311913251877, + -0.004874116741120815, + 0.04358296096324921, + 0.006004911847412586, + 0.029478657990694046, + 0.0010883206268772483, + 0.00447026127949357, + -0.013625245541334152, + 0.018237551674246788, + 0.022315099835395813, + -0.0060773272998631, + 0.016365891322493553, + 0.02004236914217472, + -0.01995324157178402, + -0.015875695273280144, + 0.06519618630409241, + 0.04968813806772232, + 0.015496905893087387, + 0.029367249459028244, + 0.010043465532362461, + -0.0016864443896338344, + -0.0031194346956908703, + -0.028364574536681175, + 0.023039253428578377, + -0.005155423190444708, + -0.005130356177687645, + 0.007325101178139448, + -0.03077099472284317, + 0.06800367683172226, + -0.014761610887944698, + -0.023039253428578377, + 0.0068794675171375275, + 0.009792797267436981, + -0.008227509446442127, + 0.04590025544166565, + -0.0029857447370886803, + -0.01719031296670437, + -0.010723057202994823, + -0.025623928755521774, + -0.0008550593629479408, + -0.017078904435038567, + -0.008734417147934437, + -0.0487077459692955, + -0.041221100836992264, + 0.00013708454207517207, + -0.03565068170428276, + -0.01057265605777502, + 0.014995568431913853, + -0.00894052255898714, + -0.007715030573308468, + 0.01056708488613367, + 0.00836119893938303, + 0.026693448424339294, + 0.00662879878655076, + 0.031105220317840576, + 0.013302161358296871, + -0.0022031008265912533, + -0.014627920463681221, + 0.025245139375329018, + 0.042892228811979294, + 0.01623220182955265, + 0.030971530824899673, + -0.024420717731118202, + -0.028943898156285286, + 0.03516048565506935, + 0.03897065296769142, + -0.005475722253322601, + 0.01002118457108736, + -0.026715731248259544, + 0.007921135984361172, + 0.019273649901151657, + 0.03025851771235466, + 0.00006358111568260938, + 0.009731522761285305, + 0.025133730843663216, + 0.029322687536478043, + 0.020922495052218437, + 0.0189282838255167, + -0.010533662512898445, + -0.029255840927362442, + 0.028943898156285286, + 0.03560611978173256, + -0.006043904926627874, + 0.0017686081118881702, + -0.005665116477757692, + -0.03275406360626221, + -0.01105171162635088, + -0.007982410490512848, + 0.025490237399935722, + 0.008879248052835464, + 0.054768361151218414, + -0.0121546545997262, + -0.018081581220030785, + 0.0019106537802144885, + 0.020142635330557823, + -0.0013285449240356684, + -0.0023242575116455555, + -0.05240650475025177, + 0.03304372727870941, + 0.07183612883090973, + 0.03195192292332649, + 0.047727350145578384, + 0.02435387298464775, + 0.03141716495156288, + 0.013680949807167053, + -0.017368566244840622, + -0.026804856956005096, + -0.00013003447384107858, + -0.010411113500595093, + -0.003988420125097036, + 0.018204130232334137, + -0.029590066522359848, + 0.004136036150157452, + 0.014917582273483276, + 0.0039160046726465225, + -0.020944776013493538, + 0.06876125186681747, + 0.022315099835395813, + 0.007241544779390097, + -0.0008975337841548026, + 0.004085902590304613, + 0.008923811838030815, + -0.0000017434758774470538, + 0.03580665588378906, + -0.03168454393744469, + 0.008879248052835464, + -0.024688098579645157, + -0.02803034894168377, + -0.04226833954453468, + 0.018995128571987152, + 0.006289003416895866, + -0.004598380997776985, + -0.014538793824613094, + 0.011987541802227497, + 0.011653317138552666, + 0.021824901923537254, + -0.014750470407307148, + 0.03077099472284317, + 0.013792358338832855, + 0.02586902678012848, + -0.02865423634648323, + 0.00035267716157250106, + -0.005027303472161293, + 0.04919794201850891, + 0.03569524735212326, + -0.024598971009254456, + 0.013914907351136208, + -0.005227838642895222, + -0.01719031296670437, + 0.02102276124060154, + 0.009558839723467827, + -0.013970611616969109, + -0.04358296096324921, + -0.021323565393686295, + -0.014951005578041077, + -0.001831275294534862, + -0.00972038134932518, + -0.015274089761078358, + 0.05833343043923378, + -0.009893064387142658, + 0.0049688140861690044, + 0.005826658569276333, + -0.002694690367206931, + 0.053164079785346985, + -0.014861878007650375, + 0.03357848525047302, + 0.011229964904487133, + -0.008071537129580975, + 0.005609412211924791, + -0.014204569160938263, + -0.024710379540920258, + -0.0048100571148097515, + -0.033244263380765915, + 0.024598971009254456, + -0.04474160820245743, + 0.016053948551416397, + -0.02053256519138813, + -0.056951966136693954, + 0.025579364970326424, + -0.05815517529845238, + 0.007052150554955006, + 0.01994210109114647, + 0.004924250766634941, + -0.0024287027772516012, + -0.03983963653445244, + 0.022537916898727417, + 0.06216587871313095, + 0.00618316512554884, + 0.021223297342658043, + -0.01293451339006424, + 0.00836119893938303, + -0.006110749673098326, + 0.02923355996608734, + 0.003893723012879491, + -0.0074253687635064125, + 0.04516495764255524, + 0.013625245541334152, + -0.02269388735294342, + -0.043426986783742905, + 0.016031665727496147, + -0.02214798703789711, + -0.01050024013966322, + 0.010372120887041092, + -0.0006433834205381572, + -0.013380146585404873, + 0.02754015289247036, + -0.03841361030936241, + 0.006032763980329037, + -0.015987103804945946, + 0.03143944591283798, + -0.03072643280029297, + -0.01774735562503338, + 0.005225053057074547, + 0.026336941868066788, + -0.007174700032919645, + -0.030481332913041115, + -0.015519187785685062, + 0.01667783595621586, + -0.0035372162237763405, + 0.005589915439486504, + -0.023975083604454994, + 0.0107676200568676, + -0.006417123135179281, + -0.0016182067338377237, + 0.015541469678282738, + 0.03397955745458603, + -0.01614307425916195, + -0.027116799727082253, + 0.023328915238380432, + 0.01539663877338171, + -0.014505371451377869, + -0.015106976963579655, + -0.02208114229142666, + -0.00011079911928391084, + 0.02642606943845749, + 0.011508486233651638, + 0.024108774960041046, + 0.008255361579358578, + -0.022883282974362373, + -0.012221499346196651, + -0.031105220317840576, + -0.0027002606075257063, + -0.03471485152840614, + 0.045521464198827744, + -0.012745118699967861, + 0.004773849155753851, + -0.029545502737164497, + 0.014427385292947292, + 0.01408202014863491, + -0.024509845301508904, + -0.0020332029089331627, + -0.004815627355128527, + 0.0378788523375988, + -0.0162656232714653, + 0.018215270712971687, + 0.007971270009875298, + -0.018783453851938248, + -0.0067513482645154, + -0.029835164546966553, + -0.009519846178591251, + 0.02477722428739071, + -0.05289670079946518, + 0.02811947651207447, + 0.0037015436682850122, + 0.01786990463733673, + 0.008790121413767338, + 0.03364533185958862, + 0.01134694367647171, + 0.005417232867330313, + 0.040730904787778854, + -0.009547698311507702, + -0.029344968497753143, + -0.0020095286890864372, + 0.005381024908274412, + -0.011252246797084808, + 0.04516495764255524, + -0.014995568431913853, + -0.009012938477098942, + 0.02814175747334957, + 0.01673353835940361, + -0.005848939996212721, + 0.044073157012462616, + -0.025757618248462677, + 0.004058050457388163, + 0.0033617480657994747, + 0.007269396912306547, + 0.013413568958640099, + 0.0031723538413643837, + 0.015987103804945946, + -0.026782575994729996, + 0.028787925839424133, + 0.011530768126249313, + -0.034402910619974136, + -0.009530987590551376, + 0.02263818308711052, + -0.024621251970529556, + -0.032709501683712006, + 0.0540107861161232, + -0.021936310455203056, + -0.014494230970740318, + -0.015964820981025696, + 0.01297907717525959, + 0.009174480102956295, + 0.0010416683508083224, + 0.015619455836713314, + -0.0009894457180052996, + 0.04004017263650894, + 0.009012938477098942, + -0.051604364067316055, + -0.0017351856222376227, + -0.009742663241922855, + 0.009714811109006405, + 0.03551699221134186, + -0.005247334949672222, + 0.02816404029726982, + -0.04529864713549614, + 0.016354750841856003, + -0.02972375601530075, + 0.02972375601530075, + 0.00813281163573265, + 0.003283762140199542, + 0.017702791839838028, + -0.01236633025109768, + -0.017479974776506424, + 0.0042390888556838036, + -0.0020847294945269823, + -0.0035065789707005024, + -0.0188280176371336, + 0.05026746168732643, + -0.030971530824899673, + -0.006756918504834175, + 0.003526075277477503, + 0.006233299151062965, + -0.01029970496892929, + 0.020265184342861176, + -0.016978638246655464, + 0.028765644878149033, + -0.012889949604868889, + -0.003125005168840289, + 0.02477722428739071, + -0.02103390358388424, + -0.03400183841586113, + -0.018605200573801994, + -0.030459051951766014, + 0.02049914188683033, + -0.019630156457424164, + 0.01678924262523651, + 0.024598971009254456, + -0.00633356673642993, + 0.0094530014321208, + -0.0008216368150897324, + -0.04275853931903839, + 0.02869880013167858, + 0.019641298800706863, + 0.028943898156285286, + 0.008539452217519283, + 0.002721149707213044, + -0.0021460040006786585, + -0.02923355996608734, + 0.019719284027814865, + 0.0030860123224556446, + 0.010639500804245472, + -0.01112412754446268, + 0.04367208480834961, + 0.023395759984850883, + 0.006378130055963993, + 0.0148730194196105, + 0.035873498767614365, + -0.023574013262987137, + 0.001668340526521206, + 0.03676476702094078, + -0.020855650305747986, + 0.008233079686760902, + 0.030459051951766014, + -0.02811947651207447, + 0.032197024673223495, + -0.003325540339574218, + 0.023975083604454994, + 0.006411552429199219, + 0.01236633025109768, + 0.03438062593340874, + -0.013758935034275055, + -0.017635947093367577, + 0.017635947093367577, + -0.003882582066580653, + -0.0005420714151114225, + -0.0018716608174145222, + -0.03616316244006157, + 0.01828211545944214, + -0.03745549917221069, + 0.018571777269244194, + 0.010711915791034698, + -0.012778542004525661, + -0.005692968610674143, + 0.0008104959852062166, + 0.004553817678242922, + 0.05303039029240608, + -0.07433167099952698, + -0.014717047102749348, + -0.03905978053808212, + -0.01351383700966835, + -0.01163103524595499, + 0.005665116477757692, + -0.02488863281905651, + 0.048885997384786606, + 0.0323975570499897, + 0.006829333957284689, + -0.024131055921316147, + 0.001580606447532773, + -0.005665116477757692, + 0.00018556458235252649, + 0.04803929477930069, + -0.01051695179194212, + -0.01051695179194212, + 0.02589130774140358, + 0.0021780338138341904, + 0.036475103348493576, + 0.05031202733516693, + 0.00646725669503212, + -0.002608348848298192, + -0.04516495764255524, + 0.027361899614334106, + 0.009068642742931843, + -0.01402631588280201, + -0.026069561019539833, + 0.004428483080118895, + -0.046212196350097656, + -0.013469273224473, + 0.0027963505126535892, + 0.033288825303316116, + -0.0044312686659395695, + -0.00863415002822876, + -0.034358344972133636, + -0.029902011156082153, + 0.01729058101773262, + -0.009536557830870152, + 0.009881923906505108, + 0.02967919409275055, + -0.005684612784534693, + 0.025156013667583466, + 0.04661326855421066, + -0.010060177184641361, + -0.012655992060899734, + -0.024108774960041046, + -0.017569102346897125, + 0.021824901923537254, + -0.0007749845972284675, + -0.04173358157277107, + 0.01737970858812332, + 0.009798367507755756, + 0.030459051951766014, + 0.041310228407382965, + 0.00996548030525446, + -0.013357865624129772, + 0.00007415620348183438, + 0.03141716495156288, + 0.0021710707806050777, + 0.026247816160321236, + 0.015574892051517963, + 0.013881484977900982, + 0.004971599206328392, + -0.011157549917697906, + 0.024621251970529556, + -0.012176936492323875, + 0.008589586243033409, + -0.026292378082871437, + 0.003857515286654234, + -0.024688098579645157, + 0.015931399539113045, + 0.004169458989053965, + 0.002988529857248068, + 0.007118995767086744, + -0.024019647389650345, + -0.013836921192705631, + 0.03282091021537781, + -0.0074030873365700245, + 0.0378120057284832, + 0.025066886097192764, + -0.01675582118332386, + 0.006623228546231985, + 0.030102545395493507, + -0.03816851228475571, + 0.008344488218426704, + -0.013380146585404873, + -0.02600271627306938, + -0.023440323770046234, + -0.016332469880580902, + 0.03495994955301285, + -0.024220183491706848, + 0.022270536050200462, + -0.00501059228554368, + -0.013658667914569378, + -0.04093144088983536, + -0.017992453649640083, + 0.0028242026455700397, + -0.030637305229902267, + 0.017424270510673523, + -0.02542339265346527, + 0.009001797065138817, + 0.007252685725688934, + 0.0296346303075552, + 0.000721369287930429, + 0.010054606944322586, + 0.007520066108554602, + -0.01733514480292797, + -0.0013543082168325782, + -0.0008042292902246118, + 0.00946414191275835, + 0.029434094205498695, + -0.001448308932594955, + 0.0014204569160938263, + 0.013446992263197899, + -0.0003241287777200341, + -0.0006346796290017664, + -0.01402631588280201, + 0.02638150565326214, + -0.018092721700668335, + -0.008517171256244183, + 0.01429369580000639, + -0.012188076972961426, + 0.0015569321112707257, + -0.013948329724371433, + -0.0023242575116455555, + 0.00028078394825570285, + 0.012132372707128525, + 0.000200883237994276, + 0.024487562477588654, + -0.016967497766017914, + 0.040797751396894455, + 0.004155532922595739, + -0.01946304552257061, + 0.014126583002507687, + -0.01666669361293316, + -0.03983963653445244, + 0.0041053988970816135, + -0.0009629862033762038, + -0.009107635356485844, + 0.015519187785685062, + -0.01188727468252182, + 0.022838719189167023, + -0.009313740767538548, + 0.0161876380443573, + 0.033712178468704224, + 0.020900212228298187, + 0.04817298427224159, + 0.011001577600836754, + 0.019084256142377853, + -0.00020558328833431005, + 0.005088577978312969, + -0.011112986132502556, + -0.009280318394303322, + -0.01102385949343443, + 0.0377897247672081, + 0.005999341607093811, + -0.010628359392285347, + 0.027339616790413857, + 0.009943198412656784, + 0.006389271002262831, + 0.020242903381586075, + -0.009219043888151646, + -0.00023883172252681106, + 0.017078904435038567, + -0.02004236914217472, + -0.01833781972527504, + 0.006556383334100246, + 0.007687178440392017, + 0.0485740564763546, + -0.0018730534939095378, + -0.012845386750996113, + 0.03616316244006157, + -0.005113644991070032, + 0.019106537103652954, + -0.002868765965104103, + 0.007776305079460144, + 0.0008265109499916434, + 0.03446975350379944, + 0.043137326836586, + 0.03498223423957825, + 0.022270536050200462, + -0.007336242124438286, + 0.004601166117936373, + 0.006656650919467211, + -0.008806833066046238, + 0.005445084534585476, + 0.01997552253305912, + -0.00580994738265872, + -0.011530768126249313, + -0.004748782142996788, + -0.040753185749053955, + -0.00045294471783563495, + 0.006901749409735203, + -0.02000894583761692, + -0.01137479580938816, + 0.020833367481827736, + 0.019774988293647766, + -0.061230048537254333, + 0.010277423076331615, + 0.012009823694825172, + -0.014861878007650375, + 0.030414488166570663, + -0.009547698311507702, + 0.001467805472202599, + -0.010533662512898445, + 0.006918460596352816, + -0.01995324157178402, + 0.00944186095148325, + 0.021212156862020493, + 0.032776348292827606, + 0.01161989476531744, + -0.0013835529098287225, + 0.0033533922396600246, + 0.008238649927079678, + 0.012310625985264778, + 0.029255840927362442, + 0.02482178807258606, + -0.008160663768649101, + -0.003125005168840289, + -0.014171146787703037, + 0.024086492136120796, + 0.019730424508452415, + 0.04204552248120308, + 0.01721259579062462, + -0.042936790734529495, + 0.006550813093781471, + 0.05231737717986107, + -0.013558399863541126, + -0.004849049728363752, + -0.00618316512554884, + 0.008444755338132381, + 0.010171585716307163, + -0.008372340351343155, + 0.016622131690382957, + -0.02214798703789711, + -0.03890380635857582, + -0.020387733355164528, + -0.041310228407382965, + 0.007653756067156792, + -0.04440738260746002, + -0.013357865624129772, + 0.006422693375498056, + -0.006678932812064886, + -0.021356986835598946, + -0.011241106316447258, + 0.03083784133195877, + -0.012433175928890705, + 0.0024398434907197952, + -0.008322206325829029, + -0.00688503822311759, + -0.012967935763299465, + 0.002066625514999032, + 0.009870782494544983, + 0.02909987047314644, + 0.03729952871799469, + 0.051114168018102646, + -0.028275446966290474, + -0.012310625985264778, + -0.021869465708732605, + -0.015307512134313583, + 0.019797269254922867, + 0.0006722799735143781, + -0.004069191403687, + -0.054857488721609116, + 0.030993811786174774, + 0.005225053057074547, + -0.014371681958436966, + 0.008372340351343155, + 0.012132372707128525, + -0.00006588761607417837, + -0.006768059451133013, + -0.04159989207983017, + 0.025044605135917664, + 0.02749558910727501, + -0.01293451339006424, + -0.009458571672439575, + -0.002787994919344783, + -0.0003686921263579279, + 0.018672045320272446, + 0.025534801185131073, + -0.018126143142580986, + 0.02273845113813877, + 0.015329794026911259, + -0.03516048565506935, + -0.01139150746166706, + 0.0024593400303274393, + -0.04750453308224678, + -0.037032146006822586, + 0.009575550444424152, + 0.0001256825780728832, + -0.018137285485863686, + -0.015017850324511528, + -0.010661782696843147, + 0.0036653359420597553, + -0.002619489561766386, + -0.02157980389893055, + -0.0023855320177972317, + 0.012689415365457535, + 0.024509845301508904, + 0.004278081934899092, + 0.015597173944115639, + -0.012477738782763481, + -0.0020902997348457575, + -0.006133031565696001, + 0.05187174305319786, + -0.014850737527012825, + -0.013435850851237774, + 0.019719284027814865, + -0.010450106114149094, + 0.007598051801323891, + -0.014338258653879166, + -0.003693187842145562, + -0.02214798703789711, + -0.007169129326939583, + 0.009235754609107971, + 0.015797708183526993, + 0.02640378661453724, + 0.030971530824899673, + -0.0053838100284338, + 0.027183646336197853, + -0.007681608200073242, + 0.02375226654112339, + -0.010600508190691471, + -0.009336022660136223, + -0.06065072491765022, + -0.02640378661453724, + 0.0036040612030774355, + 0.005255690310150385, + -0.04266941174864769, + -0.007798586972057819, + -0.010639500804245472, + -0.023975083604454994, + 0.007219263352453709, + 0.02370770461857319, + -0.013703230768442154, + -0.04373893141746521, + -0.014126583002507687, + 0.0050774370320141315, + -0.02696082927286625, + -0.004567743744701147, + -0.023618577048182487, + -0.0031639980152249336, + 0.0189060028642416, + 0.0012247959384694695, + 0.01571972295641899, + -0.035962626338005066, + -0.017992453649640083, + -0.0028242026455700397, + 0.0376560352742672, + -0.029500940814614296, + 0.005798806436359882, + 0.0016251697670668364, + 0.006405982188880444, + 0.005637264344841242, + -0.01776963658630848, + 0.00649510882794857, + 0.0030832269694656134, + -0.007564629428088665, + -0.01001561339944601, + -0.005665116477757692, + 0.03683160990476608, + -0.03560611978173256, + 0.014104301109910011, + -0.017925608903169632, + -0.03709899261593819, + -0.017134608700871468, + -0.005484077613800764, + -0.020365452393889427, + 0.01137479580938816, + -0.024197900667786598, + 0.013602963648736477, + 0.024442998692393303, + -0.039193470031023026, + 0.007887713611125946, + 0.03360076993703842, + 0.006534101907163858, + -0.018594060093164444, + -0.03415780887007713, + -0.041332509368658066, + -0.02809719368815422, + -0.019830692559480667, + -0.00015405690646730363, + -0.03511592373251915, + -0.022905563935637474, + -0.00782643910497427, + 0.020220622420310974, + -0.006729066371917725, + 0.0487523078918457, + -0.005247334949672222, + 0.008266502059996128, + -0.0161319337785244, + 0.012455456890165806, + -0.010088029317557812, + 0.03565068170428276, + -0.010411113500595093, + 0.01941848173737526, + 0.05124785751104355, + -0.008817973546683788, + 0.024688098579645157, + -0.0016404885100200772, + -0.011018289253115654, + -0.017602523788809776, + -0.024754943326115608, + 0.000895444885827601, + -0.004979954566806555, + 0.013937189243733883, + 0.025200575590133667, + -0.04759366065263748, + -0.02372998557984829, + 0.011452781967818737, + 0.001846593921072781, + -0.012867668643593788, + -0.020799946039915085, + 0.012889949604868889, + 0.005776524543762207, + 0.012500020675361156, + -0.03738865256309509, + 0.0033171847462654114, + 0.017613666132092476, + 0.009074212983250618, + 0.012566865421831608, + -0.020153775811195374, + 0.032553531229496, + 0.020131494849920273, + 0.011686739511787891, + 0.01791446842253208, + 0.0003434511600062251, + -0.0002856580540537834, + -0.00915776938199997, + 0.03839132934808731, + -0.009347163140773773, + 0.013279879465699196, + -0.013836921192705631, + 0.005355957895517349, + 0.034803979098796844, + 0.025200575590133667, + -0.0026877273339778185, + -0.028854770585894585, + 0.029010742902755737, + -0.01351383700966835, + -0.0148730194196105, + 0.031216628849506378, + 0.008383480831980705, + 0.018995128571987152, + 0.018594060093164444, + 0.020799946039915085, + -0.012633711099624634, + 0.0059937709011137486, + -0.016466159373521805, + 0.0043978458270430565, + -0.015530328266322613, + 0.02528970316052437, + -0.016833806410431862, + -0.003423022571951151, + -0.0042947931215167046, + -0.012321767397224903, + 0.030414488166570663, + 0.011285669170320034, + 0.038057103753089905, + -0.009881923906505108, + -0.0015597173478454351, + 0.019351636990904808, + 0.019752707332372665, + -0.02111188881099224, + 0.06532987952232361, + 0.0379011332988739, + -0.01105171162635088, + -0.03723268210887909, + 0.032219305634498596, + 0.02053256519138813, + 0.025646209716796875, + 0.026648884639143944, + 0.001570858177728951, + 0.01680038496851921, + -0.021334705874323845, + 0.022549057379364967, + 0.007898854091763496, + -0.014193427748978138, + 0.010166015475988388, + -0.010205008089542389, + -0.032620374113321304, + 0.025579364970326424, + 0.02321750670671463, + 0.00511643011122942, + -0.0001227233005920425, + -0.005478507373481989, + 0.014739328995347023, + -0.0028269877657294273, + 0.029500940814614296, + -0.007263826671987772, + -0.0011955512454733253, + 0.023640859872102737, + -0.014282554388046265, + 0.021256718784570694, + 0.0017101187258958817, + 0.018605200573801994, + -0.046657830476760864, + 0.020187199115753174, + -0.039104342460632324, + -0.001309744780883193, + -0.03295459970831871, + 0.0004717448609881103, + 0.007118995767086744, + -0.0050217327661812305, + 0.004339356441050768, + 0.009731522761285305, + -0.040842313319444656, + 0.011213254183530807, + 0.010984866879880428, + -0.0019106537802144885, + -0.03132803738117218, + -0.027762969955801964, + -0.00048114496166817844, + 0.0324644036591053, + -0.027250491082668304, + 0.007926706224679947, + -0.006277862470597029, + -0.0045872400514781475, + 0.016321327537298203, + -0.034313783049583435, + 0.024442998692393303, + 0.009569980204105377, + 0.01774735562503338, + 0.0430481992661953, + -0.0010778760770335793, + -0.031127503141760826, + 0.07201437652111053, + 0.00866200216114521, + 0.00473485654219985, + 0.0015067984350025654, + -0.006656650919467211, + 0.026136407628655434, + 0.007547917775809765, + -0.009001797065138817, + -0.023529451340436935, + -0.039037495851516724, + -0.04436281695961952, + -0.009581120684742928, + 0.001647451426833868, + 0.014806174673140049, + 0.007430939003825188, + -0.0040747616440057755, + -0.0018173492280766368, + 0.008862537331879139, + -0.012500020675361156, + 0.016488440334796906, + 0.025178294628858566, + 0.0325758121907711, + -0.00594363734126091, + -0.010728627443313599, + 0.015485765412449837, + -0.02918899618089199, + -0.03513820469379425, + -0.018516073003411293, + -0.0006893393583595753, + 0.01840466447174549, + -0.02206999994814396, + 0.004222377669066191, + -0.021914029493927956, + 0.006890608463436365, + -0.018560636788606644, + 0.019786128774285316, + -0.0006339833489619195, + -0.017569102346897125, + -0.020276326686143875, + 0.009932057000696659, + -0.019318213686347008 + ] + }, + { + "HotelId": "20", + "HotelName": "Grand Gaming Resort", + "Description": "The Best Gaming Resort in the area. With elegant rooms & suites, pool, cabanas, spa, brewery & world-class gaming. This is the best place to play, stay & dine.", + "Description_fr": "La meilleure station de jeux dans la rĆ©gion. Avec des chambres et suites Ć©lĆ©gantes, piscine, Cabanas, Spa, brasserie & Gaming de classe mondiale. C'est le meilleur endroit pour jouer, rester et dĆ®ner.", + "Category": "Resort and Spa", + "Tags": [ + "continental breakfast", + "bar", + "pool" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2021-10-31T00:00:00Z", + "Rating": 4.2, + "Address": { + "StreetAddress": "3400 Menaul Blvd NE", + "City": "Albuquerque", + "StateProvince": "NM", + "PostalCode": "87107", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -106.605949, + 35.1087 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 127.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 259.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 131.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "suite" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "tv", + "tv" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 130.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "tv", + "tv" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 86.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "tv" + ] + } + ], + "embedding": [ + 0.0004567822616081685, + 0.047253239899873734, + 0.02763826958835125, + 0.018296224996447563, + -0.026530079543590546, + -0.01824081502854824, + -0.02090047299861908, + 0.018961139023303986, + -0.0009260316728614271, + -0.03273594751954079, + -0.010710661299526691, + 0.015104636549949646, + -0.03557291254401207, + -0.027704762294888496, + -0.006992681883275509, + 0.009524896740913391, + -0.030630385503172874, + -0.0027358452789485455, + 0.013109893538057804, + 0.03898613899946213, + -0.00886552408337593, + -0.0027621646877378225, + -0.024557501077651978, + -0.009646798484027386, + 0.02617545984685421, + 0.035683732479810715, + -0.05931035429239273, + 0.0070370095781981945, + -0.01117055956274271, + 0.011525181122124195, + -0.0061005884781479836, + -0.013242876157164574, + 0.042864806950092316, + -0.039961349219083786, + -0.018074586987495422, + -0.049602605402469635, + -0.0009842116851359606, + 0.009458405897021294, + 0.029610849916934967, + -0.006676847580820322, + 0.013508841395378113, + 0.053946711122989655, + -0.07322922348976135, + 0.031184479594230652, + -0.02446884475648403, + 0.03191588446497917, + -0.043618377298116684, + -0.008444411680102348, + 0.00925339013338089, + 0.013198548927903175, + -0.0625019446015358, + 0.017276689410209656, + -0.02026880346238613, + -0.001947644748724997, + -0.002016906626522541, + -0.01234524231404066, + 0.008261559531092644, + -0.029721667990088463, + 0.007297434378415346, + -0.04991289973258972, + 0.0016207285225391388, + 0.030563892796635628, + 0.00886552408337593, + 0.029389211907982826, + -0.030120616778731346, + -0.013442350551486015, + -0.0552765391767025, + 0.0037539952900260687, + 0.02282872423529625, + -0.002141578122973442, + 0.04924798384308815, + 0.01582496054470539, + -0.031184479594230652, + -0.015924697741866112, + 0.022418692708015442, + -0.046765636652708054, + -0.011370033957064152, + -0.01455054059624672, + -0.004396745469421148, + -0.06857482343912125, + -0.020490441471338272, + 0.005740426480770111, + 0.017952686175704002, + 0.04707593098282814, + -0.013918871991336346, + -0.01708829775452614, + 0.015193291008472443, + 0.03284676373004913, + -0.009325423277914524, + 0.06130509823560715, + 0.035683732479810715, + 0.015215455554425716, + -0.00046301583643071353, + -0.001973964273929596, + -0.03743467479944229, + -0.02571001835167408, + 0.06640277057886124, + -0.017941603437066078, + -0.021232929080724716, + 0.03823257237672806, + 0.03300191089510918, + -0.04519200697541237, + -0.015104636549949646, + 0.0011559812119230628, + 0.04113603010773659, + -0.03286892920732498, + -0.03931859880685806, + 0.06081749126315117, + -0.005696099251508713, + 0.006128293462097645, + -0.07797227799892426, + 0.028414003551006317, + -0.04765218868851662, + 0.022529512643814087, + -0.030918514356017113, + 0.039961349219083786, + 0.06179270148277283, + -0.031184479594230652, + 0.0024989694356918335, + 0.011381115764379501, + 0.019404415041208267, + 0.07393846660852432, + -0.0068209124729037285, + -0.04350755736231804, + 0.006987140979617834, + -0.03559507802128792, + -0.01586928777396679, + -0.0019725789315998554, + -0.015791714191436768, + -0.03258080035448074, + -0.01714370585978031, + 0.010810398496687412, + 0.012877173721790314, + -0.021133191883563995, + 0.001986431423574686, + 0.0252224151045084, + -0.04543580859899521, + 0.02477913908660412, + 0.0008886302239261568, + -0.03386630117893219, + -0.023914750665426254, + 0.04880470782518387, + 0.023205507546663284, + -0.01733209937810898, + -0.0347750186920166, + -0.0078072017058730125, + 0.01061092410236597, + -0.02783774398267269, + 0.015525748953223228, + 0.008682671934366226, + -0.0348636731505394, + 0.009236767888069153, + -0.043574050068855286, + 0.001397012616507709, + -0.035439930856227875, + -0.03670326992869377, + -0.055631160736083984, + 0.016512038186192513, + -0.052262261509895325, + 0.041712287813425064, + -0.042155563831329346, + 0.017841866239905357, + -0.030630385503172874, + 0.05935468152165413, + 0.07717438787221909, + -0.028037218376994133, + -0.03096284158527851, + 0.10044638067483902, + -0.06462966650724411, + 0.05651771277189255, + 0.05709397420287132, + 0.005139233078807592, + -0.05554250627756119, + 0.054389987140893936, + -0.02571001835167408, + 0.019670380279421806, + 0.03433173894882202, + -0.02282872423529625, + -0.036592449992895126, + -0.03546209633350372, + -0.012433896772563457, + -0.038055259734392166, + -0.01613525301218033, + 0.04472656920552254, + -0.01225658692419529, + 0.03047523833811283, + -0.030364418402314186, + -0.008521984331309795, + 0.005438444670289755, + 0.026286277920007706, + -0.005488313268870115, + 0.005718262866139412, + -0.00629452196881175, + 0.011165019124746323, + 0.010311712510883808, + -0.009713289327919483, + 0.01684449426829815, + 0.00004848333264817484, + 0.016633938997983932, + 0.015570076182484627, + -0.008095331490039825, + -0.02661873586475849, + 0.06024123355746269, + -0.04636668786406517, + -0.015836041420698166, + -0.051996298134326935, + 0.038565028458833694, + -0.011879801750183105, + 0.006250194273889065, + 0.0018520633457228541, + 0.01730993576347828, + -0.02595381997525692, + 0.04186743497848511, + -0.0012404806911945343, + -0.026596570387482643, + -0.06693470478057861, + -0.021698368713259697, + 0.039296433329582214, + 0.025155924260616302, + 0.022673577070236206, + -0.03559507802128792, + 0.017786456272006035, + -0.018861401826143265, + 0.03371115401387215, + 0.00607288395985961, + 0.010666333138942719, + -0.01109852734953165, + 0.013508841395378113, + 0.008843359537422657, + 0.0070647140964865685, + -0.003136178944259882, + 0.004418909549713135, + -0.004443843849003315, + -0.0527941957116127, + -0.010566595941781998, + 0.041667960584163666, + -0.026241950690746307, + 0.012932582758367062, + 0.05625174939632416, + 0.020058248192071915, + -0.030164944007992744, + -0.003632094245404005, + -0.030453074723482132, + -0.018307305872440338, + 0.03393279388546944, + -0.026086803525686264, + -0.0026582719292491674, + 0.005862327758222818, + 0.04880470782518387, + 0.006948354188352823, + -0.045790430158376694, + -0.019892018288373947, + -0.0029644095338881016, + -0.06205866485834122, + 0.03863152116537094, + -0.03621566295623779, + -0.02053476870059967, + 0.016866659745573997, + 0.0552322119474411, + -0.028015054762363434, + 0.03249214589595795, + -0.0047430554404854774, + -0.03681408613920212, + -0.0671563446521759, + -0.004355188459157944, + 0.00533593725413084, + -0.02615329436957836, + -0.011187182739377022, + 0.01562548615038395, + -0.020423950627446175, + -0.061659716069698334, + -0.016102006658911705, + -0.027793416753411293, + -0.005718262866139412, + 0.020966963842511177, + -0.02856915071606636, + -0.01870625466108322, + -0.03942941874265671, + -0.03690274432301521, + 0.004806776065379381, + -0.028657805174589157, + -0.04319726303219795, + 0.04370703175663948, + 0.0105222687125206, + -0.003853732254356146, + -0.0020612343214452267, + 0.03411010280251503, + -0.020944800227880478, + -0.035927534103393555, + -0.030563892796635628, + 0.026751717552542686, + 0.022895215079188347, + -0.03652595728635788, + -0.02568785473704338, + -0.01415159273892641, + 0.02717282995581627, + 0.000978670665062964, + 0.008859982714056969, + 0.013752643950283527, + 0.030874187126755714, + -0.012433896772563457, + 0.005784754175692797, + -0.04836143180727959, + 0.009325423277914524, + -0.033267877995967865, + 0.00907053891569376, + -0.03537343814969063, + -0.016401218250393867, + -0.0020321442279964685, + 0.03173857554793358, + 0.01452837698161602, + -0.028192365542054176, + 0.037080053240060806, + -0.005978687666356564, + -0.05815783515572548, + -0.02617545984685421, + -0.009790862910449505, + 0.021210765466094017, + -0.038321226835250854, + -0.01075498852878809, + 0.05815783515572548, + 0.06414206326007843, + -0.004272074438631535, + -0.02207515388727188, + 0.03510747477412224, + -0.006471832282841206, + 0.040471114218235016, + 0.01068295631557703, + -0.001969808479771018, + -0.0576259046792984, + 0.06321118772029877, + 0.03645946830511093, + -0.013209630735218525, + 0.0371687076985836, + -0.07052524387836456, + -0.0020376851316541433, + -0.06108345836400986, + 0.04751920700073242, + 0.02141023986041546, + 0.014351066201925278, + -0.04060409963130951, + -0.0010285392636433244, + 0.00047132725012488663, + 0.009829649701714516, + -0.026108967140316963, + 0.010073451325297356, + -0.016877740621566772, + 0.0433080829679966, + 0.008028839714825153, + 0.03122880682349205, + -0.03284676373004913, + 0.019770117476582527, + 0.00918135792016983, + -0.005128151271492243, + -0.005161397159099579, + -0.06440802663564682, + 0.03865368291735649, + 0.0006375558441504836, + 0.014628114178776741, + 0.019980674609541893, + -0.03672543168067932, + 0.011835474520921707, + 0.029655177146196365, + 0.01415159273892641, + 0.039761874824762344, + 0.0023784537333995104, + -0.04667698219418526, + -0.00877686869353056, + 0.04253235086798668, + -0.028879443183541298, + -0.023116853088140488, + 0.005031184758991003, + -0.0025682314299046993, + -0.011658163741230965, + 0.007042550481855869, + 0.047962483018636703, + 0.07726304233074188, + 0.037789296358823776, + 0.016833413392305374, + 0.00871591828763485, + 0.0007438728353008628, + 0.014816506765782833, + 0.0457017756998539, + -0.017232362180948257, + 0.027704762294888496, + -0.0076520550064742565, + -0.0288572795689106, + -0.009885058738291264, + -0.031383953988552094, + -0.020379623398184776, + 0.010162106715142727, + -0.022407611832022667, + -0.006687929388135672, + -0.008012217469513416, + -0.005740426480770111, + -0.003839879995211959, + 0.012888255529105663, + -0.04067058861255646, + 0.0010486252140253782, + 0.0077462512999773026, + 0.018761664628982544, + -0.02453533746302128, + -0.02126617543399334, + -0.036658938974142075, + -0.0035129638854414225, + -0.039229944348335266, + 0.015437093563377857, + -0.05735993757843971, + -0.03337869793176651, + -0.009707748889923096, + 0.014207001775503159, + -0.020933717489242554, + 0.0017384737730026245, + 0.01702180504798889, + -0.03652595728635788, + 0.015226537361741066, + -0.0073750074952840805, + -0.033046238124370575, + 0.0017454000189900398, + 0.03357817232608795, + 0.030386582016944885, + 0.026840373873710632, + -0.004285926464945078, + 0.02475697547197342, + -0.004504794254899025, + 0.045280661433935165, + 0.036614611744880676, + -0.02136591263115406, + -0.1104644238948822, + 0.008810114115476608, + -0.04716458544135094, + -0.018783828243613243, + 0.04964693263173103, + 0.042598843574523926, + -0.01428457535803318, + 0.08502037078142166, + 0.0011144240852445364, + -0.020833980292081833, + -0.04293129965662956, + 0.0015916385455057025, + -0.03579455241560936, + -0.02661873586475849, + -0.007984512485563755, + 0.020579097792506218, + -0.0061005884781479836, + 0.0600639246404171, + 0.008400083519518375, + 0.01872841827571392, + -0.009247849695384502, + -0.021543223410844803, + 0.004119697958230972, + -0.027217157185077667, + 0.0006413652445189655, + -0.02356012910604477, + 0.013054483570158482, + 0.047253239899873734, + 0.07553426176309586, + -0.016035515815019608, + -0.015326274558901787, + -0.011275838129222393, + 0.03747900202870369, + -0.0420004203915596, + -0.0017176952678710222, + -0.044593583792448044, + 0.011602753773331642, + -0.0720323771238327, + -0.02832534909248352, + 0.02619762346148491, + -0.00001753192009346094, + -0.0006818834226578474, + -0.03173857554793358, + -0.059709303081035614, + 0.013575333170592785, + 0.0032248343341052532, + 0.03331220522522926, + -0.022130563855171204, + 0.02404773235321045, + 0.02542188949882984, + 0.016833413392305374, + 0.007552318274974823, + -0.041690126061439514, + -0.0065438649617135525, + -0.02668522670865059, + -0.01702180504798889, + 0.022152727469801903, + -0.05660637095570564, + -0.029234064742922783, + 0.022983869537711143, + -0.12659968435764313, + 0.01406293734908104, + 0.005178019870072603, + 0.002237159525975585, + 0.009840731509029865, + -0.008394543081521988, + 0.04233287647366524, + 0.020889390259981155, + -0.029433539137244225, + -0.005950982682406902, + 0.020601261407136917, + 0.05071079730987549, + 0.0005575583199970424, + -0.015426011756062508, + -0.05261688306927681, + 0.02739446796476841, + 0.026552243158221245, + 0.02761610597372055, + -0.00647737318649888, + -0.014694605953991413, + 0.040227312594652176, + 0.016733676195144653, + 0.036614611744880676, + -0.027239322662353516, + -0.03934076055884361, + -0.009391914121806622, + 0.035905372351408005, + 0.01562548615038395, + 0.002501739887520671, + -0.0312952995300293, + -0.028968099504709244, + -0.03164992108941078, + -0.0075301541946828365, + -0.0036348646972328424, + -0.003870355198159814, + -0.037789296358823776, + 0.017343180254101753, + -0.0016775233671069145, + -0.0017731047701090574, + -0.021376993507146835, + -0.008915392681956291, + 0.009641257114708424, + -0.017520491033792496, + -0.011846556328237057, + -0.015281946398317814, + -0.0044216797687113285, + 0.004105845466256142, + 0.018661927431821823, + -0.0026790504343807697, + 0.011813309974968433, + 0.03836555406451225, + -0.02351580187678337, + 0.0025446824729442596, + 0.01417375635355711, + -0.009098243899643421, + -0.003546209540218115, + -0.021421322599053383, + -0.039008304476737976, + -0.017409672960639, + 0.03488583490252495, + 0.013021238148212433, + 0.0005811073933728039, + 0.00030354029149748385, + 0.0034963409416377544, + 0.006516159977763891, + -0.015448175370693207, + -0.023870423436164856, + 0.0014932866906747222, + 0.017664555460214615, + 0.014927325770258904, + -0.013309367932379246, + 0.03051956556737423, + -0.020113656297326088, + -0.01088797114789486, + -0.012167931534349918, + -0.011691409163177013, + 0.00432748394086957, + 0.007873693481087685, + 0.024646155536174774, + 0.01093783974647522, + 0.07318489998579025, + 0.010921217501163483, + -0.04712025821208954, + 0.05000155419111252, + 0.0011532107600942254, + -0.0108159389346838, + 0.011547344736754894, + 0.008095331490039825, + 0.026574406772851944, + -0.0046073016710579395, + -0.010494563728570938, + 0.001390779041685164, + 0.017952686175704002, + -0.0742930918931961, + 0.013320449739694595, + 0.011547344736754894, + -0.024158552289009094, + -0.025178087875247, + 0.03455337882041931, + 0.018451372161507607, + 0.01404077373445034, + 0.04175661876797676, + 0.009951550513505936, + 0.0014780490892007947, + -0.008810114115476608, + -0.05501057580113411, + 0.02932271920144558, + -0.013730480335652828, + -0.0173875093460083, + 0.00714228767901659, + -0.010156565345823765, + 0.03320138528943062, + 0.033489517867565155, + -0.016035515815019608, + -0.002339667174965143, + -0.017099378630518913, + -0.03193804994225502, + 0.004643318243324757, + -0.00045228024828247726, + -0.0180413406342268, + 0.04751920700073242, + -0.03909695893526077, + -0.014140510000288486, + -0.0028355824761092663, + 0.0009668961865827441, + -0.013220712542533875, + -0.0179970134049654, + -0.026131130754947662, + -0.016833413392305374, + -0.03227050602436066, + 0.0012723412364721298, + -0.02248518541455269, + 0.03003196232020855, + -0.008992965333163738, + 0.028879443183541298, + 0.0029560981784015894, + 0.04867172613739967, + 0.030807694420218468, + 0.008150740526616573, + -0.017952686175704002, + -0.038321226835250854, + 0.009785321541130543, + 0.03548425808548927, + 0.051730331033468246, + 0.005100446753203869, + 0.006499537266790867, + -0.03071903996169567, + -0.007086878176778555, + -0.00648845499381423, + 0.006599274463951588, + -0.0027912547811865807, + -0.007624350488185883, + 0.02446884475648403, + 0.008571852929890156, + 0.03404361009597778, + 0.010416990146040916, + 0.009397455491125584, + 0.0456574484705925, + 0.04703160375356674, + -0.0287907887250185, + 0.00003714169724844396, + -0.005460608750581741, + 0.004058747552335262, + -0.0036459467373788357, + -0.007901398465037346, + -0.011879801750183105, + -0.009247849695384502, + -0.0045158760622143745, + -0.0033356533385813236, + -0.00543290376663208, + 0.021920006722211838, + 0.0044549256563186646, + -0.004006108734756708, + 0.01657852903008461, + -0.029389211907982826, + -0.02244085632264614, + -0.019692543894052505, + 0.022296791896224022, + -0.006560487672686577, + -0.01816324144601822, + -0.04009433090686798, + -0.0005901114200241864, + 0.03244781866669655, + -0.00875470507889986, + 0.010284007526934147, + 0.0037484541535377502, + 0.022496266290545464, + -0.0020363000221550465, + -0.007247565779834986, + -0.03619350120425224, + 0.00854414887726307, + -0.0034104562364518642, + -0.013065565377473831, + 0.019371168687939644, + -0.034908000379800797, + -0.001990587217733264, + 0.006266816984862089, + -0.00161934329662472, + 0.02832534909248352, + 0.009319881908595562, + 0.028170201927423477, + -0.0359940268099308, + -0.005856786854565144, + -0.006654683966189623, + 0.0040504359640181065, + -0.013132057152688503, + 0.011381115764379501, + -0.018207568675279617, + -0.029455702751874924, + -0.00912040751427412, + 0.03193804994225502, + -0.10044638067483902, + -0.0033716694451868534, + 0.030164944007992744, + 0.021188601851463318, + -0.03260296210646629, + 0.010411449708044529, + -0.029211901128292084, + 0.01107082236558199, + -0.02493428625166416, + 0.020966963842511177, + 0.017952686175704002, + 0.004460466559976339, + 0.0006780740222893655, + -0.024158552289009094, + -0.00354066863656044, + 0.02380393072962761, + -0.007269729394465685, + -0.01882815547287464, + 0.015182209201157093, + 0.054611627012491226, + -0.005840163677930832, + -0.015570076182484627, + 0.03047523833811283, + 0.009148112498223782, + -0.03419875726103783, + 0.0070037636905908585, + 0.018894648179411888, + -0.011846556328237057, + -0.03894181177020073, + -0.040958721190690994, + 0.04084790125489235, + -0.025155924260616302, + -0.01828514225780964, + 0.007990052923560143, + 0.019880937412381172, + 0.036592449992895126, + -0.0022648642770946026, + -0.020013919100165367, + -0.056074436753988266, + -0.003529586596414447, + -0.019227104261517525, + -0.006228030659258366, + -0.018129996955394745, + 0.00270398473367095, + -0.06768827140331268, + 0.023648785427212715, + -0.04426112771034241, + -0.00117052614223212, + 0.01919385977089405, + 0.013109893538057804, + 0.004061518236994743, + 0.0019199399976059794, + 0.0066048153676092625, + 0.004479859955608845, + -0.017575901001691818, + -0.01586928777396679, + -0.03934076055884361, + 0.01872841827571392, + 0.024202879518270493, + -0.015957942232489586, + 0.02331632748246193, + -0.0016096467152237892, + 0.033999282866716385, + 0.005211265757679939, + 0.04036029800772667, + 0.02309468947350979, + -0.015315192751586437, + 0.005291609559208155, + -0.004593449644744396, + -0.013420186936855316, + -0.008272642269730568, + 0.011514099314808846, + -0.024601828306913376, + 0.023449311032891273, + 0.011514099314808846, + 0.0037983227521181107, + -0.0038121752440929413, + 0.02285088784992695, + -0.0010292319348081946, + 0.001615187618881464, + 0.0039313058368861675, + 0.00930325873196125, + -0.008084249682724476, + 0.0053913467563688755, + 0.019614972174167633, + -0.029389211907982826, + -0.02400340512394905, + 0.05332612618803978, + 0.00893755629658699, + 0.027217157185077667, + 0.01406293734908104, + -0.02016906626522541, + -0.0020875537302345037, + 0.032802436500787735, + -0.024424517527222633, + 0.04102521017193794, + 0.007441498804837465, + 0.013420186936855316, + -0.012555797584354877, + 0.027948563918471336, + 0.017808621749281883, + -0.0028355824761092663, + -0.029500029981136322, + 0.02688470110297203, + -0.0043607293628156185, + 0.005806918255984783, + 0.021820269525051117, + -0.03249214589595795, + -0.004094763658940792, + -0.03027576394379139, + -0.0020543080754578114, + -0.006793207488954067, + 0.04100304841995239, + -0.005718262866139412, + -0.02426937222480774, + 0.017365343868732452, + -0.005427362862974405, + 0.0013284432934597135, + 0.00882673729211092, + -0.03643730282783508, + 0.01297690998762846, + 0.021033454686403275, + -0.021742697805166245, + -0.005178019870072603, + 0.058024853467941284, + -0.03909695893526077, + -0.008848900906741619, + 0.0033190303947776556, + 0.01960388943552971, + -0.0024255518801510334, + -0.05660637095570564, + -0.007452581077814102, + -0.007618809584528208, + -0.005108757875859737, + 0.003510193433612585, + -0.01960388943552971, + 0.019592806696891785, + 0.006643601693212986, + 0.014107264578342438, + -0.023249836638569832, + 0.010284007526934147, + -0.00905945710837841, + 0.013087729923427105, + -0.002720607677474618, + -0.0071589103899896145, + -0.006493996363133192, + -0.015459257178008556, + 0.034708525985479355, + -0.007297434378415346, + 0.00936420913785696, + 0.03335653245449066, + -0.014738933183252811, + -0.04153497889637947, + 0.03127313405275345, + 0.00887660589069128, + 0.02927839197218418, + -0.005740426480770111, + 0.020944800227880478, + 0.02199758030474186, + 0.0252224151045084, + 0.0016359662404283881, + -0.01941549777984619, + 0.05142003670334816, + 0.011414362117648125, + -0.019936347380280495, + -0.012566880322992802, + -0.003684733295813203, + -0.021332666277885437, + -0.016611775383353233, + -0.00011791838915087283, + 0.0073140570893883705, + -0.01643446460366249, + -0.026973355561494827, + 0.014860833995044231, + 0.03406577557325363, + 0.03692490607500076, + 0.03189372271299362, + 0.02715066634118557, + -0.00003924119664588943, + 0.021066701039671898, + -0.04253235086798668, + -0.018351634964346886, + 0.021432403475046158, + -0.03262512758374214, + 0.02375960350036621, + 0.0033051781356334686, + 0.011768982745707035, + 0.009391914121806622, + 0.034243084490299225, + 0.004748596344143152, + -0.012999074533581734, + 0.02502294071018696, + 0.037589821964502335, + 0.02473481185734272, + 0.007918020710349083, + -0.012755271978676319, + 0.015957942232489586, + 0.020013919100165367, + 0.009458405897021294, + 0.0018077356508001685, + 0.04942529648542404, + -0.018196487799286842, + 0.003668110352009535, + -0.029433539137244225, + -0.0019504152005538344, + 0.024801302701234818, + 0.016179580241441727, + -0.01660069264471531, + 0.013386940583586693, + 0.02260708622634411, + -0.05022319033741951, + -0.013586414977908134, + -0.030696876347064972, + -0.005056119058281183, + 0.0056711649522185326, + -0.005424592178314924, + 0.04246585816144943, + -0.013364776968955994, + 0.0002463992277625948, + -0.01872841827571392, + -0.01753157377243042, + 0.01100987195968628, + 0.02400340512394905, + -0.02134374901652336, + -0.014816506765782833, + 0.0008900154498405755, + -0.012987992726266384, + 0.03322355076670647, + -0.015603321604430676, + 0.020545851439237595, + -0.021443486213684082, + 0.012289832346141338, + -0.002746927086263895, + -0.006028556264936924, + -0.0013983978424221277, + 0.061837028712034225, + 0.0022704051807522774, + 0.021576467901468277, + -0.012123603373765945, + 0.03865368291735649, + -0.01899438537657261, + 0.008128576911985874, + -0.01637905463576317, + -0.015071390196681023, + -0.01968146301805973, + 0.012910419143736362, + -0.04951395094394684, + 0.016201743856072426, + 0.006654683966189623, + -0.007181074470281601, + -0.0069760591723024845, + 0.0031417200807482004, + 0.014472967945039272, + -0.021842435002326965, + 0.006920649670064449, + -0.009724371135234833, + -0.01394103653728962, + 0.0055464934557676315, + -0.0027912547811865807, + -0.006953895092010498, + 0.008294805884361267, + -0.0054855430498719215, + -0.00039167606155388057, + 0.02619762346148491, + -0.030342254787683487, + -0.00013393520202953368, + 0.0026291818358004093, + -0.01760914735496044, + 0.02927839197218418, + -0.004513105843216181, + 0.023936914280056953, + -0.01285500917583704, + 0.024202879518270493, + 0.00930325873196125, + 0.020845063030719757, + -0.05820216238498688, + 0.015669813379645348, + 0.014140510000288486, + 0.013198548927903175, + -0.010538890957832336, + -0.041667960584163666, + 0.03794444352388382, + 0.048139795660972595, + -0.01562548615038395, + 0.010860266163945198, + 0.01069403812289238, + 0.011791146360337734, + 0.022917378693819046, + 0.0024671091232448816, + 0.04596773907542229, + -0.0023438227362930775, + -0.00033280346542596817, + -0.016024434939026833, + -0.015481420792639256, + 0.04231071099638939, + -0.00647737318649888, + 0.0336003340780735, + -0.004948070272803307, + 0.018296224996447563, + -0.013763725757598877, + 0.03442039713263512, + 0.0023008803837001324, + 0.002936704782769084, + -0.007618809584528208, + -0.038077425211668015, + 0.0034575543832033873, + -0.013752643950283527, + 0.01068295631557703, + 0.058246489614248276, + -0.009818567894399166, + 0.011242592707276344, + 0.03657028451561928, + -0.021321585401892662, + 0.01680016703903675, + -0.006178162060678005, + -0.03989485651254654, + -0.03672543168067932, + 0.0038149456959217787, + 0.001498827594332397, + 0.004718121141195297, + 0.022740067914128304, + 0.01109852734953165, + 0.03872017562389374, + 0.02903459034860134, + -0.03858719393610954, + 0.005740426480770111, + -0.033267877995967865, + 0.02063450589776039, + 0.0008546918979845941, + 0.005773672368377447, + 0.01721019856631756, + 0.0008436099742539227, + 0.006776584777981043, + 0.030696876347064972, + 0.015913615003228188, + -0.0033356533385813236, + 0.012023866176605225, + -0.015691976994276047, + 0.03860935568809509, + 0.020002838224172592, + 0.025333235040307045, + -0.0007127050193957984, + 0.015115718357264996, + 0.023892587050795555, + 0.022917378693819046, + -0.015392765402793884, + 0.010018042288720608, + -0.02285088784992695, + 0.007663137279450893, + 0.03357817232608795, + 0.01582496054470539, + 0.012212258763611317, + -0.01295474637299776, + 0.010245220735669136, + -0.004025501664727926, + -0.014816506765782833, + -0.02353796549141407, + -0.015248700976371765, + -0.0179970134049654, + 0.0011192724341526628, + -0.0336889885365963, + -0.03176073729991913, + 0.01284392736852169, + 0.01936008781194687, + -0.03406577557325363, + -0.0024338632356375456, + -0.013974281959235668, + -0.04907067492604256, + 0.007507990580052137, + -0.0359940268099308, + 0.018373798578977585, + 0.03264729306101799, + 0.031849395483732224, + 0.011768982745707035, + -0.024623991921544075, + -0.010971086099743843, + -0.00269151758402586, + -0.003801093203946948, + 0.009752076119184494, + 0.009486110880970955, + 0.029256228357553482, + 0.02278439700603485, + 0.026973355561494827, + -0.0360826812684536, + 0.03211535885930061, + -0.02717282995581627, + -0.015215455554425716, + -0.004914824850857258, + -0.03098500519990921, + 0.023471474647521973, + 0.0014351066201925278, + -0.013364776968955994, + 0.009735452942550182, + -0.00263056717813015, + 0.028502658009529114, + -0.044349782168865204, + 0.017321016639471054, + 0.027926400303840637, + 0.023870423436164856, + 0.005939900875091553, + 0.00022285018349066377, + 0.011879801750183105, + 0.012810681946575642, + -0.005147544667124748, + 0.0012938124127686024, + -0.011669245548546314, + 0.0052057248540222645, + -0.022651413455605507, + -0.026530079543590546, + -0.014085100963711739, + -0.00647737318649888, + 0.02859131433069706, + -0.03623782843351364, + 0.04341890290379524, + 0.043862178921699524, + 0.013963200151920319, + -0.028037218376994133, + -0.00882673729211092, + 0.00624465337023139, + -0.01870625466108322, + -0.006937272381037474, + -0.0019767347257584333, + -0.00619478477165103, + 0.018562190234661102, + 0.030076289549469948, + -0.002045996719971299, + 0.000948195462115109, + 0.011602753773331642, + 0.02717282995581627, + -0.02566569112241268, + 0.009752076119184494, + -0.047208912670612335, + -0.007463662885129452, + -0.01235632412135601, + -0.0649842917919159, + -0.0038454208988696337, + -0.0324256531894207, + -0.007679759990423918, + 0.03526262193918228, + -0.002451871521770954, + 0.027283649891614914, + 0.022873051464557648, + 0.026264114305377007, + -0.006693470291793346, + -0.02331632748246193, + -0.009691125713288784, + 0.03127313405275345, + 0.023959077894687653, + 0.046942949295043945, + 0.039761874824762344, + -0.008134118281304836, + 0.01611308939754963, + 0.0031084741931408644, + 0.008505362085998058, + -0.029854651540517807, + 0.0033495055977255106, + 0.02666306309401989, + 0.01846245303750038, + 0.03719087317585945, + -0.04663265496492386, + 0.01848461665213108, + -0.04202258214354515, + -0.01755373738706112, + -0.015836041420698166, + 0.0216540414839983, + 0.002314732875674963, + 0.01274419017136097, + -0.0032636208925396204, + 0.00708133727312088, + -0.030209273099899292, + 0.008023299276828766, + 0.015492502599954605, + -0.003058605594560504, + -0.011768982745707035, + -0.012522552162408829, + 0.017586981877684593, + 0.012932582758367062, + 0.028214529156684875, + -0.04346323013305664, + -0.01702180504798889, + -0.030098453164100647, + -0.001710769021883607, + 0.056074436753988266, + 0.012943664565682411, + 0.01226766873151064, + -0.010173188522458076, + 0.012201176956295967, + 0.008300346322357655, + 0.024402353912591934, + 0.0057625905610620975, + 0.010123319923877716, + 0.003360587637871504, + 0.0041778781451284885, + 0.008089790120720863, + -0.014140510000288486, + -0.05084377899765968, + -0.008599557913839817, + -0.013276121579110622, + -0.005075512453913689, + -0.030120616778731346, + 0.01619066298007965, + 0.022307874634861946, + 0.021665124222636223, + -0.028968099504709244, + 0.00920352153480053, + -0.05186331272125244, + -0.023183343932032585, + -0.02006932906806469, + -0.014085100963711739, + -0.01236740592867136, + -0.008372379466891289, + -0.01463919598609209, + -0.036392975598573685, + -0.025111595168709755, + -0.017719965428113937, + 0.03581671789288521, + -0.011131773702800274, + 0.05239524692296982, + -0.025111595168709755, + 0.012112521566450596, + -0.0013443735660985112, + -0.0034963409416377544, + -0.004659940954297781, + -0.007070255000144243, + -0.00871591828763485, + 0.05261688306927681, + -0.0006451746448874474, + 0.002323044231161475, + -0.019836610183119774, + -0.019936347380280495, + 0.038321226835250854, + -0.00892647448927164, + -0.005829081870615482, + 0.008222773671150208, + 0.05820216238498688, + -0.00860509928315878, + -0.017365343868732452, + -0.02375960350036621, + 0.017243443056941032, + -0.010178729891777039, + -0.024136388674378395, + -0.013808052986860275, + 0.0009904452599585056, + 0.012921500951051712, + -0.02495644986629486, + 0.013741562142968178, + -0.005139233078807592, + 0.027017682790756226, + 0.013475595973432064, + -0.019792281091213226, + -0.023139016702771187, + -0.005252822767943144, + -0.010788233950734138, + -0.017985930666327477, + 0.020080411806702614, + 0.007995594292879105, + 0.020302049815654755, + 0.013298285193741322, + 0.0010451620910316706, + -0.0012896566186100245, + -0.0179748497903347, + -0.026330605149269104, + -0.0024116996210068464, + 0.018540026620030403, + 0.01682233065366745, + -0.008859982714056969, + -0.0029173113871365786, + 0.041889600455760956, + 0.013342613354325294, + 0.00941407773643732, + 0.020501524209976196, + -0.03266945481300354, + -0.020202312618494034, + -0.010267384350299835, + -0.0017938832752406597, + 0.015359519980847836, + 0.016102006658911705, + -0.04319726303219795, + -0.0019407186191529036, + 0.03377764672040939, + 0.012068194337189198, + -0.0009655109606683254, + -0.006588192190974951, + -0.026840373873710632, + 0.022917378693819046, + 0.003424308495596051, + 0.023382818326354027, + -0.007801660802215338, + -0.025111595168709755, + 0.013841299340128899, + 0.007025927770882845, + -0.014472967945039272, + 0.020579097792506218, + -0.013276121579110622, + -0.04751920700073242, + -0.001254333066754043, + 0.04106953740119934, + 0.0028148037381470203, + -0.056562040001153946, + -0.025355398654937744, + 0.007890315726399422, + 0.0071589103899896145, + -0.012877173721790314, + 0.008100871928036213, + 0.014373230747878551, + 0.00443830294534564, + -0.013054483570158482, + -0.01696639694273472, + -0.0015057538403198123, + -0.013087729923427105, + 0.0010548587888479233, + 0.008438870310783386, + 0.027283649891614914, + 0.018562190234661102, + -0.0006600659689866006, + 0.02666306309401989, + -0.0023050361778587103, + -0.006593733094632626, + 0.016157416626811028, + -0.008560771122574806, + -0.021177519112825394, + 0.041889600455760956, + 0.01428457535803318, + -0.005003479775041342, + -0.0019490299746394157, + -0.026530079543590546, + 0.013021238148212433, + 0.013641824945807457, + -0.01706613413989544, + 0.005962064955383539, + 0.024402353912591934, + 0.015326274558901787, + -0.003695815335959196, + 0.02422504313290119, + 0.03894181177020073, + 0.0006534860585816205, + -0.04880470782518387, + -0.015680894255638123, + 0.0001567916333442554, + 0.0037900113966315985, + -0.03442039713263512, + -0.010577677749097347, + -0.028968099504709244, + -0.003947928547859192, + -0.010599842295050621, + 0.046942949295043945, + 0.010367121547460556, + -0.02932271920144558, + -0.021111028268933296, + -0.022762231528759003, + -0.0005748738185502589, + -0.006106129381805658, + -0.02124401181936264, + -0.0180413406342268, + 0.012943664565682411, + 0.015836041420698166, + 0.026352768763899803, + -0.011957375332713127, + -0.0288351159542799, + 0.020479360595345497, + 0.011115150526165962, + 0.005588050466030836, + 0.005305462051182985, + 0.0014974423684179783, + -0.016079843044281006, + 0.015680894255638123, + -0.003770618000999093, + 0.030076289549469948, + -0.014484049752354622, + -0.0087048364803195, + 0.0018340551760047674, + 0.013431268744170666, + -0.0072808112017810345, + 0.00223161862231791, + 0.002889606636017561, + 0.009923845529556274, + -0.058024853467941284, + -0.013697233982384205, + 0.017686719074845314, + 0.005707181058824062, + 0.006034097168594599, + -0.007923562079668045, + -0.005862327758222818, + -0.006710093468427658, + -0.028524823486804962, + 0.008294805884361267, + -0.015093553811311722, + 0.025975985452532768, + -0.0013526850380003452, + 0.019747953861951828, + -0.027194993570446968, + -0.016268236562609673, + -0.005263904575258493, + 0.024158552289009094, + -0.012899337336421013, + -0.00034128804691135883, + 0.0008754704613238573, + -0.00047444403753615916, + 0.016910986974835396, + 0.03745683655142784, + 0.019792281091213226, + -0.02002500183880329, + 0.019770117476582527, + 0.013531005941331387, + 0.013331531547009945, + -0.013708315789699554, + 0.02382609434425831, + -0.014317820779979229, + -0.028148038312792778, + 0.013907790184020996, + -0.000489335332531482, + -0.0003463095345068723, + 0.031605593860149384, + -0.01562548615038395, + -0.008427788503468037, + 0.038520701229572296, + 0.014838670380413532, + 0.004684875253587961, + -0.0038842076901346445, + 0.02785990759730339, + -0.00011748550605261698, + -0.01994742825627327, + -0.0072808112017810345, + 0.017985930666327477, + -0.027239322662353516, + 0.006687929388135672, + 0.04468223825097084, + -0.042377203702926636, + -0.03787795081734657, + -0.013486677780747414, + -0.00908162072300911, + -0.03450905159115791, + -0.01260012574493885, + -0.0027732467278838158, + 0.013907790184020996, + 0.028923770412802696, + 0.005660082679241896, + 0.0038731256499886513, + 0.012799600139260292, + -0.01051118690520525, + -0.01677800342440605, + 0.0041169277392327785, + -0.012688781134784222, + 0.0011448992881923914, + 0.010217515751719475, + -0.012577962130308151, + 0.0010451620910316706, + 0.006582651287317276, + 0.016002271324396133, + 0.01586928777396679, + -0.016999641433358192, + 0.0007764259353280067, + 0.006017474457621574, + -0.014583786949515343, + 0.027660435065627098, + 0.041202522814273834, + 0.014617032371461391, + -0.051065415143966675, + 0.005538181867450476, + -0.0057902950793504715, + 0.008289264515042305, + 0.015071390196681023, + -0.008095331490039825, + -0.02197541669011116, + 0.02146564982831478, + 0.028724297881126404, + -0.029943305999040604, + 0.004432762041687965, + -0.000642404134850949, + -0.0008491509361192584, + -0.007984512485563755, + -0.007330679800361395, + -0.05545385181903839, + 0.007635432295501232, + 0.023693112656474113, + 0.02175377868115902, + 0.001511294743977487, + -0.015204372815787792, + -0.0052362000569701195, + 0.026818210259079933, + 0.006743338890373707, + -0.020279886201024055, + 0.0013935494935140014, + 0.013353695161640644, + 0.01682233065366745, + 0.016766922548413277, + 0.007934643886983395, + -0.006887403782457113, + 0.016024434939026833, + 0.01247822493314743, + 0.01750941015779972, + -0.01775321178138256, + 0.022640330716967583, + -0.007419335190206766, + 0.010477940551936626, + 0.0074359579011797905, + 0.010489022359251976, + -0.005856786854565144, + -0.007674219086766243, + -0.019249267876148224, + 0.0008512288331985474, + 0.0012778821401298046, + 0.0408257357776165, + -0.013464514166116714, + -0.01718803495168686, + 0.0007085492834448814, + -0.01645662821829319, + 0.021920006722211838, + 0.01895005628466606, + -0.025798674672842026, + -0.006399800069630146, + -0.005768131464719772, + 0.0025806985795497894, + -0.0221970546990633, + -0.003277473384514451, + -0.002526674186810851, + 0.06822020560503006, + 0.0020958653185516596, + 0.013763725757598877, + 0.005263904575258493, + 0.00008285455260192975, + -0.012655534781515598, + 0.011514099314808846, + -0.04654400050640106, + -0.024424517527222633, + 0.014705687761306763, + 0.01702180504798889, + 0.00306691718287766, + 0.008416706696152687, + 0.012223340570926666, + 0.006383176892995834, + 0.030852023512125015, + 0.03264729306101799, + 0.006510619074106216, + -0.020989127457141876, + 0.03282460197806358, + 0.003834339091554284 + ] + }, + { + "HotelId": "21", + "HotelName": "Good Business Hotel", + "Description": "1 Mile from the airport. Free WiFi, Outdoor Pool, Complimentary Airport Shuttle, 6 miles from Lake Lanier & 10 miles from downtown. Our business center includes printers, a copy machine, fax, and a work area.", + "Description_fr": "1 mile de l'aĆ©roport. WiFi gratuit, piscine extĆ©rieure, navette aĆ©roport gratuite, Ć  10 km du lac Lanier et Ć  16 km du centre-ville. Notre centre d'affaires comprend des imprimantes, un photocopieur, un fax et un espace de travail.", + "Category": "Suite", + "Tags": [ + "pool", + "continental breakfast", + "free parking" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2021-10-19T00:00:00Z", + "Rating": 3.6, + "Address": { + "StreetAddress": "4400 Ashford Dunwoody Rd NE", + "City": "Atlanta", + "StateProvince": "GA", + "PostalCode": "30346", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -84.34153, + 33.923931 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 134.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "tv" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "coffee maker", + "suite" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 83.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "coffee maker", + "suite" + ] + } + ], + "embedding": [ + -0.028739411383867264, + -0.047865498811006546, + 0.04464765265583992, + -0.003926781006157398, + -0.02153947576880455, + -0.05993243306875229, + -0.0060234107077121735, + 0.019729435443878174, + 0.02427464723587036, + -0.0025767928455024958, + -0.013394295237958431, + 0.03714604303240776, + -0.03535611182451248, + -0.024998662993311882, + -0.03976054489612579, + 0.00514855794608593, + 0.0038714741822332144, + -0.029403092339634895, + -0.006139052100479603, + 0.018884750083088875, + -0.012539554387331009, + 0.04995710030198097, + 0.006063633598387241, + -0.03682425618171692, + 0.0001685913885012269, + 0.038915857672691345, + -0.007421163842082024, + -0.034994106739759445, + 0.014269147999584675, + -0.01661214418709278, + 0.010649068281054497, + -0.011664701625704765, + 0.024777434766292572, + 0.0226657222956419, + 0.025923794135451317, + 0.0022537510376423597, + 0.0064759207889437675, + -0.023248957470059395, + -0.026929371058940887, + -0.005746876820921898, + -0.0017434203764423728, + 0.08133112639188766, + -0.041832033544778824, + -0.08398585021495819, + 0.00720496429130435, + 0.023208733648061752, + -0.004301358945667744, + 0.02763327583670616, + 0.024375203996896744, + 0.004422028083354235, + -0.030187442898750305, + -0.009537904523313046, + -0.04267672076821327, + -0.06701169908046722, + -0.009080367162823677, + 0.06182291731238365, + 0.005123418755829334, + -0.02725115604698658, + 0.01177531573921442, + -0.01661214418709278, + 0.041550472378730774, + 0.019769657403230667, + 0.021800925955176353, + 0.03597957268357277, + -0.0271304864436388, + 0.05188781023025513, + 0.03654269501566887, + -0.009869745932519436, + -0.027955060824751854, + -0.055869899690151215, + 0.043280065059661865, + 0.03280194476246834, + 0.013364127837121487, + -0.03652258217334747, + -0.0020413228776305914, + 0.0051535856910049915, + -0.031816478818655014, + -0.04911241680383682, + -0.020614342764019966, + -0.010820016264915466, + -0.014178645797073841, + 0.012499331496655941, + 0.027653386816382408, + 0.0271304864436388, + -0.0030695260502398014, + -0.03165558725595474, + -0.045733675360679626, + -0.013796526938676834, + -0.024194199591875076, + 0.07207981497049332, + -0.014098200015723705, + 0.00457286462187767, + 0.013887028209865093, + -0.00558095658197999, + -0.03845329210162163, + -0.016089243814349174, + 0.03567789867520332, + -0.018985306844115257, + 0.00861780159175396, + 0.0209763515740633, + -0.01885458268225193, + -0.09404163062572479, + 0.03280194476246834, + 0.00011147771874675527, + 0.026547253131866455, + -0.052571602165699005, + -0.003951920662075281, + 0.022343937307596207, + 0.04207337275147438, + 0.020403172820806503, + -0.0900997668504715, + 0.03968009725213051, + 0.021338360384106636, + 0.05953020229935646, + -0.040544893592596054, + 0.02524000033736229, + -0.011031188070774078, + 0.02473721280694008, + -0.061139125376939774, + 0.0008440568344667554, + 0.02624557912349701, + 0.006375362630933523, + -0.023932749405503273, + -0.048428624868392944, + 0.03171592205762863, + -0.02863885462284088, + -0.028618741780519485, + 0.008135124109685421, + 0.00460051791742444, + 0.015506008639931679, + 0.02467687800526619, + 0.004794091917574406, + 0.013112734071910381, + -0.015506008639931679, + 0.007602167781442404, + 0.0067826216109097, + -0.010689291171729565, + -0.013897084631025791, + -0.026165133342146873, + -0.01991043984889984, + 0.004975095856934786, + 0.021418806165456772, + 0.009266398847103119, + -0.025320447981357574, + -0.0036251076962798834, + -0.012720558792352676, + -0.0015661873621866107, + 0.032701388001441956, + 0.015003220178186893, + 0.02580312453210354, + -0.022927172482013702, + -0.012992064468562603, + -0.020916016772389412, + -0.010538455098867416, + -0.06395474076271057, + 0.03668347746133804, + -0.011363028548657894, + 0.019065754488110542, + -0.0375080481171608, + -0.013595410622656345, + -0.0330030620098114, + 0.009226175956428051, + -0.012278104200959206, + 0.04504988342523575, + 0.005168669391423464, + 0.038131508976221085, + 0.01980988122522831, + 0.02517966739833355, + -0.07557922601699829, + -0.016320526599884033, + 0.018271347507834435, + 0.005917824804782867, + -0.03787005692720413, + 0.06528210639953613, + -0.008698247373104095, + 0.013595410622656345, + 0.026044463738799095, + 0.03664325177669525, + -0.00007993557665031403, + -0.004117840901017189, + -0.04545211419463158, + -0.032701388001441956, + 0.021016575396060944, + 0.03776950016617775, + -0.05422075092792511, + -0.002241181442514062, + 0.03702537342905998, + 0.04537166655063629, + -0.03811139613389969, + -0.007974231615662575, + -0.03845329210162163, + 0.037568382918834686, + 0.023530518636107445, + 0.0010640269611030817, + -0.009221147745847702, + -0.005832350812852383, + -0.05031910911202431, + -0.029785212129354477, + 0.010508287698030472, + 0.023088064044713974, + -0.02349029667675495, + -0.007411107886582613, + 0.04464765265583992, + 0.02059423178434372, + -0.06467875838279724, + -0.06910330057144165, + 0.01761772111058235, + 0.04577389732003212, + 0.021579697728157043, + 0.03895607963204384, + 0.01589818485081196, + 0.01762777753174305, + 0.03340529277920723, + -0.008723386563360691, + -0.014882550574839115, + 0.0021808466408401728, + -0.0025415976997464895, + -0.02892041578888893, + 0.046699028462171555, + 0.03123324364423752, + -0.005912797059863806, + -0.0012198914773762226, + -0.02709026448428631, + 0.01611941121518612, + 0.006692119874060154, + 0.029141642153263092, + -0.012459108605980873, + -0.016240080818533897, + 0.02222326770424843, + -0.01611941121518612, + 0.049997325986623764, + -0.012247936800122261, + -0.06335140019655228, + -0.001250687288120389, + -0.039358314126729965, + 0.03308350592851639, + 0.0051385024562478065, + -0.04191248118877411, + -0.027572941035032272, + 0.02411375381052494, + -0.016250135377049446, + -0.04231471195816994, + -0.01918642409145832, + 0.017497053369879723, + 0.01891491748392582, + -0.035336002707481384, + -0.015204335562884808, + 0.003906669560819864, + 0.026507029309868813, + -0.02047356218099594, + -0.0419527031481266, + -0.021197577938437462, + -0.02590368315577507, + -0.05341628938913345, + 0.0492330864071846, + 0.0027502551674842834, + -0.006264749448746443, + -0.03575834259390831, + 0.08032555133104324, + -0.03127346932888031, + 0.03591923788189888, + 0.008376462385058403, + -0.04223426431417465, + 0.004054991994053125, + 0.06443741917610168, + 0.013444574549794197, + 0.015154056251049042, + 0.03585890308022499, + 0.00048581973533146083, + -0.028216511011123657, + -0.04348118230700493, + 0.007385968696326017, + -0.015063554048538208, + -0.04376274347305298, + -0.0074814981780946255, + -0.003592426422983408, + -0.018090343102812767, + 0.009894885122776031, + 0.021841147914528847, + 0.01952832005918026, + -0.022746168076992035, + -0.009226175956428051, + -0.02920197695493698, + 0.020010996609926224, + -0.014993163757026196, + 0.004273705184459686, + 0.057036370038986206, + 0.031193021684885025, + -0.025320447981357574, + -0.01657192036509514, + 0.027673499658703804, + 0.03139413520693779, + -0.006088773254305124, + -0.06978709250688553, + 0.0324600487947464, + 0.010639012791216373, + 0.018110455945134163, + -0.02008138783276081, + 0.0015133945271372795, + -0.008150207810103893, + -0.004919789265841246, + 0.04134935513138771, + -0.04396385699510574, + -0.03330473601818085, + -0.043400734663009644, + 0.03044889308512211, + -0.03937842324376106, + 0.03742760419845581, + 0.005389896687120199, + -0.048307955265045166, + 0.039861101657152176, + 0.02775394544005394, + 0.007964176125824451, + -0.007074239198118448, + -0.004258621484041214, + 0.009638462215662003, + 0.005686542019248009, + 0.012469164095818996, + -0.026607586070895195, + -0.0005404980038292706, + 0.06246648728847504, + 0.002619530074298382, + 0.04862973839044571, + -0.021076910197734833, + -0.014792048372328281, + 0.011071410961449146, + 0.024093642830848694, + -0.002672322792932391, + 0.02153947576880455, + 0.018643410876393318, + 0.018834471702575684, + 0.02025233581662178, + 0.015003220178186893, + 0.008145179599523544, + -0.0035396337043493986, + 0.006807761266827583, + -0.05755927041172981, + -0.029181865975260735, + -0.0486699640750885, + 0.05281294137239456, + -0.014983108267188072, + 0.0020689761731773615, + -0.024636654183268547, + 0.03054945170879364, + -0.02568245492875576, + -0.034893546253442764, + -0.006088773254305124, + 0.03215837478637695, + 0.03481310233473778, + 0.03067012131214142, + -0.03893597051501274, + 0.013394295237958431, + -0.035175107419490814, + -0.012177546508610249, + 0.003418964333832264, + -0.02869918942451477, + 0.012961897067725658, + -0.000955298834014684, + 0.04790572449564934, + 0.008135124109685421, + 0.0008647968643344939, + 0.032982949167490005, + -0.023530518636107445, + -0.010850183665752411, + 0.014228925108909607, + -0.007169769145548344, + 0.013595410622656345, + -0.012529498897492886, + -0.04975598677992821, + 0.031474582850933075, + 0.00836640689522028, + 0.03155503049492836, + -0.022585276514291763, + 0.029865657910704613, + -0.013937307521700859, + 0.010307171382009983, + 0.01678309217095375, + 0.01728588156402111, + 0.021278025582432747, + -0.017497053369879723, + 0.05599056929349899, + -0.011182024143636227, + 0.007139601744711399, + 0.009889856912195683, + 0.035114776343107224, + -0.029785212129354477, + -0.04694036766886711, + -0.022062376141548157, + 0.008808860555291176, + 0.019518263638019562, + 0.012107156217098236, + -0.002515201224014163, + 0.00215445039793849, + -0.027653386816382408, + -0.001859061885625124, + -0.02250482887029648, + 0.02841762639582157, + -0.00015201506903395057, + -0.012569721788167953, + -0.025702567771077156, + 0.01885458268225193, + -0.06121957302093506, + -0.038413070142269135, + 0.01241888478398323, + -0.026949483901262283, + -0.08720370382070541, + 0.005766988266259432, + 0.005540733225643635, + -0.0024485818576067686, + 0.03553711622953415, + -0.0013675857335329056, + -0.07228092849254608, + 0.025501450523734093, + 0.00786361750215292, + -0.010277004912495613, + -0.004301358945667744, + 0.04207337275147438, + 0.03396841511130333, + -0.021278025582432747, + 0.003192709293216467, + -0.02270594611763954, + 0.012891506776213646, + -0.026728255674242973, + 0.013394295237958431, + -0.0761021226644516, + -0.003439075779169798, + -0.044124752283096313, + -0.013293737545609474, + -0.01729593612253666, + -0.02988577075302601, + -0.05031910911202431, + -0.02338973805308342, + 0.038071174174547195, + 0.07018932700157166, + -0.05977154150605202, + -0.0033862830605357885, + -0.04102757200598717, + 0.02489810436964035, + -0.04694036766886711, + 0.006108884699642658, + 0.0023668785579502583, + -0.02875952236354351, + -0.04066556319594383, + 0.007003848906606436, + -0.02658747509121895, + -0.019840048626065254, + -0.00776306027546525, + 0.06580501049757004, + -0.027572941035032272, + -0.005686542019248009, + -0.021961817517876625, + -0.05418052896857262, + 0.013173067942261696, + 0.025139443576335907, + 0.0016529184067621827, + -0.030127108097076416, + 0.029141642153263092, + -0.07135579735040665, + 0.00593290850520134, + -0.03519522026181221, + 0.013464685529470444, + -0.018170788884162903, + 0.012700446881353855, + -0.02310817688703537, + 0.001608924358151853, + -0.02775394544005394, + -0.027170710265636444, + 0.026869036257267, + 0.05506543815135956, + -0.0008603974711149931, + -0.047986168414354324, + -0.037849947810173035, + 0.046296797692775726, + 0.0065965899266302586, + -0.0032982949633151293, + -0.022283602505922318, + -0.032540496438741684, + 0.009246286936104298, + 0.011493753641843796, + 0.012388717383146286, + -0.01891491748392582, + 0.016773035749793053, + -0.00236310763284564, + -0.02131824754178524, + 0.01953837461769581, + 0.009869745932519436, + 0.02455620840191841, + 0.01510377787053585, + -0.05578945204615593, + -0.03513488546013832, + 0.01116191316395998, + 0.012408829294145107, + 0.018271347507834435, + -0.005389896687120199, + 0.010367506183683872, + 0.02159981057047844, + -0.07545855641365051, + -0.006531227380037308, + 0.0031424304470419884, + -0.02869918942451477, + -0.005837378557771444, + -0.04460742697119713, + -0.06701169908046722, + -0.003909183666110039, + 0.027894726023077965, + -0.052853167057037354, + -0.030026551336050034, + -0.03569800779223442, + -0.009291538037359715, + -0.00472621526569128, + 0.009236231446266174, + -0.010900462977588177, + -0.01778867095708847, + -0.0077077532187104225, + -0.016652368009090424, + 0.02769361063838005, + 0.01125241443514824, + 0.015043443068861961, + 0.016481418162584305, + 0.002522743074223399, + 0.021197577938437462, + -0.02059423178434372, + -0.012589833699166775, + 0.015415506437420845, + -0.003599968273192644, + 0.011906040832400322, + -0.007551888935267925, + -0.03988121449947357, + -0.013052399270236492, + 0.03173603489995003, + -0.009009976871311665, + -0.005002749152481556, + -0.006159163545817137, + 0.0060234107077121735, + 0.01846240647137165, + 0.058444179594516754, + 0.03165558725595474, + -0.007989315316081047, + 0.04016277566552162, + -0.023852303624153137, + 0.012589833699166775, + -0.030469005927443504, + 0.0012242909288033843, + -0.010347395204007626, + -0.028578519821166992, + -0.023570742458105087, + -0.010111084207892418, + -0.027371825650334358, + -0.020564064383506775, + 0.017366327345371246, + 0.026426583528518677, + 0.010357450693845749, + 0.015093721449375153, + -0.03648236021399498, + -0.01913614384829998, + -0.010251864790916443, + 0.009412207640707493, + -0.040424223989248276, + 0.033425405621528625, + -0.012549609877169132, + -0.04380296543240547, + 0.025783013552427292, + 0.029523761942982674, + -0.0007189880707301199, + 0.036120351403951645, + 0.0035346057265996933, + 0.012288159690797329, + -0.005852462258189917, + 0.006566422525793314, + -0.014671378768980503, + -0.05727770924568176, + 0.06170225143432617, + -0.01891491748392582, + -0.022122710943222046, + 0.009105506353080273, + -0.01935737207531929, + 0.044124752283096313, + -0.017376383766531944, + 0.002845784882083535, + -0.009713880717754364, + 0.024093642830848694, + 0.008713331073522568, + 0.024978550150990486, + 0.018814358860254288, + 0.026507029309868813, + 0.010950741358101368, + -0.01071945857256651, + -0.0010049492120742798, + 0.014771937392652035, + 0.01918642409145832, + 0.013545132242143154, + -0.006591562181711197, + -0.061863142997026443, + -0.031816478818655014, + 0.004102757200598717, + -0.022424383088946342, + 0.02159981057047844, + -0.012348494492471218, + -0.007682614028453827, + 0.04460742697119713, + 0.01241888478398323, + -0.003554717404767871, + -0.01779872551560402, + -0.016602087765932083, + 0.014872495085000992, + -0.020674677565693855, + -0.01913614384829998, + -0.0032605857122689486, + -0.002591876545920968, + 0.00140655180439353, + -0.013233402743935585, + 0.013173067942261696, + -0.02505899779498577, + -0.007994342595338821, + 0.009266398847103119, + 0.0062496657483279705, + -0.01645125262439251, + -0.033988527953624725, + -0.010940685868263245, + 0.0026496972423046827, + 0.0481068380177021, + -0.05039955675601959, + 0.00036483615986071527, + 0.009246286936104298, + 0.022927172482013702, + 0.030790790915489197, + -0.025380782783031464, + -0.02244449593126774, + 0.008240709081292152, + -0.053295619785785675, + -0.030569562688469887, + 0.05345651134848595, + 0.04738282412290573, + 0.004663366824388504, + 0.023530518636107445, + 0.01778867095708847, + -0.003728179493919015, + -0.021700367331504822, + -0.01694398559629917, + -0.004032366909086704, + -0.017587553709745407, + -0.02652714028954506, + 0.02093612775206566, + -0.00593290850520134, + 0.000125068734632805, + 0.024696988984942436, + 0.010618900880217552, + -0.018603188917040825, + 0.0035446614492684603, + 0.00011320605699438602, + -0.02634613588452339, + -0.03032822534441948, + 0.01510377787053585, + 0.02662769891321659, + -0.010820016264915466, + -0.026265690103173256, + 0.001723308814689517, + 0.015646789222955704, + 0.04203315079212189, + 0.017979729920625687, + 0.012750725261867046, + 0.029061196371912956, + -0.015214391052722931, + 0.005611123982816935, + -0.022585276514291763, + 0.0033209205139428377, + 0.05414030700922012, + 0.009824494831264019, + -0.013917195610702038, + -0.03286227956414223, + 0.0086731081828475, + 0.037347156554460526, + -0.029282422736287117, + 0.0016768008936196566, + 0.010015553794801235, + -0.0038765021599829197, + -0.015807682648301125, + -0.0007824651547707617, + 0.027231045067310333, + -0.02270594611763954, + -0.01029711589217186, + -0.01577751524746418, + -0.06512121111154556, + 0.010608845390379429, + -0.011292638257145882, + 0.013444574549794197, + 0.02747238427400589, + -0.012388717383146286, + 0.012821116484701633, + -0.022786391898989677, + 0.006470892578363419, + -0.011513864621520042, + 0.026426583528518677, + 0.002682378515601158, + -0.0413895808160305, + -0.029443316161632538, + 0.004628171678632498, + -0.007783171720802784, + 0.02282661385834217, + -0.061018455773591995, + 0.0019508207915350795, + 0.025219889357686043, + 0.027271268889307976, + -0.013806582428514957, + -0.025541674345731735, + -0.03909686207771301, + -0.0067826216109097, + 0.002355565782636404, + 0.018050121143460274, + -0.034270089119672775, + -0.02367129921913147, + -0.023128287866711617, + 0.0005860632518306375, + 0.008130095899105072, + -0.012449052184820175, + -0.020564064383506775, + 0.007431219331920147, + -0.00794909242540598, + -0.045291222631931305, + -0.028156176209449768, + -0.017436718568205833, + 0.012288159690797329, + -0.007697697728872299, + -0.010347395204007626, + 0.01610935479402542, + 0.012881450355052948, + -0.0007837221492081881, + -0.04018288478255272, + -0.027412049472332, + -0.014771937392652035, + 0.00527425529435277, + 0.008587634190917015, + -0.011453530751168728, + 0.011533976532518864, + 0.017145100980997086, + 0.037347156554460526, + 0.02869918942451477, + -0.01723560318350792, + -0.024073531851172447, + -0.04167114198207855, + 0.012881450355052948, + -0.007139601744711399, + 0.017145100980997086, + -0.007039044052362442, + -0.0038538766093552113, + -0.0020903446711599827, + 0.024777434766292572, + -0.017637833952903748, + 0.01054851058870554, + -0.032138265669345856, + -0.022625498473644257, + 0.0026220439467579126, + -0.00545525923371315, + -0.017879171296954155, + -0.015435618348419666, + -0.03318406641483307, + 0.002266320865601301, + 0.004997721407562494, + 0.02747238427400589, + 0.022866837680339813, + -0.0179093386977911, + 0.02115735597908497, + 0.02524000033736229, + 0.01558645535260439, + 0.018764080479741096, + -0.008517242968082428, + 0.005535705480724573, + 0.03776950016617775, + -0.010307171382009983, + 0.020614342764019966, + 0.0046608527190983295, + -0.007436247542500496, + 0.02875952236354351, + 0.007049100007861853, + 0.06089778617024422, + 0.0067826216109097, + -0.02920197695493698, + -0.021700367331504822, + 0.034390758723020554, + 0.002321627689525485, + 0.027331603690981865, + -0.007662502117455006, + 0.029282422736287117, + 0.01177531573921442, + 0.012861339375376701, + -0.007209992501884699, + 0.002213527914136648, + 0.03207793086767197, + -0.004794091917574406, + 0.006330111995339394, + 0.008999920450150967, + 0.015355171635746956, + 0.047423046082258224, + -0.04376274347305298, + 0.01640097238123417, + 0.005731793120503426, + 0.008371435105800629, + 0.0022675776854157448, + 0.03943875804543495, + 0.025501450523734093, + 0.019216589629650116, + -0.020895905792713165, + 0.0020828028209507465, + 0.028377404436469078, + 0.02326906844973564, + -0.003529577748849988, + -0.01138313952833414, + 0.005223976448178291, + -0.0033862830605357885, + -0.048026394098997116, + 0.028075730428099632, + 0.016260191798210144, + -0.004598004277795553, + -0.01589818485081196, + -0.009914996102452278, + 0.032540496438741684, + -0.00842171348631382, + 0.012509386986494064, + -0.028176289051771164, + 0.006430669687688351, + -0.02863885462284088, + 0.0034667293075472116, + -0.0045351553708314896, + 0.024375203996896744, + -0.013756303116679192, + 0.007918925024569035, + -0.015908239409327507, + 0.002095372648909688, + -0.027572941035032272, + -0.014872495085000992, + -0.012690391391515732, + 0.034611985087394714, + 0.020242279395461082, + -0.012630056589841843, + 0.018170788884162903, + -0.029342757537961006, + 0.04537166655063629, + 0.007230103947222233, + -0.014500430785119534, + 0.004874538164585829, + 0.015234502963721752, + 0.03573823347687721, + -0.005430119577795267, + 0.002820645458996296, + -0.07256248593330383, + 0.059007301926612854, + -0.03887563571333885, + 0.013605467043817043, + 0.03167570009827614, + -0.007134573999792337, + 0.01241888478398323, + 0.0041882311925292015, + 0.004092701245099306, + -0.0025793069507926702, + 0.0021242829971015453, + 0.014369705691933632, + 0.006164191290736198, + -0.012187601998448372, + 0.03951920568943024, + -0.04295828193426132, + -0.008693219162523746, + -0.008723386563360691, + 0.008436797186732292, + 0.022343937307596207, + -0.0036954982206225395, + 0.014711602590978146, + 0.008718359284102917, + 0.030368447303771973, + 0.049997325986623764, + 0.02042328380048275, + 0.01750710792839527, + 0.009015004150569439, + -0.019457928836345673, + 0.011493753641843796, + -0.008034566417336464, + -0.008044621907174587, + 0.023510407656431198, + 0.00042925600428134203, + 0.009522820822894573, + 0.0055306777358055115, + -0.0006649382994510233, + 0.022907061502337456, + 0.005430119577795267, + 0.040142662823200226, + -0.0028759522829204798, + 0.03821195289492607, + -0.007506637834012508, + 0.04500965774059296, + 0.016250135377049446, + 0.006139052100479603, + 0.0010363735491409898, + 0.06439720094203949, + 0.02349029667675495, + 0.002102914499118924, + -0.017708223313093185, + -0.007139601744711399, + -0.02809584140777588, + 0.03905664011836052, + -0.04967553913593292, + 0.023188622668385506, + 0.005766988266259432, + 0.007220047991722822, + 0.0027125459164381027, + 0.01672275736927986, + -0.0005398695357143879, + 0.020352892577648163, + -0.010256893001496792, + -0.0068680960685014725, + -0.02226349152624607, + -0.005314478185027838, + 0.029081307351589203, + -0.013897084631025791, + -0.006315028294920921, + -0.006430669687688351, + -0.011011076159775257, + 0.02489810436964035, + -0.012881450355052948, + -0.016551809385418892, + 0.0015624164370819926, + -0.008104956708848476, + 0.030066775158047676, + 0.018482519313693047, + 0.00831110030412674, + 0.01110157836228609, + 0.005545761436223984, + -0.013685912825167179, + -0.01751716434955597, + 0.004522585775703192, + -0.010960797779262066, + 0.004615601617842913, + -0.04303872585296631, + -0.004899677354842424, + -0.017668001353740692, + -0.028055619448423386, + 0.04694036766886711, + -0.0005521250423043966, + 0.03648236021399498, + 0.010588733479380608, + 0.05124424025416374, + -0.005430119577795267, + -0.033767301589250565, + 0.03825217857956886, + 0.004401916638016701, + -0.017426662147045135, + 0.010347395204007626, + -0.028719300404191017, + -0.0001223191065946594, + -0.006445753388106823, + 0.006928430404514074, + -0.01412836741656065, + 0.01717526838183403, + 0.014158534817397594, + 0.02288694866001606, + 0.0019998427014797926, + -0.021499251946806908, + -0.00987980142235756, + 0.047302376478910446, + -0.009025060571730137, + 0.009432319551706314, + 0.030469005927443504, + 0.037729278206825256, + 0.0004638227401301265, + 0.004520072136074305, + -0.01163453422486782, + 0.013545132242143154, + -0.003049414372071624, + 0.024495873600244522, + 0.033204175531864166, + 0.02389252744615078, + 0.01796967349946499, + -0.010025610215961933, + 0.042153820395469666, + 0.016551809385418892, + 0.033264510333538055, + -0.01169486902654171, + 0.010608845390379429, + -0.006873123813420534, + -0.002973996102809906, + 0.023872414603829384, + -0.034994106739759445, + 0.035557229071855545, + 0.034270089119672775, + 0.03231927007436752, + 0.0018024981254711747, + -0.020121609792113304, + -0.026507029309868813, + 0.03529577702283859, + 0.01953837461769581, + 0.040826454758644104, + 0.0021871316712349653, + 0.024978550150990486, + 0.030509227886795998, + 0.014389817602932453, + 0.029403092339634895, + 0.0029212033841758966, + 0.016049019992351532, + -0.007768088020384312, + 0.02194170653820038, + 0.00917086936533451, + 0.06580501049757004, + -0.006008327007293701, + 0.0288198571652174, + -0.03266116604208946, + -0.015254613943397999, + 0.05216937139630318, + -0.015747347846627235, + -0.02517966739833355, + 0.00196590437553823, + -0.02159981057047844, + -0.012630056589841843, + -0.004668394569307566, + -0.013746247626841068, + 0.011906040832400322, + -0.04617612808942795, + -0.003429020056501031, + 0.010649068281054497, + -0.00855746679008007, + -0.001195380580611527, + 0.027713721618056297, + 0.03599968180060387, + 0.030469005927443504, + -0.026728255674242973, + 0.02433498203754425, + 0.004854426719248295, + -0.019337259232997894, + -0.01616968959569931, + 0.03441087156534195, + 0.04935375601053238, + 0.03766894340515137, + 0.03312373161315918, + -0.03372707590460777, + -0.008743498474359512, + 0.02210259810090065, + -0.007858590222895145, + 0.009789299219846725, + 0.008517242968082428, + 0.02332940325140953, + 0.00973901990801096, + 0.010277004912495613, + -0.025481339544057846, + -0.020634455606341362, + 0.01594846323132515, + -0.01387697272002697, + -0.00022546938271261752, + -0.007426191587001085, + 0.014671378768980503, + -0.03984098881483078, + 0.018703745678067207, + 0.021459028124809265, + 0.005294366739690304, + -0.017034485936164856, + -0.044124752283096313, + 0.023309292271733284, + 0.017828892916440964, + 0.00009655117173679173, + 0.02176070213317871, + -0.0018502629827708006, + -0.0099351080134511, + -0.009552988223731518, + -0.026507029309868813, + 0.026768479496240616, + 0.01610935479402542, + -0.024536097422242165, + -0.061139125376939774, + -0.012408829294145107, + -0.011564143933355808, + -0.014731713570654392, + -0.0013675857335329056, + 0.020433340221643448, + -0.025079108774662018, + -0.01491271797567606, + 0.0330231711268425, + -0.00878874957561493, + 0.0018992848927155137, + 0.00418320344761014, + -0.01858307607471943, + 0.004034880548715591, + -0.03833262249827385, + 0.004379291087388992, + 0.03905664011836052, + 0.003527063876390457, + -0.0004785921482834965, + 0.0010087201371788979, + 0.004251080099493265, + -0.0033083506859838963, + 0.01102113164961338, + 0.025541674345731735, + 0.006083745509386063, + 0.0007805796922184527, + -0.014178645797073841, + 0.013082566671073437, + 0.009060255251824856, + -0.01309262216091156, + 0.05836373195052147, + -0.048871077597141266, + -0.036784034222364426, + 0.029242200776934624, + 0.03437064588069916, + 0.025139443576335907, + 0.029181865975260735, + 0.002647183369845152, + 0.01213732361793518, + -0.004291302990168333, + -0.03324440121650696, + -0.02562212012708187, + -0.007265299092978239, + 0.0006705946289002895, + -0.004849398508667946, + -0.0413895808160305, + 0.004374263342469931, + 0.006893235258758068, + 0.012831171974539757, + 0.014198757708072662, + -0.03048911690711975, + -0.014419985003769398, + 0.0005775787285529077, + 0.025762900710105896, + -0.013384239748120308, + -0.04000188410282135, + 0.0068630678579211235, + 0.03497399389743805, + 0.004897163715213537, + -0.00558095658197999, + 0.0012343466514721513, + -0.011111633852124214, + -0.00588765786960721, + -0.015304893255233765, + 0.004721187520772219, + 0.016773035749793053, + -0.052410710602998734, + 0.006993792951107025, + -0.03937842324376106, + -0.017275825142860413, + -0.05196825787425041, + -0.01907580904662609, + -0.02684892527759075, + 0.008451880887150764, + 0.02103668637573719, + 0.01177531573921442, + 0.01891491748392582, + 0.03698514774441719, + 0.009025060571730137, + 0.015214391052722931, + 0.000722758995834738, + -0.0009955220157280564, + 0.003939350601285696, + 0.015345116145908833, + 0.04525099694728851, + -0.015636734664440155, + -0.004268677439540625, + -0.006415585987269878, + 0.004288788884878159, + 0.0436420738697052, + -0.0030846097506582737, + -0.007546860724687576, + -0.0022248406894505024, + 0.016310470178723335, + -0.0022776336409151554, + 0.01116191316395998, + -0.0015309921000152826, + -0.04344095662236214, + -0.00864796806126833, + 0.01808028854429722, + 0.02445564977824688, + 0.00799937080591917, + 0.0028533267322927713, + -0.003836279036477208, + 0.024355093017220497, + 0.009502709843218327, + -0.007984287105500698, + -0.0009967789519578218, + -0.018170788884162903, + 0.016551809385418892, + -0.014148478396236897, + 0.023409849032759666, + 0.00786361750215292, + -0.017094820737838745, + -0.020352892577648163, + 0.014118310995399952, + -0.006948542315512896, + 0.0012651424622163177, + 0.02920197695493698, + -0.021016575396060944, + -0.0011626993073150516, + -0.01211721170693636, + -0.011121689341962337, + 0.012951841577887535, + -0.0039946576580405235, + 0.004359179642051458, + -0.04738282412290573, + -0.03764883056282997, + -0.0031474584247916937, + 0.002175818895921111, + -0.061139125376939774, + -0.014842327684164047, + -0.002404587808996439, + -0.011624478735029697, + 0.013746247626841068, + 0.00727535504847765, + -0.010789848864078522, + -0.023369627073407173, + 0.02819640003144741, + 0.01583785004913807, + -0.01135297305881977, + -0.035175107419490814, + -0.017547331750392914, + -0.023088064044713974, + -0.012680334970355034, + -0.049152638763189316, + 0.0076876417733728886, + 0.002282661385834217, + 0.004708617925643921, + -0.0318768136203289, + -0.0282567348331213, + 0.02194170653820038, + -0.020574120804667473, + -0.023711523041129112, + -0.00024290986766573042, + -0.013685912825167179, + -0.023088064044713974, + -0.02658747509121895, + -0.01079990528523922, + -0.011725036427378654, + -0.031474582850933075, + 0.011001020669937134, + 0.017607666552066803, + -0.030247777700424194, + 0.004105271305888891, + 0.006832900922745466, + 0.03151480481028557, + -0.005208892747759819, + -0.002808075863867998, + -0.03229915723204613, + -0.013897084631025791, + 0.008466964587569237, + 0.018170788884162903, + 0.0019193964544683695, + -0.016250135377049446, + -0.022866837680339813, + -0.009085394442081451, + -0.01952832005918026, + -0.04207337275147438, + 0.012207713909447193, + -0.034209754317998886, + -0.004432084038853645, + 0.011976431123912334, + -0.024153977632522583, + 0.012076988816261292, + -0.031977370381355286, + 0.0007013904978521168, + -0.0077278646640479565, + 0.015465785749256611, + -0.031414248049259186, + -0.015878072008490562, + 0.01593840681016445, + 0.014168590307235718, + -0.006018382962793112, + -0.009789299219846725, + -0.025863459333777428, + 0.011242358945310116, + 0.004575378727167845, + 0.0015787570737302303, + 0.005027888808399439, + 0.060294441878795624, + 0.03346562758088112, + 0.018321625888347626, + 0.03378741070628166, + 0.02008138783276081, + 0.0014643726171925664, + 0.02976510114967823, + -0.01778867095708847, + 0.015043443068861961, + -0.024536097422242165, + 0.012087044306099415, + 0.05208892747759819, + 0.011011076159775257, + -0.003911697305738926, + -0.004298844840377569, + -0.024797547608613968, + -0.024817658588290215, + -0.037286821752786636, + -0.025038884952664375, + 0.03274160996079445, + -0.02109702117741108, + 0.01997077465057373, + 0.03553711622953415, + -0.00861277338117361, + 0.0038790160324424505, + 0.05333584174513817, + -0.004821745213121176, + -0.012338439002633095, + 0.043280065059661865, + 0.00563626317307353, + -0.01298200897872448, + 0.05108334869146347, + 0.027210934087634087, + -0.029563985764980316, + -0.04094712436199188, + -0.006425641942769289, + 0.039358314126729965, + 0.018844526261091232, + -0.004746326711028814, + 0.005379840731620789, + 0.034209754317998886, + 0.03487343713641167, + 0.018733913078904152, + 0.002074004150927067, + -0.01583785004913807, + -0.02489810436964035, + 0.012519442476332188, + 0.006752454675734043, + 0.037849947810173035, + 0.008934558369219303, + -0.011624478735029697, + 0.055025212466716766, + -0.05767994001507759, + -0.023590853437781334, + 0.009427291341125965, + -0.009603267535567284, + -0.015415506437420845, + 0.017497053369879723, + -0.0038664464373141527, + -0.01840207166969776, + -0.016994263976812363, + -0.013394295237958431, + 0.009417235851287842, + 0.01048817578703165, + -0.0075870840810239315, + 0.0065161436796188354, + -0.020895905792713165, + 0.015174168162047863, + 0.028397515416145325, + -0.03620079904794693, + 0.022062376141548157, + -0.013193179853260517, + 0.020775236189365387, + -0.020996462553739548, + -0.009537904523313046, + 0.021338360384106636, + -0.0014781992649659514, + 0.02294728346168995, + 0.004693534225225449, + -0.027713721618056297, + -0.0012154921423643827, + 0.04291805624961853, + 0.05466320738196373, + 0.0022172988392412663, + -0.02298750728368759, + 0.03787005692720413, + 0.008039593696594238, + 0.021298136562108994, + 0.030851125717163086, + 0.04665880650281906, + 0.007536805234849453, + 0.014208813197910786, + 0.0051586139015853405, + -0.01840207166969776, + -0.01001052651554346, + 0.019648989662528038, + 0.01320323534309864, + 0.008818916976451874, + 0.01912608928978443, + -0.0008201743476092815, + 0.000346610089763999, + 0.012298216111958027, + 0.03760860860347748, + -0.008497131988406181, + -0.028719300404191017, + 0.008658024482429028, + -0.029141642153263092, + -0.014440095983445644, + -0.0003164427471347153, + 0.006847984157502651, + 0.04315939545631409, + 0.004552753176540136, + -0.022022152319550514, + -0.022343937307596207, + -0.025602009147405624, + 0.01772833615541458, + 0.025602009147405624, + -0.009558016434311867, + 0.013997642323374748, + -0.00769266951829195, + -0.03123324364423752, + 0.004952470306307077, + -0.0008314870647154748, + -0.015566343441605568, + -0.01577751524746418, + -0.031816478818655014, + 0.009100478142499924, + 0.02288694866001606, + -0.033546071499586105, + -0.008652996271848679, + 0.0013147928984835744, + 0.026728255674242973, + 0.05048000067472458, + 0.00703401630744338, + -0.019055698066949844, + -0.008708302862942219, + -0.012499331496655941, + -0.004303872585296631, + -0.018311571329832077, + -0.027492495253682137, + -0.008748526684939861, + -0.03129357844591141, + -0.0005772644653916359, + -0.013665801845490932, + 0.032138265669345856, + 0.022022152319550514, + 0.011654646135866642, + -0.0031399165745824575, + 0.0039142114110291, + 0.037910278886556625, + -0.021358471363782883, + -0.005339617840945721, + 0.008572550490498543, + 0.032701388001441956, + 0.03587901219725609, + -0.017245657742023468, + 0.00014926544099580497, + -0.012217769399285316, + -0.01241888478398323, + -0.04336051270365715, + -0.01298200897872448, + -0.009749076329171658, + 0.042113594710826874, + -0.02069479040801525, + -0.021217690780758858, + 0.04175158590078354, + 0.017145100980997086, + -0.032359492033720016, + -0.023148398846387863, + -0.010085945017635822, + 0.01065912377089262, + 0.024777434766292572, + -0.05060067027807236, + -0.020614342764019966, + 0.004173147492110729, + 0.01679314859211445, + 0.04315939545631409, + 0.005596040282398462, + -0.02002105303108692, + -0.004286275245249271, + -0.019890327006578445, + -0.010689291171729565, + 0.007290438748896122, + 0.004024825058877468, + 0.0026069602463394403, + -0.006038494408130646, + 0.020714901387691498, + 0.017326103523373604, + -0.0004072589799761772, + -0.03123324364423752, + -0.011795426718890667, + 0.025260113179683685, + 0.004175661597400904, + 0.034933771938085556, + 0.009382040239870548, + -0.014792048372328281, + -0.034390758723020554, + 0.011363028548657894, + -0.026607586070895195, + -0.020212111994624138, + 0.016240080818533897, + 0.05080178752541542, + 0.01381663791835308, + 0.04605545848608017, + 0.011373084038496017, + 0.002883494133129716, + 0.004477334674447775, + -0.008698247373104095, + 0.012941785156726837, + -0.03139413520693779, + 0.015345116145908833, + 0.00022436953440774232, + -0.030750567093491554, + -0.004962526261806488, + -0.004791577812284231, + 0.010538455098867416, + 0.0016554323956370354, + -0.042274486273527145, + 0.012147379107773304, + 0.016491474583745003, + -0.02288694866001606, + 0.021700367331504822, + 0.0017006833804771304, + 0.0031147771514952183, + -0.017708223313093185, + 0.015606566332280636, + -0.015294837765395641, + -0.023651188239455223, + 0.019719379022717476, + -0.001646633492782712, + -0.013887028209865093, + 0.038413070142269135, + 0.021740591153502464, + 0.02405341900885105, + -0.004399402532726526, + -0.009542932733893394, + 0.00951276533305645, + 0.00649100448936224, + 0.013897084631025791, + 0.014007697813212872, + -0.009869745932519436, + -0.04565322771668434, + -0.00786361750215292, + -0.02272605709731579, + 0.0282567348331213, + -0.03463209792971611, + -0.009301594458520412, + -0.00720496429130435, + 0.030469005927443504, + 0.015596510842442513, + -0.024073531851172447, + 0.020855681970715523, + 0.014500430785119534, + -0.03795050457119942, + -0.015636734664440155, + -0.061139125376939774, + -0.027894726023077965, + 0.008577577769756317, + 0.017537275329232216, + -0.04931353032588959, + 0.005867545958608389, + 0.0156568456441164, + -0.020795347169041634, + 0.021056797355413437, + -0.01474176999181509, + -0.0022336395923048258, + -0.010030637495219707, + 0.006164191290736198, + 0.03237960487604141, + -0.0021393666975200176, + 0.0008893078193068504, + 0.03431031107902527, + 0.011624478735029697 + ] + }, + { + "HotelId": "22", + "HotelName": "Lion's Den Inn", + "Description": "Full breakfast buffet for 2 for only $1. Excited to show off our room upgrades, faster high speed WiFi, updated corridors & meeting space. Come relax and enjoy your stay.", + "Description_fr": "Petit dĆ©jeuner buffet complet pour 2 pour seulement $1. ExcitĆ© de montrer nos mises Ć  niveau de la chambre, plus rapide WiFi Ć  haute vitesse, les couloirs et l'espace de rĆ©union. Venez vous dĆ©tendre et profiter de votre sĆ©jour.", + "Category": "Budget", + "Tags": [ + "laundry service", + "free wifi", + "restaurant" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2020-09-18T00:00:00Z", + "Rating": 3.9, + "Address": { + "StreetAddress": "16021 NE 36th Way", + "City": "Redmond", + "StateProvince": "WA", + "PostalCode": "98052", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.126381, + 47.640656 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "bathroom shower", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "jacuzzi tub", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "suite", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 233.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 153.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "coffee maker", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Suite, 2 Double Beds (Waterfront View)", + "Description_fr": "Suite, 2 lits doubles (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + } + ], + "embedding": [ + -0.014409282244741917, + -0.042170509696006775, + -0.0067620351910591125, + -0.005843013059347868, + -0.0551290288567543, + 0.024503156542778015, + 0.0025173211470246315, + 0.04278523847460747, + 0.031449608504772186, + 0.0206795334815979, + 0.026974372565746307, + 0.03562977910041809, + -0.012128631584346294, + 0.011009822599589825, + -0.012872455641627312, + 0.034326549619436264, + -0.04797356575727463, + 0.022290127351880074, + 0.018970582634210587, + -0.0031320517882704735, + -0.022228652611374855, + -0.005120704881846905, + -0.03673629090189934, + -0.0198803823441267, + 0.03331838920712471, + 0.01968366838991642, + 0.0025280790869146585, + -0.056161776185035706, + 0.016683785244822502, + -0.054145459085702896, + -0.025597376748919487, + -0.04138365387916565, + 0.015552680939435959, + -0.025167064741253853, + -0.001328586251474917, + 0.0069218650460243225, + -0.023150749504566193, + 0.00019546507974155247, + -0.016044465824961662, + -0.00046335309161804616, + 0.013843730092048645, + 0.029777543619275093, + 0.031154539436101913, + -0.022105706855654716, + 0.013425713405013084, + 0.011925770901143551, + -0.024589218199253082, + -0.03034309484064579, + -0.02317533828318119, + 0.014999423176050186, + -0.05576834827661514, + 0.00003479470615275204, + -0.022523723542690277, + -0.0551782064139843, + 0.0030736522749066353, + 0.05148982256650925, + 0.012079453095793724, + 0.004884033463895321, + -0.022732732817530632, + 0.0021023780573159456, + 0.09589795023202896, + -0.020470524206757545, + 0.045022860169410706, + 0.06181729584932327, + -0.004905548878014088, + -0.018269788473844528, + 0.003030621213838458, + 0.03366263955831528, + 0.018552565947175026, + 0.01049959659576416, + 0.035162582993507385, + 0.016634605824947357, + -0.04910466820001602, + -0.02375318482518196, + 0.06230907887220383, + 0.023962194100022316, + -0.010013959370553493, + -0.020027918741106987, + 0.02768746018409729, + -0.02051970362663269, + -0.03523635119199753, + -0.0127249201759696, + -0.003971158992499113, + 0.03179385885596275, + 0.02243766188621521, + -0.006442375015467405, + -0.059358373284339905, + 0.011243419721722603, + 0.05886659026145935, + 0.051735714077949524, + 0.038678839802742004, + 0.008606226183474064, + -0.020249221473932266, + -0.05134228616952896, + 0.02503182366490364, + 0.010050843469798565, + 0.01712639071047306, + -0.0045582265593111515, + -0.032728251069784164, + 0.021023781970143318, + 0.044186826795339584, + -0.05704698711633682, + -0.034646209329366684, + -0.007512006442993879, + 0.0009966318029910326, + -0.0710628405213356, + 0.005590973421931267, + 0.03307249769568443, + 0.007610362954437733, + 0.007727161981165409, + -0.072193942964077, + -0.012226988561451435, + -0.02906445600092411, + 0.023064685985445976, + -0.004850223194807768, + 0.03567895665764809, + -0.0013854487333446741, + -0.028080888092517853, + 0.003108999226242304, + -0.07012844830751419, + 0.02714649774134159, + 0.013438007794320583, + -0.021810635924339294, + -0.05217831954360008, + -0.035826489329338074, + -0.07180051505565643, + -0.07145626842975616, + 0.015183842740952969, + -0.059456728398799896, + -0.03934274986386299, + 0.016499364748597145, + 0.0026325832586735487, + 0.02908904477953911, + -0.021454092115163803, + -0.016142820939421654, + -0.0014999422710388899, + 0.006448522675782442, + 0.006267176941037178, + -0.019536133855581284, + -0.004281597677618265, + 0.027072729542851448, + 0.0018349704332649708, + 0.02265896461904049, + -0.029728364199399948, + -0.06683349609375, + -0.006866539362818003, + 0.027318621054291725, + 0.0020516628865152597, + -0.046645745635032654, + 0.026384230703115463, + -0.02423267439007759, + 0.0018149917013943195, + -0.03577731177210808, + -0.018933698534965515, + -0.020691826939582825, + 0.008366481401026249, + 0.0121962521225214, + -0.015761688351631165, + 0.012380671687424183, + 0.0774068608880043, + -0.01283557154238224, + -0.007315292488783598, + -0.03127748519182205, + 0.017212452366948128, + 0.02275732159614563, + -0.013978970237076283, + -0.042268864810466766, + 0.000056094155297614634, + -0.09614384174346924, + -0.05178489536046982, + 0.05709616467356682, + 0.036121562123298645, + -0.0014031223254278302, + 0.022413073107600212, + 0.06024358421564102, + 0.024466272443532944, + -0.02227783203125, + -0.040055837482213974, + 0.02147868275642395, + -0.003795960685238242, + 0.03258071467280388, + -0.004973169416189194, + 0.03747396916151047, + 0.013683900237083435, + 0.015134664252400398, + 0.01872468926012516, + -0.034203603863716125, + 0.004850223194807768, + -0.004026484675705433, + 0.013106053695082664, + 0.0043123341165483, + 0.034842923283576965, + 0.002481974195688963, + 0.002335975645110011, + 0.010296734981238842, + -0.027121907100081444, + 0.003974232356995344, + 0.011655289679765701, + -0.033244624733924866, + 0.05124393105506897, + -0.03752314671874046, + -0.05040789768099785, + 0.03245776891708374, + -0.01962219551205635, + 0.023691711947321892, + -0.017114095389842987, + 0.02621210739016533, + 0.03757232427597046, + -0.0036791618913412094, + 0.011157358065247536, + 0.029433295130729675, + 0.025966214016079903, + 0.006107347086071968, + 0.008901297114789486, + -0.028793973848223686, + -0.004413764923810959, + 0.005661667324602604, + 0.021072959527373314, + -0.0004706530016846955, + 0.03076111152768135, + -0.006174967624247074, + 0.01581086777150631, + 0.03614615276455879, + 0.05758794769644737, + 0.07371847331523895, + 0.04708835482597351, + -0.0508996807038784, + -0.04012960568070412, + -0.004008042626082897, + -0.025646554306149483, + 0.007186199072748423, + -0.013339650817215443, + 0.003519331803545356, + -0.022585196420550346, + -0.004518269095569849, + 0.05262092873454094, + 0.0006877296837046742, + -0.06004687026143074, + 0.004899401683360338, + -0.010542627424001694, + -0.0328511968255043, + -0.03440031781792641, + -0.04190002754330635, + 0.07470204681158066, + 0.037400200963020325, + -0.021429503336548805, + 0.004008042626082897, + -0.04489991441369057, + 0.010173789225518703, + 0.003875875612720847, + -0.019892677664756775, + 0.03476915508508682, + -0.014753530733287334, + -0.05581752583384514, + 0.027343211695551872, + -0.007143167778849602, + -0.021884404122829437, + 0.03917062655091286, + 0.03543306514620781, + -0.017581291496753693, + 0.020052507519721985, + 0.01088072918355465, + 0.009331608191132545, + -0.022708144038915634, + -0.010272146202623844, + -0.001850338652729988, + 0.015921518206596375, + 0.007671836297959089, + -0.02557278797030449, + -0.018736984580755234, + -0.046522799879312515, + 0.000125923688756302, + 0.007475122343748808, + 0.024244969710707664, + 0.03508881479501724, + -0.024736754596233368, + -0.040916457772254944, + 0.006620646920055151, + 0.02481052093207836, + 0.0064669642597436905, + -0.012786393985152245, + -0.023704007267951965, + 0.044506486505270004, + -0.040916457772254944, + 0.011034411378204823, + -0.009405376389622688, + 0.03730184584856033, + -0.013093758374452591, + -0.012897045351564884, + 0.005843013059347868, + -0.010044695809483528, + 0.041949205100536346, + 0.0177902989089489, + -0.021072959527373314, + -0.004542857874184847, + -0.0016167410649359226, + 0.06103044003248215, + -0.007561184465885162, + 0.020335283130407333, + 0.021368030458688736, + 0.0031366620678454638, + 0.03228564187884331, + -0.0031028520315885544, + 0.025044118985533714, + 0.007235377561300993, + 0.07839042693376541, + -0.027834994718432426, + 0.029752954840660095, + 0.01926565170288086, + -0.00992175005376339, + -0.013548659160733223, + -0.00393734872341156, + 0.019068939611315727, + -0.0017120243282988667, + 0.0009705057018436491, + 0.010487301275134087, + -0.03191680461168289, + 0.04177708178758621, + 0.0072292303666472435, + 0.007770192809402943, + 0.04703917354345322, + -0.020187748596072197, + 0.025499019771814346, + -0.01086843479424715, + 0.022892562672495842, + -0.021564744412899017, + 0.0752430111169815, + 0.009817245416343212, + 0.056801095604896545, + -0.039613232016563416, + 0.051096394658088684, + -0.007690277881920338, + 0.006254882551729679, + 0.007997643202543259, + -0.030392274260520935, + 0.02417120151221752, + 0.004865591414272785, + 0.01984350010752678, + -0.0011833561584353447, + 0.03440031781792641, + -0.004601257387548685, + -0.0530143566429615, + -0.05980097874999046, + 0.006264103576540947, + 0.023999076336622238, + -0.008581637404859066, + 0.03956405073404312, + 0.04908008128404617, + -0.004106399603188038, + 0.03658875823020935, + 0.0022729658521711826, + 0.0033195444848388433, + 0.008446396328508854, + 0.04094104841351509, + 0.04912925884127617, + 0.016597721725702286, + 0.09353739023208618, + 0.016523955389857292, + 0.0344494953751564, + 0.03203975036740303, + -0.03012179210782051, + 0.047776851803064346, + 0.04792438820004463, + -0.0010496522299945354, + 0.010376649908721447, + 0.014962539076805115, + -0.02950706146657467, + 0.02810547687113285, + 0.0006738982629030943, + 0.020236926153302193, + 0.009792656637728214, + 0.046203140169382095, + -0.00877220369875431, + 0.006891128607094288, + -0.04639985412359238, + 0.04234263300895691, + 0.04701458662748337, + 0.04266229271888733, + 0.04487532377243042, + -0.0418754406273365, + 0.013634721748530865, + -0.0172493364661932, + 0.023704007267951965, + 0.01876157335937023, + 0.03912144526839256, + -0.00404185289517045, + -0.01182741392403841, + -0.05104721710085869, + 0.01610593870282173, + -0.04362127184867859, + 0.03614615276455879, + 0.013511775061488152, + -0.03243317827582359, + -0.036244507879018784, + 0.020470524206757545, + 0.035383883863687515, + 0.006337870843708515, + 0.03666252642869949, + -0.0013431860134005547, + -0.01003240142017603, + 0.008729172870516777, + -0.04443271830677986, + -0.02908904477953911, + -0.043744221329689026, + -0.02311386540532112, + -0.006085831671953201, + 0.0016905087977647781, + -0.05242421478033066, + 0.015823161229491234, + 0.01706491783261299, + -0.008335744962096214, + -0.06344018131494522, + 0.024662986397743225, + -0.02906445600092411, + -0.0024666059762239456, + -0.015860045328736305, + 0.0003596173191908747, + -0.008077558130025864, + -0.02842513658106327, + 0.011224978603422642, + 0.009663563221693039, + 0.0238761305809021, + 0.020212337374687195, + 0.050137415528297424, + 0.02950706146657467, + 0.022105706855654716, + -0.026359641924500465, + -0.010997528210282326, + -0.06963666528463364, + -0.016696078702807426, + -0.03457244113087654, + -0.03742479160428047, + -0.008766056038439274, + 0.06653842329978943, + -0.014446165412664413, + 0.044285181909799576, + -0.06117797642946243, + 0.025019530206918716, + 0.008618521504104137, + 0.008889002725481987, + -0.004419912118464708, + -0.02272043749690056, + -0.048858776688575745, + -0.0003115914878435433, + -0.020495112985372543, + 0.007530448026955128, + -0.007647247053682804, + 0.05906330421566963, + 0.03385935351252556, + 0.013007696717977524, + -0.013106053695082664, + 0.002592625794932246, + -0.01654854416847229, + 0.022904856130480766, + -0.02093772031366825, + -0.022044233977794647, + 0.03808869794011116, + -0.017212452366948128, + -0.011071295477449894, + -0.030810290947556496, + 0.03926898166537285, + -0.006878833752125502, + -0.036859236657619476, + -0.029211990535259247, + 0.041531190276145935, + -0.004244714044034481, + -0.02265896461904049, + 0.04561299830675125, + 0.0005321260541677475, + 0.004269302822649479, + -0.06339100748300552, + 0.007333734538406134, + 0.00941152311861515, + 0.043965522199869156, + -0.0488341860473156, + -0.005252871662378311, + 0.029015278443694115, + -0.00814517866820097, + 0.025941625237464905, + 0.058522339910268784, + -0.0423918142914772, + 0.033564284443855286, + -0.0017304662615060806, + -0.004628920461982489, + -0.02844972535967827, + -0.040916457772254944, + -0.0029614639934152365, + -0.04465401917695999, + -0.05104721710085869, + -0.03248235583305359, + 0.03858048468828201, + 0.04730965569615364, + 0.027638280764222145, + -0.011341776698827744, + -0.0127249201759696, + -0.013216705061495304, + -0.004161725286394358, + 0.04221968725323677, + 0.01667148992419243, + -0.026777658611536026, + -0.03159714490175247, + -0.025400662794709206, + -0.0016244252910837531, + 0.015355966985225677, + 0.06432539224624634, + -0.007327586878091097, + -0.05916165933012962, + -0.039736177772283554, + 0.018097665160894394, + 0.031351253390312195, + -0.004459869582206011, + 0.002732476918026805, + 0.015085485763847828, + 0.03417901322245598, + -0.028498904779553413, + 0.019056644290685654, + 0.033416748046875, + 0.02010168693959713, + -0.00414635706692934, + 0.002647951478138566, + 0.026802247390151024, + 0.009909454733133316, + -0.0008944328292272985, + -0.015122368931770325, + 0.006528437603265047, + -0.004238566383719444, + -0.008139031007885933, + -0.035064224153757095, + 0.014212568290531635, + -0.0029814427252858877, + 0.009159483946859837, + -0.0344986729323864, + -0.004982390441000462, + -0.007407501805573702, + 0.024429388344287872, + -0.018810752779245377, + 0.03157255798578262, + 0.030097203329205513, + 0.016339534893631935, + 0.0023528807796537876, + 0.030933236703276634, + 0.005440364591777325, + 0.008391071110963821, + -0.03339215740561485, + 0.005504911299794912, + -0.035703543573617935, + -0.00872302521020174, + -0.009466849267482758, + -0.001911811763420701, + -0.007259966805577278, + 0.004742645658552647, + -0.010843845084309578, + 0.0450720377266407, + -0.0037314139772206545, + -0.021368030458688736, + 0.0053020501509308815, + 0.016819024458527565, + -0.015663331374526024, + 0.015921518206596375, + -0.01804848574101925, + -0.007216935511678457, + -0.019646786153316498, + -0.002671003807336092, + -0.013290472328662872, + -0.007302997633814812, + 0.0076656886376440525, + 0.00604280037805438, + 0.03626909852027893, + 0.02820383384823799, + 0.00910415779799223, + -0.011483165435492992, + 0.04465401917695999, + -0.022093413397669792, + -0.026359641924500465, + 0.029113635420799255, + -0.004177093505859375, + 0.0127249201759696, + 0.006393196992576122, + -0.03373640775680542, + 0.011661436408758163, + 0.01908123306930065, + -0.0435229167342186, + 0.004087957553565502, + 0.010684015229344368, + -0.03894932195544243, + 0.0014261746546253562, + 0.05040789768099785, + -0.017691941931843758, + 0.016462482511997223, + 0.021072959527373314, + 0.014544522389769554, + 0.027712048962712288, + 0.018872225657105446, + -0.00010373576515121385, + 0.017876362428069115, + 0.021749163046479225, + 0.004186314530670643, + 0.014347809366881847, + -0.0318184494972229, + 0.018749279901385307, + -0.008858266286551952, + -0.031105361878871918, + -0.01648707129061222, + 0.016118232160806656, + -0.009866423904895782, + 0.012558943592011929, + -0.0540962815284729, + 0.003974232356995344, + -0.011003674939274788, + -0.036023203283548355, + 0.005083820782601833, + 0.013647016137838364, + 0.024589218199253082, + -0.022511430084705353, + -0.045022860169410706, + -0.002477363683283329, + -0.03526093810796738, + -0.0010104632237926126, + -0.013401123695075512, + -0.03248235583305359, + 0.0063870493322610855, + 0.0018288231221958995, + 0.02093772031366825, + -0.01844191364943981, + 0.022044233977794647, + 0.03555601090192795, + -0.02359335497021675, + -0.04760472849011421, + 0.014384692534804344, + -0.01003240142017603, + -0.01056106947362423, + 0.03774445131421089, + 0.031129950657486916, + -0.006983337923884392, + -0.019314831122756004, + 0.019007466733455658, + 0.012577385641634464, + -0.010112316347658634, + -0.01182741392403841, + -0.03140043094754219, + 0.01744605042040348, + -0.028498904779553413, + 0.004675025120377541, + -0.014765826053917408, + 0.016093643382191658, + -0.010591805912554264, + 0.09589795023202896, + -0.028080888092517853, + 0.01187659241259098, + -0.002331365365535021, + 0.010794666595757008, + -0.010739341378211975, + 0.02631046436727047, + 0.02393760345876217, + 0.003851286368444562, + -0.015933813527226448, + -0.02852349355816841, + 0.004502900410443544, + -0.0106102479621768, + 0.010186083614826202, + -0.008686141110956669, + 0.03641663119196892, + -0.06122715398669243, + 0.007155462633818388, + -0.011065147817134857, + 0.05847316235303879, + -0.04465401917695999, + 0.017482934519648552, + -0.05448970943689346, + 0.008348039351403713, + 0.027539923787117004, + -0.010733193717896938, + 0.04443271830677986, + 0.024404799565672874, + -0.013843730092048645, + -0.03024473786354065, + -0.005658593960106373, + -0.010966791771352291, + 0.02327369526028633, + 0.02365482784807682, + 0.001708950730971992, + 0.013769961893558502, + -0.005763098131865263, + -0.01150775421410799, + 0.0312528982758522, + -0.0008736856398172677, + -0.002540373709052801, + -0.002978369127959013, + 0.020495112985372543, + -0.020630354061722755, + 0.012104042805731297, + 0.03641663119196892, + 0.021724574267864227, + -0.001321670482866466, + -0.016339534893631935, + -0.057342056185007095, + 0.0076165106147527695, + 0.010345913469791412, + -0.008876707404851913, + -0.0710628405213356, + 0.027318621054291725, + 0.023826953023672104, + 0.011882740072906017, + -0.03870343044400215, + 0.02790876291692257, + -0.012810982763767242, + 0.0008314229198731482, + -0.005544868763536215, + 0.01924106292426586, + 0.03258071467280388, + 0.017581291496753693, + -0.023445820435881615, + 0.020113980397582054, + 0.0062733241356909275, + -0.004195535555481911, + 0.01648707129061222, + -0.05124393105506897, + 0.0026018465869128704, + 0.009583648294210434, + -0.0028477387968450785, + 0.022462250664830208, + 0.01715097948908806, + 0.0540962815284729, + -0.00446601677685976, + 0.003826697124168277, + -0.02455233410000801, + 0.04010501503944397, + -0.022351600229740143, + -0.013413419015705585, + 0.0424409918487072, + 0.014581406489014626, + 0.03157255798578262, + -0.0019410114036872983, + 0.009122599847614765, + 0.03223646432161331, + -0.007677983492612839, + 0.011169652454555035, + -0.018220610916614532, + -0.019388599321246147, + -0.026236696168780327, + 0.023249106481671333, + 0.010136905126273632, + 0.024626102298498154, + 0.0060335793532431126, + -0.014163389801979065, + 0.003623835975304246, + 0.006052021402865648, + -0.0020654944237321615, + -0.02896609902381897, + 0.031867627054452896, + -0.022265536710619926, + 0.009177925996482372, + 0.00415250426158309, + -0.012847866863012314, + -0.00894432794302702, + -0.03555601090192795, + 0.0116798784583807, + 0.03174468129873276, + 0.002240692498162389, + 0.014839593321084976, + -0.0032642188016325235, + 0.00926398765295744, + -0.0076656886376440525, + 0.024785932153463364, + -0.01942548342049122, + 0.031129950657486916, + 0.0033441337291151285, + -0.034523263573646545, + -0.011317187920212746, + -0.006596057675778866, + -0.0002748997649177909, + -0.02090083621442318, + -0.014790414832532406, + -0.019597606733441353, + 0.006125789135694504, + 0.0012402187567204237, + -0.019364008679986, + -0.0018380440305918455, + 0.03152337670326233, + -0.006608352530747652, + 0.002511173952370882, + 0.0009121063048951328, + -0.008341892622411251, + -0.020396756008267403, + -0.004032631870359182, + -0.02272043749690056, + 0.032949551939964294, + -0.016302652657032013, + -0.004324628971517086, + -0.0016182779800146818, + 0.010677868500351906, + -0.09378328174352646, + 0.028302190825343132, + -0.030416863039135933, + 0.022548312321305275, + -0.0007495869649574161, + -0.014101916924118996, + -0.0039896005764603615, + 0.03523635119199753, + 0.03189221769571304, + 0.02010168693959713, + -0.02608915977180004, + -0.03216269612312317, + -0.0014461533864960074, + 0.007997643202543259, + -0.00772101478651166, + -0.019339419901371002, + 0.02788417413830757, + 0.015060896053910255, + -0.0403263196349144, + -0.008864413015544415, + -0.026285873726010323, + -0.019191885367035866, + -0.006645236164331436, + 0.03371181711554527, + 0.00035827260580845177, + -0.019388599321246147, + -0.0005071526393294334, + -0.017458345741033554, + -0.009583648294210434, + 0.011311040259897709, + -0.012921634130179882, + -0.0010980622610077262, + 0.0008583174203522503, + -0.02692519500851631, + -0.005818423815071583, + -0.03044145181775093, + 0.025523608550429344, + 0.03213810920715332, + -0.049473509192466736, + -0.007702572736889124, + -0.016499364748597145, + 0.03228564187884331, + 0.007444385904818773, + 0.018712395802140236, + 0.01571251079440117, + 0.04177708178758621, + -0.01920417882502079, + -0.020126275718212128, + 0.009159483946859837, + 0.03880178555846214, + 0.005406554322689772, + 0.011722910217940807, + 0.010739341378211975, + -0.03806411102414131, + 0.017163274809718132, + 0.03395771235227585, + 0.010468860156834126, + 0.02525312639772892, + -0.02323681116104126, + -0.0026817615143954754, + -0.0434737391769886, + 0.027072729542851448, + -0.039195213466882706, + 0.013376534916460514, + 0.03309708833694458, + 0.03710513189435005, + 0.02449086122214794, + 0.026039982214570045, + 0.01674525812268257, + -0.003657646244391799, + 0.0339331217110157, + 0.023212222382426262, + -0.002505026524886489, + 0.015724804252386093, + 0.02685142681002617, + 0.004613552242517471, + 0.005843013059347868, + 0.030048025771975517, + -0.005443438421934843, + -0.020827068015933037, + -0.01696656085550785, + -0.0010158420773223042, + -0.008864413015544415, + 0.030687345191836357, + 0.0014461533864960074, + 0.005286681931465864, + 0.027736637741327286, + -0.038777198642492294, + -0.013142936863005161, + 0.029752954840660095, + 0.01898287609219551, + -0.014765826053917408, + 0.003491668961942196, + -0.015614153817296028, + 0.04856370761990547, + -0.005849160254001617, + 0.022388482466340065, + -0.006516142748296261, + 0.013327356427907944, + 0.018355851992964745, + 0.043965522199869156, + 0.01072089932858944, + -0.007026369217783213, + -0.0035900259390473366, + 0.02249913476407528, + 0.0005417311913333833, + 0.0016274988884106278, + -0.014421576634049416, + 0.009546764194965363, + -0.02513018064200878, + 0.032408591359853745, + -0.04475237801671028, + 0.017458345741033554, + 0.015024012885987759, + 0.004075663164258003, + -0.03076111152768135, + -0.0005044631543569267, + 0.014913360588252544, + -0.016794435679912567, + 0.01942548342049122, + -0.04647362232208252, + -0.022769616916775703, + -0.02621210739016533, + -0.017802594229578972, + -0.010302882641553879, + 0.0042170509696006775, + -0.0036730144638568163, + 0.00641778577119112, + 0.0013985118130221963, + 0.016720669344067574, + 0.015282198786735535, + -0.05006364732980728, + 0.014015854336321354, + -0.010530333034694195, + 0.0008644647314213216, + -0.008876707404851913, + -0.010345913469791412, + 0.020765595138072968, + -0.0054157753475010395, + 0.008618521504104137, + 0.03828541189432144, + 0.003245776752009988, + -0.009429965168237686, + 0.012110190466046333, + -0.0023282915353775024, + 0.043744221329689026, + -0.007837813347578049, + -0.006135010160505772, + -0.0323348231613636, + -0.008999654091894627, + -0.00462584663182497, + -0.005265166517347097, + -0.04485073313117027, + -0.011765941046178341, + -0.02263437584042549, + 0.0007188504096120596, + -0.0008168230997398496, + 0.006817360874265432, + -0.03917062655091286, + -0.0020639575086534023, + 0.021810635924339294, + 0.020691826939582825, + -0.03902309015393257, + 0.008956622332334518, + 0.014704352244734764, + -0.0019702110439538956, + 0.03437572717666626, + 0.006632941775023937, + 0.011231125332415104, + 0.02990048937499523, + 0.01610593870282173, + 0.024699870496988297, + -0.01587234064936638, + -0.002535763196647167, + -0.00002713458707148675, + -0.016056759282946587, + 0.038777198642492294, + 0.021011486649513245, + 0.007567332126200199, + 0.025720322504639626, + 0.047162119299173355, + 0.006436227820813656, + 0.001203334890305996, + -0.004782603122293949, + 0.04824404790997505, + 0.0021023780573159456, + 0.013511775061488152, + 0.03277742862701416, + 0.0323348231613636, + -0.009792656637728214, + 0.019917266443371773, + 0.03363804891705513, + 0.00420168275013566, + -0.0313020758330822, + 0.006503848358988762, + 0.00926398765295744, + 0.023679416626691818, + 0.036244507879018784, + -0.016757551580667496, + -0.0018703173846006393, + 0.010505743324756622, + -0.008747613988816738, + 0.055965062230825424, + -0.007413649465888739, + -0.024367915466427803, + -0.006516142748296261, + 0.004078736528754234, + 0.024589218199253082, + 0.030072614550590515, + -0.016302652657032013, + -0.012921634130179882, + -0.0016305724857375026, + -0.019486956298351288, + -0.012638858519494534, + 0.03700677305459976, + -0.000043223233660683036, + 0.016732962802052498, + -0.030933236703276634, + -0.026802247390151024, + 0.01182741392403841, + 0.011477017775177956, + -0.000010085421308758669, + 0.010696309618651867, + -0.012116337195038795, + -0.026802247390151024, + -0.026064570993185043, + 0.0039004648569971323, + 0.003053673543035984, + -0.017138686031103134, + 0.010536479763686657, + 0.009214809164404869, + 0.006368607748299837, + -0.0030951679218560457, + 0.012497469782829285, + -0.033269211649894714, + 0.03892473131418228, + 0.015577269718050957, + 0.046940818428993225, + -0.010511890985071659, + 0.02074100635945797, + -0.022351600229740143, + 0.03774445131421089, + 0.006325576454401016, + -0.011483165435492992, + -0.04908008128404617, + -0.00524979829788208, + -0.021970465779304504, + 0.0029752955306321383, + -0.004127915017306805, + 0.0017489081947132945, + 0.0008644647314213216, + 0.01038894522935152, + 0.017913244664669037, + -0.0167083740234375, + 0.03056439757347107, + -0.0021684616804122925, + 0.008968917652964592, + 0.04880959913134575, + -0.029949668794870377, + 0.008108294568955898, + -0.03339215740561485, + 0.015368261374533176, + -0.02093772031366825, + -0.007671836297959089, + 0.04278523847460747, + -0.013425713405013084, + -0.023003213107585907, + 0.018134549260139465, + 0.005259018857032061, + 0.008427954278886318, + -0.004253934603184462, + 0.0036084677558392286, + -0.055866703391075134, + -0.007911580614745617, + 0.018417324870824814, + 0.006156525574624538, + -0.0366133451461792, + 0.004659656900912523, + 0.021085254848003387, + -0.017642764374613762, + 0.035605188459157944, + 0.0031366620678454638, + 0.013228999450802803, + -0.005861455108970404, + -0.01930253580212593, + 0.01680673100054264, + -0.02813006564974785, + 0.015355966985225677, + 0.019831204786896706, + 0.02167539671063423, + 0.0014815004542469978, + -0.00026106834411621094, + 0.013831435702741146, + 0.0024158908054232597, + 0.009835687465965748, + -0.003522405633702874, + -0.03022014908492565, + 0.029679186642169952, + 0.0355805978178978, + 0.0018810752080753446, + -0.0014077327214181423, + -0.019794320687651634, + 0.019413188099861145, + -0.03491669148206711, + -0.014249452389776707, + 0.054047100245952606, + 0.02692519500851631, + 0.027515335008502007, + 0.032605305314064026, + -0.004533637315034866, + 0.026703890413045883, + 0.05040789768099785, + -0.02451545000076294, + 0.0006339407991617918, + -0.0005371207371354103, + -0.030785702168941498, + 0.024441683664917946, + -0.023949898779392242, + -0.030392274260520935, + -0.009847981855273247, + -0.015257610008120537, + 0.01850338652729988, + 0.011636847630143166, + 0.04030172899365425, + -0.001435395679436624, + -0.029531652107834816, + 0.002266818657517433, + 0.018749279901385307, + -0.0015667942352592945, + 0.008649257943034172, + -0.0006696719792671502, + 0.018909109756350517, + 0.007677983492612839, + 0.004739571828395128, + -0.005231356248259544, + -0.005148367490619421, + 0.04044926539063454, + -0.012300756759941578, + 0.044826146215200424, + 0.010296734981238842, + -0.03774445131421089, + 0.02970377542078495, + -0.0009436112595722079, + 0.01702803373336792, + 0.009208662435412407, + 0.02423267439007759, + -0.0033902383875101805, + 0.019609902054071426, + -0.004229345358908176, + 0.025917036458849907, + -0.030195560306310654, + -0.008003790862858295, + 0.014876477420330048, + -0.0046842461451888084, + -0.035064224153757095, + 0.016376418992877007, + 0.09053750336170197, + 0.0023390494752675295, + 0.026777658611536026, + 0.02042134664952755, + 0.007247671950608492, + 0.023027803748846054, + -0.020863952115178108, + -0.041629545390605927, + 0.01645018719136715, + -0.009811097756028175, + 0.0030044950544834137, + -0.03142502158880234, + 0.024441683664917946, + 0.015355966985225677, + -0.0039434959180653095, + 0.030416863039135933, + -0.029457883909344673, + -0.020077096298336983, + 0.01645018719136715, + -0.0019763584714382887, + 0.0011495460057631135, + 0.02208111807703972, + 0.0034332696814090014, + 0.032826606184244156, + -0.017482934519648552, + 0.015306788496673107, + 0.0122085465118289, + -0.008753761649131775, + 0.02800711989402771, + 0.01140939723700285, + 0.005486469250172377, + 0.01081925630569458, + -0.022548312321305275, + -0.012860161252319813, + 0.01846650242805481, + -0.003814402502030134, + 0.004293892066925764, + 0.02221635915338993, + 0.03437572717666626, + -0.02208111807703972, + -0.020089391618967056, + -0.0053358604200184345, + -0.02381465770304203, + -0.0017857919447124004, + -0.011630699969828129, + 0.014323219656944275, + -0.03462161868810654, + -0.009897160343825817, + -0.009847981855273247, + -0.01587234064936638, + 0.02653176710009575, + -0.04509662464261055, + 0.029654597863554955, + 0.01872468926012516, + -0.0127249201759696, + -0.032408591359853745, + 0.02288026735186577, + -0.020077096298336983, + -0.028154654428362846, + -0.00003121677946182899, + -0.023605650290846825, + -0.02359335497021675, + -0.0011034412309527397, + -0.04094104841351509, + -0.0015660258941352367, + -0.011704468168318272, + -0.014089622534811497, + -0.008538605645298958, + -0.027318621054291725, + 0.02010168693959713, + -0.0012840182753279805, + -0.010585658252239227, + -0.027072729542851448, + -0.006909570191055536, + -0.0024973424151539803, + -0.007850107736885548, + -0.0025542050134390593, + 0.003053673543035984, + -0.005046937149018049, + 0.0024128169752657413, + -0.006682120263576508, + 0.01209789514541626, + 0.025499019771814346, + -0.023507293313741684, + -0.004078736528754234, + -0.015896929427981377, + -0.0032857342157512903, + 0.04327702522277832, + -0.016019875183701515, + -0.007364470977336168, + -0.0049485801719129086, + -0.020814772695302963, + 0.017495227977633476, + 0.013401123695075512, + 0.015835456550121307, + 0.02199505642056465, + -0.026359641924500465, + -0.0012479028664529324, + -0.0029706850182265043, + 0.01172905694693327, + -0.016401007771492004, + 0.011495459824800491, + -0.007020222023129463, + 0.022413073107600212, + 0.020433640107512474, + -0.00032330979593098164, + 0.0009828002657741308, + -0.023802364245057106, + -0.02621210739016533, + 0.007591921370476484, + -0.015896929427981377, + -0.014065032824873924, + 0.018958287313580513, + -0.014052738435566425, + -0.004395322874188423, + 0.03255612403154373, + -0.006909570191055536, + -0.03985912352800369, + 0.004539784509688616, + 0.0064546698704361916, + 0.02938411571085453, + 0.010794666595757008, + 0.009958633221685886, + -0.026802247390151024, + -0.021036075428128242, + -0.044826146215200424, + 0.02992507815361023, + 0.05070296674966812, + -0.006909570191055536, + 0.0007303766324184835, + 0.006082757841795683, + -0.004807192366570234, + 0.016253473237156868, + 0.010265998542308807, + 0.0018718542996793985, + 0.025499019771814346, + -0.014642879366874695, + 0.002160777570679784, + 0.04925220459699631, + 0.021650806069374084, + -0.007997643202543259, + 0.007413649465888739, + 0.015663331374526024, + 0.020470524206757545, + 0.02918740175664425, + -0.020458228886127472, + -0.0493505597114563, + -0.02192128822207451, + 0.004930138122290373, + -0.02217947505414486, + -0.03587567061185837, + 0.04517039284110069, + -0.0032488505821675062, + -0.021687690168619156, + 0.022449957206845284, + 0.0012455976102501154, + 0.010542627424001694, + -0.008569343015551567, + 0.01304457988590002, + 0.022191770374774933, + -0.0020070949103683233, + -0.01862633228302002, + -0.02339664101600647, + 0.01683131977915764, + 0.012491323053836823, + 0.004278523847460747, + 0.020974602550268173, + 0.0009620531927794218, + -0.025228537619113922, + 0.041432831436395645, + -0.014999423176050186, + -0.00239283824339509, + -0.04740801453590393, + -0.007684130687266588, + 0.023126160725951195, + -0.00029699166771024466, + -0.03022014908492565, + 0.00825583003461361, + -0.009005800820887089, + 0.016941972076892853, + -0.02672848105430603, + -0.024060551077127457, + -0.032826606184244156, + 0.03590025752782822, + 0.058620695024728775, + -0.0233597569167614, + 0.00037536979652941227, + -0.006712856702506542, + 0.03169550374150276, + -0.014138801023364067, + 0.00867384672164917, + -0.02265896461904049, + 0.004180167336016893, + 0.04487532377243042, + 0.0008283493225462735, + -0.009054979309439659, + -0.016892792657017708, + 0.04367045313119888, + -0.0016259620897471905, + -0.0012901655863970518, + -0.03862966224551201, + -0.025695733726024628, + -0.0005874517955817282, + 0.02621210739016533, + -0.010690162889659405, + 0.0024712164886295795, + -0.008889002725481987, + 0.0015083948383107781, + 0.0017243189504370093, + 0.020925424993038177, + 0.0028569598216563463, + -0.014212568290531635, + -0.015675626695156097, + -0.020654942840337753, + 0.033588871359825134, + 0.016855908557772636, + -0.010026253759860992, + 0.014950244687497616, + 0.022302420809864998, + 0.0029522429686039686, + 0.013622427359223366, + -0.03223646432161331, + 0.0029414852615445852, + -0.008839824236929417, + -0.020654942840337753, + 0.02112213894724846, + -0.018122253939509392, + 0.007315292488783598, + -0.04000665992498398, + -0.01676984690129757, + -0.014396986924111843, + 0.012540501542389393, + 0.05439135059714317, + 0.03779362887144089, + -0.015491207130253315, + 0.00920251477509737, + 0.0024558482691645622, + 0.01740916632115841, + -0.018011601641774178, + 0.023790068924427032, + -0.02724485471844673, + -0.020790183916687965, + 0.00026971299666911364, + -0.009700446389615536, + -0.005716993473470211, + 0.04625232145190239, + 0.0024235749151557684, + -0.006509995553642511, + -0.04448189586400986, + -0.009239398874342442, + -0.0418754406273365, + -0.013622427359223366, + -0.019376304000616074, + 0.0019717479590326548, + -0.010020106099545956, + -0.029752954840660095, + 0.004862518049776554, + -0.010124610736966133, + -0.014015854336321354, + 0.00420168275013566, + -0.006027432158589363, + -0.007106284145265818, + -0.006915717851370573, + 0.01802389696240425, + 0.0005359681090340018, + 0.0013539438368752599, + -0.000932085036765784, + -0.006430080626159906, + 0.021552449092268944, + -0.00022072665160521865, + -0.01763046905398369, + -0.007419796660542488, + -0.04241640120744705, + -0.006946454290300608, + -0.018355851992964745, + -0.01283557154238224, + -0.021847520023584366, + -0.020138569176197052, + -0.0010934517486020923, + -0.018712395802140236, + -0.019757436588406563, + 0.005295902956277132, + -0.004161725286394358, + -0.02800711989402771, + 0.01820831559598446, + 0.02167539671063423, + 0.017433755099773407, + 0.006131936330348253, + -0.023740889504551888, + -0.02227783203125, + -0.027736637741327286, + 0.020470524206757545, + -0.014298630878329277, + 0.020654942840337753, + -0.00398652721196413, + 0.01587234064936638, + -0.010893023572862148, + 0.01747063919901848, + -0.013106053695082664, + 0.000021455532987602055, + 0.04052303358912468, + 0.0056432257406413555, + -0.01754440739750862, + 0.006344018504023552, + 0.0116675840690732, + -0.00620877742767334, + 0.01866321638226509, + 0.060833726078271866, + 0.001453837496228516, + -0.006485406309366226, + -0.00040533789433538914, + -0.018896814435720444, + -0.0217614583671093, + 0.009811097756028175, + -0.012638858519494534, + 0.016314946115016937, + 0.03014638088643551, + 0.05114557594060898, + -0.0076964255422353745, + 0.05768630653619766, + 0.0029860532376915216, + 0.018540270626544952, + -0.01606905460357666, + 0.004493679851293564, + -0.024466272443532944, + -0.029679186642169952, + 0.005421922542154789, + -0.00028488915995694697, + -0.019671374931931496, + -0.003325691679492593, + -0.016954265534877777, + 0.016757551580667496, + -0.010813108645379543, + -0.016732962802052498, + -0.002506563439965248, + 0.030638165771961212, + -0.021687690168619156, + -0.003931201063096523, + 0.026359641924500465, + -0.0066944146528840065, + 0.01578627899289131, + -0.015208431519567966, + -0.0032734395936131477, + -0.024281853809952736, + 0.01712639071047306, + 0.019339419901371002, + -0.02854808233678341, + -0.0070694005116820335, + 0.04212133213877678, + 0.007124726194888353, + -0.011151210404932499, + 0.0003911222447641194, + 0.00540962815284729, + 0.0008437175420112908, + 0.02992507815361023, + 0.009534469805657864, + 0.009054979309439659, + -0.027416978031396866, + 0.0376952700316906, + -0.007979201152920723, + -0.013216705061495304, + -0.016720669344067574, + -0.02297862432897091, + -0.025843268260359764, + 0.020089391618967056, + 0.02195817232131958, + -0.011765941046178341, + -0.018036192283034325, + 0.043965522199869156, + -0.02304009720683098, + 0.03858048468828201, + -0.0647680014371872, + -0.01629035733640194, + 0.0025280790869146585, + -0.022130295634269714, + -0.0024235749151557684, + 0.02608915977180004, + 0.020593469962477684, + 0.0329003743827343, + 0.008206651546061039, + -0.004435280337929726, + -0.0036607198417186737, + 0.028621850535273552, + 0.056604381650686264, + 0.02467527985572815, + -0.0007004085346125066, + -0.02074100635945797, + -0.011815119534730911, + 0.011815119534730911 + ] + }, + { + "HotelId": "23", + "HotelName": "Downtown Mix Hotel", + "Description": "Mix and mingle in the heart of the city. Shop and dine, mix and mingle in the heart of downtown, where fab lake views unite with a cheeky design.", + "Description_fr": "MĆ©langez et mĆŖlez-vous au cœur de la ville. Magasinez et dĆ®nez, mĆ©langez et mĆŖlez-vous au cœur du centre-ville, où les vues du lac FAB s'unissent avec un design effrontĆ©.", + "Category": "Budget", + "Tags": [ + "air conditioning", + "laundry service", + "free wifi" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2019-09-16T00:00:00Z", + "Rating": 4.2, + "Address": { + "StreetAddress": "550 Kirkland Way", + "City": "Kirkland", + "StateProvince": "WA", + "PostalCode": "98033", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.198074, + 47.676857 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 111.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "tv", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 265.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "tv" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 129.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 266.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + } + ], + "embedding": [ + -0.0004123116668779403, + -0.03816964104771614, + 0.02328348159790039, + 0.04073973000049591, + 0.01823236607015133, + -0.025357365608215332, + 0.011164620518684387, + 0.004548549186438322, + -0.05455714091658592, + -0.009097098372876644, + -0.00003802054197876714, + -0.016082143411040306, + -0.0037628905847668648, + -0.014797098003327847, + -0.013957366347312927, + 0.010312165133655071, + -0.05313214287161827, + 0.008594531565904617, + 0.04817008972167969, + 0.04697410762310028, + -0.025675445795059204, + -0.00640295771881938, + -0.006269363686442375, + 0.021514955908060074, + -0.032800447195768356, + 0.030306696891784668, + -0.04369151592254639, + 0.03458169475197792, + 0.029950445517897606, + 0.06641517579555511, + -0.02479754388332367, + -0.034607142210006714, + -0.010223102755844593, + 0.0273294635117054, + 0.014326338656246662, + -0.007659374736249447, + 0.005941741168498993, + 0.005028850398957729, + 0.014402678236365318, + -0.020039062947034836, + 0.00023359025362879038, + 0.02707500010728836, + 0.04554910585284233, + 0.012379687279462814, + 0.0395691953599453, + -0.029466964304447174, + -0.00018826380255632102, + -0.011794419959187508, + 0.056134819984436035, + 0.02903437428176403, + -0.02577723190188408, + -0.01749441958963871, + -0.014517187140882015, + -0.0350651778280735, + -0.049696873873472214, + -0.010223102755844593, + 0.002164536854252219, + -0.03437812626361847, + 0.05267410725355148, + 0.03608303517103195, + 0.04163035750389099, + 0.02951785735785961, + 0.046923212707042694, + 0.035294197499752045, + -0.04369151592254639, + 0.024733928963541985, + -0.010426674038171768, + -0.020586160942912102, + -0.00964419636875391, + -0.0024810268077999353, + 0.024848436936736107, + 0.010331249795854092, + 0.001700139488093555, + -0.04867901653051376, + -0.021438615396618843, + 0.009529687464237213, + -0.03641383722424507, + 0.004631250165402889, + -0.005238783545792103, + -0.027507588267326355, + -0.01928839273750782, + -0.023906920105218887, + -0.022698214277625084, + 0.05486249923706055, + -0.014186384156346321, + -0.05888303369283676, + 0.016336606815457344, + 0.01106919627636671, + -0.029746875166893005, + 0.022825445979833603, + 0.02862723171710968, + -0.008569085039198399, + -0.019670089706778526, + -0.019670089706778526, + -0.023957811295986176, + 0.03903482109308243, + 0.014364508911967278, + -0.01790156215429306, + -0.019962722435593605, + 0.01912299171090126, + 0.031986162066459656, + -0.03376740962266922, + 0.03783883899450302, + 0.032037053257226944, + 0.04628705233335495, + -0.07191160321235657, + 0.0013057198375463486, + -0.004564452916383743, + -0.00019363142200745642, + -0.024123214185237885, + -0.06824731826782227, + -0.02618437446653843, + -0.04643973335623741, + 0.008804463781416416, + -0.014440848492085934, + 0.029416071251034737, + 0.06412500143051147, + -0.03544687479734421, + -0.019199330359697342, + -0.013308482244610786, + -0.0440477691590786, + -0.02393236570060253, + 0.012939509004354477, + -0.008327343501150608, + -0.02393236570060253, + -0.053284820169210434, + 0.01818147301673889, + 0.004437220748513937, + -0.023703347891569138, + -0.014059151522815228, + -0.012354240752756596, + -0.0039092074148356915, + -0.007691183127462864, + -0.014148213900625706, + -0.01031852699816227, + -0.007729352451860905, + -0.04488749802112579, + 0.02984866127371788, + -0.023016294464468956, + -0.042317409068346024, + 0.020382588729262352, + -0.028067409992218018, + 0.038144197314977646, + -0.017201784998178482, + -0.029008928686380386, + -0.02781294658780098, + -0.013512053526937962, + 0.029314285144209862, + -0.023512499406933784, + -0.001937109394930303, + 0.0050383927300572395, + -0.0035529574379324913, + -0.028169196099042892, + 0.0034225445706397295, + 0.02454308047890663, + -0.03259687498211861, + 0.011234598234295845, + 0.010572991333901882, + 0.02341071330010891, + 0.008957142941653728, + -0.006024441681802273, + -0.02234196476638317, + 0.005661830306053162, + -0.002810240024700761, + -0.023512499406933784, + 0.0030472096987068653, + -0.052623212337493896, + 0.011947098188102245, + -0.07109732180833817, + 0.005560044664889574, + -0.009122544899582863, + 0.02409776672720909, + 0.024479463696479797, + 0.04824642837047577, + 0.017799776047468185, + -0.041045088320970535, + -0.033665623515844345, + -0.03577767685055733, + -0.009516963735222816, + 0.016629241406917572, + -0.004895256832242012, + 0.04554910585284233, + 0.07425267994403839, + -0.025599107146263123, + -0.016565624624490738, + 0.04911160469055176, + -0.037991516292095184, + 0.0149879464879632, + 0.01675647310912609, + 0.02385602705180645, + -0.06595714390277863, + 0.06758571416139603, + -0.045905355364084244, + -0.006425223313271999, + -0.006110323593020439, + 0.004360881634056568, + -0.008098325692117214, + 0.01867767795920372, + 0.04297901690006256, + 0.041579462587833405, + -0.024619419127702713, + 0.00021848143660463393, + 0.04641428589820862, + -0.025382813066244125, + -0.04600714147090912, + 0.005286495666950941, + -0.028194641694426537, + 0.0023203962482511997, + 0.03661740943789482, + 0.0010973772732540965, + -0.00039123883470892906, + 0.029950445517897606, + 0.01492433063685894, + 0.05389553681015968, + 0.006078515667468309, + 0.002011858159676194, + -0.03498883917927742, + 0.003702455200254917, + 0.017392633482813835, + 0.05236874893307686, + -0.03025580383837223, + 0.01068113837391138, + 0.04394598305225372, + 0.014898884110152721, + 0.023512499406933784, + 0.0583232119679451, + 0.005894029047340155, + -0.03475981950759888, + 0.02727857045829296, + 0.018092410638928413, + 0.01363928522914648, + -0.05068928375840187, + -0.011832589283585548, + -0.04101964086294174, + 0.01777433045208454, + 0.0216167401522398, + -0.008340067230165005, + -0.04684687405824661, + 0.023219866678118706, + 0.0048857140354812145, + -0.03776250034570694, + 0.027762053534388542, + 0.031171875074505806, + 0.006533370353281498, + -0.005852678325027227, + 0.020331695675849915, + -0.005296037998050451, + 0.037864286452531815, + -0.008798102848231792, + 0.03883124887943268, + 0.011361829936504364, + -0.014949776232242584, + -0.020484374836087227, + -0.049493301659822464, + 0.027914732694625854, + 0.02463214285671711, + 0.020649775862693787, + -0.03269866108894348, + 0.033589284867048264, + -0.0244667399674654, + 0.023181695491075516, + -0.0003548584063537419, + -0.013079464435577393, + -0.023385267704725266, + 0.008142856881022453, + -0.015814954414963722, + 0.010394865646958351, + 0.014046428725123405, + 0.0014409039868041873, + 0.004666238557547331, + -0.05618571490049362, + -0.03944196552038193, + -0.023995982483029366, + 0.007252232171595097, + 0.00011699392780428752, + -0.0318080335855484, + -0.004907979629933834, + 0.00970781221985817, + 0.05435357242822647, + 0.03213883936405182, + -0.0379151776432991, + -0.07364196330308914, + 0.03883124887943268, + -0.02699865959584713, + -0.0193774551153183, + 0.016692856326699257, + -0.0022838169243186712, + 0.009523325599730015, + -0.006972321309149265, + -0.02259642817080021, + -0.043131694197654724, + -0.020904241129755974, + -0.024123214185237885, + -0.01818147301673889, + 0.027660267427563667, + 0.02903437428176403, + -0.013257589191198349, + -0.06672053784132004, + 0.012856807559728622, + 0.020331695675849915, + 0.027863839641213417, + 0.007500334642827511, + -0.026438839733600616, + 0.0026130301412194967, + 0.028601786121726036, + 0.06743303686380386, + 0.02699865959584713, + -0.03356383740901947, + 0.03544687479734421, + -0.0014114815276116133, + 0.007742075715214014, + -0.009555133990943432, + 0.03844955191016197, + -0.06346338987350464, + -0.030815623700618744, + 0.015051562339067459, + 0.030841071158647537, + 0.07033392786979675, + -0.05689821392297745, + -0.010992856696248055, + 0.0019498325418680906, + 0.025637276470661163, + 0.03598124906420708, + -0.028983481228351593, + -0.0030344866681843996, + -0.027380356565117836, + -0.00046081890468485653, + -0.0017732980195432901, + -0.04511651769280434, + -0.026515178382396698, + 0.030535714700818062, + -0.05389553681015968, + -0.020166294649243355, + -0.019848214462399483, + 0.01851227693259716, + -0.03501428663730621, + -0.016120312735438347, + -0.018906695768237114, + -0.00042384208063594997, + 0.06661874800920486, + 0.014491740614175797, + -0.06661874800920486, + 0.0039537386037409306, + -0.021260490640997887, + 0.0460834801197052, + -0.0950169637799263, + -0.008314620703458786, + 0.0076402900740504265, + 0.008486383594572544, + 0.0023760602343827486, + -0.02822008915245533, + -0.02727857045829296, + 0.0006894391844980419, + -0.02280000038444996, + 0.021438615396618843, + 0.02402142807841301, + 0.021794864907860756, + -0.024441294372081757, + -0.019148437306284904, + 0.023830579593777657, + 0.006908705458045006, + -0.03290223330259323, + 0.0043004462495446205, + 0.01037578098475933, + 0.0672803595662117, + 0.00970781221985817, + -0.03025580383837223, + -0.002721177414059639, + -0.05338660627603531, + 0.008709040470421314, + 0.0032253346871584654, + 0.014160937629640102, + -0.028779910877346992, + 0.04832276701927185, + -0.02581540122628212, + 0.05908660590648651, + 0.022176561877131462, + 0.05557499825954437, + -0.01431361585855484, + 0.03112098202109337, + 0.004758481867611408, + -0.010572991333901882, + 0.011101004667580128, + -0.03824598342180252, + 0.04750848188996315, + -0.002705273451283574, + 0.008028347976505756, + -0.06315803527832031, + -0.045778125524520874, + 0.006876897066831589, + 0.026108035817742348, + -0.04750848188996315, + 0.009987723082304, + 0.018079686909914017, + -0.0187667403370142, + -0.027304017916321754, + 0.07089374959468842, + -0.02341071330010891, + 0.003067885059863329, + 0.01394464261829853, + 0.03788973018527031, + -0.060409821569919586, + 0.009173437021672726, + -0.028041964396834373, + -0.019873660057783127, + 0.0025796317495405674, + -0.0020754742436110973, + -0.04020535573363304, + -0.03152812644839287, + 0.037660714238882065, + -0.040027230978012085, + -0.042750000953674316, + 0.012627789750695229, + 0.025955356657505035, + -0.008041071705520153, + -0.011972544714808464, + 0.02463214285671711, + -0.030154017731547356, + 0.03196071460843086, + 0.04570178687572479, + 0.04302991181612015, + 0.008549999445676804, + 0.029390623793005943, + 0.06626249849796295, + 0.010223102755844593, + 0.02002633921802044, + 0.04529464244842529, + 0.013397544622421265, + -0.024085044860839844, + -0.013817410916090012, + -0.07389643043279648, + -0.01614575833082199, + 0.02646428532898426, + 0.040383480489254, + -0.011959820985794067, + 0.057966962456703186, + -0.0017430803272873163, + -0.008817187510430813, + -0.010865624994039536, + -0.022787276655435562, + -0.05203794687986374, + 0.01064296904951334, + 0.013753794133663177, + 0.01186439674347639, + -0.07079195976257324, + 0.026158928871154785, + 0.050994642078876495, + 0.026235267519950867, + 0.0157004464417696, + -0.006565178278833628, + -0.04595625028014183, + 0.0008437081123702228, + 0.00751305790618062, + 0.027354910969734192, + 0.051121875643730164, + 0.05679642781615257, + 0.023792410269379616, + -0.0070550222881138325, + 0.0165147315710783, + -0.0322151780128479, + 0.004551729653030634, + 0.034149106591939926, + -0.012716852128505707, + 0.02341071330010891, + 0.031909819692373276, + -0.007423995528370142, + 0.016094865277409554, + 0.01993727684020996, + 0.0771026760339737, + -0.015509597957134247, + -0.015547767281532288, + -0.002414229791611433, + 0.046388838440179825, + 0.06305625289678574, + -0.0002250418474432081, + -0.09481339156627655, + -0.012246093712747097, + 0.05208883807063103, + 0.01692187413573265, + 0.010852901265025139, + 0.0019546037074178457, + -0.021222321316599846, + -0.045676339417696, + 0.022570982575416565, + -0.0063616069965064526, + -0.04432767629623413, + -0.01908482052385807, + 0.015178794041275978, + -0.03534508869051933, + -0.03348749876022339, + -0.022583704441785812, + 0.010388504713773727, + -0.033945534378290176, + -0.013003124855458736, + 0.049493301659822464, + 0.018652232363820076, + -0.010630245320498943, + -0.040841516107320786, + 0.015191517770290375, + 0.0008389369468204677, + 0.0142754465341568, + -0.03254598006606102, + 0.02511562407016754, + -0.004672600422054529, + 0.023716071620583534, + 0.040434375405311584, + -0.017430802807211876, + -0.06875625252723694, + 0.028779910877346992, + 0.008308258838951588, + 0.02226562425494194, + -0.008085602894425392, + -0.018652232363820076, + 0.05061294510960579, + -0.0032142018899321556, + 0.007080468814820051, + -0.028983481228351593, + 0.024784822016954422, + 0.014797098003327847, + -0.030230356380343437, + -0.0076402900740504265, + 0.04114687442779541, + -0.03893303498625755, + 0.026693303138017654, + 0.028169196099042892, + 0.03577767685055733, + -0.011578124947845936, + -0.0489334799349308, + -0.02692232094705105, + -0.028118303045630455, + 0.02206205390393734, + -0.0031251395121216774, + -0.017354464158415794, + 0.031146427616477013, + 0.00996863842010498, + 0.0007975864573381841, + 0.03269866108894348, + 0.0008214425179176033, + 0.03903482109308243, + -0.022978125140070915, + 0.04587991163134575, + 0.0007936104666441679, + -0.04376785829663277, + -0.003836048999801278, + -0.021235045045614243, + -0.05440446361899376, + -0.03058660589158535, + -0.006313894875347614, + -0.006997767835855484, + -0.013359375298023224, + 0.003203069092705846, + -0.011336383409798145, + 0.022202009335160255, + 0.01042031217366457, + -0.01692187413573265, + 0.01847410760819912, + -0.015077008865773678, + 0.006189843639731407, + 0.0030201729387044907, + -0.02169308066368103, + -0.00970781221985817, + 0.007805692031979561, + -0.021056920289993286, + -0.029288839548826218, + 0.0322151780128479, + 0.030408481135964394, + 0.040765177458524704, + 0.028576338663697243, + -0.02834732085466385, + -0.007576674222946167, + -0.002929520094767213, + 0.01627299003303051, + -0.021425891667604446, + -0.0391366071999073, + -0.031146427616477013, + 0.027965623885393143, + 0.0043799662962555885, + -0.010102231986820698, + -0.007926562801003456, + -0.015000669285655022, + -0.0017319475300610065, + -0.02923794649541378, + 0.01003225427120924, + -0.0027832030318677425, + -0.03768616169691086, + 0.03453080356121063, + 0.008537276647984982, + 0.028474552556872368, + 0.02503928542137146, + 0.061682142317295074, + -0.0062025669030845165, + 0.05847589299082756, + -0.014949776232242584, + 0.012799553573131561, + 0.017812499776482582, + -0.029594196006655693, + -0.0022440569009631872, + 0.00395691953599453, + -0.012373325414955616, + -0.015306026674807072, + -0.01839776709675789, + -0.0013422990450635552, + -0.038805801421403885, + -0.0026130301412194967, + -0.03058660589158535, + -0.02694776840507984, + 0.019517410546541214, + -0.0007999720983207226, + -0.031044643372297287, + -0.013346651569008827, + 0.004205022472888231, + 0.008123772218823433, + 0.02413593791425228, + -0.021222321316599846, + -0.09089463949203491, + 0.0258917398750782, + 0.009599665179848671, + 0.005941741168498993, + -0.0004977957578375936, + 0.00718861585482955, + -0.020000891759991646, + 0.0128440847620368, + 0.07639017701148987, + 0.0022885880898684263, + 0.017023660242557526, + 0.033869195729494095, + -0.00027712751762010157, + -0.05183437466621399, + -0.010235825553536415, + -0.008053794503211975, + 0.03715178370475769, + 0.0338437482714653, + 0.009656919166445732, + 0.000453662098152563, + 0.017265401780605316, + 0.007748437579721212, + -0.022889062762260437, + 0.0027291295118629932, + -0.031579017639160156, + -0.0010234235087409616, + 0.004561272449791431, + 0.010566629469394684, + 0.04962053522467613, + -0.0054582590237259865, + 0.02699865959584713, + -0.003416182938963175, + 0.026082588359713554, + -0.002587583614513278, + -0.04191026836633682, + -0.00287544634193182, + -0.029008928686380386, + 0.0005781110376119614, + 0.018486829474568367, + -0.007837499491870403, + -0.019059374928474426, + 0.03351294621825218, + -0.0028277344536036253, + -0.021743973717093468, + -0.010935602709650993, + 0.03598124906420708, + 0.044302232563495636, + 0.018206918612122536, + -0.023805133998394012, + 0.006978683173656464, + -0.02720223180949688, + 0.04127410799264908, + 0.029619641602039337, + 0.014148213900625706, + -0.033385712653398514, + 0.027100445702672005, + 0.07150446623563766, + 0.045778125524520874, + 0.01699821464717388, + -0.004923883825540543, + 0.02075156196951866, + 0.026540623977780342, + 0.008664509281516075, + 0.0007307896157726645, + -0.004023716319352388, + -0.02540825866162777, + 0.032520536333322525, + -0.0031585379038006067, + -0.0287544634193182, + 0.004812555853277445, + -0.01819419674575329, + -0.006336160469800234, + 0.04860267788171768, + 0.03577767685055733, + -0.025879018008708954, + -0.036515623331069946, + 0.001299358205869794, + 0.004065067041665316, + 0.036515623331069946, + -0.007812053430825472, + -0.014809820801019669, + -0.05114731937646866, + -0.0035306918434798717, + -0.036108482629060745, + 0.011476338841021061, + -0.05203794687986374, + 0.014758928678929806, + 0.01680736616253853, + 0.03544687479734421, + -0.019072098657488823, + 0.021833036094903946, + -0.012316071428358555, + 0.05903571471571922, + -0.015445982106029987, + 0.021591294556856155, + -0.011679910123348236, + -0.0014154575765132904, + -0.0448620542883873, + 0.03127365931868553, + -0.013741071335971355, + 0.02781294658780098, + 0.018575891852378845, + -0.027787499129772186, + -0.014300893060863018, + 0.030179463326931, + -0.03776250034570694, + -0.0026162108406424522, + -0.0018114675767719746, + -0.010948325507342815, + -0.016489285975694656, + 0.011571763083338737, + -0.0016969586722552776, + 0.008619977161288261, + 0.004583538044244051, + -0.015993081033229828, + -0.001392396748997271, + -0.010076785460114479, + 0.04725401848554611, + 0.02834732085466385, + 0.008740847930312157, + 0.002988365013152361, + 0.0015585937071591616, + 0.017914285883307457, + 0.03213883936405182, + -0.045040179044008255, + -0.04180848225951195, + -0.0045262835919857025, + -0.004993861541152, + -0.013753794133663177, + -0.004615345969796181, + 0.027024107053875923, + 0.013791964389383793, + 0.005668191704899073, + -0.016374776139855385, + -0.05236874893307686, + 0.00788839254528284, + -0.024479463696479797, + 0.01068113837391138, + -0.027558481320738792, + -0.004329073708504438, + -0.003912388347089291, + -0.03972187265753746, + 0.010076785460114479, + -0.018906695768237114, + 0.03099375031888485, + 0.00466941948980093, + 0.02740580402314663, + 0.04931517690420151, + 0.011851673945784569, + 0.018932143226265907, + -0.001208705361932516, + -0.014911606907844543, + 0.01027399580925703, + 0.03458169475197792, + -0.04738124832510948, + -0.03145178407430649, + -0.010159486904740334, + 0.016832811757922173, + 0.019301116466522217, + -0.015382366254925728, + 0.028576338663697243, + -0.021705802530050278, + 0.009262500330805779, + 0.024695757776498795, + -0.01435178518295288, + 0.009020758792757988, + 0.03208794444799423, + -0.020993303507566452, + -0.02112053520977497, + 0.004383147228509188, + -0.014199106954038143, + 0.0020150390919297934, + 0.0031155969481915236, + -0.0244667399674654, + 0.011781696230173111, + 0.016947321593761444, + 0.029721427708864212, + -0.020051784813404083, + 0.011024665087461472, + -0.014491740614175797, + -0.006927790120244026, + -0.00431316951289773, + 0.0250774547457695, + -0.06178392842411995, + 0.00538191944360733, + 0.035828571766614914, + 0.009396093897521496, + 0.02030625008046627, + 0.005862221121788025, + 0.0034257255028933287, + 0.03193526715040207, + 0.03336026892066002, + -0.03404732048511505, + -0.017341740429401398, + 0.01961919665336609, + -0.03844955191016197, + 0.0061643971130251884, + 0.021807588636875153, + -0.012449664995074272, + -0.013461160473525524, + 0.033945534378290176, + 0.01248147338628769, + 0.025993525981903076, + -0.01468258909881115, + -0.039747320115566254, + 0.020115401595830917, + -0.010490289889276028, + 0.008289174176752567, + -0.03417455404996872, + 0.01847410760819912, + 0.031629908829927444, + 0.03666830435395241, + 0.013499329797923565, + -0.014517187140882015, + -0.004930245690047741, + -0.02324531227350235, + -0.038474999368190765, + 0.0002274274593219161, + -0.020357143133878708, + 0.00568727683275938, + 0.0027291295118629932, + -0.005133816972374916, + -0.016362054273486137, + 0.029136160388588905, + -0.02528102695941925, + 0.015013393014669418, + 0.004529464058578014, + 0.02753303572535515, + 0.001387625583447516, + -0.018003348261117935, + 0.012220647186040878, + -0.003246010048314929, + 0.0062439171597361565, + -0.019110267981886864, + 0.0051465402357280254, + 0.014568080194294453, + -0.005550502333790064, + 0.015789508819580078, + 0.01895758882164955, + 0.00396646186709404, + 0.005019308067858219, + 0.009669642895460129, + -0.00604670774191618, + 0.0010019531473517418, + 0.011476338841021061, + -0.013448437675833702, + -0.023194419220089912, + 0.005674553569406271, + 0.016947321593761444, + -0.022329241037368774, + -0.009154352359473705, + 0.0026989118196070194, + 0.017430802807211876, + 0.007341294549405575, + 0.024772098287940025, + 0.019021205604076385, + -0.0163111612200737, + -0.004888894967734814, + -0.021464062854647636, + 0.0234488844871521, + 0.042317409068346024, + 0.036719195544719696, + 0.009936830028891563, + 0.006539732217788696, + 0.015954909846186638, + -0.008486383594572544, + 0.02381785772740841, + 0.02788928523659706, + 0.016260268166661263, + -0.0005490861949510872, + -0.04188482090830803, + 0.023512499406933784, + -0.025306472554802895, + -0.008397321216762066, + -0.01610758900642395, + -0.01925022341310978, + 0.014695311896502972, + 0.028449106961488724, + 0.0018734933109954, + -0.04710133746266365, + -0.04285178333520889, + 0.04384419694542885, + -0.013753794133663177, + 0.04529464244842529, + 0.0003870640357490629, + 0.03801696375012398, + -0.012761383317410946, + -0.020853348076343536, + -0.0222274549305439, + 0.03511607274413109, + -0.029288839548826218, + -0.008779018186032772, + -0.009434263221919537, + 0.023270757868885994, + 0.007901116274297237, + -0.05333571508526802, + -0.012487834319472313, + 0.00008021589019335806, + 0.008721763268113136, + -0.005607756786048412, + -0.04921339079737663, + 0.031782589852809906, + -0.022418303415179253, + 0.027151338756084442, + -0.020904241129755974, + -0.0027784318663179874, + -0.019148437306284904, + 0.003257142845541239, + -0.008130134083330631, + 0.006622432731091976, + 0.012048883363604546, + 0.04498928412795067, + -0.031248213723301888, + -0.012265178374946117, + -0.018652232363820076, + -0.013028571382164955, + 0.024772098287940025, + -0.0022440569009631872, + -0.006845089141279459, + -0.049493301659822464, + 0.059391964226961136, + 0.020980579778552055, + 0.0159040167927742, + -0.001730357063934207, + 0.005098828114569187, + 0.027024107053875923, + -0.038882143795490265, + 0.05878124758601189, + -0.022838169708848, + -0.003727901726961136, + 0.007086830213665962, + -0.01577678509056568, + -0.008988950401544571, + 0.01941562443971634, + -0.0016174386255443096, + -0.01068113837391138, + 0.024008704349398613, + 0.013550222851336002, + -0.001129980431869626, + -0.0021231863647699356, + -0.009911383502185345, + -0.0038487722631543875, + -0.04521830379962921, + -0.005076562520116568, + -0.012188838794827461, + 0.017927009612321854, + -0.02511562407016754, + 0.002977232215926051, + -0.003842410631477833, + 0.010331249795854092, + -0.005308761261403561, + 0.011546316556632519, + 0.011832589283585548, + 0.03722812607884407, + 0.02459397353231907, + 0.008346428163349628, + -0.019911829382181168, + 0.0350651778280735, + 0.022011160850524902, + -0.008359151892364025, + -0.01598035730421543, + 0.012672320939600468, + 0.002878627274185419, + -0.01921205408871174, + 0.03730446472764015, + -0.029187053442001343, + -0.029823213815689087, + 0.028245534747838974, + -0.00217248871922493, + 0.01329575851559639, + 0.00899531226605177, + -0.0027736607007682323, + -0.06290356814861298, + 0.005973549094051123, + 0.0001485037646489218, + -0.0063552455976605415, + 0.015751339495182037, + -0.005715903826057911, + 0.005171986762434244, + 0.0023013113532215357, + 0.01786339282989502, + 0.010547544807195663, + -0.00751305790618062, + 0.04432767629623413, + -0.00823828112334013, + -0.008861718699336052, + -0.03412365913391113, + 0.03173169493675232, + -0.034810714423656464, + -0.01353750005364418, + 0.010776562616229057, + 0.001943470910191536, + -0.0035752232652157545, + 0.00817466527223587, + -0.0032476005144417286, + -0.05002767965197563, + 0.027991071343421936, + 0.01699821464717388, + 0.060409821569919586, + -0.0031617186032235622, + -0.014326338656246662, + -0.0142754465341568, + 0.02581540122628212, + -0.01360111590474844, + -0.017036383971571922, + 0.010254910215735435, + 0.0287544634193182, + -0.014326338656246662, + 0.010458482429385185, + -0.029874106869101524, + -0.030688391998410225, + -0.050256695598363876, + 0.02964508906006813, + 0.01953013427555561, + 0.028245534747838974, + 0.004513560328632593, + 0.014453571289777756, + 0.0010178571101278067, + -0.031299106776714325, + -0.0036992745008319616, + -0.021540401503443718, + 0.012246093712747097, + 0.011272767558693886, + -0.02491205371916294, + -0.0030201729387044907, + -0.017761606723070145, + -0.047890178859233856, + -0.0006707519642077386, + -0.04094330221414566, + -0.022125668823719025, + -0.041783034801483154, + -0.002097739838063717, + 0.012239731848239899, + 0.0011586076579988003, + 0.03173169493675232, + 0.009905022569000721, + -0.021871205419301987, + 0.00033378557418473065, + -0.00960602704435587, + 0.006851451005786657, + -0.004128682892769575, + 0.008212834596633911, + -0.011349107138812542, + 0.028525445610284805, + 0.02862723171710968, + -0.001189620466902852, + 0.014911606907844543, + 0.00673694210126996, + -0.007926562801003456, + -0.02699865959584713, + -0.0016778738936409354, + 0.005639564711600542, + -0.023792410269379616, + 0.014758928678929806, + -0.013257589191198349, + -0.005143359303474426, + 0.018944865092635155, + 0.029416071251034737, + -0.02039531245827675, + 0.000005532237537408946, + 0.026158928871154785, + -0.027991071343421936, + -0.0043799662962555885, + -0.0236524548381567, + 0.026769641786813736, + 0.01150178536772728, + -0.002678236458450556, + 0.01027399580925703, + -0.04366607218980789, + 0.005747711751610041, + -0.021425891667604446, + 0.0036801896058022976, + -0.017443526536226273, + -0.0509691946208477, + 0.008041071705520153, + -0.05257232114672661, + 0.00933883897960186, + -0.006762388162314892, + -0.01598035730421543, + -0.03771160542964935, + 0.013702902011573315, + -0.024950223043560982, + -0.02030625008046627, + 0.002156584756448865, + -0.004869810305535793, + 0.014873437583446503, + -0.00024392787599936128, + 0.012487834319472313, + -0.015560491010546684, + -0.006177120376378298, + 0.009866852313280106, + 0.0013144670519977808, + -0.0230417400598526, + 0.004554910585284233, + 0.02781294658780098, + 0.022647321224212646, + 0.0003761300176847726, + -0.008251003921031952, + 0.03755892813205719, + -0.001372516737319529, + 0.03600669652223587, + 0.027100445702672005, + 0.00340982130728662, + 0.009701450355350971, + 0.001016266760416329, + 0.01769798994064331, + 0.012373325414955616, + -0.03277499973773956, + -0.006495201028883457, + 0.01912299171090126, + -0.008747209794819355, + 0.009109821170568466, + -0.02748214267194271, + 0.0026877790223807096, + 0.005935379303991795, + -0.00964419636875391, + -0.032316964119672775, + -0.035701338201761246, + -0.03361473232507706, + -0.03216428682208061, + -0.01769798994064331, + -0.030612053349614143, + -0.0003077427390962839, + 0.007163169328123331, + 0.011838951148092747, + -0.008397321216762066, + 0.013893749564886093, + 0.011209151707589626, + 0.03626115992665291, + -0.011590847745537758, + 0.028474552556872368, + -0.022901784628629684, + 0.0036897321697324514, + 0.0733874961733818, + 0.0004934221506118774, + 0.01655290089547634, + -0.017850669100880623, + 0.034556251019239426, + 0.0072140623815357685, + 0.012774107046425343, + 0.0171254463493824, + -0.02050982043147087, + -0.018448660150170326, + -0.029874106869101524, + -0.03290223330259323, + -0.018741294741630554, + -0.03702455386519432, + 0.03486160561442375, + 0.002077064709737897, + 0.015064285136759281, + 0.004357700701802969, + 0.028525445610284805, + -0.030535714700818062, + 0.002231333637610078, + 0.010216740891337395, + 0.026362499222159386, + -0.007131361402571201, + 0.0012182478094473481, + -0.004109598230570555, + -0.004561272449791431, + 0.0001724591857055202, + -0.016412945464253426, + -0.00501612713560462, + -0.01875401847064495, + 0.01814330369234085, + -0.0032173828221857548, + -0.022087499499320984, + -0.030103124678134918, + -0.032800447195768356, + -0.04142678529024124, + -0.04626160487532616, + 0.02034441940486431, + -0.013397544622421265, + -0.033054910600185394, + -0.008823549374938011, + -0.011552678421139717, + -0.015420535579323769, + 0.05934106931090355, + -0.009230691939592361, + -0.044353123754262924, + 0.0008747209794819355, + -0.015929464250802994, + -0.016425669193267822, + 0.014211829751729965, + 0.014097320847213268, + 0.02870357036590576, + 0.019275669008493423, + -0.000011536625606822781, + -0.021604018285870552, + 0.01655290089547634, + -0.02842365950345993, + -0.01143816951662302, + 0.0038773994892835617, + -0.01582767814397812, + 0.005156082566827536, + -0.012061607092618942, + 0.03341116011142731, + 0.01292678527534008, + -0.007423995528370142, + -0.017761606723070145, + 0.0424191951751709, + -0.001199162914417684, + -0.00032324917265214026, + 0.020535267889499664, + -0.023805133998394012, + -0.01725267805159092, + -0.00712500000372529, + 0.015611384063959122, + 0.02422500029206276, + -0.01184531208127737, + 0.02197299152612686, + -0.005626841448247433, + -0.022825445979833603, + 0.0006536551518365741, + 0.04221562296152115, + 0.03091740980744362, + -0.011928013525903225, + -0.005734988953918219, + -0.045447319746017456, + -0.01472075842320919, + 0.005432812497019768, + -0.008709040470421314, + -0.00783113855868578, + -0.003156947437673807, + 0.0027577567379921675, + 0.03295312449336052, + 0.004892075899988413, + 0.015038839541375637, + 0.013562946580350399, + 0.020420758053660393, + -0.006641517858952284, + -0.018690401688218117, + -0.017685268074274063, + -0.012023437768220901, + -0.0006973911658860743, + 0.005674553569406271, + -0.007894754409790039, + -0.01839776709675789, + 0.001319238217547536, + 0.004096874967217445, + 0.00179397314786911, + -0.022660044953227043, + -0.005909932777285576, + 0.004084151703864336, + -0.0037946985103189945, + -0.032367855310440063, + 0.028372768312692642, + -0.014211829751729965, + -0.002803878393024206, + -0.019262945279479027, + -0.0020357142202556133, + -0.010433035902678967, + -0.018359597772359848, + 0.013919196091592312, + 0.01042031217366457, + 0.028601786121726036, + -0.007239508908241987, + 0.026845982298254967, + 0.02557365968823433, + 0.00960602704435587, + 0.005932198371738195, + 0.0142754465341568, + 0.00026778390747494996, + -0.01814330369234085, + 0.018079686909914017, + -0.00641250004991889, + -0.01900848187506199, + -0.009701450355350971, + -0.021743973717093468, + -0.00047751812962815166, + -0.026973214000463486, + 0.0464906245470047, + 0.027660267427563667, + 0.003002678509801626, + 0.03776250034570694, + 0.018995758146047592, + -0.013384820893406868, + 0.04122321307659149, + -0.013410267420113087, + -0.022927232086658478, + 0.017799776047468185, + -0.030204910784959793, + 0.01180714275687933, + -0.004491294734179974, + 0.01941562443971634, + 0.018372321501374245, + -0.02030625008046627, + 0.020993303507566452, + -0.03470892831683159, + 0.012526004575192928, + -0.02520468644797802, + 0.027762053534388542, + -0.006488839164376259, + 0.023868748918175697, + -0.018334152176976204, + -0.017710713669657707, + -0.041452232748270035, + 0.020077232271432877, + 0.024085044860839844, + -0.005095647182315588, + -0.002290178555995226, + -0.027711160480976105, + -0.017927009612321854, + -0.012157031334936619, + -0.005019308067858219, + -0.03967098146677017, + -0.022698214277625084, + 0.012691406533122063, + 0.008365512825548649, + -0.020687947049736977, + 0.034556251019239426, + 0.017507143318653107, + 0.006934151519089937, + 0.00019432722183410078, + 0.015166071243584156, + 0.01042031217366457, + 0.030154017731547356, + 0.04995133727788925, + 0.005369196180254221, + 0.010388504713773727, + -0.007074106950312853, + -0.016336606815457344, + -0.030612053349614143, + -0.02594263292849064, + 0.011336383409798145, + 0.02189665101468563, + 0.022405579686164856, + 0.004319531377404928, + -0.014173660427331924, + -0.03850044682621956, + 0.009415178559720516, + -0.03498883917927742, + 0.01172444224357605, + -0.03977276757359505, + -0.021400446072220802, + 0.005496428348124027, + 0.008448214270174503, + 0.005897209979593754, + 0.02185848169028759, + 0.003702455200254917, + -0.015802232548594475, + 0.046058036386966705, + -0.004535825923085213, + 0.0009796874364838004, + 0.00930066965520382, + 0.0067878346890211105, + -0.029950445517897606, + -0.015013393014669418, + 0.02548459731042385, + 0.007385825738310814, + 0.06437946110963821, + 0.027914732694625854, + -0.0027291295118629932, + -0.011018303222954273, + -0.008511830121278763, + -0.02829642780125141, + -0.02720223180949688, + -0.004109598230570555, + 0.013690178282558918, + -0.0035561383701860905, + 0.01749441958963871, + 0.000674330338370055, + -0.03679553419351578, + 0.028881696984171867, + 0.030230356380343437, + 0.014568080194294453, + 0.005140178371220827, + -0.005935379303991795, + 0.008244642987847328, + -0.04473482072353363, + 0.005044754594564438, + -0.01956830359995365, + 0.006806919351220131, + -0.00852455385029316, + -0.004491294734179974, + -0.008130134083330631, + 0.011183705180883408, + 0.009529687464237213, + -0.002337890677154064, + -0.004122321493923664, + 0.01941562443971634, + -0.00962511170655489, + 0.022978125140070915, + -0.017558036372065544, + 0.020153570920228958, + 0.0022917690221220255, + -0.007392187602818012, + 0.006135770119726658, + 0.012551451101899147, + 0.016171205788850784, + -0.004090513568371534, + -0.014135491102933884, + -0.011431807652115822, + -0.007538504432886839, + 0.0024619419127702713, + 0.005375558044761419, + 0.02740580402314663, + 0.009046205319464207, + -0.0011148715857416391, + -0.02467031218111515, + 0.014122767373919487, + 0.013741071335971355, + 0.020357143133878708, + 0.015929464250802994, + -0.0025398717261850834, + 0.011800780892372131, + -0.011425446718931198, + -0.05801785737276077, + 0.011737165041267872, + -0.015064285136759281, + 0.005684095900505781, + 0.02557365968823433, + -0.033869195729494095, + -0.01040122751146555, + -0.003416182938963175, + 0.0006198590854182839, + -0.001125209266319871, + -0.012526004575192928, + -0.01786339282989502, + 0.014186384156346321, + -0.013728347606956959, + -0.005086104851216078, + 0.032800447195768356, + 0.011260044761002064, + 0.010248549282550812, + -0.0023013113532215357, + 0.0014234095579013228, + -0.0041000558994710445, + 0.005855859257280827, + -0.01594218797981739, + -0.02296540141105652, + -0.00891261175274849, + 0.030637498944997787, + 0.04224107041954994, + -0.012468749657273293, + 0.03526875004172325, + 0.009167076088488102, + -0.004189118277281523, + 0.019720982760190964, + -0.002745033474639058, + 0.025713615119457245, + -0.0072077009826898575, + -0.007589397020637989, + -0.011597209610044956, + -0.008002901449799538, + -0.02989955246448517, + 0.01400825846940279, + -0.01533147320151329, + -0.016285713762044907, + 0.039620090276002884, + 0.018156027421355247, + 0.004704408347606659, + 0.0006417271215468645, + 0.00498431921005249, + 0.013130356557667255, + 0.012417856603860855, + -0.010941964574158192, + -0.04664330184459686, + -0.0078502232208848, + -0.003991908393800259, + -0.023792410269379616, + -0.0036897321697324514, + 0.008352790027856827, + 0.015535044483840466, + 0.010515736415982246, + -0.014046428725123405, + 0.01394464261829853, + -0.00848002266138792, + 0.0293651781976223, + -0.03218973055481911, + 0.03491250053048134, + 0.014415401965379715, + 0.007824776694178581, + 0.02197299152612686, + -0.009287945926189423, + -0.00011172572703799233, + 0.010044978000223637, + 0.004904799163341522, + 0.026515178382396698, + -0.03735535591840744, + 0.00470122741535306, + 0.02043348178267479, + 0.011476338841021061, + -0.01323214266449213, + -0.00500658480450511, + 0.005607756786048412, + -0.02014084719121456, + 0.0023013113532215357, + -0.003349386155605316, + 0.024784822016954422, + -0.026718750596046448, + -0.0013566126581281424, + 0.045370981097221375, + 0.021298659965395927, + -0.021133258938789368, + 0.017927009612321854, + 0.021095089614391327, + -0.0011856445344164968, + 0.054302677512168884, + -0.0020245814230293036, + 0.02413593791425228, + -0.008511830121278763, + -0.013588393107056618, + -0.009427901357412338, + -0.024403125047683716, + 0.011120089329779148, + 0.00426227692514658, + -0.00020675222913268954, + -0.028779910877346992, + -0.0019243861315771937, + 0.008664509281516075, + -0.015674998983740807, + -0.00375652895309031, + -0.012061607092618942, + 0.03160446509718895, + -0.015407811850309372, + 0.01035669632256031, + 0.00718861585482955, + 0.004208202939480543, + -0.01680736616253853, + -0.012875893153250217, + -0.005200613755732775 + ] + }, + { + "HotelId": "24", + "HotelName": "Uptown Chic Hotel", + "Description": "Chic hotel near the city. High-rise hotel in downtown, within walking distance to theaters, art galleries, restaurants and shops. Visit Seattle Art Museum by day, and then head over to Benaroya Hall to catch the evening's concert performance.", + "Description_fr": "HĆ“tel chic prĆØs de la ville. HĆ“tel de grande hauteur au centre-ville, Ć  distance de marche des théâtres, galeries d'art, restaurants et boutiques. Visitez le musĆ©e d'art de Seattle le jour, puis dirigez-vous vers le Benaroya Hall pour assister au concert de la soirĆ©e.", + "Category": "Suite", + "Tags": [ + "view", + "pool", + "bar" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2018-08-25T00:00:00Z", + "Rating": 3.5, + "Address": { + "StreetAddress": "600 Pine St", + "City": "Seattle", + "StateProvince": "WA", + "PostalCode": "98101", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.335114, + 47.612839 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 265.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 69.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 150.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "tv", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "tv" + ] + } + ], + "embedding": [ + -0.03489640727639198, + -0.09529024362564087, + 0.06518199294805527, + 0.017605837434530258, + -0.033339761197566986, + -0.049733784049749374, + -0.0439407043159008, + 0.010344784706830978, + 0.02200976014137268, + -0.017595985904335976, + 0.03140873461961746, + -0.02993091009557247, + -0.01041375007480383, + -0.02092602103948593, + -0.01887676864862442, + 0.05828547105193138, + -0.06388150900602341, + -0.01392112486064434, + 0.05028550699353218, + 0.03109346702694893, + -0.0189161766320467, + -0.0071181971579790115, + -0.013625559397041798, + -0.03489640727639198, + -0.010433454066514969, + 0.05296529829502106, + -0.013241324573755264, + 0.06790119409561157, + 0.017280716449022293, + 0.033123016357421875, + -0.00672903610393405, + -0.01956642046570778, + 0.011871871538460255, + -0.007783218752592802, + -0.04161559045314789, + -0.007197014521807432, + -0.023822560906410217, + 0.001610830775462091, + 0.039388999342918396, + -0.023822560906410217, + -0.040255989879369736, + 0.04153677448630333, + 0.014009794220328331, + -0.037122998386621475, + 0.025694474577903748, + -0.007443318609148264, + 0.008428536355495453, + 0.02435457892715931, + 0.009753653779625893, + 0.002743830904364586, + -0.04736926034092903, + -0.006527066696435213, + -0.015556585974991322, + -0.028118109330534935, + 0.00003207729969290085, + 0.06648248434066772, + -0.02583240531384945, + -0.043349575251340866, + 0.048433296382427216, + -0.002975356997922063, + 0.06084703654050827, + 0.009492571465671062, + -0.0024026993196457624, + 0.04200967773795128, + -0.0565514899790287, + 0.030206771567463875, + -0.03458113595843315, + -0.008226566947996616, + -0.024689553305506706, + -0.020866908133029938, + 0.01687677763402462, + -0.0004488897684495896, + 0.01799992471933365, + -0.03489640727639198, + -0.03972397372126579, + 0.037044182419776917, + -0.014561516232788563, + -0.01156645454466343, + -0.013448219746351242, + -0.011733941733837128, + -0.07996025681495667, + -0.020256074145436287, + -0.04768453165888786, + 0.07065980136394501, + -0.03724122419953346, + -0.05990123003721237, + -0.06029531732201576, + 0.025497430935502052, + -0.04066978022456169, + 0.06660071015357971, + 0.01550732459872961, + 0.021911239251494408, + 0.004056633450090885, + -0.018640317022800446, + 0.0053398790769279, + 0.01857135072350502, + -0.005650222767144442, + -0.00021397694945335388, + 0.007596027571707964, + 0.048433296382427216, + 0.044886514544487, + -0.07365486770868301, + 0.02557624876499176, + -0.011694532819092274, + 0.02805899642407894, + -0.04776334762573242, + 0.03793087601661682, + 0.01091621071100235, + -0.00869947113096714, + -0.04587173089385033, + -0.03326094523072243, + -0.015162498690187931, + -0.06959576904773712, + 0.029517117887735367, + 0.008320162072777748, + 0.0017573818331584334, + 0.0436648428440094, + 0.005147761665284634, + -0.029497414827346802, + 0.020029474049806595, + 0.025260979309678078, + 0.011586158536374569, + -0.005384214222431183, + -0.016196977347135544, + -0.01392112486064434, + -0.06364505738019943, + -0.027546683326363564, + 0.010729019530117512, + -0.02352699637413025, + 0.0213595163077116, + -0.011921132914721966, + -0.012522115372121334, + -0.03670920804142952, + -0.07830509543418884, + 0.028650127351284027, + 0.04878797382116318, + 0.013241324573755264, + -0.047645121812820435, + -0.03923136368393898, + -0.006453175097703934, + 0.03430527448654175, + -0.04433479160070419, + 0.018167411908507347, + -0.017280716449022293, + -0.025477726012468338, + 0.04839388653635979, + 0.049300286918878555, + 0.065221406519413, + -0.03739885985851288, + 0.05465986952185631, + 0.0031822528690099716, + -0.01500486396253109, + 0.01683736778795719, + 0.012453150004148483, + 0.036472756415605545, + -0.008379275910556316, + 0.013398959301412106, + -0.04283726215362549, + -0.028985101729631424, + -0.007926075719296932, + -0.0064088404178619385, + 0.0004944560932926834, + -0.0470539927482605, + 0.005689631681889296, + 0.013231472112238407, + 0.01511323731392622, + -0.015379246324300766, + 0.04114268720149994, + -0.03645304962992668, + 0.009162523783743382, + -0.01100488007068634, + 0.03836437314748764, + 0.0029605787713080645, + 0.04622640833258629, + 0.048472706228494644, + 0.011605863459408283, + 0.017241308465600014, + 0.010187149979174137, + 0.005022146739065647, + 0.06644307076931, + -0.03753678873181343, + -0.038640234619379044, + 0.04145795479416847, + -0.006339875049889088, + 0.004152691923081875, + 0.044728878885507584, + -0.017911255359649658, + 0.016216682270169258, + 0.03083731047809124, + 0.05371406301856041, + 0.033517103642225266, + 0.0026231417432427406, + -0.029379189014434814, + 0.007369427476078272, + -0.03915254771709442, + 0.011438376270234585, + -0.032118093222379684, + 0.025241274386644363, + 0.02900480479001999, + -0.030817605555057526, + -0.028827466070652008, + -0.024453099817037582, + 0.010344784706830978, + 0.00607879227027297, + -0.07424599677324295, + -0.008753658272325993, + -0.03700477257370949, + -0.009797988459467888, + 0.04961555823683739, + -0.02340877056121826, + 0.008270901627838612, + 0.02857130952179432, + 0.029162440448999405, + 0.014512254856526852, + -0.015054124407470226, + -0.036295413970947266, + 0.018029481172561646, + 0.023034386336803436, + 0.009014740586280823, + 0.014561516232788563, + -0.007438392844051123, + 0.00385958980768919, + -0.006128053180873394, + 0.027605796232819557, + -0.007014749106019735, + 0.0046576159074902534, + 0.0012013496598228812, + -0.01089650671929121, + 0.0033324984833598137, + -0.023507291451096535, + -0.004551705438643694, + -0.06258101761341095, + -0.03300479054450989, + 0.031113171949982643, + -0.017241308465600014, + -0.0060689402744174, + 0.041300319135189056, + -0.0016256090020760894, + -0.020591046661138535, + -0.046305228024721146, + -0.01761569082736969, + -0.026108266785740852, + 0.05406874045729637, + 0.010334932245314121, + 0.049339696764945984, + 0.009748728014528751, + -0.017546724528074265, + -0.00835464522242546, + 0.008088636212050915, + 0.03666979819536209, + -0.05931009724736214, + 0.019595976918935776, + -0.02049252577126026, + 0.001322654657997191, + 0.015911264345049858, + 0.01248270645737648, + -0.019034404307603836, + 0.014551663771271706, + 0.0038743680343031883, + -0.02788165770471096, + 0.044255971908569336, + 0.008561540395021439, + -0.014847229234874249, + -0.026679692789912224, + 0.004844807554036379, + -0.03393089398741722, + -0.014778263866901398, + 0.04021658003330231, + -0.01700485497713089, + -0.012423593550920486, + -0.05761552229523659, + -0.026068856939673424, + 0.012187141925096512, + -0.0076009538024663925, + -0.0007173615740612149, + -0.0019962971564382315, + 0.0053694359958171844, + 0.0016637862427160144, + -0.022305326536297798, + 0.013270881026983261, + -0.028196927160024643, + 0.0359998494386673, + 0.032768335193395615, + -0.03854171186685562, + -0.003891609376296401, + 0.05079782009124756, + 0.009443310089409351, + -0.008349718526005745, + -0.05446282774209976, + 0.025339795276522636, + 0.01131029799580574, + 0.0032955529168248177, + -0.04697517305612564, + -0.042206719517707825, + -0.048078618943691254, + 0.02910332754254341, + 0.026462944224476814, + -0.036906249821186066, + 0.0012820144183933735, + -0.05820665508508682, + -0.006783223245292902, + 0.010709315538406372, + -0.009334936738014221, + -0.024591030552983284, + 0.033852074295282364, + 0.03180282190442085, + -0.006630514282733202, + -0.018866917118430138, + -0.00698026642203331, + 0.025063935667276382, + 0.029595935717225075, + 0.02226591669023037, + 0.02331024780869484, + -0.03645304962992668, + -0.024256056174635887, + 0.004874364007264376, + -0.03318212926387787, + 0.03022647462785244, + -0.015320133417844772, + -0.032295431941747665, + 0.012689602561295033, + 0.031211692839860916, + -0.0005677316221408546, + -0.026029448956251144, + -0.014147724024951458, + -0.016492541879415512, + 0.004635448567569256, + 0.02009843848645687, + -0.0082216402515769, + -0.009241340681910515, + 0.016364464536309242, + -0.027152596041560173, + 0.03156637027859688, + -0.007778292987495661, + -0.043034303933382034, + 0.028413675725460052, + -0.04098505154252052, + 0.022206803783774376, + 0.018768394365906715, + 0.02731023170053959, + 0.007881741039454937, + -0.0424431748688221, + -0.04492592066526413, + 0.02557624876499176, + 0.007433466613292694, + -0.04185204207897186, + -0.002564028836786747, + -0.018246229737997055, + 0.013724081218242645, + 0.021123064681887627, + -0.0427190326154232, + 0.013970385305583477, + -0.0049039204604923725, + -0.0052167270332574844, + 0.02370433509349823, + -0.002392847090959549, + -0.0012426056200638413, + 0.01578318513929844, + -0.021911239251494408, + -0.017379237338900566, + -0.003798013785853982, + -0.020256074145436287, + -0.0038152551278471947, + 0.00655662314966321, + 0.03475847467780113, + 0.038029398769140244, + -0.0541081503033638, + 0.024295466020703316, + 0.0013706840109080076, + -0.000833740399684757, + 0.000015836603779462166, + -0.014620629139244556, + 0.01278812438249588, + 0.03014765866100788, + -0.06695538759231567, + 0.03927077353000641, + 0.030561449006199837, + -0.003253681119531393, + 0.003711807308718562, + -0.002493832027539611, + -0.013802898116409779, + -0.021714195609092712, + 0.020669864490628242, + -0.06920168548822403, + 0.061438169330358505, + 0.015369393862783909, + -0.025201866403222084, + -0.04070919007062912, + -0.04441360756754875, + 0.0359998494386673, + 0.023034386336803436, + -0.040866825729608536, + 0.009970402345061302, + 0.02892598882317543, + -0.06451204419136047, + -0.0019100905628874898, + 0.06813764572143555, + 0.017231455072760582, + -0.02161567285656929, + 0.02731023170053959, + 0.015063976868987083, + -0.0292215533554554, + 0.01779302954673767, + -0.041260913014411926, + 0.00902459304779768, + -0.02766490913927555, + -0.0131526542827487, + -0.0470539927482605, + -0.013556594029068947, + 0.017408793792128563, + -0.004039391875267029, + -0.038127921521663666, + -0.0020455580670386553, + -0.02849249169230461, + -0.005881749093532562, + 0.0075812493450939655, + 0.0265811700373888, + -0.061004672199487686, + -0.03332005813717842, + -0.001472900272347033, + 0.06742829084396362, + 0.029497414827346802, + 0.029694458469748497, + 0.08039375394582748, + 0.003948259633034468, + 0.030758492648601532, + 0.025812700390815735, + -0.024216648191213608, + -0.020591046661138535, + -0.003014765679836273, + -0.023073796182870865, + -0.027152596041560173, + 0.00920193176716566, + 0.001296792645007372, + -0.03544813022017479, + 0.03800969570875168, + -0.01126103661954403, + 0.02222650870680809, + -0.030344702303409576, + 0.004236435517668724, + -0.023724040016531944, + -0.028985101729631424, + -0.03676832094788551, + 0.02100483886897564, + -0.022285621613264084, + 0.039645154029130936, + 0.019063960760831833, + 0.06707361340522766, + 0.008167454041540623, + -0.009546758607029915, + -0.06691598147153854, + -0.011458080261945724, + 0.020167404785752296, + 0.016512246802449226, + 0.020334890112280846, + -0.0009907594649121165, + 0.017152637243270874, + -0.038384076207876205, + 0.012778271920979023, + -0.04768453165888786, + -0.0005218574078753591, + 0.025083638727664948, + 0.012403889559209347, + 0.027901362627744675, + 0.02122158743441105, + -0.03225602209568024, + -0.0412215031683445, + 0.029280666261911392, + 0.030502336099743843, + -0.047566305845975876, + 0.009270897135138512, + -0.03014765866100788, + 0.059743594378232956, + 0.00771917961537838, + 0.06340860575437546, + -0.06388150900602341, + 0.008955627679824829, + 0.043428391218185425, + -0.0062561314553022385, + -0.019517160952091217, + -0.007398983929306269, + -0.05328056588768959, + -0.046738721430301666, + 0.0219703521579504, + -0.020433412864804268, + -0.04200967773795128, + -0.012453150004148483, + 0.02514275349676609, + -0.032334841787815094, + -0.0011650198139250278, + -0.04981260001659393, + -0.0029531896580010653, + -0.03109346702694893, + -0.004243824630975723, + 0.009926066733896732, + 0.044886514544487, + -0.03578310087323189, + -0.020906316116452217, + 0.027152596041560173, + 0.018374307081103325, + -0.0019581199157983065, + -0.045477643609046936, + 0.015852151438593864, + 0.008246270939707756, + -0.021063951775431633, + 0.003716733306646347, + -0.023802855983376503, + 0.00015124629135243595, + 0.050521958619356155, + -0.01041375007480383, + 0.018206821754574776, + -0.026975257322192192, + -0.0015714220935478806, + 0.044650059193372726, + 0.00007277524855453521, + 0.00017118155665230006, + -0.03127080574631691, + 0.015862002968788147, + -0.022738821804523468, + -0.01343836821615696, + 0.013911272399127483, + 0.039290476590394974, + -0.0264432393014431, + 0.034246161580085754, + 0.012009802274405956, + 0.010083702392876148, + -0.009817693382501602, + -0.0660489872097969, + -0.0006859577260911465, + 0.026384126394987106, + 0.018019629642367363, + -0.03286685794591904, + 0.002349743852391839, + 0.007275831885635853, + 0.006866966374218464, + 0.01748761162161827, + -0.010275819338858128, + -0.013714228756725788, + 0.02092602103948593, + 0.019418638199567795, + 0.040472738444805145, + -0.0026600875426083803, + -0.03408852964639664, + -0.03554664924740791, + 0.004480276722460985, + -0.041812632232904434, + -0.0439407043159008, + -0.03231513500213623, + 0.01613786444067955, + 0.0003940870228689164, + 0.018472829833626747, + -0.01015759352594614, + -0.036295413970947266, + 0.01757628098130226, + 0.007531988434493542, + 0.0003469813091214746, + 0.048866793513298035, + 0.010837393812835217, + 0.020334890112280846, + -0.018384160473942757, + 0.04681754112243652, + 0.03418704867362976, + 0.006418692413717508, + -0.005847266409546137, + -0.002283241832628846, + 0.02279793471097946, + 0.004682246595621109, + 0.031428441405296326, + -0.013999941758811474, + 0.00804922729730606, + -0.00941868033260107, + 0.003741363761946559, + 0.0017462981631979346, + -0.018059037625789642, + -0.004773379303514957, + -0.027152596041560173, + 0.01271915901452303, + -0.014827524311840534, + -0.006014753133058548, + -0.013231472112238407, + 0.015556585974991322, + 0.013999941758811474, + 0.04063037410378456, + 0.021950647234916687, + -0.020650159567594528, + -0.00078016915358603, + 0.0362757109105587, + 0.019280707463622093, + 0.006216723006218672, + 0.03753678873181343, + 0.0028497418388724327, + 0.0053300270810723305, + 0.020413707941770554, + 0.00017934039351530373, + 0.009477793239057064, + -0.0053398790769279, + -0.031073762103915215, + -0.005596035625785589, + -0.007187162060290575, + 0.0011533203069120646, + -0.014788116328418255, + -0.003891609376296401, + -0.027369344606995583, + -0.01761569082736969, + -0.03513285890221596, + 0.0019088590051978827, + 0.004719192162156105, + 0.020807795226573944, + -0.027428457513451576, + 0.0059063793160021305, + 0.009226562455296516, + -0.007704401388764381, + -0.0013509795535355806, + 0.009206858463585377, + -0.06262043118476868, + -0.011664976365864277, + -0.03558605909347534, + -0.007733957841992378, + -0.014522107318043709, + 0.02096543088555336, + 0.026600874960422516, + 0.0025788070634007454, + 0.03300479054450989, + 0.016423577442765236, + -0.012837384827435017, + 0.025241274386644363, + 0.021103359758853912, + -0.009965475648641586, + -0.008477797731757164, + -0.0036748615093529224, + 0.01048271544277668, + 0.03430527448654175, + 0.01215758454054594, + -0.03737915679812431, + 0.0065221404656767845, + 0.036650095134973526, + -0.01133000198751688, + 0.014453141950070858, + -0.004169933497905731, + -0.0024581179022789, + -0.0022413700353354216, + 0.0038645160384476185, + -0.02918214537203312, + -0.03219690918922424, + -0.008389127440750599, + -0.0022302863653749228, + -0.009433458559215069, + -0.0011348475236445665, + -0.01050241943448782, + 0.020728977397084236, + -0.028472788631916046, + 0.002719200449064374, + -0.014157576486468315, + -0.03911313787102699, + 0.016995003446936607, + -0.01626594178378582, + 0.0027487571351230145, + 0.0023115668445825577, + -0.0013485165545716882, + 0.0412215031683445, + 0.017379237338900566, + 0.05540863797068596, + -0.03493581712245941, + -0.029891502112150192, + 0.0031576224137097597, + -0.02748757041990757, + 0.024650143459439278, + 0.022147690877318382, + -0.03245306760072708, + 0.017842290922999382, + 0.049694374203681946, + 0.03663038834929466, + 0.03347769379615784, + -0.0032930898014456034, + 0.04441360756754875, + 0.008896514773368835, + -0.007256127428263426, + -0.024591030552983284, + -0.032945677638053894, + -0.008655136451125145, + 0.0032438288908451796, + -0.004317716229707003, + -0.044295381754636765, + -0.017083672806620598, + 0.0070984927006065845, + -0.022640300914645195, + 0.03274863213300705, + 0.017950665205717087, + 0.016256090253591537, + -0.04224612936377525, + -0.012492558918893337, + 0.006142831407487392, + 0.016295498237013817, + 0.02701466530561447, + 0.008640358224511147, + -0.0387190505862236, + 0.028847170993685722, + -0.009339862503111362, + -0.020945725962519646, + -0.0473298542201519, + 0.021497447043657303, + 0.02457132562994957, + 0.039290476590394974, + -0.02226591669023037, + 0.0036256005987524986, + 0.017063967883586884, + 0.025714179500937462, + -0.05670912563800812, + 0.013822603039443493, + -0.012078767642378807, + 0.006187166552990675, + -0.011714236810803413, + -0.022817639634013176, + -0.05276825278997421, + -0.017990073189139366, + -0.023645222187042236, + -0.018462978303432465, + -0.003088657045736909, + -0.018886620178818703, + -0.03365503251552582, + 0.018275786191225052, + -0.01361570693552494, + -0.013999941758811474, + -0.012196993455290794, + -0.009758580476045609, + -0.01914277672767639, + 0.016502395272254944, + -0.02500482276082039, + -0.02640383131802082, + 0.018206821754574776, + -0.0014901416143402457, + 0.012531967833638191, + -0.016679733991622925, + -0.019802873954176903, + 0.03345799073576927, + 0.002945800544694066, + 0.004315252881497145, + 0.018512237817049026, + -0.010788132436573505, + -0.019891543313860893, + -0.0017499927198514342, + 0.005206875037401915, + -0.010886654257774353, + -0.03531019762158394, + 0.02939889207482338, + -0.05284707248210907, + 0.022955570369958878, + -0.01050241943448782, + -0.055605679750442505, + 0.022541778162121773, + -0.02226591669023037, + 0.0021219123154878616, + 0.013950681313872337, + -0.001660091569647193, + 0.017990073189139366, + -0.07046276330947876, + 0.01141867134720087, + 0.010315228253602982, + 0.039073728024959564, + 0.028985101729631424, + -0.009019667282700539, + 0.02622649259865284, + 0.024669848382472992, + 0.02352699637413025, + 0.044216565787792206, + -0.014246245846152306, + 0.005669927224516869, + 0.035251084715127945, + -0.04240376502275467, + -0.022640300914645195, + -0.01770436018705368, + 0.002217971021309495, + 0.019300412386655807, + 0.01437432412058115, + 0.03911313787102699, + -0.00027185847284272313, + 0.019586125388741493, + -0.028433378785848618, + 0.02122158743441105, + 0.017103377729654312, + 0.03040381520986557, + -0.0031551592983305454, + 0.034640248864889145, + -0.012660046108067036, + 0.015152646228671074, + 0.03357621654868126, + -0.0010289365891367197, + -0.026029448956251144, + 0.01352703757584095, + 0.02748757041990757, + 0.007842332124710083, + -0.008280754089355469, + 0.011054141446948051, + -0.017073821276426315, + -0.02478807419538498, + 0.0018066427437588573, + 0.007014749106019735, + -0.006615736056119204, + -0.007733957841992378, + 0.012453150004148483, + 0.012935906648635864, + 0.013044280931353569, + -0.002269695047289133, + -0.013763489201664925, + -0.0031748637557029724, + 0.00328323757275939, + -0.0248865969479084, + -0.027980178594589233, + 0.009596019051969051, + -0.04910324513912201, + 0.02039400301873684, + -0.010463010519742966, + -0.01713293418288231, + -0.031724005937576294, + 0.018581204116344452, + -0.011930984444916248, + 0.008970405906438828, + -0.02727082185447216, + 0.0011330002453178167, + -0.017280716449022293, + -0.04409833997488022, + 0.00697041442617774, + -0.012531967833638191, + 0.015724072232842445, + 0.016955595463514328, + 0.030719084665179253, + 0.0008571392972953618, + -0.0049975160509347916, + 0.015625551342964172, + -0.022068873047828674, + -0.036906249821186066, + -0.003822644241154194, + -0.03087671846151352, + 0.02366492711007595, + 0.035329900681972504, + -0.007182236295193434, + -0.036334823817014694, + 0.0014815209433436394, + -0.0293594840914011, + 0.02813781425356865, + 0.014955602586269379, + 0.04945792257785797, + -0.031428441405296326, + -0.020039325580000877, + -0.027132892981171608, + 0.024728961288928986, + 0.009531980380415916, + 0.006906375288963318, + -0.0028374267276376486, + -0.00967483688145876, + 0.009403902105987072, + 0.03621659800410271, + 0.011930984444916248, + -0.02104424685239792, + 0.014522107318043709, + 0.020413707941770554, + 0.008413758128881454, + -0.025635361671447754, + 0.02835456281900406, + -0.03771412745118141, + 0.000911942042876035, + -0.012226549908518791, + -0.020413707941770554, + -0.03927077353000641, + -0.04559586942195892, + 0.03996042534708977, + 0.006866966374218464, + -0.031940754503011703, + 0.0192215945571661, + -0.007137901149690151, + -0.0030098396819084883, + -0.005022146739065647, + -0.015467915683984756, + 0.017083672806620598, + 0.025280682370066643, + 0.020591046661138535, + 0.024453099817037582, + 0.0372215211391449, + -0.006467953324317932, + -0.01313295029103756, + 0.03217720612883568, + 0.036118075251579285, + 0.011753645725548267, + 0.03828555345535278, + -0.02070927433669567, + -0.012630489654839039, + -0.04571409523487091, + 0.017024559900164604, + -0.0019100905628874898, + 0.0019655090291053057, + 0.022541778162121773, + 0.0528864786028862, + 0.033221535384655, + -0.017812734469771385, + 0.004115746356546879, + 0.03676832094788551, + -0.015970377251505852, + 0.01204921118915081, + 0.005325100850313902, + 0.04689635708928108, + -0.002682254882529378, + 0.01818711683154106, + -0.0014261024771258235, + 0.010512271896004677, + 0.0164432805031538, + 0.007285683881491423, + -0.007911297492682934, + 0.019497456029057503, + 0.008704396896064281, + 0.004758601076900959, + -0.03454172983765602, + 0.007492579519748688, + -0.029162440448999405, + 0.007453171070665121, + -0.014226541854441166, + 0.007694549392908812, + -0.021674787625670433, + -0.01437432412058115, + -0.02143833413720131, + 0.00869947113096714, + -0.009394049644470215, + -0.0007302925223484635, + -0.020472820848226547, + -0.006187166552990675, + 0.004096041899174452, + 0.005733966361731291, + -0.029300371184945107, + 0.0473298542201519, + -0.0025837330613285303, + 0.016285646706819534, + -0.01320191565901041, + 0.007802923209965229, + 0.013930976390838623, + -0.00681770546361804, + 0.053911104798316956, + 0.052689436823129654, + 0.037201814353466034, + -0.0014802893856540322, + 0.0023534384090453386, + 0.01673884689807892, + -0.004731507506221533, + 0.04626581817865372, + -0.0053103226236999035, + -0.013408810831606388, + -0.024453099817037582, + -0.044255971908569336, + 0.008926071226596832, + -0.03645304962992668, + 0.035723987966775894, + 0.016896480694413185, + -0.008083710446953773, + 0.05339879170060158, + 0.004731507506221533, + -0.02762550115585327, + 0.009576315060257912, + -0.015980228781700134, + 0.005921157542616129, + 0.0016576285706833005, + 0.004921162035316229, + 0.02604915201663971, + 0.038561414927244186, + 0.004928551148623228, + 0.00339900073595345, + -0.045911140739917755, + 0.010541828349232674, + -0.026935849338769913, + 0.016945742070674896, + 0.03737915679812431, + -0.017497465014457703, + 0.007167458068579435, + -0.03087671846151352, + 0.04559586942195892, + 0.011054141446948051, + 0.007187162060290575, + -0.0049975160509347916, + 0.004125598818063736, + 0.00974380224943161, + 0.005389139987528324, + -0.014039350673556328, + 0.008246270939707756, + -0.011527045629918575, + 0.03635452687740326, + 0.030305292457342148, + -0.012817680835723877, + 0.0035320050083100796, + 0.003802939783781767, + -0.04457124322652817, + 0.03365503251552582, + 0.03296538069844246, + -0.007950705476105213, + -0.021812716498970985, + -0.004246287979185581, + -0.022738821804523468, + -0.026108266785740852, + -0.011615714989602566, + 0.0062955403700470924, + 0.026029448956251144, + 0.028906283900141716, + 0.01163541991263628, + 0.009068927727639675, + -0.005398992449045181, + 0.004320179112255573, + -0.027507275342941284, + 0.011891576461493969, + 0.004844807554036379, + -0.04863033816218376, + 0.0011132959043607116, + 0.01643342897295952, + -0.015290576964616776, + -0.011536898091435432, + 0.025852108374238014, + 0.027901362627744675, + -0.021300403401255608, + 0.037300337105989456, + -0.017428498715162277, + 0.006788149010390043, + -0.029063917696475983, + 0.027940770611166954, + -0.03830526024103165, + 0.021891534328460693, + 0.03605896234512329, + 0.03808851167559624, + 0.045083556324243546, + 0.018591055646538734, + 0.01774376817047596, + -0.0219703521579504, + 0.008556614629924297, + 0.023586109280586243, + 0.013704376295208931, + 0.02892598882317543, + 0.010325079783797264, + -0.01765509881079197, + 0.007743810303509235, + -0.008384201675653458, + -0.008566467091441154, + 0.024591030552983284, + -0.02313290908932686, + -0.019320117309689522, + 0.0005723498179577291, + 0.019990064203739166, + -0.010620645247399807, + -0.015586142428219318, + 0.006285688374191523, + -0.025300387293100357, + -0.04768453165888786, + 0.015714220702648163, + -0.021320108324289322, + 0.002921170089393854, + 0.027251118794083595, + 0.016679733991622925, + 0.0012007339391857386, + -0.007330019026994705, + -0.03846289590001106, + 0.00003444412868702784, + -0.02287675254046917, + 0.04228553920984268, + -0.0002858670486602932, + 0.0023411232978105545, + 0.032906267791986465, + -0.0485515221953392, + 0.04744808003306389, + 0.00994084496051073, + 0.0029113178607076406, + -0.013123097829520702, + -0.002006149385124445, + 0.0029852092266082764, + -0.014325063675642014, + -0.007034453563392162, + -0.005201948806643486, + 0.024945709854364395, + 0.01052212342619896, + 0.044295381754636765, + 0.007477801293134689, + 0.014689594507217407, + 0.036039259284734726, + -0.012472854927182198, + -0.024059012532234192, + -0.0036083594895899296, + 0.010334932245314121, + -0.0020591048523783684, + -0.00680785346776247, + 0.003709344193339348, + -0.004416237585246563, + -0.020551638677716255, + -0.0016970372525975108, + 0.0313890315592289, + 0.010945767164230347, + -0.0121378805488348, + -0.02049252577126026, + -0.002374374307692051, + 0.014364472590386868, + 0.003834959352388978, + -0.01639402098953724, + -0.010147741064429283, + 0.009911288507282734, + -0.010581237263977528, + -0.011556602083146572, + 0.017852142453193665, + 0.0124432984739542, + 0.012325071729719639, + -0.005763522814959288, + 0.036906249821186066, + -0.0032512180041521788, + 0.01808859407901764, + -0.007246275432407856, + -0.011901427991688251, + -0.0075418404303491116, + -0.01635461114346981, + 0.0019987602718174458, + -0.005714261904358864, + -0.0008891588659025729, + 0.01818711683154106, + 0.026502352207899094, + -0.004842344205826521, + 0.01433491613715887, + 0.04287666827440262, + 0.02532009221613407, + -0.0059457882307469845, + 0.0016366926720365882, + -0.0016354612307623029, + -0.009443310089409351, + -0.02301468327641487, + 0.020295482128858566, + -0.029871797189116478, + 0.003059100592508912, + -0.004371902905404568, + -0.019300412386655807, + -0.0026970331091433764, + -0.010443306528031826, + 0.01947775110602379, + 0.024650143459439278, + -0.02939889207482338, + -0.029024509713053703, + -0.027586091309785843, + -0.0047906204126775265, + 0.009650206193327904, + 0.03497522324323654, + -0.0021280699875205755, + -0.0033374244812875986, + 0.011044288985431194, + -0.007876814343035221, + -0.010561532340943813, + -0.027901362627744675, + -0.0014211763627827168, + 0.004216731060296297, + 0.026719100773334503, + 0.03345799073576927, + 0.029497414827346802, + -0.004027076996862888, + -0.034462910145521164, + -0.01509353332221508, + 0.047211624681949615, + 0.008600949309766293, + -0.001359600224532187, + 0.011625567451119423, + -0.0004944560932926834, + -0.0030049136839807034, + 0.0021970351226627827, + 0.027152596041560173, + -0.0005862044636160135, + 0.012334924191236496, + 0.013684672303497791, + 0.020689569413661957, + 0.011497489176690578, + -0.000253693520789966, + 0.01588170789182186, + -0.0543840117752552, + -0.005950713995844126, + 0.003152696182951331, + 0.0010289365891367197, + 0.0042142681777477264, + -0.00335959205403924, + 0.033083606511354446, + 0.02204916998744011, + -0.005004905164241791, + 0.0005535691161639988, + 0.0014076295774430037, + -0.019517160952091217, + 0.010325079783797264, + 0.011645271442830563, + 0.01709352433681488, + -0.01156645454466343, + -0.008177305571734905, + -0.0058866748586297035, + -0.0016761013539507985, + 0.03274863213300705, + 0.008477797731757164, + -0.02435457892715931, + 0.006251205690205097, + -0.000575428653974086, + 0.0038719051517546177, + 0.05324115976691246, + 0.027605796232819557, + -0.019034404307603836, + 0.02457132562994957, + 0.038600824773311615, + 0.013566446490585804, + -0.02313290908932686, + 0.02561565674841404, + 0.021812716498970985, + -0.01657135970890522, + -0.02031518705189228, + 0.010876801796257496, + -0.017586134374141693, + -0.03592103347182274, + 0.025418613106012344, + -0.035861920565366745, + 0.018206821754574776, + 0.006265983916819096, + 0.015270872041583061, + 0.01543835923075676, + 0.005118205212056637, + -0.03982249274849892, + 0.0009476561681367457, + 0.016886629164218903, + -0.04161559045314789, + 0.005581257399171591, + 0.005724114365875721, + 0.03278804197907448, + 0.003352202707901597, + -0.02331024780869484, + 0.01002458855509758, + 0.0608864463865757, + -0.007492579519748688, + 0.016807811334729195, + -0.030738787725567818, + -0.024433396756649017, + 0.016118159517645836, + 0.007443318609148264, + 0.04729044437408447, + -0.008325088769197464, + -0.03357621654868126, + 0.010837393812835217, + 0.013192063197493553, + -0.0016650176839902997, + -0.012581228278577328, + 0.009911288507282734, + 0.014384176582098007, + -0.014049203135073185, + 0.014797967858612537, + -0.004492592066526413, + -0.013586150482296944, + 0.011182219721376896, + -0.001181645318865776, + -0.0011582464212551713, + 0.002652698429301381, + -0.03491611033678055, + -0.016344759613275528, + 0.002099744975566864, + -0.04078800603747368, + 0.023763447999954224, + 0.012453150004148483, + -0.0069654881954193115, + 0.007408836390823126, + 0.013556594029068947, + -0.01570436730980873, + -0.021556559950113297, + -0.014906342141330242, + -0.010995028540492058, + 0.002990135457366705, + 0.010541828349232674, + 0.011930984444916248, + 0.003903924720361829, + -0.022896457463502884, + 0.007591101340949535, + -0.03300479054450989, + 0.012935906648635864, + 0.03426586836576462, + 0.03732004016637802, + -0.0028226482681930065, + -0.01509353332221508, + 0.007502431981265545, + 0.017103377729654312, + 0.03708358854055405, + -0.005738892592489719, + 0.022975273430347443, + 0.005103426985442638, + 0.011576307006180286, + -0.01435462012887001, + -0.02035459503531456, + -0.012088620103895664, + -0.018709281459450722, + -0.006064014043658972, + -0.0049802749417722225, + 0.02849249169230461, + 0.05040373280644417, + 0.02118217758834362, + 0.017546724528074265, + 0.020334890112280846, + 0.024768369272351265, + -0.01892603002488613, + 0.0031551592983305454, + 0.024039309471845627, + -0.028019588440656662, + 0.03440379723906517, + 0.011182219721376896, + -0.051349539309740067, + -0.08086665719747543, + -0.021635377779603004, + 0.009359567426145077, + -0.03992101550102234, + 0.005236431490629911, + -0.011901427991688251, + -0.008778288960456848, + -0.0023152614012360573, + 0.005246283486485481, + -0.006921153515577316, + 0.014837376773357391, + -0.028157519176602364, + -0.041339728981256485, + -0.029852092266082764, + 0.0033866853918880224, + -0.0036625463981181383, + -0.003546783234924078, + -0.013398959301412106, + -0.024945709854364395, + -0.007571396883577108, + 0.0224432572722435, + 0.005128057673573494, + -0.006802927237004042, + 0.0037068810779601336, + 0.011448228731751442, + 0.010167445056140423, + 0.02388167381286621, + -0.0062758359126746655, + -0.003152696182951331, + 0.016364464536309242, + 0.0030443223658949137, + 0.012039358727633953, + -0.0038522006943821907, + 0.002913780976086855, + 0.0378323532640934, + 0.053556427359580994, + -0.020453117787837982, + -0.011527045629918575, + 0.04118209332227707, + -0.009581240825355053, + 0.008768436498939991, + -0.009443310089409351, + 0.0012364480644464493, + 0.0131526542827487, + -0.011349706910550594, + 0.010797984898090363, + 0.011132958345115185, + 0.00311082461848855, + -0.035172268748283386, + -0.020433412864804268, + -0.03253188356757164, + -0.032039277255535126, + -0.014246245846152306, + -0.007748736068606377, + -0.03284715488553047, + 0.015556585974991322, + -0.012344776652753353, + 0.014039350673556328, + 0.0033275724854320288, + 0.027802839875221252, + 0.01844327338039875, + -0.04043332859873772, + -0.005581257399171591, + -0.00467485748231411, + 0.018256081268191338, + 0.004559094551950693, + -0.024610735476017, + 0.0031231397297233343, + 0.027645206078886986, + -0.012571376748383045, + -0.0011945762671530247, + -0.015763482078909874, + 0.005507366266101599, + -0.005522144492715597, + -0.05004905164241791, + 0.039645154029130936, + 0.018768394365906715, + 0.03980278968811035, + 0.01686692424118519, + 0.02431516908109188, + -0.018512237817049026, + 0.0033891485072672367, + 0.012315220199525356, + -0.003307868028059602, + -0.04878797382116318, + -0.016374316066503525, + -0.036118075251579285, + 0.011211776174604893, + -0.009615723975002766, + 0.004096041899174452, + -0.014797967858612537, + -0.037517085671424866, + -0.002645309315994382, + -0.02492600493133068, + -0.015891559422016144, + 0.009709319099783897, + 0.01996050775051117, + 0.033379171043634415, + 0.036728911101818085, + 0.02583240531384945, + 0.0007333713583648205, + 0.0043645137920975685, + -0.0031009723898023367, + -0.006896522827446461, + -0.011211776174604893, + -0.003862052923068404, + 0.024610735476017, + -0.002263537375256419, + -0.006842336151748896, + 0.01848268136382103, + -0.01787184737622738, + -0.0313299186527729, + 0.0032930898014456034, + 0.043428391218185425, + 0.03217720612883568, + 0.02366492711007595, + 0.010857097804546356, + 0.028591014444828033, + 0.013714228756725788, + -0.006364505738019943, + 0.017034411430358887, + 0.01813785545527935, + -0.009960549883544445, + 0.0021760992240160704, + -0.011596010997891426, + -0.017980221658945084, + -0.021063951775431633, + -0.02374374307692051, + 0.03335946798324585, + 0.0038152551278471947, + 0.013645263388752937, + -0.00976350624114275, + 0.014433437958359718, + 0.02327083982527256, + 0.0069654881954193115, + 0.019901394844055176, + 0.0049039204604923725, + 0.03931017965078354, + 0.0009636659524403512, + -0.014384176582098007, + -0.007226570975035429, + 0.0028940767515450716, + -0.004697024822235107, + 0.02496541291475296, + -0.009364493191242218, + 0.0412215031683445, + -0.0005975960521027446, + 0.0035640245769172907, + -0.00583741394802928, + -0.020413707941770554, + 0.014857080765068531, + -0.027408752590417862, + 0.019300412386655807, + 0.00655662314966321, + 0.0054039182141423225, + -0.000573273457121104, + -0.008187158033251762, + 0.028157519176602364, + -0.014581220224499702, + 0.01900484785437584, + 0.0007918686023913324, + -0.00037499843165278435, + 0.03062056191265583, + 0.017458055168390274, + -0.004995053168386221, + 0.00501229427754879, + 0.015862002968788147, + 0.024236353114247322, + -0.0062758359126746655, + 0.02374374307692051, + 0.005862044636160135, + 0.019586125388741493, + 0.010019662790000439, + -0.0037142701912671328, + -0.04011806100606918, + 0.009423606097698212, + -0.0038078660145401955, + -0.008290605619549751, + 0.00022613821784034371, + 0.05280766263604164, + -0.011280741542577744, + 0.040078651160001755, + -0.017635393887758255, + -0.048866793513298035, + -0.002018464496359229, + 0.016689585521817207, + -0.01010833214968443, + 0.03152696415781975, + 0.012689602561295033, + -0.01970435120165348, + 0.05284707248210907, + -0.012837384827435017, + -0.03527078777551651, + 0.04078800603747368, + 0.019901394844055176, + 0.05580272525548935, + -0.016728995367884636, + -0.01609845459461212, + 0.04567468538880348, + 0.032078683376312256, + 0.004463035613298416, + -0.017359534278512, + -0.00804922729730606, + -0.002225360134616494, + -0.00714282738044858, + 0.0007130512385629117, + 0.022679708898067474, + -0.012196993455290794, + 0.012729011476039886, + -0.044610653072595596, + 0.045122966170310974, + 0.012709306553006172, + -0.004618207458406687, + -0.0013879252364858985, + -0.0018509775400161743, + 0.01280782837420702, + -0.03387178108096123, + 0.02453191764652729, + 0.0023472809698432684, + 0.010073849931359291, + 0.0020985135342925787, + -0.032295431941747665, + -0.009192080236971378, + -0.012916202656924725, + -0.033595919609069824, + -0.04535941779613495, + -0.003078805049881339, + -0.03065997175872326, + -0.02161567285656929, + 0.002800480928272009, + 0.012226549908518791, + 0.02053193375468254, + 0.014975307509303093, + 0.012955611571669579, + 0.009586166590452194, + -0.05083722621202469, + 0.006931005511432886, + -0.035901330411434174, + -0.049339696764945984 + ] + }, + { + "HotelId": "25", + "HotelName": "Waterfront Scottish Inn", + "Description": "Newly Redesigned Rooms & airport shuttle. Minutes from the airport, enjoy lakeside amenities, a resort-style pool & stylish new guestrooms with Internet TVs.", + "Description_fr": "Chambres nouvellement redessinĆ©es & navette d'aĆ©roport. Minutes de l'aĆ©roport, profitez des Ć©quipements Lakeside, une piscine de style complexe et de nouvelles chambres Ć©lĆ©gantes avec des tĆ©lĆ©Viseurs Internet.", + "Category": "Suite", + "Tags": [ + "24-hour front desk service", + "continental breakfast", + "free wifi" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-06-25T00:00:00Z", + "Rating": 3.8, + "Address": { + "StreetAddress": "3301 Veterans Memorial Blvd", + "City": "Metairie", + "StateProvince": "LA", + "PostalCode": "70002", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -90.156708, + 30.004539 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 82.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 112.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "tv" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "tv", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 113.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 94.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "bathroom shower", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (City View)", + "Description_fr": "Suite, 1 grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 237.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + } + ], + "embedding": [ + -0.03176894783973694, + -0.03086186572909355, + 0.0397639200091362, + -0.011349066160619259, + -0.010125560685992241, + -0.0021951899398118258, + -0.014502756297588348, + 0.04048115015029907, + 0.023014556616544724, + -0.0004482670337893069, + -0.05210444703698158, + -0.0011127569014206529, + -0.04208436235785484, + 0.0015873926458880305, + -0.05092313513159752, + 0.0007409590180031955, + -0.029975879937410355, + -0.004973127041012049, + -0.030018068850040436, + 0.0325072705745697, + 0.004522223025560379, + 0.014186332933604717, + -0.019470609724521637, + -0.050121527165174484, + -0.00017419787764083594, + 0.03269712254405022, + -0.022613752633333206, + -0.032676029950380325, + 0.016548963263630867, + 0.008126817643642426, + -0.004482670221477747, + -0.025271711871027946, + 0.05417175218462944, + -0.009123552590608597, + 0.009608735330402851, + -0.030102448537945747, + -0.013121039606630802, + 0.006845301017165184, + 0.03402610495686531, + -0.04514312744140625, + 0.003029757644981146, + 0.08572974801063538, + -0.019565537571907043, + -0.055015549063682556, + 0.004891384392976761, + 0.03290807455778122, + -0.03136814385652542, + 0.016928672790527344, + -0.019059259444475174, + 0.02172776684165001, + -0.08155295252799988, + 0.02394273318350315, + -0.03408939018845558, + -0.0786418542265892, + -0.04813860356807709, + 0.04607130214571953, + -0.001254488481208682, + -0.01193972397595644, + 0.010457806289196014, + 0.00020468662842176855, + 0.0322963185608387, + 0.028942227363586426, + 0.00022396870190277696, + 0.07155396044254303, + -0.03803413733839989, + 0.01730838045477867, + -0.0015478396089747548, + 0.009672020561993122, + -0.00517352856695652, + -0.06644899398088455, + 0.03077748604118824, + 0.0325072705745697, + -0.0428437814116478, + -0.05029028654098511, + -0.004836010280996561, + 0.0038946494460105896, + -0.0325072705745697, + -0.019713200628757477, + -0.026199888437986374, + -0.021379699930548668, + -0.02968055009841919, + -0.01704469509422779, + 0.0012235052417963743, + 0.02387944795191288, + 0.006803111173212528, + 0.02089451625943184, + -0.022993462160229683, + -0.014017573557794094, + -0.025081858038902283, + 0.07433849573135376, + -0.014471113681793213, + 0.05214663967490196, + -0.011886986903846264, + -0.02115820348262787, + -0.06206125020980835, + 0.019649917259812355, + 0.04178903251886368, + -0.030418872833251953, + -0.013954288326203823, + 0.046408820897340775, + 0.01902761682868004, + -0.09340830147266388, + 0.0016269455663859844, + 0.0065025086514651775, + 0.017624804750084877, + -0.06535205990076065, + 0.00430072657763958, + 0.03619888052344322, + 0.028457045555114746, + 0.014776990748941898, + -0.0762370377779007, + 0.007230283226817846, + -0.026642881333827972, + 0.003232796210795641, + -0.03183223307132721, + -0.031051719561219215, + 0.009867148473858833, + -0.02649521827697754, + -0.04894021153450012, + 0.0002557758998591453, + 0.016295824199914932, + 0.004923026543110609, + 0.01728728599846363, + -0.014302355237305164, + -0.0009341093827970326, + -0.05037466436624527, + 0.015061771497130394, + -0.03442690894007683, + -0.02963836118578911, + -0.03873027116060257, + 0.037380196154117584, + 0.014196880161762238, + 0.019913602620363235, + -0.029343031346797943, + 0.0202089324593544, + 0.04159918054938316, + -0.014660968445241451, + -0.005110243801027536, + -0.05737818032503128, + -0.04183122515678406, + 0.03915216773748398, + 0.024238061159849167, + 0.043286774307489395, + -0.048054225742816925, + -0.008295577019453049, + 0.019217470660805702, + 0.04834955185651779, + 0.025377187877893448, + -0.00482282554730773, + 0.008406325243413448, + -0.0476745143532753, + 0.015757903456687927, + -0.013743339106440544, + 0.022444993257522583, + -0.051260653883218765, + 0.00980913732200861, + 0.002576216822490096, + -0.014492209069430828, + 0.005511047318577766, + 0.03284478932619095, + 0.00424007885158062, + -0.02223404496908188, + -0.024216966703534126, + 0.021210940554738045, + 0.05134503170847893, + 0.012604214251041412, + 0.019755391404032707, + 0.030672011896967888, + -0.09762728214263916, + -0.025377187877893448, + 0.021358605474233627, + 0.0074254111386835575, + 0.01647513173520565, + 0.06695526838302612, + 0.03132595494389534, + 0.04128275439143181, + -0.012572571635246277, + 0.03130485862493515, + 0.0012333935592323542, + 0.01193972397595644, + -0.022550467401742935, + -0.025356091558933258, + 0.029279746115207672, + 0.023563023656606674, + -0.02012455277144909, + 0.0028267190791666508, + 0.0064761401154100895, + 0.016032138839364052, + -0.027908576652407646, + -0.016854839399456978, + -0.03769661858677864, + 0.00425062607973814, + -0.04510093480348587, + -0.012266695499420166, + -0.0285625196993351, + 0.0065025086514651775, + -0.041683558374643326, + -0.0129628274589777, + 0.02761324867606163, + -0.05725160986185074, + -0.011507278308272362, + -0.04771670699119568, + 0.06682870537042618, + -0.048602692782878876, + -0.044805608689785004, + -0.047547947615385056, + 0.020852327346801758, + 0.02497638389468193, + 0.016580605879426003, + 0.006597435567528009, + 0.040038157254457474, + -0.004184704273939133, + -0.007203914690762758, + 0.002585445996373892, + 0.01704469509422779, + -0.005081238690763712, + -0.0011931813787668943, + 0.004970490001142025, + 0.022423898801207542, + 0.028541425243020058, + -0.04531188681721687, + 0.00021457487309817225, + -0.021411342546343803, + 0.006655446719378233, + -0.034806616604328156, + 0.03710596263408661, + -0.0009993717540055513, + -0.009091909974813461, + -0.01570516638457775, + -0.01408085785806179, + 0.00424535246565938, + -0.017139621078968048, + -0.029047703370451927, + -0.020905064418911934, + -0.023225504904985428, + 0.039004504680633545, + 0.017920132726430893, + -0.04775889590382576, + -0.006908585783094168, + 0.027908576652407646, + -0.02809843234717846, + -0.025334997102618217, + -0.0302079226821661, + 0.029891500249505043, + 0.02972274087369442, + -0.029300842434167862, + 0.005249998066574335, + -0.0032881703227758408, + 0.03193770721554756, + -0.0020303858909755945, + -0.053918611258268356, + -0.03436362370848656, + 0.02387944795191288, + -0.05944548174738884, + 0.04421494901180267, + 0.03387843817472458, + -0.007936962880194187, + -0.02645302750170231, + 0.023077839985489845, + -0.03864588961005211, + 0.030439967289566994, + -0.0172450952231884, + 0.00027011384372599423, + -0.015916116535663605, + 0.023056745529174805, + 0.011254139244556427, + 0.005197260528802872, + 0.029279746115207672, + 0.012119030579924583, + -0.0006611938588321209, + -0.05370766296982765, + -0.028288286179304123, + -0.00820592325180769, + 0.0020330226980149746, + 0.031093910336494446, + -0.013300346210598946, + -0.02495528943836689, + 0.0070878928527235985, + 0.022444993257522583, + 0.00636539189144969, + 0.0028267190791666508, + -0.03875136375427246, + 0.017888490110635757, + -0.01304720714688301, + -0.034152671694755554, + -0.008279755711555481, + 0.024174775928258896, + 0.04187341406941414, + -0.028942227363586426, + -0.023183315992355347, + -0.026136603206396103, + -0.011370161548256874, + -0.026410838589072227, + -0.06290505081415176, + -0.013585127890110016, + 0.04288597032427788, + 0.005310645792633295, + -0.005147160030901432, + 0.02392163686454296, + -0.010821693576872349, + 0.006813658867031336, + 0.02286689169704914, + -0.055943723767995834, + -0.014481661841273308, + -0.01164439506828785, + 0.04505874589085579, + 0.02130586840212345, + -0.0006035124533809721, + 0.010616017505526543, + -0.025883466005325317, + 0.02858361415565014, + 0.028414854779839516, + 0.04446808993816376, + -0.04602911323308945, + -0.017318928614258766, + -0.005426667630672455, + 0.010341783985495567, + 0.031621284782886505, + -0.03508085012435913, + -0.010478900745511055, + 0.03672625496983528, + 0.019997982308268547, + 0.06142840161919594, + -0.05636562407016754, + -0.0057009016163647175, + -0.03248617425560951, + 0.029279746115207672, + 0.013384725898504257, + 0.04341334104537964, + -0.01653841696679592, + 0.02179105021059513, + 0.017329474911093712, + 0.025630326941609383, + 0.005139249376952648, + -0.032718218863010406, + -0.01588447391986847, + -0.06649118661880493, + -0.04885582998394966, + -0.02150627039372921, + 0.05678752064704895, + -0.012213957495987415, + 0.010283772833645344, + -0.025250617414712906, + 0.02221294865012169, + 0.012509286403656006, + -0.05573277547955513, + 0.012709688395261765, + 0.002398228505626321, + 0.014787537977099419, + 0.07450725138187408, + -0.026431933045387268, + 0.008459062315523624, + 0.02396382763981819, + 0.01594775915145874, + -0.002787166042253375, + -0.006945502012968063, + 0.04725261777639389, + -0.010320688597857952, + 0.036283258348703384, + 0.054424889385700226, + -0.028393760323524475, + 0.02544047124683857, + -0.02440682053565979, + -0.004116145893931389, + 0.0542561300098896, + -0.028520330786705017, + -0.015061771497130394, + 0.012319432571530342, + -0.019607726484537125, + -0.009946254082024097, + -0.0015610239934176207, + 0.023162219673395157, + -0.031030625104904175, + 0.012709688395261765, + 0.003367276396602392, + 0.022655943408608437, + 0.057546939700841904, + 0.051809120923280716, + -0.008016069419682026, + 0.01111702248454094, + 0.0007106350967660546, + -0.02432244084775448, + 0.03548165410757065, + -0.022381708025932312, + 0.02700149640440941, + -0.03765442967414856, + -0.035734791308641434, + -0.02176995575428009, + 0.0007666684687137604, + 0.060162708163261414, + 0.003952660597860813, + -0.02385835349559784, + -0.0022795696277171373, + 0.0031088637188076973, + 0.022677037864923477, + 0.009265943430364132, + 0.010452532209455967, + 0.021854335442185402, + 0.009640377946197987, + -0.0007488696137443185, + 0.007225009612739086, + -0.05113408342003822, + 0.0061280736699700356, + -0.030439967289566994, + -0.022613752633333206, + -0.053876422345638275, + -0.007847310043871403, + -0.02278251200914383, + 0.005648164544254541, + -0.01856352761387825, + -0.038941219449043274, + -0.061892490833997726, + 0.02154845930635929, + -0.019565537571907043, + -0.06412855535745621, + 0.013184323906898499, + 0.04147261008620262, + -0.005249998066574335, + 0.003652057843282819, + 0.0002992841473314911, + 0.05248415842652321, + 0.0024193234276026487, + -0.04564940556883812, + 0.033182308077812195, + -0.04185231775045395, + 0.015937210991978645, + -0.034279242157936096, + -0.0069771441631019115, + -0.049024589359760284, + -0.04784327372908592, + -0.04126166179776192, + -0.023457549512386322, + 0.03759114444255829, + 0.03499646857380867, + -0.0015175157459452748, + 0.049657437950372696, + -0.04737918823957443, + -0.011053737252950668, + -0.021147655323147774, + -0.026663977652788162, + -0.034764423966407776, + -0.03280259668827057, + -0.03240179643034935, + 0.013310893438756466, + -0.01570516638457775, + 0.0202089324593544, + -0.0010329918004572392, + 0.07611046731472015, + -0.0271280650049448, + -0.02657959796488285, + -0.011918628588318825, + -0.028309380635619164, + 0.008643642999231815, + 0.010668755508959293, + -0.011306876316666603, + -0.008200649172067642, + 0.03147361800074577, + -0.04624006152153015, + -0.0008035845821723342, + -0.0419577918946743, + 0.04510093480348587, + -0.015283268876373768, + -0.02436463162302971, + 0.015346553176641464, + 0.06294723600149155, + -0.04031239077448845, + -0.04552283510565758, + 0.02176995575428009, + 0.03389953449368477, + -0.011180306784808636, + -0.0402069166302681, + -0.029343031346797943, + 0.028457045555114746, + 0.009519081562757492, + -0.008437967859208584, + -0.020293312147259712, + -0.0015913479728624225, + -0.00625991728156805, + 0.03965844586491585, + 0.044257137924432755, + -0.02381616272032261, + 0.051724739372730255, + -0.0011615389958024025, + 0.01377498172223568, + -0.011296329088509083, + -0.009951528161764145, + -0.0051919869147241116, + 0.0031273216009140015, + -0.1074153259396553, + 0.03286588191986084, + 0.02491309866309166, + 0.03706377372145653, + 0.0007706237374804914, + -0.006623804569244385, + 0.007409590296447277, + 0.005020590499043465, + -0.042168743908405304, + 0.005906577222049236, + 0.02023002691566944, + -0.010542185977101326, + 0.004174157045781612, + -0.03457457199692726, + -0.040080346167087555, + 0.03567150607705116, + 0.037401292473077774, + 0.028794564306735992, + -0.023563023656606674, + 0.00820592325180769, + 0.006971870549023151, + 0.003665242111310363, + 0.004680435173213482, + 0.024195872247219086, + -0.02489200420677662, + 0.008453788235783577, + 0.001504331361502409, + 0.017867395654320717, + -0.00505750672891736, + -0.011876438744366169, + -0.02752886898815632, + 0.002105536637827754, + 0.013353083282709122, + 0.0039763920940458775, + 0.014007026329636574, + 0.012034650892019272, + 0.021137109026312828, + 0.03543946146965027, + 0.008279755711555481, + -0.06581614911556244, + -0.0021754135377705097, + 0.0012221868382766843, + -0.004659340251237154, + -0.013500748202204704, + 0.002146407961845398, + 0.01852133870124817, + 0.0175720676779747, + 0.03438471630215645, + 0.03124157525599003, + 0.0016163981053978205, + 0.03700048848986626, + -0.04185231775045395, + 0.04518531635403633, + -0.0014120411360636353, + -0.029047703370451927, + -0.011728774756193161, + -0.030587632209062576, + -0.009429428726434708, + -0.022023094817996025, + -0.027149159461259842, + 0.014207427389919758, + 0.021253131330013275, + 0.011064284481108189, + 0.002139815827831626, + -0.00912882573902607, + -0.022444993257522583, + -0.03081967681646347, + -0.009656199254095554, + 0.037359099835157394, + -0.01195027120411396, + 0.02069411426782608, + 0.017255643382668495, + -0.044257137924432755, + 0.040017060935497284, + -0.005985683295875788, + 0.0047779991291463375, + 0.030967339873313904, + -0.00849070493131876, + 0.03280259668827057, + 0.02541937679052353, + -0.006302107125520706, + -0.0014845548430457711, + -0.002381088910624385, + 0.0009776176884770393, + 0.004237441811710596, + 0.0037970852572470903, + 0.021896526217460632, + -0.014798085205256939, + -0.007493969984352589, + -0.029279746115207672, + 0.005727270618081093, + 0.03495427966117859, + 0.022951271384954453, + -0.023499738425016403, + 0.03149471431970596, + 0.0281195268034935, + -0.028794564306735992, + -0.0062388223595917225, + -0.032633837312459946, + -0.06345351785421371, + 0.012329979799687862, + 0.03233851119875908, + 0.03328778222203255, + -0.0017877944046631455, + -0.005271092988550663, + -0.025588136166334152, + -0.00032367516541853547, + -0.008532894775271416, + -0.007852583192288876, + -0.005342287942767143, + -0.03879355639219284, + 0.027950767427682877, + -0.020535903051495552, + -0.03503866121172905, + -0.020251121371984482, + -0.012688593938946724, + -0.008717475458979607, + -0.00008190761582227424, + -0.0012538292212411761, + -0.015230530872941017, + -0.003256527939811349, + -0.02343645505607128, + 0.01781465858221054, + 0.005144523456692696, + 0.0060753365978598595, + -0.000844455964397639, + 0.008865139447152615, + -0.011686584912240505, + -0.029068797826766968, + -0.04451027885079384, + -0.015546955168247223, + 0.0059382193721830845, + -0.0024878820404410362, + -0.032633837312459946, + 0.0228457972407341, + 0.031178290024399757, + 0.016580605879426003, + 0.030946245416998863, + -0.023626308888196945, + -0.041620273143053055, + 0.010420889593660831, + -0.01880612038075924, + 0.005366019904613495, + 0.06547863036394119, + 0.03400500863790512, + 0.005621796008199453, + 0.003868280677124858, + 0.0489824004471302, + 0.035228513181209564, + 0.02550375647842884, + -0.010600196197628975, + 0.027339015156030655, + 0.0031167741399258375, + -0.00043508270755410194, + 0.0056534381583333015, + -0.008981161750853062, + 0.0232887901365757, + 0.024575579911470413, + 0.03183223307132721, + -0.019280755892395973, + 0.0030376682989299297, + 0.02541937679052353, + -0.0153781957924366, + -0.011190854012966156, + 0.01750878244638443, + 0.00890732929110527, + -0.010004265233874321, + 0.02038823813199997, + -0.01044725812971592, + 0.022402804344892502, + 0.029343031346797943, + 0.01878502406179905, + -0.01825765147805214, + -0.005954040680080652, + -0.028963323682546616, + 0.017930680885910988, + -0.022508278489112854, + -0.003688973840326071, + -0.014629325829446316, + 0.004118782933801413, + -0.05412955954670906, + 0.006254643201828003, + 0.025229522958397865, + 0.02649521827697754, + 0.015219983644783497, + -0.005186713300645351, + 0.01647513173520565, + 0.012899543158710003, + -0.0007778751314617693, + 0.004991584923118353, + 0.004991584923118353, + -0.003185332752764225, + -0.004999495577067137, + -0.006001504138112068, + -0.05193568766117096, + -0.0001700777793303132, + -0.009503261186182499, + -0.0020475254859775305, + 0.019386230036616325, + -0.007599444594234228, + 0.003652057843282819, + 0.006012051831930876, + -0.015483669936656952, + -0.011190854012966156, + 0.011043190024793148, + -0.006855848710983992, + -0.008854592218995094, + -0.031157195568084717, + 0.00545831024646759, + -0.016875935718417168, + 0.022128568962216377, + -0.07252433151006699, + -0.005120791494846344, + 0.04181012883782387, + 0.016854839399456978, + -0.02541937679052353, + 0.009988443925976753, + -0.01882721483707428, + 0.0016599063528701663, + -0.037991948425769806, + 0.023204410448670387, + -0.02645302750170231, + 0.022487184032797813, + -0.04881364107131958, + -0.004237441811710596, + 0.006644899491220713, + 0.01489301212131977, + 0.01770918443799019, + -0.02168557606637478, + 0.0204304289072752, + 0.007762929890304804, + 0.004063408821821213, + -0.019818676635622978, + -0.0018339394591748714, + -0.006038420367985964, + 0.01834203116595745, + -0.004229531157761812, + 0.005959314294159412, + 0.005732544232159853, + -0.06914914399385452, + -0.013574579730629921, + 0.02552485093474388, + -0.02963836118578911, + 0.0033593657426536083, + 0.0202089324593544, + 0.008300850167870522, + 0.029448505491018295, + 0.01224560011178255, + -0.00971948355436325, + -0.030376682057976723, + 0.03345654159784317, + -0.019101448357105255, + -0.023563023656606674, + -0.0006684452528133988, + 0.023035651072859764, + -0.01990305632352829, + 0.02392163686454296, + 0.0000120306958706351, + 0.011465088464319706, + 0.02172776684165001, + -0.019228018820285797, + 0.005874934606254101, + -0.039637353271245956, + 0.004630334675312042, + -0.0297649297863245, + -0.03917326405644417, + -0.051766932010650635, + -0.027191350236535072, + 0.0011852707248181105, + 0.023710688576102257, + 0.008016069419682026, + 0.020335501059889793, + -0.0030350314918905497, + 0.00901807751506567, + 0.028857847675681114, + 0.014492209069430828, + 0.028857847675681114, + -0.01405976340174675, + 0.008406325243413448, + 0.004116145893931389, + -0.03708486631512642, + 0.0101044662296772, + 0.005044322460889816, + -0.046324439346790314, + 0.03069310635328293, + -0.00625991728156805, + 0.03143142908811569, + 0.007979152724146843, + -0.01112756971269846, + -0.01809944026172161, + 0.018616266548633575, + -0.008137364871799946, + 0.012836257927119732, + -0.010252130217850208, + 0.009171015582978725, + -0.0007040429045446217, + 0.01616925559937954, + 0.0087332958355546, + 0.02231842465698719, + 0.019808128476142883, + 0.031093910336494446, + 0.011591657996177673, + -0.02434353530406952, + 0.02128477208316326, + 0.04126166179776192, + -0.040586624294519424, + 0.009049720130860806, + -0.011243592016398907, + 0.010573827661573887, + 0.0064497715793550014, + 0.041156187653541565, + 0.03995377570390701, + -0.0022835249546915293, + 0.01516724657267332, + 0.0050759646110236645, + -0.014798085205256939, + 0.025651421397924423, + -0.014428923837840557, + -0.03326668590307236, + 0.0009229026618413627, + 0.00780511973425746, + -0.04725261777639389, + -0.033794060349464417, + 0.015757903456687927, + -0.005906577222049236, + 0.023077839985489845, + 0.00019644643180072308, + 0.009165742434561253, + -0.005537416320294142, + 0.014966844581067562, + -0.03149471431970596, + -0.007847310043871403, + -0.02603112906217575, + -0.011623299680650234, + 0.027866387739777565, + 0.05155597999691963, + -0.005139249376952648, + -0.05109189450740814, + 0.0050285011529922485, + 0.005642890930175781, + 0.015262173488736153, + -0.06214563176035881, + 0.01777246966958046, + 0.03132595494389534, + -0.004841283895075321, + 0.00018705260299611837, + 0.0004693619266618043, + -0.011781511828303337, + 0.03518632426857948, + 0.007652181666344404, + 0.01349020004272461, + 0.014228522777557373, + 0.02649521827697754, + 0.006281012203544378, + -0.03328778222203255, + 0.006797837559133768, + -0.033182308077812195, + -0.007525612134486437, + 0.0015069682849571109, + 0.03771771490573883, + 0.02337316982448101, + -0.003604594152420759, + 0.008728022687137127, + -0.026284268125891685, + 0.019533894956111908, + -0.013532389886677265, + -0.007530885748565197, + 0.02012455277144909, + 0.01164439506828785, + 0.016264181584119797, + 0.03607231006026268, + -0.0030719474889338017, + -0.024301346391439438, + 0.019080353900790215, + 0.00980913732200861, + 0.0018418501131236553, + -0.006465592421591282, + 0.022297328338027, + -0.008100449107587337, + 0.0022017820738255978, + 0.053834233433008194, + -0.03385734558105469, + 0.00859090592712164, + -0.001300633535720408, + -0.02647412195801735, + -0.001926229801028967, + 0.026706166565418243, + 0.00959818810224533, + 0.04132494702935219, + 0.048096414655447006, + 0.01326870359480381, + -0.02383725717663765, + 0.006054241675883532, + 0.04311801493167877, + -0.015009034425020218, + -0.018574075773358345, + 0.018352579325437546, + 0.044763416051864624, + -0.001505649765022099, + 0.017930680885910988, + -0.005521595012396574, + -0.005774734076112509, + 0.013574579730629921, + 0.06379103660583496, + 0.029996974393725395, + -0.002555121900513768, + -0.01691812463104725, + -0.006186084821820259, + -0.019249113276600838, + 0.027950767427682877, + -0.020251121371984482, + 0.05134503170847893, + -0.03276040777564049, + -0.02392163686454296, + 0.006987691856920719, + 0.018004512414336205, + -0.00017947160813491791, + 0.014956297352910042, + 0.0037548954132944345, + -0.029532885178923607, + -0.005039048846811056, + 0.004548592027276754, + 0.03503866121172905, + -0.05244196578860283, + -0.021052729338407516, + -0.01968155987560749, + -0.024301346391439438, + 0.02554594725370407, + -0.031199384480714798, + 0.014270712621510029, + 0.01112756971269846, + 0.007367400452494621, + 0.003815543372184038, + 0.01706578955054283, + -0.00424535246565938, + -0.0008800536161288619, + -0.02093670703470707, + 0.042780496180057526, + -0.0012689911527559161, + 0.007820941507816315, + -0.027423394843935966, + -0.010368152521550655, + 0.005347562022507191, + -0.017920132726430893, + 0.01303665991872549, + -0.015525859780609608, + 0.05193568766117096, + 0.02049371413886547, + 0.04366648197174072, + -0.001508286688476801, + 0.04501655697822571, + -0.04763232544064522, + -0.00993043277412653, + 0.010320688597857952, + -0.01706578955054283, + 0.0025102952495217323, + 0.010262677446007729, + -0.030503252521157265, + 0.02913208305835724, + -0.009724757634103298, + 0.015578597784042358, + -0.015346553176641464, + 0.01141235139220953, + 0.04096633195877075, + 0.003185332752764225, + 0.0003418035921640694, + -0.023773973807692528, + 0.002378452103585005, + -0.026326458901166916, + 0.023457549512386322, + -0.009840779937803745, + 0.0032486175186932087, + 0.02708587609231472, + 0.0022202401887625456, + 0.011908081360161304, + -0.0024720607325434685, + 0.007372674066573381, + -0.01572626270353794, + 0.00608061021193862, + 0.042274218052625656, + 0.02040933445096016, + 0.0007805119967088103, + -0.006634351797401905, + 0.01355348527431488, + 0.005648164544254541, + 0.012361622415482998, + -0.01983977109193802, + 0.020071815699338913, + 0.0007950147264637053, + 0.032043181359767914, + 0.037485670298337936, + 0.006629078183323145, + 0.01612706482410431, + 0.03381515294313431, + 0.008749117143452168, + -0.007346305530518293, + -0.02554594725370407, + 0.015652429312467575, + 0.024702150374650955, + -0.029047703370451927, + 0.029005512595176697, + -0.020251121371984482, + 0.03143142908811569, + -0.0271280650049448, + 0.00045914409565739334, + 0.03335106745362282, + -0.03307683393359184, + 0.02596784383058548, + -0.027739817276597023, + 0.020251121371984482, + -0.01456604152917862, + 0.028457045555114746, + -0.006861122325062752, + 0.02649521827697754, + -0.05189349874854088, + -0.005081238690763712, + 0.007393768988549709, + 0.018447507172822952, + -0.022423898801207542, + 0.020114004611968994, + -0.008585631847381592, + -0.011095927096903324, + -0.0005174847319722176, + 0.03516522794961929, + 0.015209436416625977, + 0.0014054490020498633, + -0.08842989802360535, + -0.03835056349635124, + 0.027824196964502335, + -0.02079959027469158, + -0.008606727235019207, + -0.009777494706213474, + 0.014692611061036587, + -0.004920389968901873, + 0.020293312147259712, + -0.022930176928639412, + 0.018837762996554375, + -0.034152671694755554, + 0.03130485862493515, + -0.0016717723337933421, + 0.043793052434921265, + -0.0006658083875663579, + 0.03219084441661835, + -0.011865891516208649, + 0.040565527975559235, + 0.017719730734825134, + 0.01596885360777378, + 0.02645302750170231, + -0.002729155123233795, + 0.022466087713837624, + 0.009983169846236706, + -0.03600902482867241, + -0.02286689169704914, + 0.00033620026079006493, + 0.0030904056038707495, + 0.0010079415515065193, + -0.030144639313220978, + 0.024533390998840332, + -0.01889050006866455, + 0.023731783032417297, + 0.030439967289566994, + -0.023183315992355347, + 0.004461575299501419, + -0.021854335442185402, + 0.017129074782133102, + 0.0024522843305021524, + 0.006233548279851675, + -0.003177422098815441, + -0.02278251200914383, + -0.015409838408231735, + 0.013711697421967983, + 0.003620415460318327, + -0.0028267190791666508, + -0.008596179075539112, + 0.01033650990575552, + -0.009197384119033813, + -0.02394273318350315, + -0.0018800846301019192, + -0.040586624294519424, + -0.016000496223568916, + 0.003354092128574848, + 0.01222450565546751, + 0.022613752633333206, + 0.04092414304614067, + 0.003203790867701173, + -0.014534398913383484, + 0.036831729114055634, + 0.008575084619224072, + -0.009935706853866577, + -0.0045670499093830585, + 0.016664985567331314, + 0.014914107508957386, + 0.012382716871798038, + 0.015420385636389256, + -0.03027120791375637, + 0.041050709784030914, + -0.004340279381722212, + 0.017983417958021164, + 0.019017068669199944, + -0.020968349650502205, + 0.04229531064629555, + 0.011001000180840492, + -0.0013349128421396017, + 0.009582366794347763, + -0.007008786778897047, + 0.025334997102618217, + -0.03598793223500252, + -0.002966472879052162, + 0.02552485093474388, + 0.02438572607934475, + 0.009070814587175846, + 0.01616925559937954, + 0.024807624518871307, + -0.0016124428948387504, + 0.012382716871798038, + -0.01610597036778927, + -0.0003895967674907297, + -0.005194623488932848, + 0.00878603383898735, + 0.002618406666442752, + -0.04737918823957443, + -0.0037812641821801662, + -0.021189846098423004, + -0.02871018461883068, + 0.012140125967562199, + 0.01072149258106947, + 0.019671011716127396, + 0.019428420811891556, + 0.013205419294536114, + 0.0030824949499219656, + 0.01651732064783573, + 0.003799722297117114, + 0.021210940554738045, + -0.022402804344892502, + 0.01245654933154583, + 0.03084077127277851, + 0.016221992671489716, + -0.0046276976354420185, + 0.018974879756569862, + -0.003430561162531376, + 0.00769437151029706, + -0.03086186572909355, + -0.023014556616544724, + -0.017783015966415405, + -0.032127559185028076, + -0.025187332183122635, + -0.016221992671489716, + 0.0032380700577050447, + -0.011043190024793148, + -0.0012584436917677522, + 0.01834203116595745, + 0.006992965470999479, + 0.02075739949941635, + 0.02014564722776413, + 0.01486137043684721, + 0.023541929200291634, + 0.000850388896651566, + 0.0026579597033560276, + 0.03191661089658737, + 0.05138722062110901, + 0.006555245723575354, + -0.0014410465955734253, + -0.010874430648982525, + 0.0014621415175497532, + 0.004429932683706284, + -0.025630326941609383, + -0.01795177534222603, + -0.0013118402566760778, + 0.009487439878284931, + -0.011792059056460857, + -0.01377498172223568, + 0.0028636353090405464, + -0.016369657590985298, + -0.00292955688200891, + 0.003596683731302619, + 0.009703662246465683, + 0.015251626260578632, + 0.03499646857380867, + 0.005637616850435734, + 0.0029242830350995064, + 0.022529372945427895, + 0.03303464129567146, + 0.015673523768782616, + -0.029975879937410355, + 0.01649622619152069, + -0.0024100944865494967, + 0.014481661841273308, + 0.03195879980921745, + -0.014829727821052074, + -0.012361622415482998, + 0.026431933045387268, + -0.02871018461883068, + -0.001068589510396123, + 0.026642881333827972, + -0.025145143270492554, + 0.00768382428213954, + -0.01588447391986847, + -0.009935706853866577, + 0.019713200628757477, + 0.016601700335741043, + -0.010151929222047329, + -0.044763416051864624, + -0.014998487196862698, + -0.006349570583552122, + -0.006908585783094168, + -0.0828186497092247, + -0.03497537598013878, + 0.017434950917959213, + -0.007878951728343964, + -0.003823454026132822, + 0.02913208305835724, + -0.017318928614258766, + -0.008638368919491768, + 0.007546707056462765, + -0.011908081360161304, + 0.014333996921777725, + -0.06450825929641724, + -0.0456915944814682, + -0.027950767427682877, + -0.011992461048066616, + -0.00013736417167820036, + -0.030439967289566994, + -0.008854592218995094, + -0.02115820348262787, + 0.009381964802742004, + -0.005257908254861832, + 0.03719034045934677, + -0.009345049038529396, + 0.006755647715181112, + -0.012509286403656006, + -0.007251378148794174, + -0.024090396240353584, + -0.012319432571530342, + 0.004648792557418346, + 0.013194871135056019, + 0.012308885343372822, + 0.05151379108428955, + 0.019607726484537125, + -0.008849318139255047, + -0.011159212328493595, + -0.0026315911673009396, + 0.030376682057976723, + -0.008828223682940006, + -0.007430685218423605, + -0.025841275230050087, + 0.028309380635619164, + 0.005505773704499006, + 0.010705671273171902, + -0.01584228314459324, + 0.00009047742059919983, + -0.04132494702935219, + 0.009682567790150642, + 0.00030999642331153154, + 0.004290178883820772, + 0.01022576168179512, + -0.033140115439891815, + -0.004482670221477747, + -0.02069411426782608, + -0.014903560280799866, + 0.0028557246550917625, + -0.03499646857380867, + -0.0028583614621311426, + 0.0249341931194067, + 0.012635855935513973, + 0.0027133338153362274, + -0.011475635692477226, + 0.0013553485041484237, + 0.012551476247608662, + 0.02282470278441906, + -0.01866900362074375, + -0.013353083282709122, + -0.009503261186182499, + 0.020620282739400864, + -0.021959809586405754, + 0.02335207536816597, + 0.03919436037540436, + -0.013342536054551601, + 0.005268455948680639, + 0.01112756971269846, + 0.016338014975190163, + 0.005500500090420246, + 0.03301354870200157, + -0.04387743026018143, + 0.001485873362980783, + -0.04442589730024338, + 0.014239070005714893, + 0.02759215421974659, + 0.015177793800830841, + -0.016264181584119797, + 0.017382211983203888, + -0.011211949400603771, + -0.011011547408998013, + -0.019080353900790215, + -0.04978400841355324, + 0.02541937679052353, + -0.02060973457992077, + 0.0043297321535646915, + 0.01510396134108305, + -0.022149665281176567, + 0.03081967681646347, + 0.024048207327723503, + 0.004290178883820772, + -0.0285625196993351, + -0.005395025480538607, + -0.027971861883997917, + -0.02231842465698719, + 0.028794564306735992, + 0.03508085012435913, + -0.0415147989988327, + -0.032064277678728104, + 0.025313902646303177, + 0.013121039606630802, + -0.021084371954202652, + 0.03172675892710686, + 0.003021846991032362, + 0.041050709784030914, + -0.0024971109814941883, + 0.018953783437609673, + 0.0023969102185219526, + -0.035587128251791, + -0.018922142684459686, + 0.01509341411292553, + -0.01192917674779892, + 0.02227623388171196, + 0.0014041304821148515, + -0.028435951098799706, + 0.05716722831130028, + -0.03565041348338127, + -0.012129577808082104, + -0.03714815154671669, + 0.03126266971230507, + -0.02607331983745098, + 0.05872825160622597, + 0.004197889007627964, + 0.013869908638298512, + -0.030524346977472305, + -0.00688221724703908, + -0.007963331416249275, + 0.00046013289829716086, + -0.005611248314380646, + -0.000647020700853318, + 0.009835505858063698, + 0.013574579730629921, + -0.004994221962988377, + -0.007831488735973835, + 0.008306124247610569, + -0.008295577019453049, + -0.02491309866309166, + -0.04923554137349129, + 0.01510396134108305, + 0.0012399856932461262, + -0.037485670298337936, + 0.04818079248070717, + -0.03826618194580078, + -0.038413845002651215, + 0.0035571306943893433, + 0.05252634733915329, + 0.02176995575428009, + -0.02385835349559784, + -0.04974181950092316, + 0.0057009016163647175, + -0.006523603573441505, + -0.002502384828403592, + 0.023098936304450035, + 0.004224257543683052, + 0.0338362492620945, + 0.04145151376724243, + 0.022191854193806648, + 0.005769459996372461, + -0.02394273318350315, + -0.013448010198771954, + 0.016084875911474228, + 0.01072149258106947, + 0.010668755508959293, + 0.014323449693620205, + 0.02651631273329258, + 0.017297832295298576, + 0.005584879778325558, + 0.02115820348262787, + -0.00901807751506567, + 0.0028926406521350145, + -0.02915317751467228, + 0.020061267539858818, + 0.0037074319552630186, + -0.030608726665377617, + -0.013637864962220192, + -0.005500500090420246, + -0.050163716077804565, + -0.0005079261027276516, + -0.0042005255818367004, + 0.014376186765730381, + 0.010241582989692688, + 0.010463079437613487, + -0.04366648197174072, + 0.030524346977472305, + -0.0053765675984323025, + -0.007710192818194628, + 0.0013368905056267977, + 0.015188341028988361, + -0.024596674367785454, + -0.02438572607934475, + -0.0000893237956915982, + -0.014671515673398972, + -0.04923554137349129, + 0.018310388550162315, + -0.005352835636585951, + 0.004999495577067137, + 0.014450019225478172, + 0.009540176950395107, + -0.007646908052265644, + 0.00983023177832365, + -0.0021859609987586737, + -0.01700250431895256, + -0.026157699525356293, + -0.005790554918348789, + 0.055015549063682556, + 0.0061017051339149475, + -0.013648412190377712, + -0.027381204068660736, + 0.035755887627601624, + -0.012667498551309109, + 0.012952280230820179, + 0.020198384299874306, + 0.0009842098224908113, + 0.028878943994641304, + -0.0002561055007390678, + 0.030925150960683823, + 0.007341031450778246, + 0.025862369686365128, + 0.016506774351000786, + 0.0033620025496929884, + -0.0028504508081823587, + 0.013954288326203823, + -0.014998487196862698, + -0.02124258317053318, + -0.023098936304450035, + 0.013458558358252048, + 0.029870403930544853, + -0.015314910560846329, + -0.02917427197098732, + 0.023773973807692528, + -0.006518329959362745, + -0.040017060935497284, + 0.0026777363382279873, + 0.009012804366648197, + 0.003240706864744425, + 0.010194119065999985, + -0.023014556616544724, + -0.0026988310273736715, + -0.021622290834784508, + 0.02223404496908188, + -0.021052729338407516, + 0.002333625452592969, + -0.0068927644751966, + 0.018732286989688873, + -0.011697132140398026, + -0.020092910155653954, + -0.007557254750281572, + 0.00015038369747344404, + 0.03341435268521309, + -0.03276040777564049, + 0.025820180773735046, + 0.03136814385652542, + -0.004221620503813028, + -0.02276141755282879, + -0.02335207536816597, + 0.03223303705453873, + -0.00476217782124877, + 0.024216966703534126, + 0.01720290631055832, + 0.0064497715793550014, + -0.030566537752747536, + 0.015800094231963158, + -0.00015475100371986628, + 0.00919211097061634, + 0.020504260435700417, + 0.0476745143532753, + 0.027845293283462524, + 0.026896020397543907, + 0.016643891111016273, + -0.0032749860547482967, + -0.0003797085373662412, + -0.010726765729486942, + -0.0030455789528787136, + -0.030144639313220978, + -0.0307563915848732, + 0.0011490138713270426, + -0.010863883420825005, + 0.014776990748941898, + 0.013173776678740978, + 0.013374178670346737, + -0.011507278308272362, + -0.0035518568474799395, + -0.01929130218923092, + 0.0071617248468101025, + -0.013753887265920639, + 0.0202089324593544, + -0.01062129158526659, + 0.002742339391261339, + -0.002187279285863042, + -0.008891507983207703, + 0.0244912002235651, + -0.0020264305640012026, + 0.013985930941998959, + 0.010874430648982525, + 0.0012109801173210144, + 0.01795177534222603, + -0.008975887671113014, + 0.0011892260517925024, + -0.013827718794345856, + -0.027718722820281982, + 0.0271280650049448, + 0.0041266935877501965, + 0.05585934594273567, + 0.0007066797697916627, + 0.011897534132003784, + -0.0509653240442276, + -0.003016573376953602, + -0.03562931716442108, + 0.02227623388171196, + -0.044847797602415085, + -0.001911727013066411, + 0.01325815636664629, + 0.01570516638457775, + 0.030376682057976723, + -0.021854335442185402, + 0.007989699952304363, + 0.0314103327691555, + -0.010658207349479198, + 0.007826214656233788, + -0.03411048278212547, + 0.002555121900513768, + -0.009345049038529396, + 0.01111702248454094, + -0.030081354081630707, + 0.009102457202970982, + 0.02605222351849079, + 0.015821188688278198, + 0.00505750672891736, + 0.004174157045781612, + -0.00031592935556545854, + 0.002787166042253375, + 0.021622290834784508, + 0.035355083644390106, + 0.021379699930548668, + -0.018289294093847275, + 0.008691105991601944, + -0.02495528943836689 + ] + }, + { + "HotelId": "26", + "HotelName": "Planetary Plaza & Suites", + "Description": "Extend Your Stay. Affordable home away from home, with amenities like free Wi-Fi, full kitchen, and convenient laundry service.", + "Description_fr": "Prolongez votre sĆ©jour. Une maison abordable loin de chez vous, avec des Ć©quipements comme une connexion Wi-Fi gratuite, une cuisine complĆØte et un service de blanchisserie pratique.", + "Category": "Extended-Stay", + "Tags": [ + "free parking", + "free wifi", + "laundry service" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2022-06-02T00:00:00Z", + "Rating": 3.2, + "Address": { + "StreetAddress": "9255 Towne Centre Dr", + "City": "San Diego", + "StateProvince": "CA ", + "PostalCode": "92121", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -117.206993, + 32.875282 + ] + }, + "Rooms": [ + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 125.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "suite" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 236.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 137.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd", + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.01685689575970173, + -0.013712904416024685, + 0.011061974801123142, + 0.0015212390571832657, + -0.0630190372467041, + -0.03450268879532814, + -0.011665250174701214, + 0.007071079220622778, + 0.028516344726085663, + 0.005661503877490759, + 0.01220471691340208, + 0.0012413542717695236, + -0.001676408457569778, + -0.017935829237103462, + -0.006618622690439224, + 0.07508453726768494, + -0.025407157838344574, + 0.04719466716051102, + 0.022390782833099365, + 0.06218373030424118, + -0.02717057801783085, + 0.01057471428066492, + -0.05438756197690964, + -0.030094141140580177, + 0.04218284413218498, + 0.03494354337453842, + -0.05513005331158638, + -0.007129086181521416, + 0.013852122239768505, + -0.04447992891073227, + -0.025383954867720604, + -0.03735664486885071, + 0.006444601342082024, + -0.03229841589927673, + 0.025871215388178825, + 0.019641241058707237, + -0.004347640555351973, + -0.026799332350492477, + 0.003405023366212845, + -0.03125428408384323, + 0.021393058821558952, + 0.007517734542489052, + 0.014223367907106876, + 0.011114181950688362, + -0.033040907233953476, + 0.022460391744971275, + -0.0026480292435735464, + 0.046173740178346634, + 0.028539547696709633, + 0.06390074640512466, + -0.01210030447691679, + -0.022228363901376724, + -0.02094060368835926, + -0.05921376124024391, + -0.004391145892441273, + -0.011346210725605488, + -0.007552538998425007, + -0.004942214582115412, + -0.022889645770192146, + 0.019397610798478127, + 0.01203069556504488, + 0.000008134605195664335, + 0.04044262692332268, + 0.09341481328010559, + -0.03234482184052467, + 0.009518983773887157, + -0.02019811049103737, + 0.029746098443865776, + -0.04408548027276993, + -0.0035732442047446966, + -0.004257729277014732, + -0.018353480845689774, + -0.025383954867720604, + -0.0272865928709507, + 0.006578017957508564, + -0.011926282197237015, + -0.02457185462117195, + -0.050489477813243866, + 0.0004814598651137203, + 0.004051803611218929, + -0.022239964455366135, + -0.026103245094418526, + -0.018817538395524025, + 0.03466510772705078, + 0.03519877418875694, + -0.021335052326321602, + -0.04519921913743019, + -0.029978126287460327, + -0.026080042123794556, + 0.04399266839027405, + 0.03055819869041443, + 0.0040953089483082294, + -0.02049974910914898, + -0.07109364122152328, + 0.014281375333666801, + 0.03324973210692406, + 0.022947652265429497, + -0.028841186314821243, + -0.025291144847869873, + 0.0178082138299942, + 0.05443396791815758, + -0.0839480385184288, + 0.00839944463223219, + -0.007697557099163532, + 0.0074423253536224365, + -0.06589619070291519, + 0.015000664629042149, + 0.021764306351542473, + -0.004417249001562595, + -0.006525811273604631, + -0.09021281450986862, + -0.006142963655292988, + -0.0011420169612392783, + 0.0038632801733911037, + -0.01044709887355566, + -0.002878607949241996, + -0.0005989244673401117, + -0.019768858328461647, + -0.006949264090508223, + -0.005586094222962856, + 0.006189369596540928, + 0.046544987708330154, + 0.03489713743329048, + -0.039630528539419174, + 0.01029047928750515, + -0.01675248332321644, + -0.03118467703461647, + 0.0424380749464035, + -0.043250177055597305, + -0.03519877418875694, + 0.01024407334625721, + 0.02689214237034321, + 0.02777385339140892, + 0.022355979308485985, + -0.02735619992017746, + 0.011676851660013199, + -0.003245503408834338, + -0.022657616063952446, + -0.01772700436413288, + 0.010052649304270744, + 0.032275211066007614, + -0.0011434671469032764, + 0.033226530998945236, + 0.011468025855720043, + -0.016566859558224678, + 0.02051134966313839, + -0.010934359394013882, + 0.005472980439662933, + -0.005617998540401459, + 0.03079022839665413, + -0.026219259947538376, + 0.0012304779374971986, + -0.0211030226200819, + -0.0008316783932968974, + -0.015174686908721924, + 0.000031700034014647827, + -0.042832523584365845, + 0.0008831598097458482, + -0.03359777852892876, + 0.04522242024540901, + -0.018631916493177414, + -0.008115208707749844, + -0.05833205208182335, + 0.060002658516168594, + 0.04881886765360832, + 0.03155592456459999, + 0.028841186314821243, + -0.018562307581305504, + -0.0644112080335617, + -0.05930657312273979, + 0.014049346558749676, + -0.022007936611771584, + -0.03733344003558159, + 0.07397079467773438, + 0.06761320680379868, + -0.003544240491464734, + 0.035918064415454865, + -0.029630083590745926, + -0.013341658748686314, + 0.014617817476391792, + 0.009165138937532902, + -0.03833116590976715, + 0.005803621374070644, + -0.004895808640867472, + -0.0009230397408828139, + -0.0627870038151741, + -0.013956534676253796, + -0.0017489173915237188, + -0.013121231459081173, + 0.03557002171874046, + -0.02065056748688221, + -0.05893532559275627, + -0.01190308015793562, + 0.007123285438865423, + 0.008004995062947273, + 0.0010477552423253655, + -0.009257950820028782, + -0.010342685505747795, + 0.006688231602311134, + 0.02768104150891304, + -0.07192894071340561, + -0.021938327699899673, + 0.06223013624548912, + -0.002697335323318839, + -0.025128724053502083, + -0.003683457849547267, + -0.003126588650047779, + 0.03392261639237404, + -0.0005148139898665249, + -0.022866442799568176, + 0.022123949602246284, + 0.013759310357272625, + 0.04125472903251648, + 0.04399266839027405, + 0.0011753711150959134, + -0.02807549014687538, + 0.02358573116362095, + -0.018237467855215073, + 0.01374770887196064, + 0.03118467703461647, + -0.04383024945855141, + -0.021764306351542473, + 0.043064553290605545, + 0.008358838967978954, + -0.018875546753406525, + -0.007465527858585119, + -0.03201998025178909, + -0.02793627232313156, + 0.013562086038291454, + -0.032692864537239075, + -0.009199943393468857, + -0.005078531336039305, + -0.060559529811143875, + -0.04570968076586723, + -0.02471107244491577, + 0.04517601430416107, + -0.033412154763936996, + 0.016590062528848648, + 0.0007432174170389771, + 0.028794780373573303, + -0.036266107112169266, + 0.012749984860420227, + -0.0625549778342247, + 0.04459594562649727, + 0.016242019832134247, + -0.01777341030538082, + 0.008248625323176384, + -0.07898262143135071, + 0.021625088527798653, + -0.02107981964945793, + -0.0344562828540802, + 0.01413055695593357, + -0.005307659972459078, + -0.05072150379419327, + 0.06636025011539459, + -0.05466599762439728, + 0.013167637400329113, + 0.05178883671760559, + 0.06617462635040283, + -0.010812544263899326, + 0.03436347097158432, + 0.03051179274916649, + 0.00528735714033246, + -0.043621424585580826, + 0.042762916535139084, + 0.03814554214477539, + -0.0003995246661361307, + 0.04030340909957886, + 0.025894418358802795, + -0.04132433608174324, + -0.03324973210692406, + -0.009159338660538197, + 0.006607021205127239, + 0.004411448258906603, + 0.011288203299045563, + 0.011433221399784088, + 0.010394892655313015, + 0.004481057170778513, + -0.005890632513910532, + 0.04394626244902611, + -0.04942214488983154, + -0.06631384044885635, + 0.01004104781895876, + -0.05545489490032196, + 0.0039473907090723515, + -0.014884650707244873, + 0.015592338517308235, + -0.008312433026731014, + -0.021601885557174683, + 0.03540760278701782, + 0.033133719116449356, + 0.03120788000524044, + -0.025731999427080154, + -0.03895764425396919, + 0.033412154763936996, + 0.01019766740500927, + 0.022692421451210976, + 0.0152907008305192, + 0.06626743823289871, + 0.007685955613851547, + 0.002096960786730051, + 0.07359954714775085, + -0.022089146077632904, + 0.020070495083928108, + -0.008248625323176384, + 0.022773630917072296, + -0.02119583450257778, + -0.0026262765750288963, + 0.02431662380695343, + -0.0044984593987464905, + -0.01022087037563324, + 0.012738383375108242, + 0.030024532228708267, + -0.01381731778383255, + -0.0308134313672781, + 0.02482708729803562, + -0.008735885843634605, + 0.019432416185736656, + -0.020012488588690758, + -0.0345722995698452, + 0.04566327482461929, + -0.012877601198852062, + 0.0068448507227003574, + -0.0691445991396904, + -0.016311626881361008, + -0.02389897033572197, + 0.022402385249733925, + 0.008074603974819183, + -0.05197446048259735, + -0.006369191687554121, + 0.0178082138299942, + -0.012459948658943176, + 0.04487437754869461, + -0.021659892052412033, + -0.01009325496852398, + 0.009571189992129803, + -0.012854398228228092, + -0.005278656259179115, + 0.01037748996168375, + 0.023481318727135658, + -0.02049974910914898, + -0.032414428889751434, + -0.07485250383615494, + 0.01720493845641613, + -0.01689169928431511, + -0.01678728684782982, + 0.05123196914792061, + 0.03088303841650486, + 0.004075006581842899, + 0.06134842708706856, + 0.007535136770457029, + 0.007703357841819525, + -0.050071824342012405, + 0.008759088814258575, + 0.01686849631369114, + 0.0005757215549238026, + 0.10339204967021942, + -0.036498136818408966, + 0.0172281414270401, + 0.02424701489508152, + -0.0016271022614091635, + 0.04229885712265968, + 0.02464146353304386, + -0.016462447121739388, + -0.04095309227705002, + 0.023481318727135658, + -0.009107132442295551, + 0.028516344726085663, + -0.0007751213852316141, + -0.002720538293942809, + 0.0620909184217453, + -0.006972466595470905, + 0.026196056976914406, + -0.025476766750216484, + -0.016242019832134247, + 0.021578682586550713, + 0.0356164276599884, + 0.021532276645302773, + 0.0068448507227003574, + -0.011584039777517319, + 0.02016330696642399, + -0.030163750052452087, + -0.015731556341052055, + -0.01762259006500244, + 0.04946855083107948, + 0.016485650092363358, + -0.053645070642232895, + 0.004156216513365507, + -0.03482753038406372, + 0.0482155941426754, + -0.004855203442275524, + 0.006206771824508905, + 0.008556063286960125, + -0.006421398371458054, + 0.019838465377688408, + -0.02417740598320961, + 0.0011775463353842497, + 0.01692650467157364, + 0.007535136770457029, + -0.049932606518268585, + 0.009774215519428253, + -0.03533799201250076, + -0.03234482184052467, + -0.0308134313672781, + -0.0044723558239638805, + 0.019826864823698997, + 0.01222791988402605, + 0.00850385706871748, + 0.03385300934314728, + 0.006595419719815254, + 0.0037559668999165297, + -0.05206727236509323, + 0.033017706125974655, + 0.014965860173106194, + -0.06645306199789047, + -0.022878043353557587, + -0.0055280872620642185, + -0.0063981954008340836, + 0.04895808547735214, + -0.007511933799833059, + 0.021926725283265114, + 0.018817538395524025, + 0.03438667580485344, + 0.004939313977956772, + -0.0404658317565918, + 0.029374850913882256, + 0.007100082468241453, + -0.03545400872826576, + -0.09902991354465485, + 0.00011655824346235022, + -0.019826864823698997, + -0.015777962282299995, + -0.02120743691921234, + 0.000741767231374979, + -0.04183480143547058, + 0.009333360008895397, + -0.029119620099663734, + -0.0135272815823555, + -0.010870551690459251, + -0.023411709815263748, + 0.004602872300893068, + -0.009553787298500538, + -0.06241576001048088, + 0.014548208564519882, + -0.007935386151075363, + 0.0026610807981342077, + 0.011549235321581364, + 0.050396665930747986, + -0.001417551189661026, + 0.05383069068193436, + -0.021462667733430862, + -0.02686893939971924, + -0.020093698054552078, + 0.0005394670879468322, + 0.0007102257804945111, + 0.0031062860507518053, + 0.00762214744463563, + -0.02061576209962368, + 0.019432416185736656, + 0.002569719450548291, + 0.06227654218673706, + -0.026497693732380867, + -0.011439021676778793, + -0.011792865581810474, + 0.03234482184052467, + 0.0005793470190837979, + -0.014258172363042831, + 0.0246878694742918, + -0.02016330696642399, + 0.0053105601109564304, + -0.018956756219267845, + -0.0201749075204134, + 0.0016416041180491447, + 0.01210030447691679, + -0.056568633764982224, + -0.011288203299045563, + 0.01020346861332655, + -0.0055512902326881886, + -0.0016038994072005153, + 0.026103245094418526, + -0.08668597787618637, + 0.021799109876155853, + -0.03139350190758705, + -0.012715180404484272, + -0.0356164276599884, + -0.026010433211922646, + -0.006775242276489735, + -0.02112622559070587, + -0.021787509322166443, + -0.016300026327371597, + 0.029537271708250046, + 0.0053308624774217606, + 0.001440754160284996, + -0.009687203913927078, + 0.02459505759179592, + 0.02417740598320961, + -0.025430360808968544, + -0.006618622690439224, + 0.001181171857751906, + 0.030279764905571938, + -0.03099905326962471, + -0.026056839153170586, + -0.03366738557815552, + 0.016276823356747627, + -0.016439244151115417, + 0.03856319561600685, + 0.006578017957508564, + -0.0343402698636055, + 0.018608713522553444, + 0.008260226808488369, + -0.016416041180491447, + -0.01038329117000103, + -0.004837801214307547, + 0.005098833702504635, + 0.017634192481637, + -0.007413321640342474, + 0.0074539268389344215, + 0.013051622547209263, + -0.025871215388178825, + 0.014733831398189068, + 0.004759491886943579, + 0.026404881849884987, + 0.0084110451862216, + 0.00036598925362341106, + -0.004121412523090839, + -0.008312433026731014, + -0.02080138586461544, + -0.02422381192445755, + -0.003352816915139556, + 0.018086647614836693, + 0.0008019497036002576, + 0.036219701170921326, + -0.013040021061897278, + -0.0038081733509898186, + 0.03079022839665413, + -0.01736735925078392, + 0.03450268879532814, + -0.01684529334306717, + 0.020047292113304138, + -0.03324973210692406, + 0.039723336696624756, + 0.019420813769102097, + 0.0063981954008340836, + -0.042739711701869965, + -0.019954480230808258, + -0.03812234103679657, + 0.0048639047890901566, + 0.015766359865665436, + -0.019861668348312378, + 0.002568269381299615, + 0.022332776337862015, + -0.002021551365032792, + 0.028980402275919914, + -0.019177183508872986, + 0.015476323664188385, + 0.025731999427080154, + 0.03793671727180481, + -0.010992366820573807, + -0.0000706056525814347, + 0.0023231888189911842, + -0.013631694950163364, + -0.036822978407144547, + -0.010916956700384617, + 0.002330439630895853, + 0.006676630116999149, + -0.006815847475081682, + 0.03429386392235756, + 0.0020882596727460623, + -0.03765828162431717, + -0.022808436304330826, + -0.01357368752360344, + 0.014026143588125706, + -0.026590505614876747, + 0.018840741366147995, + 0.0037095611914992332, + -0.022843239828944206, + -0.014571411535143852, + -0.029514068737626076, + -0.01522109191864729, + -0.025035912171006203, + 0.01205389853566885, + -0.0033760196529328823, + -0.016729280352592468, + 0.036126889288425446, + 0.03459550067782402, + -0.010609518736600876, + 0.018260670825839043, + 0.007517734542489052, + 0.003782070241868496, + -0.006543213501572609, + 0.013782513327896595, + 0.01190308015793562, + -0.016253620386123657, + -0.03570923954248428, + -0.004962516948580742, + -0.003639952512457967, + -0.026288868859410286, + 0.0100874537602067, + -0.046359363943338394, + 0.02417740598320961, + -0.003663155483081937, + -0.026451287791132927, + 0.006931861862540245, + -0.010545711033046246, + -0.017866220325231552, + 0.003048278857022524, + -0.042925335466861725, + -0.023075269535183907, + -0.012517956085503101, + -0.03570923954248428, + -0.021590283140540123, + -0.00432153744623065, + 0.012262724339962006, + 0.016474047675728798, + -0.023075269535183907, + 0.012657173909246922, + -0.07828652858734131, + -0.014931055717170238, + -0.013005216605961323, + -0.008428447879850864, + 0.050164636224508286, + -0.014002940617501736, + 0.020070495083928108, + 0.04427110403776169, + 0.015151483938097954, + 0.03048858977854252, + -0.02010529860854149, + -0.04445672780275345, + -0.0029496666975319386, + 0.015719953924417496, + 0.02112622559070587, + 0.07160410284996033, + 0.03833116590976715, + -0.02791306935250759, + -0.039143264293670654, + 0.03860960155725479, + 0.006299583241343498, + -0.03334254398941994, + 0.006781043019145727, + 0.0007591694011352956, + -0.02754182368516922, + -0.023469718173146248, + -0.003918386995792389, + -0.04721786826848984, + 0.05123196914792061, + 0.02427021786570549, + 0.006508409045636654, + -0.040024977177381516, + 0.0353843979537487, + -0.007018872536718845, + 0.0004970493027940392, + 0.013179237954318523, + 0.03849358484148979, + -0.03494354337453842, + 0.0004009748518001288, + 0.008967914618551731, + 0.01698451116681099, + 0.026752926409244537, + 0.05568692460656166, + 0.006137162912636995, + 0.022135552018880844, + 0.0024189006071537733, + -0.010104856453835964, + 0.012517956085503101, + -0.04048903286457062, + 0.012065500020980835, + 0.011206992901861668, + -0.019583234563469887, + 0.005446877330541611, + 0.0010673326905816793, + 0.043505407869815826, + 0.02090579830110073, + 0.009907632134854794, + 0.005464279092848301, + -0.043482206761837006, + -0.02399178221821785, + 0.053366634994745255, + -0.03686938434839249, + 0.008422646671533585, + 0.04188120737671852, + -0.005615097936242819, + 0.03389941528439522, + -0.022854840382933617, + 0.03696219623088837, + 0.01775020733475685, + -0.004246127791702747, + -0.007825172506272793, + -0.011015569791197777, + 0.0135272815823555, + -0.0201749075204134, + -0.018051844090223312, + 0.007517734542489052, + 0.04489758238196373, + -0.01759938709437847, + -0.004515861161053181, + 0.024989506229758263, + 0.010858950205147266, + -0.0168800987303257, + -0.018063444644212723, + -0.05424834415316582, + 0.0344562828540802, + 0.014350984245538712, + -0.032948095351457596, + -0.019734052941203117, + -0.025964027270674706, + -0.06171967089176178, + 0.008358838967978954, + -0.04236846789717674, + 0.02043014019727707, + -0.042670104652643204, + -0.002072307514026761, + -0.013225643895566463, + -0.035987675189971924, + 0.006647626403719187, + -0.008225422352552414, + -0.006491006817668676, + -0.009948236867785454, + 0.005716610699892044, + 0.0020708574447780848, + -0.000783822441007942, + 0.00877069029957056, + 0.011485427618026733, + 0.04387665539979935, + 0.002737940289080143, + -0.01718173548579216, + 0.046452175825834274, + 0.016242019832134247, + 0.0020273521076887846, + 0.015081875026226044, + 0.014339382760226727, + 0.02378295734524727, + -0.013225643895566463, + 0.003567443462088704, + -0.0014683075714856386, + 0.00837044045329094, + -0.002436302835121751, + -0.006444601342082024, + 0.03557002171874046, + -0.03828475996851921, + -0.03902725130319595, + 0.019908074289560318, + -0.004686982836574316, + 0.014583013020455837, + 0.010342685505747795, + 0.01384052075445652, + -0.039978571236133575, + 0.01391012966632843, + -0.007946987636387348, + -0.030302967876195908, + -0.013353260233998299, + 0.009576990269124508, + 0.0076453504152596, + 0.019919676706194878, + 0.005049527622759342, + -0.02461826056241989, + -0.07489891350269318, + -0.00863727368414402, + 0.01544151920825243, + 0.016590062528848648, + -0.011891478672623634, + -0.006781043019145727, + 0.005670204758644104, + 0.02784346230328083, + 0.042739711701869965, + 0.03234482184052467, + 0.012564362026751041, + -0.039305686950683594, + -0.023446515202522278, + -0.0274026058614254, + 0.019745655357837677, + 0.01200749259442091, + -0.0001079477951861918, + 0.003083083312958479, + -0.015325505286455154, + -0.011589840985834599, + -0.032576851546764374, + -0.0355004146695137, + -0.021752703934907913, + 0.02826111391186714, + -0.027054563164711, + 0.025407157838344574, + -0.015522729605436325, + 0.018191061913967133, + -0.02121903747320175, + -0.019258394837379456, + -0.03826155513525009, + 0.043412595987319946, + -0.0031178875360637903, + 0.021335052326321602, + -0.03758867457509041, + 0.004678281489759684, + -0.039816148579120636, + 0.035268384963274, + -0.04830840602517128, + 0.016474047675728798, + 0.0237017460167408, + -0.0342242531478405, + 0.02015170454978943, + 0.08134931325912476, + 0.004878406412899494, + 0.028469938784837723, + -0.014884650707244873, + 0.043250177055597305, + -0.03438667580485344, + 0.043366190046072006, + 0.006682430859655142, + -0.010951761156320572, + 0.03459550067782402, + 0.01241354364901781, + -0.019676046445965767, + -0.008329835720360279, + 0.006084956228733063, + 0.006543213501572609, + 0.0007312534144148231, + 0.0246878694742918, + 0.046939436346292496, + 0.003341215429827571, + 0.026196056976914406, + -0.026544099673628807, + -0.0237597543746233, + 0.0341082401573658, + -0.01037748996168375, + -0.005844226572662592, + 0.011183789931237698, + -0.030140547081828117, + -0.0038922838866710663, + -0.019386010244488716, + -0.001537191099487245, + -0.02714737504720688, + -0.0006855727406218648, + -0.0027973977848887444, + -0.010980765335261822, + -0.0044984593987464905, + 0.010017845779657364, + 0.06343668699264526, + 0.007349513471126556, + 0.007929585874080658, + 0.012726781889796257, + 0.005513585638254881, + 0.019734052941203117, + 0.005809422116726637, + -0.022959254682064056, + 0.014258172363042831, + 0.0033499165438115597, + -0.0019214889034628868, + -0.007917984388768673, + 0.009518983773887157, + -0.013538883067667484, + 0.0207549799233675, + 0.0010289029451087117, + 0.01675248332321644, + -0.02784346230328083, + -0.0013675199588760734, + -0.005423674359917641, + 0.029490865767002106, + -0.012575963512063026, + 0.011589840985834599, + 0.029166026040911674, + 0.012599166482686996, + -0.016253620386123657, + 0.019084371626377106, + -0.0013559185899794102, + 0.02378295734524727, + -0.02008209563791752, + 0.02371334843337536, + 0.026544099673628807, + -0.018713125959038734, + -0.006839049980044365, + 0.01683369278907776, + -0.0030569799710065126, + -0.018225865438580513, + 0.0027567928191274405, + -0.014420593157410622, + -0.029328446835279465, + 0.012088702991604805, + -0.0074191223829984665, + 0.01677568629384041, + 0.014675823971629143, + 0.0037443654146045446, + -0.015058672055602074, + 0.016300026327371597, + 0.009066526778042316, + -0.02826111391186714, + -0.011131583712995052, + 0.01735575683414936, + 0.03085983544588089, + 0.011177989654242992, + 0.04816918820142746, + 0.014350984245538712, + -0.019165582954883575, + 0.00848065409809351, + 0.023191282525658607, + 0.004936413839459419, + -0.002233277540653944, + -0.0100874537602067, + -0.007912183180451393, + -0.03478112444281578, + 0.04461914673447609, + 0.007720759604126215, + 0.018492698669433594, + -0.011265000328421593, + 0.01551112812012434, + -0.02008209563791752, + -0.003950291313230991, + -0.01200749259442091, + -0.0005659328307956457, + -0.0029192129150032997, + -0.0006942737963981926, + -0.016184011474251747, + 0.022332776337862015, + 0.05856408178806305, + -0.046498581767082214, + -0.011189591139554977, + -0.012610767967998981, + -0.0008947612368501723, + 0.05151040479540825, + 0.0023362403735518456, + 0.007308908738195896, + 0.018794337287545204, + 0.02085939235985279, + 0.01533710677176714, + 0.043435800820589066, + -0.023179681971669197, + -0.025639187544584274, + -0.006496807560324669, + -0.00867787841707468, + -0.002028802176937461, + 0.019838465377688408, + 0.039259281009435654, + 0.004399846773594618, + 0.022019537165760994, + 0.014490201137959957, + -0.02413100004196167, + 0.04519921913743019, + 0.04088348150253296, + 0.026660114526748657, + 0.014849846251308918, + -0.02457185462117195, + -0.018191061913967133, + -0.022634413093328476, + -0.02019811049103737, + 0.008335635997354984, + 0.005696308333426714, + -0.036521341651678085, + 0.025871215388178825, + -0.01783141680061817, + 0.03758867457509041, + 0.011473826132714748, + 0.014849846251308918, + -0.04779794067144394, + 0.003837177064269781, + 0.009095530956983566, + 0.016218816861510277, + -0.06218373030424118, + -0.01538351271301508, + 0.0020998611580580473, + -0.0006522185867652297, + -0.006253177300095558, + 0.03392261639237404, + 0.00601534778252244, + -0.004846502561122179, + 0.07248581200838089, + 0.00013568249414674938, + -0.006096557714045048, + 0.025662390515208244, + 0.01350407861173153, + -0.03348176181316376, + 0.0343402698636055, + 0.023318899795413017, + 0.013562086038291454, + -0.00001783268635335844, + 0.02719378098845482, + -0.02127704583108425, + 0.018318677321076393, + 0.00881129503250122, + 0.008869302459061146, + 0.009809019044041634, + 0.046730607748031616, + 0.018446292728185654, + -0.01698451116681099, + 0.00866047665476799, + 0.03679977357387543, + 0.02016330696642399, + -0.0011652198154479265, + -0.046266552060842514, + 0.028887590393424034, + 0.018771134316921234, + 0.032623253762722015, + 0.026590505614876747, + -0.0046347761526703835, + 0.009664000943303108, + 0.0077381618320941925, + -0.0017431166488677263, + -0.007297307252883911, + -0.01678728684782982, + 0.0012623819056898355, + -0.002298535779118538, + 0.04547765478491783, + 0.04942214488983154, + 0.0335281677544117, + -0.000022477794118458405, + -0.0016401539323851466, + 0.026149651035666466, + -0.015917178243398666, + 0.021427864208817482, + 0.036474935710430145, + 0.0137013029307127, + 0.01715853251516819, + -0.03074382245540619, + 0.01241354364901781, + 0.0012420794228091836, + -0.004742089658975601, + 0.02094060368835926, + -0.008938911370933056, + -0.004101109690964222, + -0.032971300184726715, + -0.010876351967453957, + -0.016485650092363358, + 0.005142339505255222, + 0.01769219897687435, + 0.025244738906621933, + 0.021741103380918503, + -0.021717900410294533, + -0.011758062057197094, + -0.002932264469563961, + -0.035894863307476044, + 0.04965417459607124, + -0.0089041069149971, + 0.018585510551929474, + -0.005609297193586826, + 0.02039533481001854, + -0.0018228766275569797, + 0.019246792420744896, + 0.030349373817443848, + 0.00520034646615386, + -0.013388064689934254, + -0.030070938169956207, + -0.03431706503033638, + 0.02782025933265686, + -0.005797820631414652, + 0.02045334316790104, + -0.014884650707244873, + -0.0018562307814136147, + 0.015696750953793526, + -0.021996334195137024, + 0.004446252714842558, + 0.014954258687794209, + -0.015963584184646606, + 0.01386372372508049, + -0.007633748929947615, + 0.006276380270719528, + -0.03125428408384323, + -0.013040021061897278, + 0.00506983045488596, + 0.021416261792182922, + 0.004614473786205053, + -0.02094060368835926, + 0.008556063286960125, + -0.013782513327896595, + -0.02717057801783085, + 0.002234727842733264, + -0.0027321395464241505, + 0.04575608670711517, + -0.056847065687179565, + -0.010342685505747795, + -0.015986787155270576, + -0.0017866221023723483, + -0.03178795054554939, + 0.015058672055602074, + 0.019942879676818848, + 0.028307519853115082, + 0.02802908420562744, + 0.014316179789602757, + -0.004057604353874922, + 0.014896252192556858, + -0.011259200051426888, + 0.02099861018359661, + -0.0025189630687236786, + -0.019026365131139755, + 0.03782070055603981, + -0.003973493818193674, + 0.03733344003558159, + 0.010754536837339401, + 0.0005173518438823521, + -0.0029902716632932425, + 0.009228947572410107, + 0.006050152238458395, + -0.018875546753406525, + -0.0032194002997130156, + -0.0279826782643795, + -0.006485206075012684, + 0.012285927310585976, + -0.011839271523058414, + 0.023005660623311996, + 0.011705854907631874, + -0.013260448351502419, + 0.050211042165756226, + 0.026451287791132927, + 0.026660114526748657, + 0.00848645530641079, + 0.009321758523583412, + 0.022530000656843185, + 0.02717057801783085, + -0.008967914618551731, + -0.004742089658975601, + -0.006305383983999491, + 0.007482930086553097, + -0.010992366820573807, + -0.022599609568715096, + 0.011270801536738873, + 0.018388286232948303, + -0.02429342083632946, + -0.016520453616976738, + 0.025105521082878113, + -0.016334829851984978, + 0.014466998167335987, + 0.019351204857230186, + 0.006589618977159262, + -0.012773187831044197, + 0.043203771114349365, + -0.007929585874080658, + -0.032484039664268494, + -0.005095933564007282, + -0.002848154166713357, + -0.01218151394277811, + 0.005559991113841534, + -0.008074603974819183, + 0.030279764905571938, + -0.0019504925003275275, + 0.009466776624321938, + 0.021381458267569542, + -0.01689169928431511, + -0.004127213265746832, + -0.042902134358882904, + -0.012517956085503101, + -0.009408769197762012, + 0.02095220424234867, + 0.005829724948853254, + 0.01178706530481577, + 0.016555259004235268, + 0.0123439347371459, + -0.013132832944393158, + -0.01708892360329628, + -0.005348264705389738, + -0.0008048500749282539, + -0.00865467544645071, + 0.03373699262738228, + 0.053552258759737015, + 0.01343446969985962, + 0.03324973210692406, + -0.028910793364048004, + 0.016126004979014397, + 0.009101331233978271, + 0.025453563779592514, + -0.0024566054344177246, + 0.018550707027316093, + 0.026636911556124687, + -0.0005296783638186753, + -0.02048814669251442, + 0.018423089757561684, + -0.01667127199470997, + -0.016288425773382187, + 0.01693810522556305, + -0.022564806044101715, + -0.025592781603336334, + 0.004260629881173372, + -0.011090978980064392, + 0.016462447121739388, + -0.006728836335241795, + 0.036126889288425446, + 0.014397390186786652, + 0.000044819633330916986, + 0.0002815162588376552, + -0.00837624166160822, + 0.03547720983624458, + -0.003929988481104374, + 0.0019896472804248333, + -0.005609297193586826, + 0.02721698395907879, + -0.012506354600191116, + -0.026613708585500717, + 0.032135993242263794, + 0.0007026123348623514, + 0.021729500964283943, + -0.01671767793595791, + -0.016381235793232918, + 0.00830083154141903, + -0.022297972813248634, + -0.00008855163468979299, + -0.0339922271668911, + 0.0012696328340098262, + -0.004147515632212162, + 0.014989063143730164, + -0.02112622559070587, + -0.0406978577375412, + -0.007192894350737333, + -0.026660114526748657, + 0.010824145749211311, + -0.02085939235985279, + 0.05146399885416031, + -0.010847348719835281, + 0.02036053128540516, + -0.02691534534096718, + -0.004411448258906603, + -0.036521341651678085, + -0.003663155483081937, + -0.023272493854165077, + -0.013132832944393158, + -0.01377091184258461, + 0.02046494372189045, + -0.002360893413424492, + -0.007894781418144703, + -0.011270801536738873, + -0.008875103667378426, + 0.01345767267048359, + -0.01693810522556305, + -0.04858684167265892, + -0.01355048455297947, + -0.002514612628147006, + -0.03188076242804527, + -0.012645572423934937, + -0.0022477793972939253, + -0.0024972104001790285, + -0.0274026058614254, + 0.015128280967473984, + 0.026358475908637047, + -0.026799332350492477, + 0.001567644882015884, + -0.023330500349402428, + 0.021520676091313362, + 0.01207710150629282, + 0.006578017957508564, + -0.00766855338588357, + 0.005997945554554462, + 0.04807637631893158, + 0.05174243077635765, + -0.02475747838616371, + -0.008996918797492981, + -0.01196108665317297, + 0.029235634952783585, + 0.014246570877730846, + 0.010302080772817135, + 0.007140687666833401, + 0.005119136534631252, + 0.009942435659468174, + -0.013631694950163364, + -0.00601534778252244, + -0.0004520936927292496, + -0.03143990784883499, + -0.005826824344694614, + 0.013353260233998299, + 0.022031139582395554, + -0.01408415101468563, + -0.0063517894595861435, + 0.010957562364637852, + -0.005577393341809511, + 0.033180125057697296, + -0.011995891109108925, + -0.02765783853828907, + 0.0018112751422449946, + -0.011404218152165413, + -0.019850067794322968, + -0.012715180404484272, + 0.002278233179822564, + -0.015905577689409256, + 0.03378339856863022, + -0.015963584184646606, + 0.018504301086068153, + 0.0172861497849226, + 0.018713125959038734, + -0.04710185527801514, + -0.006659227889031172, + -0.0012732582399621606, + 0.010858950205147266, + 0.02438623085618019, + 0.009751012548804283, + -0.0007548188441433012, + -0.006694032344967127, + -0.0018344779964536428, + -0.008312433026731014, + 0.014977461658418179, + -0.02482708729803562, + 0.010348486714065075, + -0.023063667118549347, + -0.030302967876195908, + -0.00010350661614211276, + -0.0031323893927037716, + -0.003523938124999404, + 0.025639187544584274, + -0.0026045236736536026, + 0.013248846866190434, + 0.0209870096296072, + -0.029096417129039764, + -0.04522242024540901, + 0.006003746297210455, + 0.01718173548579216, + 0.009066526778042316, + -0.08547942340373993, + -0.003718262305483222, + -0.043412595987319946, + 0.009884429164230824, + -0.013631694950163364, + 0.039398498833179474, + 0.011230195872485638, + 0.012541159056127071, + -0.0019214889034628868, + 0.028307519853115082, + 0.013631694950163364, + -0.02061576209962368, + -0.013306854292750359, + -0.0031555923633277416, + -0.0051481397822499275, + 0.0008135511307045817, + -0.01769219897687435, + 0.016126004979014397, + -0.017924228683114052, + -0.005104634445160627, + -0.025128724053502083, + 0.022147152572870255, + -0.026706520467996597, + -0.006862252950668335, + -0.0021317650098353624, + -0.01057471428066492, + -0.015105077996850014, + -0.015615541487932205, + 0.02072017639875412, + 0.003695059334859252, + -0.04840121790766716, + -0.006421398371458054, + -0.03118467703461647, + 0.003201998071745038, + 0.026056839153170586, + 0.001954843057319522, + 0.006752039305865765, + -0.006050152238458395, + -0.01752978004515171, + -0.032414428889751434, + 0.010847348719835281, + 0.00346013018861413, + -0.014548208564519882, + 0.0022622812539339066, + -0.021938327699899673, + -0.02823791094124317, + -0.029444459825754166, + 0.03717102110385895, + -0.001126790069974959, + -0.01408415101468563, + -0.04545444995164871, + 0.011143185198307037, + -0.02027932181954384, + 0.011468025855720043, + 0.029328446835279465, + -0.00152558961417526, + 0.032437633723020554, + 0.03508276119828224, + -0.010586315765976906, + 0.04747310280799866, + 0.01711212657392025, + 0.018365083262324333, + -0.001279784133657813, + -0.032878488302230835, + 0.02367854304611683, + -0.03111506812274456, + -0.032135993242263794, + 0.028701968491077423, + -0.00034749944461509585, + -0.012947209179401398, + -0.03540760278701782, + -0.03109186515212059, + -0.028400329872965813, + -0.014200164936482906, + 0.006137162912636995, + -0.028446735814213753, + 0.0010825595818459988, + -0.001783721731044352, + -0.046800218522548676, + -0.015522729605436325, + -0.0246878694742918, + 0.019571632146835327, + 0.015696750953793526, + -0.009774215519428253, + 0.0046927835792303085, + 0.03157912567257881, + 0.005522286519408226, + 0.007888981141149998, + 0.0005612197564914823, + 0.012448347173631191, + -0.021288646385073662, + -0.035964470356702805, + 0.011723257601261139, + -0.020093698054552078, + -0.023005660623311996, + -0.021868718788027763, + 0.03044218383729458, + -0.004747890401631594, + -0.05401631444692612, + 0.017970634624361992, + -0.02081298828125, + 0.0023115873336791992, + 0.016439244151115417, + -0.013898528181016445, + -0.03471151366829872, + -0.0028220508247613907, + 0.015998389571905136, + -0.030024532228708267, + -0.018817538395524025, + -0.021335052326321602, + 0.008016596548259258, + -0.003178795101121068, + -0.0029076114296913147, + 0.0024450039491057396, + -0.0009099881281144917, + 0.0037153619341552258, + -0.002513162326067686, + -0.016439244151115417, + 0.01736735925078392, + 0.013121231459081173, + -0.018249068409204483, + -0.011212794110178947, + -0.02429342083632946, + -0.007842575199902058, + -0.03691579028964043, + -0.006084956228733063, + -0.019896473735570908, + -0.009600193239748478, + 0.04125472903251648, + -0.025662390515208244, + -0.04202042520046234, + 0.019107574597001076, + 0.013016818091273308, + -0.04840121790766716, + -0.015917178243398666, + -0.006177768111228943, + 0.0641791820526123, + 0.03099905326962471, + -0.011061974801123142, + -0.02090579830110073, + -0.021694697439670563, + 0.01401454210281372, + 0.01723974384367466, + -0.005586094222962856, + 0.006096557714045048, + -0.003898084629327059, + 0.023005660623311996, + -0.002891659503802657, + 0.01020346861332655, + -0.011949485167860985, + -0.0011021370301023126, + -0.02758822962641716, + -0.02452544867992401, + 0.03076702542603016, + -0.008405244909226894, + 0.015708353370428085, + 0.016729280352592468, + 0.018423089757561684, + 0.025940824300050735, + 0.04447992891073227, + 0.012517956085503101, + -0.03877202048897743, + -0.022924449294805527, + 0.0341082401573658, + -0.019003162160515785, + -0.016613265499472618, + 0.005594795569777489, + 0.04793715849518776, + -0.02733299881219864, + 0.05099993944168091, + -0.029792504385113716, + 0.0023144877050071955, + -0.0053337630815804005, + -0.016300026327371597, + -0.0343402698636055, + -0.03041898086667061, + -0.007952788844704628, + -0.004588370211422443, + 0.02051134966313839, + 0.013283651322126389, + -0.015824366360902786, + 0.046312958002090454, + -0.03707820922136307, + -0.032785676419734955, + -0.015302302315831184, + -0.018550707027316093, + -0.008016596548259258, + -0.02758822962641716, + 0.0069028581492602825, + -0.004721786826848984, + 0.02018650993704796, + 0.021659892052412033, + 0.03037257492542267, + -0.0077613648027181625, + -0.011108380742371082, + 0.028771577402949333, + 0.004402747377753258, + 0.0069144596345722675, + 0.025035912171006203, + 0.015058672055602074, + -0.003358617424964905, + 0.004997321404516697, + 0.022936051711440086, + -0.00152558961417526, + -0.0005724586662836373, + -0.003289008978754282, + 0.022611210122704506, + -0.029119620099663734, + 0.03856319561600685, + -0.016276823356747627, + 0.01692650467157364, + 0.008962114341557026, + 0.010980765335261822, + -0.01047030184417963, + 0.0015618441393598914, + 0.01348087564110756, + -0.018689922988414764, + -0.0033876211382448673, + 0.019792061299085617, + -0.01697291061282158, + -0.006311184726655483, + 0.003579044947400689, + -0.008828697726130486, + -0.014118955470621586, + -0.02055775560438633, + -0.023481318727135658, + -0.01522109191864729, + 0.011995891109108925, + 0.0018605813384056091, + -0.012912405654788017, + -0.00260017323307693, + -0.04072106257081032, + 0.015418317168951035, + 0.026752926409244537, + 0.029537271708250046, + -0.014501802623271942, + -0.014849846251308918, + -0.017889423295855522, + 0.012135108932852745 + ] + }, + { + "HotelId": "27", + "HotelName": "Starlight Suites", + "Description": "Complimentary Airport Shuttle & WiFi. Book Now and save - Spacious All Suite Hotel, Indoor Outdoor Pool, Fitness Center, Florida Green certified, Complimentary Coffee, HDTV", + "Description_fr": "Navette aĆ©roport gratuite et WiFi. RĆ©servez maintenant et Ć©conomisez-spacieux All Suite Hotel, piscine couverte extĆ©rieure, centre de fitness, Florida Green Certified, Complimentary Coffee, HDTV", + "Category": "Suite", + "Tags": [ + "pool", + "coffee in lobby", + "free wifi" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2017-04-23T00:00:00Z", + "Rating": 4.2, + "Address": { + "StreetAddress": "19575 Biscayne Blvd", + "City": "Aventura", + "StateProvince": "FL", + "PostalCode": "33180", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -80.146729, + 25.956699 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + } + ], + "embedding": [ + -0.029321778565645218, + -0.04110490530729294, + 0.027542799711227417, + -0.014681818895041943, + -0.019767608493566513, + -0.00745601998642087, + -0.012630759738385677, + 0.01732935942709446, + 0.028965983539819717, + -0.011249433271586895, + -0.016816595569252968, + 0.055462323129177094, + 0.00004251239442965016, + -0.00947568565607071, + -0.011029677465558052, + 0.0218082033097744, + 0.004580873996019363, + 0.04533259943127632, + 0.03727486729621887, + 0.044369857758283615, + 0.013080736622214317, + -0.012055207043886185, + -0.030975185334682465, + -0.020793139934539795, + -0.00848155003041029, + -0.011887773871421814, + -0.05249037966132164, + -0.03679349645972252, + -0.00504131568595767, + 0.018176991492509842, + 0.03409363329410553, + -0.028631117194890976, + 0.033109959214925766, + -0.028861338272690773, + 0.022624442353844643, + -0.00691186124458909, + -0.033130891621112823, + 0.011908702552318573, + 0.01984086073935032, + 0.005420657340437174, + 0.03350761532783508, + 0.04608605057001114, + -0.03974451124668121, + -0.03208443149924278, + 0.0014022549148648977, + 0.012766798958182335, + -0.01035471074283123, + -0.010401802137494087, + 0.0026122231502085924, + -0.014880646020174026, + -0.027814878150820732, + 0.023691831156611443, + -0.03051474317908287, + -0.07187079638242722, + -0.033130891621112823, + 0.04663021117448807, + 0.017632832750678062, + -0.029070628806948662, + -0.0228755921125412, + -0.01186684425920248, + 0.001149142743088305, + 0.028442753478884697, + 0.00034402337041683495, + 0.04020495340228081, + -0.040079377591609955, + 0.05717851594090462, + 0.032921597361564636, + -0.013467926532030106, + -0.04851383715867996, + -0.05069047212600708, + 0.025784747675061226, + 0.018689757212996483, + -0.00989426951855421, + -0.052741531282663345, + 0.02909155748784542, + 0.001222394872456789, + -0.011490118689835072, + -0.03480522334575653, + -0.007864139042794704, + -0.019066480919718742, + -0.022394221276044846, + 0.0028489844407886267, + 0.025094084441661835, + 0.04675578698515892, + -0.004559944849461317, + -0.03610283508896828, + -0.029761292040348053, + -0.003309426363557577, + -0.044034991413354874, + 0.08940944820642471, + 0.03842597082257271, + 0.04487215727567673, + -0.006488045211881399, + -0.008727467618882656, + -0.010632023215293884, + -0.00543635431677103, + 0.02980315126478672, + -0.026705631986260414, + -0.023252317681908607, + 0.041523490101099014, + 0.02591032348573208, + -0.0777728259563446, + 0.017088674008846283, + -0.006870002951472998, + -0.0007554125622846186, + -0.003249255008995533, + -0.04801153764128685, + 0.03013801760971546, + 0.012913303449749947, + 0.015477127395570278, + -0.09451617300510406, + -0.0133946742862463, + -0.005127648822963238, + 0.012390073388814926, + -0.030933326110243797, + -0.03001244179904461, + 0.01660730317234993, + -0.04298853129148483, + -0.027710232883691788, + -0.048848703503608704, + 0.04037238657474518, + 0.047927819192409515, + -0.0033146587666124105, + -0.04968586936593056, + -0.017203785479068756, + -0.06588505208492279, + -0.0500207357108593, + 0.008816416375339031, + -0.022603513672947884, + -0.005860169883817434, + 0.020259445533156395, + -0.017256107181310654, + 0.009418130852282047, + -0.03235651180148125, + -0.00768100842833519, + 0.019757144153118134, + -0.033800624310970306, + -0.011887773871421814, + 0.0027992776595056057, + -0.002317906590178609, + 0.03252394497394562, + 0.01927577331662178, + 0.044537290930747986, + -0.010239601135253906, + -0.025115014985203743, + -0.045248884707689285, + 0.01393883302807808, + 0.01627243682742119, + -0.007445555180311203, + 0.0025886776857078075, + -0.03564239293336868, + -0.022770946845412254, + -0.016398010775446892, + 0.02501036785542965, + -0.0407700389623642, + -0.016209648922085762, + 0.030096158385276794, + 0.04190021753311157, + -0.017392147332429886, + 0.06375028192996979, + -0.004798014182597399, + -0.019035087898373604, + -0.011887773871421814, + 0.03250301629304886, + 0.02982407994568348, + 0.02197563834488392, + -0.00566134275868535, + 0.02674749121069908, + -0.07559619098901749, + -0.003547495696693659, + 0.0640014261007309, + -0.03555867448449135, + 0.004413440357893705, + 0.06065275892615318, + 0.03930499777197838, + 0.023984838277101517, + 0.019003694877028465, + -0.009564634412527084, + -0.000966012419667095, + -0.009166980162262917, + 0.0020314385183155537, + 0.004638429265469313, + 0.05228108912706375, + 0.0206884928047657, + -0.01928623765707016, + 0.00037116589373908937, + -0.013760934583842754, + 0.006273521110415459, + -0.007524039596319199, + 0.018689757212996483, + -0.011092464439570904, + 0.026475410908460617, + -0.05014631152153015, + 0.014409739524126053, + -0.02745908312499523, + 0.028107887133955956, + -0.01872115023434162, + -0.02519873157143593, + 0.012693546712398529, + 0.03430292382836342, + -0.03415641933679581, + -0.014033013954758644, + 0.00036102833109907806, + -0.039346855133771896, + -0.011511048302054405, + -0.05533674731850624, + 0.020102476701140404, + 0.00767054408788681, + 0.0031105992384254932, + -0.02787766605615616, + 0.017193321138620377, + 0.03537031263113022, + 0.03017987497150898, + -0.03373783454298973, + -0.008235631510615349, + -0.012191246263682842, + -0.004771852865815163, + -0.04020495340228081, + 0.025659173727035522, + 0.024696430191397667, + -0.03700278699398041, + 0.0012380917323753238, + 0.000022891288608661853, + 0.0296357162296772, + -0.011197110638022423, + -0.0023493003100156784, + 0.029698504135012627, + -0.01802002266049385, + 0.00003734141500899568, + -0.039200350642204285, + 0.010365176014602184, + -0.0009934819536283612, + -0.014974826946854591, + -0.05763895809650421, + -0.05835055187344551, + 0.025826606899499893, + -0.0008842577808536589, + -0.039891015738248825, + 0.0032754165586084127, + 0.020238514989614487, + -0.0417327806353569, + -0.0003531799011398107, + -0.008905365131795406, + 0.03984915465116501, + 0.03733765333890915, + 0.004269552417099476, + 0.00022319007257465273, + -0.04462100937962532, + 0.04696507751941681, + -0.008094360120594501, + -0.024194130674004555, + 0.0009627421968616545, + -0.009538473561406136, + -0.004055028315633535, + 0.042758312076330185, + 0.012191246263682842, + -0.004041947424411774, + -0.01908741146326065, + 0.03103797137737274, + -0.003196932142600417, + 0.046672068536281586, + -0.01490157563239336, + 0.02764744497835636, + -0.027228862047195435, + 0.022938380017876625, + 0.0406653955578804, + -0.0012740637175738811, + -0.016931705176830292, + -0.010914566926658154, + 0.03610283508896828, + -0.03235651180148125, + 0.0011654936242848635, + -0.014189982786774635, + 0.013949297368526459, + 0.047927819192409515, + -0.04012123495340347, + -0.00937103945761919, + 0.019861791282892227, + 0.022624442353844643, + 0.012609830126166344, + 0.010977353900671005, + -0.016544515267014503, + -0.01019250974059105, + -0.028296248987317085, + 0.008675144985318184, + 0.020071081817150116, + 0.028610186651349068, + 0.025826606899499893, + -0.050774186849594116, + 0.003735858481377363, + 0.009700674563646317, + 0.0457511842250824, + 0.01768515631556511, + -0.0649641677737236, + -0.013153988867998123, + 0.047048792243003845, + 0.0074089290574193, + 0.02161984145641327, + 0.005760756321251392, + -0.0061165522783994675, + -0.004792782012373209, + 0.0034690112806856632, + -0.03700278699398041, + 0.04558375105261803, + -0.007926926016807556, + 0.04261180758476257, + -0.02461271360516548, + 0.002375461859628558, + -0.0128609798848629, + -0.02323138900101185, + -0.04767666757106781, + 0.03126819431781769, + 0.034009914845228195, + -0.025449881330132484, + 0.001476815203204751, + -0.026663772761821747, + 0.01187730859965086, + 0.03894920274615288, + -0.025952180847525597, + -0.004303562454879284, + 0.0509834811091423, + 0.02323138900101185, + 0.008858274668455124, + -0.028442753478884697, + -0.011814521625638008, + 0.00019899070321116596, + -0.01114478800445795, + 0.06253638863563538, + 0.013750470243394375, + -0.003309426363557577, + 0.019767608493566513, + 0.00482155941426754, + 0.026349835097789764, + -0.031519342213869095, + -0.0550018809735775, + -0.024738289415836334, + -0.04805339500308037, + -0.02674749121069908, + -0.004685519728809595, + 0.030305450782179832, + -0.003432385390624404, + -0.033486686646938324, + -0.04001658782362938, + 0.0025533598382025957, + -0.010401802137494087, + -0.05161135643720627, + 0.005514838732779026, + 0.022226788103580475, + 0.002958862576633692, + 0.04679764434695244, + 0.005467747803777456, + 0.022917451336979866, + -0.013331886380910873, + 0.03637491166591644, + 0.01311213057488203, + -0.03832132741808891, + 0.054541438817977905, + 0.04520702734589577, + 0.018961835652589798, + 0.023880193009972572, + -0.011772663332521915, + 0.03966079279780388, + 0.021724486723542213, + -0.011898238211870193, + 0.02605682797729969, + -0.02321045845746994, + -0.013017948716878891, + 0.006791518535465002, + 0.00482155941426754, + -0.01604221574962139, + 0.03246115520596504, + 0.02300116792321205, + 0.007016506977379322, + 0.016293365508317947, + -0.026119615882635117, + 0.011102929711341858, + 0.06195037066936493, + 0.04108397662639618, + 0.03285881131887436, + -0.02373368851840496, + 0.006226430647075176, + 0.013321422040462494, + 0.02178727462887764, + -0.018114203587174416, + 0.028275320306420326, + 0.0036835353821516037, + -0.026873065158724785, + -0.009868107736110687, + 0.002112539019435644, + 0.014074872247874737, + -0.0436164066195488, + 0.0022080284543335438, + 0.005255839787423611, + -0.027354435995221138, + 0.00274695479311049, + 0.04020495340228081, + 0.0033041941933333874, + 0.008554801344871521, + -0.002274740021675825, + -0.04395127668976784, + -0.04146070405840874, + -0.06157364323735237, + -0.001157645252533257, + 0.01838628388941288, + -0.04855569452047348, + -0.04625348374247551, + 0.008701305836439133, + -0.03147748485207558, + -0.015822459012269974, + 0.0017358137993142009, + 0.006953719537705183, + -0.09351157397031784, + 0.0023859264329075813, + -0.02249886654317379, + -0.03976543992757797, + 0.00535525381565094, + 0.01663869619369507, + 0.0056299492716789246, + -0.021128006279468536, + -0.007387999910861254, + 0.007801351137459278, + 0.03430292382836342, + -0.00893152691423893, + -0.00592818995937705, + -0.06492231041193008, + 0.022959308698773384, + 0.011008747853338718, + -0.03656327351927757, + -0.0661362037062645, + -0.031142618507146835, + -0.03162398934364319, + -0.012358680367469788, + 0.022750016301870346, + 0.05378798767924309, + -0.019307168200612068, + 0.018449071794748306, + -0.04252809286117554, + 0.012034277431666851, + -0.018302567303180695, + -0.02609868533909321, + -0.03530752286314964, + -0.012348215095698833, + -0.014064407907426357, + 0.00459657097235322, + -0.013195847161114216, + -0.029782220721244812, + 0.019955972209572792, + 0.09192094951868057, + -0.049183569848537445, + 0.00864898320287466, + -0.02498943917453289, + -0.02752186916768551, + -0.028526470065116882, + 0.015801530331373215, + 0.002457870403304696, + 0.0032230934593826532, + 0.06019231677055359, + -0.02036409080028534, + 0.009350110776722431, + -0.021661700680851936, + 0.019212985411286354, + 0.00973730068653822, + -0.054332148283720016, + -0.027228862047195435, + 0.05362055450677872, + -0.02354532666504383, + -0.05219737067818642, + 0.06048532575368881, + 0.017004957422614098, + 0.03589354082942009, + -0.03388433903455734, + -0.02965664677321911, + 0.03966079279780388, + -0.002880378160625696, + -0.012034277431666851, + -0.03681442514061928, + 0.010103560984134674, + -0.008136218413710594, + -0.0012629451230168343, + 0.008497246541082859, + -0.04323968291282654, + 0.03984915465116501, + -0.013949297368526459, + 0.002098150085657835, + -0.010605861432850361, + -0.05249037966132164, + 0.006859538145363331, + -0.006629317533224821, + -0.11050606518983841, + 0.012117994017899036, + 0.020834997296333313, + 0.0009117273730225861, + 0.01750725880265236, + -0.006723498459905386, + -0.007131617516279221, + 0.016701484099030495, + -0.06927558034658432, + -0.011647087521851063, + 0.07015460729598999, + -0.005467747803777456, + 0.015215513296425343, + -0.06961044669151306, + -0.060694620013237, + -0.030472883954644203, + 0.04763481020927429, + 0.020573383197188377, + -0.018846726045012474, + -0.0421932227909565, + 0.015152725391089916, + -0.021870991215109825, + 0.03451221436262131, + 0.014399275183677673, + -0.02997058443725109, + 0.00838736817240715, + -0.013509784825146198, + 0.028463682159781456, + 0.04855569452047348, + -0.002830671379342675, + 0.008324581198394299, + -0.015665490180253983, + -0.02356625534594059, + 0.012536577880382538, + 0.03514008969068527, + -0.005472980439662933, + -0.012201711535453796, + -0.020039688795804977, + 0.014880646020174026, + -0.03662606328725815, + -0.013886510394513607, + 0.004413440357893705, + 0.0053997281938791275, + -0.02106521837413311, + -0.013080736622214317, + -0.008989082649350166, + 0.019872255623340607, + 0.0356842502951622, + 0.01859557442367077, + 0.013143524527549744, + 0.006022371351718903, + -0.04087468609213829, + 0.02231050468981266, + 0.0013787096831947565, + 0.006147946231067181, + -0.008706538006663322, + 0.0022394221741706133, + -0.02570103108882904, + -0.045081451535224915, + -0.015267835929989815, + -0.005677039735019207, + 0.013802792876958847, + -0.00020144334121141583, + -0.0042146132327616215, + 0.0133946742862463, + -0.01836535520851612, + -0.04968586936593056, + 0.0317704938352108, + -0.006440954748541117, + -0.005865402519702911, + -0.009282090701162815, + 0.001580153009854257, + -0.031142618507146835, + -0.0027940452564507723, + -0.015466663055121899, + -0.01088317297399044, + 0.02911248803138733, + 0.012201711535453796, + 0.025952180847525597, + 0.022603513672947884, + 0.008094360120594501, + 0.002460486488416791, + -0.037546947598457336, + 0.02302209660410881, + -0.02622426114976406, + 0.013635359704494476, + 0.013886510394513607, + -0.04750923439860344, + -0.02304302528500557, + -0.01799909397959709, + -0.01946413703262806, + 0.025115014985203743, + 0.00839783251285553, + -0.03156120330095291, + 0.03514008969068527, + 0.04474658519029617, + -0.0005333670414984226, + 0.013310957700014114, + 0.025575457140803337, + -0.007654847111552954, + 0.027354435995221138, + 0.015634097158908844, + 0.038132961839437485, + -0.00006716141069773585, + -0.04675578698515892, + -0.03520287945866585, + -0.01019250974059105, + -0.01658637449145317, + -0.01999782957136631, + 0.012484255246818066, + -0.03290066868066788, + 0.03947243094444275, + 0.00718917278572917, + -0.017894446849822998, + 0.0257219597697258, + -0.023691831156611443, + 0.01545619871467352, + -0.015403875149786472, + -0.03340296819806099, + -0.0032257097773253918, + 0.0021870990749448538, + -0.021211722865700722, + -0.010532609187066555, + -0.005234910640865564, + 0.030284522101283073, + 0.009575099684298038, + -0.04428614303469658, + 0.010830850340425968, + -0.06199222803115845, + -0.005368334241211414, + -0.004973296076059341, + -0.022582583129405975, + 0.0228755921125412, + -0.03331925347447395, + -0.02482200600206852, + -0.008905365131795406, + 0.006100855767726898, + 0.01545619871467352, + 0.0021530892699956894, + -0.025261519476771355, + 0.007346141617745161, + -0.019935043528676033, + 0.0010660800617188215, + 0.04217229411005974, + 0.05458329617977142, + 0.0021203875076025724, + -0.012431931681931019, + 0.042946673929691315, + 0.03181235119700432, + -0.007879835553467274, + -0.016293365508317947, + -0.0012322054244577885, + 0.005593323148787022, + 0.0011995035456493497, + 0.02413134276866913, + 0.011511048302054405, + 0.010830850340425968, + 0.019024623557925224, + 0.011908702552318573, + -0.04763481020927429, + 0.004505005665123463, + -0.00837690383195877, + 0.004716913681477308, + 0.0015225977404043078, + 0.04047702997922897, + 0.032042574137449265, + -0.000922845967579633, + -0.012599365785717964, + -0.01605268009006977, + -0.016115467995405197, + 0.01853278838098049, + -0.002643616870045662, + -0.027354435995221138, + -0.0002073296782327816, + -0.028233462944626808, + -0.0011465265415608883, + -0.0018077577697113156, + 0.00894199125468731, + 0.007790886797010899, + 0.00509363878518343, + -0.031875140964984894, + -0.03850968927145004, + 0.028421824797987938, + 0.000814929895568639, + 0.009161747992038727, + 0.0012531345710158348, + 0.005546232219785452, + -0.013310957700014114, + 0.009119889698922634, + 0.02358718402683735, + 0.001958186272531748, + 0.02197563834488392, + -0.04876498505473137, + 0.011395937763154507, + -0.03124726377427578, + 0.01561316754668951, + -0.006331076379865408, + 0.0022302656434476376, + -0.006294450256973505, + -0.006038067862391472, + 0.01799909397959709, + 0.009146051481366158, + 0.0038666657637804747, + -0.012379609048366547, + 0.029761292040348053, + -0.005619484465569258, + -0.0507323294878006, + -0.012170317582786083, + 0.007314748130738735, + -0.002132160123437643, + 0.030598459765315056, + -0.12616108357906342, + 0.005682271905243397, + 0.029384566470980644, + 0.001073928433470428, + -0.03001244179904461, + 0.02944735437631607, + 0.0025795213878154755, + 0.009318716824054718, + 0.006948487367480993, + -0.011123858392238617, + -0.010564003139734268, + -0.0028359037823975086, + -0.008298419415950775, + -0.011207574978470802, + 0.02195470780134201, + 0.001383941969834268, + 0.013698147609829903, + -0.008675144985318184, + 0.010830850340425968, + 0.00193202483933419, + 0.004240775015205145, + 0.003398375352844596, + 0.005535767879337072, + -0.009287322871387005, + 0.01731889508664608, + -0.023649971932172775, + 0.0060537648387253284, + 0.004405592102557421, + -0.07534504681825638, + -0.037212081253528595, + 0.02961478754878044, + -0.03457500413060188, + 0.005530535243451595, + 0.037421371787786484, + -0.005297698546200991, + 0.002104690531268716, + 0.024780146777629852, + 0.0026514653582125902, + -0.04893241822719574, + -0.0036469094920903444, + -0.02159891277551651, + 0.011406402103602886, + -0.010312852449715137, + 0.030472883954644203, + -0.026852136477828026, + 0.008178076706826687, + -0.039535216987133026, + 0.00838736817240715, + 0.022436078637838364, + -0.017423540353775024, + 0.0010582315735518932, + -0.022038424387574196, + 0.004083806183189154, + 0.014179518446326256, + -0.0052663045935332775, + -0.016105003654956818, + -0.01859557442367077, + 0.015780601650476456, + 0.04248623177409172, + 0.037546947598457336, + -0.001138024148531258, + 0.010799456387758255, + 0.029175275936722755, + 0.013352815993130207, + 0.016670091077685356, + 0.03601911664009094, + -0.013153988867998123, + 0.04020495340228081, + -0.0214524082839489, + -0.030284522101283073, + 0.008633285760879517, + -0.0032178612891584635, + -0.021180327981710434, + 0.01729796640574932, + 0.0009548937669023871, + -0.0072676572017371655, + -0.013488855212926865, + -0.039221279323101044, + -0.03036823868751526, + 0.005357869900763035, + 0.024424351751804352, + 0.02285466343164444, + -0.008073430508375168, + -0.008690841495990753, + 0.010945960879325867, + 0.00962742231786251, + -0.008277489803731441, + 0.02925899252295494, + 0.013624895364046097, + -0.0109041016548872, + 0.011992419138550758, + 0.027396295219659805, + 0.0012276271590963006, + 0.0253661647439003, + -0.04947657883167267, + 0.0054625156335532665, + 0.009297787211835384, + -0.012264498509466648, + 0.019212985411286354, + 0.048848703503608704, + 0.05140206217765808, + 0.02498943917453289, + 0.0028045098297297955, + 0.0339052677154541, + -0.01268308237195015, + 0.04621162638068199, + 0.00664501404389739, + -0.028693903237581253, + -0.0065089743584394455, + 0.026893993839621544, + -0.03643770143389702, + -0.024905722588300705, + 0.023356962949037552, + -0.031519342213869095, + -0.003406223841011524, + -0.014995756559073925, + 0.0253661647439003, + 0.008361207321286201, + 0.028693903237581253, + -0.04470472410321236, + -0.02997058443725109, + 0.025387093424797058, + -0.029028771445155144, + 0.00040550282574258745, + 0.02997058443725109, + -0.020604776218533516, + -0.03107983060181141, + -0.026705631986260414, + 0.020238514989614487, + 0.005572394002228975, + -0.022373292595148087, + 0.01909787580370903, + 0.011228504590690136, + 0.00022204550623428077, + 0.009862875565886497, + 0.0004153133777435869, + -0.0282125324010849, + 0.015424804762005806, + 0.013792328536510468, + -0.057722676545381546, + 0.0005225754575803876, + -0.004405592102557421, + 0.012264498509466648, + -0.018846726045012474, + 0.03089146688580513, + -0.060820192098617554, + -0.006189804524183273, + 0.012526113539934158, + 0.007142082322388887, + 0.028631117194890976, + 0.0015579157043248415, + -0.0004120432131458074, + -0.019035087898373604, + 0.03250301629304886, + 0.002830671379342675, + 0.03250301629304886, + -0.006273521110415459, + 0.015529450960457325, + 0.013698147609829903, + 0.023880193009972572, + -0.033800624310970306, + -0.014252770692110062, + 0.02856832928955555, + 0.012473790906369686, + 0.0017109604086726904, + 0.0012243569362908602, + 0.009878572076559067, + 0.0015160574112087488, + 0.02212214097380638, + 0.03744230046868324, + 0.02108614705502987, + -0.041481632739305496, + 0.041502561420202255, + -0.022938380017876625, + -0.02197563834488392, + 0.014074872247874737, + 0.0022433463018387556, + 0.031519342213869095, + 0.053997281938791275, + 0.0036573740653693676, + 0.0005284617654979229, + 0.01106107048690319, + 0.02358718402683735, + 0.02017572894692421, + 0.011981954798102379, + 0.01480739377439022, + -0.013174917548894882, + -0.0035605765879154205, + 0.02925899252295494, + 0.005593323148787022, + -0.005520070903003216, + -0.008999546989798546, + 0.04868127033114433, + 0.02695678174495697, + -0.003393143182620406, + -0.0009889036882668734, + 0.0058549377135932446, + 0.01337374560534954, + 0.050606753677129745, + -0.017402611672878265, + 0.00460180314257741, + -0.024047626182436943, + 0.003908524289727211, + -0.01803048700094223, + -0.009857643395662308, + 0.021316368132829666, + -0.011762198060750961, + -0.007089759223163128, + -0.038635265082120895, + -0.00535525381565094, + 0.018470000475645065, + 0.0406653955578804, + -0.06228523701429367, + -0.03683535382151604, + -0.020594311878085136, + -0.06751753389835358, + 0.025094084441661835, + -0.02323138900101185, + 0.014974826946854591, + 0.050648611038923264, + 0.0015147492522373796, + 0.010778526775538921, + 0.024926651269197464, + -0.07354513555765152, + -0.0034140723291784525, + -0.025240588933229446, + -0.0006141405901871622, + 0.016889847815036774, + 0.0018129900563508272, + -0.00669210497289896, + -0.004238158464431763, + -0.0098995016887784, + 0.01713053323328495, + 0.012191246263682842, + 0.016858452931046486, + 0.03514008969068527, + 0.005077941808849573, + 0.036877211183309555, + -0.014493456110358238, + 0.051527637988328934, + -0.030661247670650482, + -0.011647087521851063, + 0.014273700304329395, + -0.02054198831319809, + -0.0128609798848629, + 0.018606040626764297, + -0.0349726565182209, + 0.019150199368596077, + -0.031205404549837112, + 0.006890932098031044, + -0.013876045122742653, + -0.00014691302203573287, + 0.025617314502596855, + -0.0010353403631597757, + -0.0303473100066185, + -0.006749660242348909, + -0.032565802335739136, + -0.019872255623340607, + -0.007571130525320768, + 0.0002761670621111989, + 0.001759359030984342, + 0.0019869639072567225, + 0.006707801949232817, + 0.022519797086715698, + 0.026370765641331673, + 0.011312221176922321, + 0.03244022652506828, + -0.00142710842192173, + 0.02235236205160618, + -0.004447450395673513, + 0.010464589111506939, + -0.03373783454298973, + 0.018292102962732315, + -0.004408208187669516, + 0.010469821281731129, + -0.03731672465801239, + 0.05048117786645889, + -0.0049706799909472466, + 0.029238061979413033, + 0.04474658519029617, + 0.02302209660410881, + 0.04162813723087311, + 0.025094084441661835, + 0.03338203951716423, + -0.021211722865700722, + -0.016471263021230698, + 0.005394496023654938, + 0.03179142251610756, + -0.024528997018933296, + 0.02515687234699726, + -0.02997058443725109, + -0.010548305697739124, + -0.004044563975185156, + 0.02052105963230133, + 0.008303651586174965, + -0.039388712495565414, + 0.014734141528606415, + -0.004622732289135456, + 0.010830850340425968, + -0.022708158940076828, + 0.027354435995221138, + 0.02089778520166874, + 0.0006854305975139141, + -0.014326022937893867, + -0.01894090697169304, + 0.011406402103602886, + -0.020290838554501534, + -0.0008639826555736363, + 0.05232294648885727, + -0.042758312076330185, + -0.01116571668535471, + -0.02053152397274971, + 0.016167789697647095, + 0.01767469197511673, + -0.009214070625603199, + -0.04390941560268402, + -0.05906214192509651, + 0.021012894809246063, + 0.0008842577808536589, + 0.00691709341481328, + -0.01925484463572502, + -0.012547042220830917, + 0.008444923907518387, + -0.010637255385518074, + -0.02051059529185295, + 0.0292799212038517, + 0.014828323386609554, + 0.035600531846284866, + -0.020395483821630478, + 0.047216225415468216, + -0.017350289970636368, + 0.0282125324010849, + -0.018344424664974213, + 0.040602605789899826, + 0.0009339646203443408, + 0.005323859862983227, + -0.0009797471575438976, + -0.0026122231502085924, + 0.0007541044615209103, + 0.013876045122742653, + 0.018344424664974213, + -0.0007076678448356688, + 0.03105890192091465, + -0.002673702547326684, + 0.05282524600625038, + -0.019683891907334328, + 0.02748001180589199, + -0.004429137334227562, + 0.01766422763466835, + 0.023440679535269737, + -0.007466484326869249, + -0.011490118689835072, + -0.0183758195489645, + 0.009156515821814537, + -0.000657634052913636, + -0.008523408323526382, + 0.02819160372018814, + -0.012295892462134361, + -0.02480107732117176, + 0.022582583129405975, + 0.006263056769967079, + -0.003887594910338521, + 0.04843011870980263, + -0.00008388022251892835, + -0.024487139657139778, + -0.004834640305489302, + -0.016178255900740623, + -0.01435741689056158, + -0.002330987248569727, + -0.009172212332487106, + 0.016722414642572403, + 0.018888583406805992, + 0.03783995658159256, + 0.01965249888598919, + -0.0064095607958734035, + 0.02890319563448429, + -0.012693546712398529, + -0.004808478988707066, + 0.02304302528500557, + 0.017413076013326645, + 0.0656757652759552, + -0.0029745595529675484, + 0.004894811660051346, + -0.004264320246875286, + 0.07124292105436325, + 0.013980691321194172, + 0.001656021224334836, + 0.019537387415766716, + -0.0017148845363408327, + -0.0017554349033161998, + 0.02073035202920437, + -0.010548305697739124, + 0.016460798680782318, + -0.025115014985203743, + 0.020426878705620766, + -0.016931705176830292, + -0.004604419227689505, + 0.051318347454071045, + -0.001056269509717822, + 0.02877761982381344, + 0.03748415783047676, + 0.03160306066274643, + 0.0335494726896286, + 0.016282901167869568, + -0.0029457819182425737, + -0.007926926016807556, + -0.0009391969069838524, + -0.0029143881984055042, + -0.021640770137310028, + -0.035977259278297424, + -0.0014755070442333817, + 0.0070426687598228455, + -0.032063502818346024, + 0.037944599986076355, + 0.008151914924383163, + 0.004327107686549425, + 0.009235000237822533, + -0.010543073527514935, + -0.011992419138550758, + -0.012264498509466648, + 0.019736215472221375, + 0.015937570482492447, + -0.019066480919718742, + 0.009334413334727287, + 0.02660098671913147, + -0.0011700718896463513, + 0.006948487367480993, + -0.008324581198394299, + -0.028986912220716476, + 0.0014061791589483619, + -0.0004960869555361569, + 0.011772663332521915, + -0.03357040137052536, + -0.030786821618676186, + -0.018302567303180695, + -0.008329813368618488, + 0.004397743847221136, + -0.011887773871421814, + -0.021326832473278046, + 0.007215334568172693, + 0.012714476324617863, + 0.01435741689056158, + -0.01640847697854042, + 0.01640847697854042, + 0.008968153037130833, + 0.0022577352356165648, + 0.018302567303180695, + -0.001705728005617857, + 0.061322495341300964, + -0.001155683072283864, + 0.020971037447452545, + -0.019882719963788986, + 0.01642940565943718, + 0.00035481498343870044, + 0.016209648922085762, + -0.013091200962662697, + 0.002242038259282708, + 0.02695678174495697, + -0.016910776495933533, + -0.028149744495749474, + -0.01257843617349863, + -0.02461271360516548, + 0.014346951618790627, + -0.0008005410782061517, + 0.013007484376430511, + -0.005750291980803013, + 0.027166074141860008, + -0.0024761834647506475, + 0.019683891907334328, + -0.005886331666260958, + 0.02373368851840496, + 0.032377440482378006, + -0.03068217635154724, + 0.028819479048252106, + 0.022436078637838364, + 0.010736668482422829, + 0.007633917964994907, + 0.012714476324617863, + 0.00005027908264310099, + 0.022268645465373993, + -0.034177348017692566, + -0.0035658087581396103, + 0.018794402480125427, + -0.010652951896190643, + -0.029133416712284088, + -0.005734595004469156, + 0.008533872663974762, + 0.020311767235398293, + -0.02764744497835636, + -0.01855371706187725, + -0.04843011870980263, + -0.020604776218533516, + 0.014420203864574432, + -0.005148577969521284, + -0.06278753280639648, + -0.025617314502596855, + 0.010564003139734268, + -0.010213439352810383, + 0.00647758087143302, + -0.013907439075410366, + -0.017538651823997498, + 0.0016350920777767897, + 0.0024487138725817204, + -0.0036599901504814625, + 0.02804509922862053, + -0.036165621131658554, + -0.015675954520702362, + -0.035474956035614014, + -0.029551999643445015, + -0.031875140964984894, + 0.022101212292909622, + -0.010914566926658154, + -0.005258456338196993, + 0.013185382820665836, + 0.011647087521851063, + 0.03264951705932617, + -0.023315105587244034, + 0.016879383474588394, + -0.03068217635154724, + -0.017925841733813286, + -0.016711948439478874, + -0.002375461859628558, + 0.0019437974551692605, + 0.00893675908446312, + 0.00570843368768692, + 0.03894920274615288, + -0.01490157563239336, + 0.019328096881508827, + 0.011626158840954304, + 0.016889847815036774, + 0.008361207321286201, + -0.008303651586174965, + -0.013886510394513607, + -0.019349025562405586, + 0.026287049055099487, + 0.00592818995937705, + 0.019359489902853966, + -0.03522380813956261, + 0.0012112761614844203, + -0.036521416157484055, + 0.017434006556868553, + -0.02018619328737259, + 0.022750016301870346, + 0.01980946771800518, + -0.04213043674826622, + -0.017988629639148712, + -0.0417327806353569, + -0.00740369688719511, + 0.02247793786227703, + -0.01895137131214142, + -0.019579246640205383, + 0.015958499163389206, + -0.009266394190490246, + -0.03327739238739014, + 0.004172754939645529, + -0.013038878329098225, + 0.011102929711341858, + 0.02480107732117176, + -0.05655064061284065, + -0.03656327351927757, + 0.020981501787900925, + -0.0005310779088176787, + -0.016188720241189003, + 0.01859557442367077, + 0.03139376640319824, + -0.011678481474518776, + 0.015979427844285965, + 0.01141686737537384, + 0.022729087620973587, + 0.01678520068526268, + 0.03869805112481117, + -0.026307977735996246, + 0.002158321440219879, + -0.058308690786361694, + 0.012379609048366547, + 0.025638243183493614, + -0.015770135447382927, + -0.01008263137191534, + -0.01626197248697281, + -0.014263235032558441, + 0.008544337004423141, + -0.011469190008938313, + -0.015791065990924835, + 0.018470000475645065, + 0.003555344184860587, + 0.008596660569310188, + 0.03285881131887436, + -0.03832132741808891, + 0.05018816888332367, + 0.025826606899499893, + -0.002783580683171749, + -0.02055245265364647, + 0.04349083453416824, + -0.008952456526458263, + -0.028442753478884697, + -0.007225798908621073, + 0.039011988788843155, + -0.037756238132715225, + -0.02819160372018814, + 0.014012085273861885, + 0.0212221872061491, + 0.013415603898465633, + 0.0218082033097744, + 0.009412897750735283, + 0.00875362940132618, + 0.00945998914539814, + -0.015142261050641537, + 0.01437834557145834, + -0.020259445533156395, + -0.003442849963903427, + -0.030493812635540962, + 0.0034376175608485937, + 0.013488855212926865, + 0.0026318442542105913, + -0.045960474759340286, + 0.028128815814852715, + -0.034009914845228195, + -0.010841314680874348, + -0.0003698578220792115, + 0.007283354178071022, + -0.05194622278213501, + 0.03290066868066788, + 0.000713554210960865, + -0.009235000237822533, + -0.01984086073935032, + -0.0013682451099157333, + -0.011395937763154507, + 0.004204148892313242, + -0.013426068238914013, + -0.02109661139547825, + -0.005870634689927101, + 0.030849609524011612, + -0.0013080736389383674, + -0.011741269379854202, + 0.031100759282708168, + -0.004625348374247551, + 0.021515196189284325, + -0.006440954748541117, + -0.0030268824193626642, + 0.019003694877028465, + -0.0010386104695498943, + 0.0413769856095314, + -0.0031838512513786554, + -0.035056374967098236, + -0.010260529816150665, + 0.09309298545122147, + 0.020761745050549507, + -0.01590617559850216, + -0.028505541384220123, + 0.005404960364103317, + 0.009930895641446114, + -0.008732699789106846, + 0.022101212292909622, + 0.013174917548894882, + 0.04068632423877716, + 0.0022564271930605173, + 0.02037455514073372, + 0.030096158385276794, + 0.010072167031466961, + 0.007801351137459278, + -0.0021700942888855934, + -0.013677217997610569, + 0.007157779298722744, + 0.0049445186741650105, + 0.02465457282960415, + 0.006535136140882969, + 0.024738289415836334, + -0.0073723034001886845, + -0.008973385207355022, + 0.009177444502711296, + 0.0012694854522123933, + -0.0015147492522373796, + -0.033800624310970306, + -0.009135586209595203, + 0.011186646297574043, + 0.0005699931061826646, + -0.015644561499357224, + -0.0192653089761734, + -0.008230399340391159, + 0.006624084897339344, + 0.014932968653738499, + -0.003042579395696521, + 0.002867297502234578, + 0.01890951208770275, + 0.028317179530858994, + -0.0067391954362392426, + -0.016743343323469162, + 0.024215059354901314, + -0.04855569452047348, + -0.03516101837158203, + 0.004586106166243553, + -0.006948487367480993, + 0.004777085036039352, + 0.009679744951426983, + 0.022247716784477234, + 0.026893993839621544, + 0.01678520068526268, + 0.023796476423740387, + -0.023084884509444237, + -0.008805952034890652, + 0.013855116441845894, + -0.023168601095676422, + -0.014619030989706516, + -0.009590796194970608, + 0.03943057358264923, + -0.012599365785717964, + -0.015048079192638397, + -0.0070426687598228455, + 0.02660098671913147, + 0.0001397186133544892, + 0.01876300945878029, + 0.0031681545078754425, + -0.027542799711227417, + 0.02553359791636467, + 0.02496851049363613, + -0.002238114131614566, + -0.0044160569086670876, + 0.011845915578305721, + 0.01659683883190155, + -0.013624895364046097, + 0.014441133476793766, + 0.0028516005259007215, + -0.006597923580557108, + -0.018135134130716324, + -0.0031812351662665606, + 0.020029224455356598, + 0.009486149996519089, + -0.01420044805854559, + -0.028652045875787735, + -0.012515649199485779, + 0.0003201510407961905, + -0.019547853618860245, + -0.0035030213184654713, + -0.013248169794678688, + 0.016293365508317947, + -0.0029353173449635506, + -0.031330980360507965, + -0.01675380766391754, + 0.021640770137310028, + 0.011678481474518776, + 0.008188541047275066, + -0.009146051481366158, + -0.04855569452047348, + 0.038991060107946396, + 0.010495983064174652, + 0.020803604274988174, + 0.005677039735019207, + -0.017360754311084747, + -0.004470995627343655, + -0.03225186467170715, + 0.014744606800377369, + 0.02157798409461975, + -0.010553538799285889, + -0.026140544563531876, + -0.01534108817577362, + 0.028840407729148865, + 0.04236065596342087, + 0.000828010612167418, + 0.030598459765315056, + -0.005802614614367485, + -0.03308903053402901, + -0.0002222090115537867, + 0.0008613665122538805, + 0.04298853129148483, + 0.016335224732756615, + 0.01643986999988556, + 0.021891921758651733, + 0.06814540922641754, + 0.010495983064174652, + 0.008628053590655327, + 0.024215059354901314, + 0.0022498867474496365, + -0.03890734165906906, + -0.022750016301870346, + -0.00865421537309885, + 0.0222895760089159, + -0.004478844348341227, + 0.014116731472313404, + 0.03124726377427578, + 0.0005693390849046409, + 0.003408839926123619, + 0.013771399855613708, + 0.018836261704564095, + 0.008413529954850674, + -0.011301756836473942, + 0.030096158385276794, + 0.008057733997702599, + -0.0012472482630982995, + -0.006064229644834995, + 0.00989426951855421, + 0.011542442254722118, + -0.0002357802732149139, + -0.011668017134070396, + -0.0019032472046092153, + -0.0026449249126017094, + -0.00222895760089159, + 0.01586431823670864, + 0.028066027909517288, + -0.01657591015100479, + -0.029363637790083885, + 0.02408948540687561, + 0.03409363329410553, + 0.004405592102557421, + 0.00046109597315080464, + -0.0014715829165652394, + -0.03593539819121361, + 0.02892412431538105, + -0.01803048700094223, + 0.031163547188043594, + -0.0027286417316645384, + 0.0031367605552077293, + -0.016994493082165718, + 0.0007639150135219097, + 0.018689757212996483, + -0.06199222803115845, + 0.00018100469605997205, + 0.022080283612012863, + 0.007121153175830841, + 0.005326475948095322, + -0.036144692450761795, + -0.016324758529663086, + -0.0020798370242118835, + -0.006132249254733324, + -0.008256561122834682, + 0.01159476488828659, + 0.017036352306604385, + -0.007885067723691463, + 0.020238514989614487, + -0.002194947563111782, + -0.00571366585791111, + 0.027270719408988953, + 0.04225601255893707, + 0.0018273788737133145, + 0.018145598471164703, + -0.02109661139547825, + 0.026349835097789764, + -0.018333960324525833 + ] + }, + { + "HotelId": "28", + "HotelName": "City Center Summer Wind Resort", + "Description": "Eco-friendly from our gardens to table, with a rooftop serenity pool and outdoor seating to take in the sunset. Just steps away from the Convention Center. Located in the heart of downtown with modern rooms with stunning city views, 24-7 dining options, free WiFi and easy valet parking.", + "Description_fr": "Respectueux de l'environnement des jardins Ć  la table, avec piscine de sĆ©rĆ©nitĆ© sur le toit et terrasse pour admirer le coucher du soleil. Pas du Centre des CongrĆØs. SituĆ© au cœur du centre-ville avec des chambres modernes avec vue imprenable sur la ville, 24-7 restaurants, WiFi gratuit et parking avec voiturier facile.", + "Category": "Luxury", + "Tags": [ + "restaurant", + "view", + "concierge" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2017-08-07T00:00:00Z", + "Rating": 4.9, + "Address": { + "StreetAddress": "1288 Pear Ave", + "City": "Mountain View", + "StateProvince": "CA ", + "PostalCode": "94043", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.075577, + 37.415588 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 59.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "suite", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 135.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker", + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 130.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.01150529645383358, + -0.050129394978284836, + 0.07380930334329605, + 0.04521339014172554, + 0.004333238583058119, + -0.01696367748081684, + -0.006358493585139513, + 0.0030782725661993027, + 0.012659288011491299, + -0.024718500673770905, + 0.018325386568903923, + -0.0004525810945779085, + 0.0041139801032841206, + -0.012370790354907513, + -0.009162693284451962, + 0.025433974340558052, + -0.05312977358698845, + -0.011770714074373245, + 0.01456337422132492, + 0.05239121988415718, + -0.0006357772508636117, + -0.0012607357930392027, + 0.011591846123337746, + -0.013040104880928993, + -0.00410821009427309, + 0.06028452143073082, + -0.03485054522752762, + 0.023345250636339188, + 0.014909571968019009, + 0.001045804936438799, + -0.007154747843742371, + -0.02260669507086277, + -0.01931781880557537, + -0.01931781880557537, + 0.013824819587171078, + -0.0028474743012338877, + 0.02430306375026703, + -0.01255542878061533, + 0.026911083608865738, + -0.017032915726304054, + -0.016594398766756058, + 0.04530571028590202, + 0.03341959789395332, + -0.003914916422218084, + 0.03245024383068085, + -0.008522228337824345, + -0.019133180379867554, + 0.04530571028590202, + 0.041705258190631866, + 0.005380486138164997, + -0.058576613664627075, + -0.02621868997812271, + 0.027903517708182335, + -0.045882705599069595, + -0.027903517708182335, + -0.007956772111356258, + -0.028457432985305786, + -0.024210743606090546, + 0.005305476486682892, + 0.02566477283835411, + 0.03471206873655319, + -0.01350170187652111, + 0.01442489493638277, + 0.09074989706277847, + -0.038474079221487045, + 0.05469920113682747, + -0.017667612060904503, + 0.015105750411748886, + -0.004318813793361187, + -0.01802534982562065, + 0.017609912902116776, + 0.059084370732307434, + -0.02988838218152523, + -0.031642451882362366, + 0.03148088976740837, + -0.01967555657029152, + 0.004890039563179016, + 0.0012903069145977497, + -0.006098845507949591, + -0.05123722925782204, + -0.017125235870480537, + -0.026841845363378525, + -0.017783010378479958, + 0.08950358629226685, + 0.006883560214191675, + -0.0378740057349205, + -0.018071508035063744, + -0.041659098118543625, + -0.04092054441571236, + 0.12010744959115982, + 0.030996214598417282, + 0.008533768355846405, + 0.007195137906819582, + -0.027095723897218704, + -0.0028489166870713234, + 0.051468025892972946, + 0.00774328364059329, + 0.014736472629010677, + -0.02118728682398796, + 0.055160798132419586, + 0.05525311827659607, + -0.1062595471739769, + 0.02404918521642685, + -0.020344872027635574, + -0.03840484097599983, + -0.021533483639359474, + 0.008129870519042015, + -0.009514660574495792, + 0.0671161487698555, + -0.014332575723528862, + -0.10856752842664719, + -0.013963298872113228, + -0.05216041952371597, + -0.010362844914197922, + 0.02402610518038273, + -0.005692063830792904, + -0.024233823642134666, + -0.015036510303616524, + -0.045074913650751114, + -0.0013386303326115012, + 0.019352439790964127, + 0.04066666588187218, + -0.0003063487238250673, + -0.01350170187652111, + -0.020644910633563995, + -0.021983539685606956, + -0.027441920712590218, + 0.018013808876276016, + -0.034550510346889496, + -0.031642451882362366, + -0.029496025294065475, + -0.03037305921316147, + 0.008233729749917984, + -0.02381838671863079, + 0.01628282107412815, + 0.00693548982962966, + -0.027834277600049973, + 0.021371925249695778, + -0.001987750642001629, + -0.047221336513757706, + 0.04108210280537605, + 0.018325386568903923, + -0.0053429813124239445, + -0.007800983265042305, + -0.027118802070617676, + -0.02508777752518654, + 0.03018842078745365, + 0.031088534742593765, + -0.026657206937670708, + 0.10727506130933762, + -0.00682009058073163, + 0.021487323567271233, + -0.024995459243655205, + -0.00878764595836401, + 0.03221944719552994, + -0.03591221943497658, + 0.005048713181167841, + 0.010005107149481773, + -0.0007187204319052398, + 0.06559288501739502, + -0.012001512572169304, + -0.010945610702037811, + -0.008377979509532452, + -0.031850170344114304, + 0.02354142814874649, + -0.009237702935934067, + -0.008920354768633842, + 0.03408891335129738, + -0.05206810310482979, + 0.004777525085955858, + 0.04332084581255913, + 0.020794928073883057, + 0.05123722925782204, + 0.07219371199607849, + 0.029242146760225296, + 0.01709061674773693, + -0.018071508035063744, + 0.07196291536092758, + 0.023276010528206825, + -0.006104615516960621, + 0.01630590111017227, + -0.026103289797902107, + 0.052529700100421906, + -0.006485432852059603, + -0.006196935195475817, + 0.06868558377027512, + -0.02668028697371483, + 0.03360423445701599, + -0.027603479102253914, + 0.015244229696691036, + -0.026657206937670708, + 0.01575198583304882, + -0.011424517259001732, + -0.02589557133615017, + 0.006485432852059603, + 0.003620648756623268, + -0.05045251175761223, + 0.002245956100523472, + 0.03882027789950371, + -0.005954596679657698, + -0.024995459243655205, + 0.019329359754920006, + 0.03175785019993782, + -0.021429624408483505, + -0.0204025711864233, + -0.05548391863703728, + -0.02776503749191761, + -0.012601588852703571, + 0.0011871688766404986, + -0.018925461918115616, + 0.03178092837333679, + 0.03461974859237671, + -0.016271281987428665, + 0.04574422910809517, + -0.011112939566373825, + -0.035081345587968826, + -0.026080209761857986, + 0.020691068843007088, + 0.06300794333219528, + 0.030857736244797707, + 0.005357406102120876, + 0.0002966119209304452, + 0.027095723897218704, + 0.03695081174373627, + 0.011361047625541687, + 0.027326522395014763, + -0.03173476830124855, + -0.05631479248404503, + 0.014771092683076859, + -0.020160233601927757, + -0.002518586814403534, + -0.021637342870235443, + -0.04602118581533432, + 0.0021363270934671164, + -0.030511537566781044, + 0.02619560994207859, + -0.04710593819618225, + -0.04071282595396042, + 0.006514282897114754, + 0.03095005452632904, + -0.008106791414320469, + -0.019363978877663612, + -0.016444381326436996, + 0.016340522095561028, + 0.02748808078467846, + -0.017286794260144234, + -0.0017511822516098619, + -0.022745175287127495, + 0.019133180379867554, + -0.004232264123857021, + -0.04066666588187218, + 0.0022661511320620775, + -0.02617252990603447, + -0.03895875811576843, + 0.04952932149171829, + 0.01770223118364811, + 0.0009109321399591863, + -0.00410244008526206, + 0.009070374071598053, + -0.021879680454730988, + 0.05132954567670822, + 0.043228525668382645, + -0.02806507609784603, + -0.02827279455959797, + 0.026080209761857986, + -0.013420922681689262, + -0.02614944986999035, + -0.004621736239641905, + 0.0020887248683720827, + -0.020968027412891388, + -0.05003707483410835, + -0.010495553724467754, + -0.021429624408483505, + 0.019213959574699402, + 0.02078338898718357, + 0.0013494489248842, + -0.013974838890135288, + -0.008666477166116238, + 0.03443510830402374, + 0.03727392852306366, + -0.012947785668075085, + -0.02991146221756935, + 0.053314413875341415, + -0.04043586552143097, + -0.010224365629255772, + 0.028503593057394028, + -0.0059892162680625916, + 0.0444517582654953, + 0.025272415950894356, + -0.00835489947348833, + -0.01649053953588009, + -0.0009780079126358032, + 0.007062428630888462, + -0.02672644518315792, + -0.045097991824150085, + 0.028480513021349907, + 0.02374914661049843, + -0.04029738903045654, + 0.025826333090662956, + -0.033488836139440536, + 0.02642640843987465, + 0.004226494114845991, + -0.030488459393382072, + -0.021071886643767357, + -0.009099223650991917, + 0.013028565794229507, + 0.010391694493591785, + -0.0021334420889616013, + 0.01091099064797163, + 0.0017353148432448506, + -0.03593529760837555, + 0.010766741819679737, + 0.01268236804753542, + -0.015313468873500824, + 0.0038889518473297358, + 0.01861388422548771, + 0.013801739551126957, + 0.05317593365907669, + 0.0006437109550461173, + -0.002726305276155472, + 0.033488836139440536, + 0.02508777752518654, + 0.029242146760225296, + -0.021660422906279564, + 0.015267308801412582, + -0.01347862184047699, + 0.011147558689117432, + 0.03275028243660927, + 0.020552590489387512, + -0.041151341050863266, + 0.033442676067352295, + -0.02262977510690689, + 0.027718879282474518, + -0.010737892240285873, + -0.019121641293168068, + -0.018625425174832344, + -0.032681044191122055, + 0.004232264123857021, + 0.025295495986938477, + 0.032634884119033813, + -0.031365491449832916, + -0.06753158569335938, + -0.01706753671169281, + -0.023022131994366646, + 0.0006732819601893425, + -0.05446840450167656, + -0.01480571273714304, + 0.013674800284206867, + 0.046390462666749954, + 0.028688231483101845, + 0.0026916854549199343, + -0.004163024947047234, + -0.014932651072740555, + -0.007529795169830322, + 0.048283010721206665, + 0.03281952068209648, + 0.0010140701197087765, + 0.0066123721189796925, + -0.03018842078745365, + 0.012197691015899181, + 0.017102155834436417, + 0.018302306532859802, + 0.028618991374969482, + -0.0026916854549199343, + 0.05553007498383522, + 0.03203480690717697, + -0.051468025892972946, + 0.012959325686097145, + -0.0010833096457645297, + -0.025734012946486473, + 0.007241297513246536, + -0.0029917233623564243, + 0.004523647017776966, + 0.013017025776207447, + -0.045836545526981354, + 0.09074989706277847, + 0.03835868090391159, + 0.05017555505037308, + -0.0012607357930392027, + -0.0431823655962944, + -0.003505249507725239, + -0.012913166545331478, + -0.013594021089375019, + -0.016779037192463875, + 0.03360423445701599, + 0.007985621690750122, + -0.0374816469848156, + 0.006491202861070633, + -0.009676219895482063, + 0.020264092832803726, + 0.02591865137219429, + -0.04128982126712799, + -0.02882670983672142, + -0.018290767446160316, + 0.001156155369244516, + -0.0005387698183767498, + 0.026357168331742287, + -0.0115283764898777, + 0.0008806398254819214, + -0.0019661132246255875, + 0.023299090564250946, + -0.027441920712590218, + 0.011989972554147243, + 0.00926655251532793, + -0.0062950244173407555, + -0.05137570574879646, + 0.02129114605486393, + -0.07002421468496323, + -0.012901626527309418, + -0.020160233601927757, + -0.028711311519145966, + -0.07233219593763351, + -0.004050510469824076, + 0.008141410537064075, + -0.040043510496616364, + 0.0001640831760596484, + -0.021487323567271233, + -0.06023836135864258, + -0.002362797735258937, + 0.016929056495428085, + 0.016952136531472206, + 0.04438251629471779, + -0.00927809253334999, + 0.012797767296433449, + -0.03385811299085617, + 0.011724554933607578, + 0.03360423445701599, + -0.019387058913707733, + -0.0325656421482563, + -0.013986377976834774, + 0.01045516412705183, + -0.04412863776087761, + 0.01742527261376381, + 0.05059099197387695, + -0.034296631813049316, + 0.04392091929912567, + -0.02343756891787052, + -0.0332811176776886, + 0.0012852582149207592, + 0.01560196653008461, + -0.037181608378887177, + -0.052252739667892456, + -0.04634430259466171, + -0.0058536226861178875, + -0.027695799246430397, + 0.013847899623215199, + 0.07362466305494308, + 0.04916004464030266, + -0.007835603319108486, + -0.02007945440709591, + 0.013074724934995174, + 0.011580306105315685, + 0.03251948207616806, + -0.021706582978367805, + -0.01346708182245493, + 0.02991146221756935, + 0.028157396242022514, + -0.032150205224752426, + -0.015567346476018429, + 0.003637958550825715, + 0.04126673936843872, + 0.011666854843497276, + 0.0038024024106562138, + 0.017159854993224144, + -0.004439982585608959, + -0.0634695366024971, + -0.008539537899196148, + 0.044082481414079666, + 0.043482404202222824, + -0.015140370465815067, + -0.05456072464585304, + -0.04315928742289543, + 0.04749829322099686, + -0.020090993493795395, + 0.022999053820967674, + -0.0450056716799736, + 0.027441920712590218, + 0.051698826253414154, + 0.01104946993291378, + 0.022560536861419678, + -0.024764660745859146, + 0.005449725314974785, + -0.04763677343726158, + -0.021602723747491837, + 0.025572454556822777, + -0.025226255878806114, + -0.04225917160511017, + -0.016744418069720268, + -0.07025501132011414, + 0.03360423445701599, + 0.006837400142103434, + 0.01959477737545967, + -0.04018198698759079, + -0.009589670225977898, + 0.01078405138105154, + -0.005461265332996845, + -0.06762390583753586, + -0.030742336064577103, + 0.023587588220834732, + 0.02432614378631115, + 0.00005026174403610639, + -0.01583276502788067, + -0.02037949115037918, + -0.03039613924920559, + 0.04939084127545357, + 0.04962163791060448, + -0.02354142814874649, + 0.0026988978497684, + 0.04285924881696701, + -0.0019127411069348454, + -0.01615588180720806, + -0.023587588220834732, + 0.006566212512552738, + 0.038243282586336136, + 0.04634430259466171, + 0.015867384150624275, + -0.0010104639222845435, + -0.028111236169934273, + -0.016548240557312965, + -0.01653669960796833, + 0.022191258147358894, + 0.007841372862458229, + 0.020114073529839516, + 0.011539916507899761, + -0.0016660754336044192, + 0.00927809253334999, + -0.033211879432201385, + -0.038474079221487045, + -0.019179340451955795, + 0.0018535989802330732, + -0.021752741187810898, + -0.013097804971039295, + -0.0011806776747107506, + 0.020448731258511543, + 0.008233729749917984, + 0.0522988997399807, + -0.0019891930278390646, + -0.021937381476163864, + 0.0343889519572258, + -0.04546726867556572, + 0.05026787519454956, + -0.034804388880729675, + 0.008326049894094467, + -0.04228225350379944, + -0.029842223972082138, + -0.018579265102744102, + -0.04966779798269272, + -0.005141032859683037, + 0.00739708635956049, + 0.004191874526441097, + 0.014967271126806736, + -0.0064796628430485725, + -0.025064697489142418, + -0.016779037192463875, + -0.022237418219447136, + -0.002155079273506999, + 0.005602629389613867, + 0.016675177961587906, + 0.027303442358970642, + 0.030003782361745834, + -0.0032686812337487936, + 0.04463639482855797, + 0.013651721179485321, + -0.002561861416324973, + 0.019075481221079826, + 0.034273549914360046, + 0.021152665838599205, + 0.0872417688369751, + -0.01861388422548771, + -0.006779700517654419, + 0.012728527188301086, + 0.02561861462891102, + 0.002716207876801491, + -0.05469920113682747, + -0.023910706862807274, + -0.007489405572414398, + 0.010409004054963589, + -0.007368236314505339, + -0.05349905043840408, + -0.006416193209588528, + 0.016190502792596817, + -0.028618991374969482, + 0.054329924285411835, + 0.03778168559074402, + -0.033696554601192474, + 0.00042337068589404225, + 0.043528564274311066, + 0.009012674912810326, + 0.016525160521268845, + 0.010905221104621887, + 0.031388573348522186, + 0.02621868997812271, + -0.0069297198206186295, + -0.018544645980000496, + 0.016502080485224724, + -0.011476446874439716, + -0.010847521014511585, + 0.0039033766370266676, + -0.03750472888350487, + -0.004771755542606115, + -0.024787740781903267, + -0.014574914239346981, + -0.0338350348174572, + -0.02614944986999035, + -0.009514660574495792, + 0.008464528247714043, + -0.010287835262715816, + -0.003891836619004607, + -0.042166855186223984, + -0.042974647134542465, + -0.007800983265042305, + -0.04447483643889427, + 0.014228716492652893, + 0.00621424475684762, + -0.01610972359776497, + 0.01823306828737259, + -0.049852438271045685, + -0.028480513021349907, + 0.003736047772690654, + -0.004460177384316921, + 0.0063354140147566795, + 0.006254634354263544, + 0.03593529760837555, + 0.002795544685795903, + 0.016121262684464455, + -0.00996471755206585, + 0.011828414164483547, + -0.037989404052495956, + -0.03831252083182335, + -0.04735981673002243, + 0.020171772688627243, + -0.0068143205717206, + 0.011095629073679447, + 0.0019819806329905987, + 0.004295733757317066, + 0.042997729033231735, + -0.001002530218102038, + 0.015763524919748306, + -0.03358115628361702, + -0.0251570176333189, + 0.015440408140420914, + -0.02326447144150734, + -0.005449725314974785, + -0.00021042315347585827, + 0.003323495853692293, + 0.030280740931630135, + 0.019179340451955795, + -0.017413733527064323, + 0.000661381462123245, + 0.010997540317475796, + 0.00620847474783659, + -0.019502459093928337, + 0.014228716492652893, + -0.001637225621379912, + -0.0251570176333189, + 0.02407226525247097, + -0.01452875416725874, + -0.008683786727488041, + -0.0027811198960989714, + 0.07182443886995316, + -0.002044007647782564, + -0.00037432601675391197, + -0.008729946799576283, + -0.012474649585783482, + -0.0053631761111319065, + 0.04477487504482269, + 0.0017699346644803882, + 0.016052022576332092, + -0.05802270025014877, + 0.015509647317230701, + 0.025849413126707077, + 0.04622890427708626, + -0.017229095101356506, + 0.014136397279798985, + 0.03916647657752037, + 0.03330419957637787, + 0.01908702217042446, + -0.0066123721189796925, + -0.0075759547762572765, + 0.0115283764898777, + -0.006693151313811541, + 0.009681989438831806, + -0.035519860684871674, + 0.01742527261376381, + 0.016744418069720268, + -0.03208096697926521, + 0.032173287123441696, + 0.03655845299363136, + 0.01058210339397192, + -0.0196524765342474, + 0.017794551327824593, + -0.009681989438831806, + 0.017286794260144234, + 0.010530173778533936, + 0.0009578130557201803, + -0.02882670983672142, + -0.0030984675977379084, + -0.0059892162680625916, + -0.00006991566624492407, + -0.06646991521120071, + 0.008222190663218498, + -0.007241297513246536, + 0.027557319030165672, + -0.00470251590013504, + -0.0169175174087286, + 0.004725595470517874, + 0.012266931124031544, + -0.022491296753287315, + 0.02192584052681923, + -0.010634033009409904, + 0.004188989754766226, + -0.01337476260960102, + -0.021579643711447716, + -0.011989972554147243, + 0.0013602676335722208, + -0.0018391741905361414, + -0.02882670983672142, + 0.0021565218921750784, + -0.0066123721189796925, + -0.03330419957637787, + 0.011713014915585518, + 0.04142829775810242, + -0.044544074684381485, + -0.015094210393726826, + -0.024464622139930725, + 0.027118802070617676, + 0.012797767296433449, + -0.029449865221977234, + -0.03762012720108032, + 0.02434922382235527, + 0.000021355606804718263, + -0.010207056067883968, + -0.0018478290876373649, + 0.01044362410902977, + 0.028503593057394028, + -0.006318103987723589, + -0.02014869451522827, + 0.018048427999019623, + -0.038751039654016495, + -0.014228716492652893, + -0.02801891602575779, + -0.002880651503801346, + 0.004719825927168131, + -0.041359059512615204, + 0.009774308651685715, + -0.05077563226222992, + -0.001536251395009458, + -0.007212447468191385, + -0.07362466305494308, + 0.025226255878806114, + -0.00680855056270957, + 0.007685584016144276, + -0.0070451186038553715, + -0.02331063151359558, + 0.004405362997204065, + -0.059869084507226944, + 0.03404275327920914, + 0.022041240707039833, + -0.0030321129597723484, + 0.027372680604457855, + 0.008695326745510101, + 0.007449015974998474, + -0.008326049894094467, + 0.0030321129597723484, + 0.030026862397789955, + 0.0019819806329905987, + 0.05719182267785072, + 0.04276692867279053, + -0.029449865221977234, + 0.006606602109968662, + 0.007766363676637411, + 0.02437230385839939, + 0.013386302627623081, + -0.014759552665054798, + 0.01470185350626707, + -0.01230155024677515, + 0.0018651389982551336, + -0.030580777674913406, + 0.016271281987428665, + 0.013536321930587292, + 0.04336700588464737, + -0.017921490594744682, + -0.0019891930278390646, + 0.014828791841864586, + 0.012151531875133514, + -0.018198447301983833, + 0.015325008891522884, + 0.013293983414769173, + 0.00001733241333568003, + -0.010322455316781998, + -0.008406829088926315, + -0.011966893449425697, + 0.010685962624847889, + -0.009941637516021729, + 0.01797918975353241, + 0.0311808530241251, + -0.008274120278656483, + 0.010299375280737877, + 0.005126607604324818, + 0.013570941053330898, + -0.01117640919983387, + 0.01747143268585205, + 0.018567726016044617, + -0.00811833143234253, + 0.03496594727039337, + 0.03893567621707916, + -0.04253613203763962, + -0.002482524374499917, + 0.02273363433778286, + -0.03226560726761818, + -0.016629019752144814, + 0.03231176361441612, + -0.03591221943497658, + -0.028942110016942024, + -0.020702609792351723, + -0.012936245650053024, + 0.003614878747612238, + -0.013236284255981445, + -0.028757471591234207, + 0.03097313456237316, + -0.033973515033721924, + 0.008106791414320469, + -0.018163828179240227, + 0.017667612060904503, + -0.027441920712590218, + 0.004422673024237156, + -0.011361047625541687, + -0.008170261047780514, + -0.014436434954404831, + -0.045859627425670624, + -0.010893681086599827, + -0.0032282916363328695, + -0.006571982055902481, + 0.02561861462891102, + -0.0005441791727207601, + -0.0010443624341860414, + 0.01944475807249546, + 0.04673666134476662, + 0.005256431642919779, + 0.015244229696691036, + 0.04232841357588768, + -0.004509222228080034, + -0.03780476376414299, + -0.01721755415201187, + -0.015636585652828217, + -0.04359780251979828, + 0.023206772282719612, + -0.0192947406321764, + -0.0098262382671237, + -0.01770223118364811, + 0.0007288178312592208, + 0.011603386141359806, + 0.03358115628361702, + -0.005778613034635782, + 0.010178206488490105, + 0.003658153349533677, + 0.003637958550825715, + -0.006860480178147554, + 0.014494135044515133, + -0.02880363166332245, + -0.013224744237959385, + -0.029011350125074387, + 0.017563752830028534, + -0.029011350125074387, + 0.0028921915218234062, + 0.00848183874040842, + -0.014228716492652893, + -0.006716231349855661, + 0.027164962142705917, + 0.0002526159805711359, + -0.05636094883084297, + -0.014390275813639164, + -0.03489670529961586, + 0.010691732168197632, + 0.03203480690717697, + 0.013801739551126957, + -0.006139235571026802, + 0.02099110744893551, + 0.00682009058073163, + -0.05599167197942734, + 0.0290805883705616, + -0.002977298339828849, + 0.009820468723773956, + 0.006023836322128773, + -0.0036927731707692146, + 0.014182557351887226, + -0.013074724934995174, + 0.008176030591130257, + -0.0015521186869591475, + -0.005161227658390999, + 0.010801361873745918, + 0.03965115174651146, + 0.04814453050494194, + -0.01666363887488842, + 0.0013754137326031923, + 0.03999735042452812, + 0.01455183420330286, + 0.017759930342435837, + -0.0015319238882511854, + 0.0062950244173407555, + -0.01374404039233923, + -0.011943813413381577, + -0.03143473342061043, + -0.005490114912390709, + -0.0072701470926404, + -0.0005636527785100043, + -0.0380355641245842, + 0.013455541804432869, + 0.0005290330154821277, + -0.03491978719830513, + 0.0004904464585706592, + -0.0015723136020824313, + -0.005426645744591951, + 0.029265226796269417, + 0.004647701047360897, + 0.08641089498996735, + 0.0024536745622754097, + -0.012659288011491299, + -0.032657962292432785, + -0.015440408140420914, + 0.0010205613216385245, + 0.010518633760511875, + -0.00529682170599699, + -0.008516457863152027, + -0.023956865072250366, + -0.009208853356540203, + -0.021614262834191322, + 0.018267687410116196, + -0.018706204369664192, + 0.0003094139974564314, + 0.041659098118543625, + -0.026795685291290283, + -0.013674800284206867, + -0.005426645744591951, + 0.0450056716799736, + -0.003600453957915306, + 0.039535753428936005, + -0.0246031004935503, + -0.01562504656612873, + -0.033719636499881744, + -0.02407226525247097, + 0.029842223972082138, + -0.010507093742489815, + -0.00445152260363102, + 0.01982557587325573, + 0.03224252536892891, + 0.009445421397686005, + -0.015290388837456703, + -0.018186908215284348, + -0.03339651599526405, + 0.027118802070617676, + 0.0492062009871006, + 0.01045516412705183, + -0.0033292658627033234, + -0.05529927834868431, + -0.005943056661635637, + -0.007674044463783503, + 0.014251796528697014, + 0.0013234841171652079, + 0.016825197264552116, + 0.014967271126806736, + 0.0192947406321764, + -0.013790199533104897, + 0.012878546491265297, + 0.02508777752518654, + -0.009076143614947796, + 0.007800983265042305, + 0.033742714673280716, + -0.001065278542228043, + 0.0036264187656342983, + -0.019860194995999336, + 0.016375141218304634, + -0.0230567529797554, + -0.006127695553004742, + -0.01827922649681568, + 0.050406355410814285, + -0.014471055008471012, + -0.03281952068209648, + 0.04237457364797592, + -0.0016112608136609197, + 0.015544267371296883, + 0.060146041214466095, + 0.000039533228118671104, + -0.008908815681934357, + 0.00016552567831240594, + -0.016398221254348755, + -0.025272415950894356, + 0.03757396712899208, + 0.0486522875726223, + -0.008649167604744434, + -0.007800983265042305, + -0.0031792467925697565, + -0.004618851467967033, + 0.006514282897114754, + -0.0230567529797554, + 0.024718500673770905, + -0.00008114003867376596, + 0.048790764063596725, + 0.00667584128677845, + 0.019906355068087578, + -0.012740067206323147, + 0.0009332906920462847, + -0.017159854993224144, + 0.0006530871032737195, + -0.004255344159901142, + -0.014032538048923016, + -0.017771471291780472, + 0.03208096697926521, + -0.013178584165871143, + -0.04498259350657463, + 0.03512750566005707, + 0.018671585246920586, + 0.0018059968715533614, + 0.003678348381072283, + -0.025710932910442352, + -0.016675177961587906, + 0.004062050487846136, + -0.0049217743799090385, + 0.0033927352633327246, + 0.02591865137219429, + 0.015740444883704185, + 0.024556942284107208, + 0.022825954481959343, + 0.022156639024615288, + 0.01590200513601303, + -0.04285924881696701, + 0.055945511907339096, + 0.005628594197332859, + 0.01851002499461174, + 0.02288365364074707, + -0.00714897783473134, + 0.0013097805203869939, + 0.004344778601080179, + -0.00007762396853649989, + -0.004489027429372072, + 0.006773930974304676, + -0.03233484551310539, + -0.01670979894697666, + 0.01742527261376381, + 0.04472871497273445, + -0.028780551627278328, + -0.00585939222946763, + 0.01668671891093254, + 0.009312712587416172, + -0.031573209911584854, + 0.009664679877460003, + -0.024164583534002304, + 0.01387097965925932, + 0.013328603468835354, + 0.008868425153195858, + -0.012232311069965363, + 0.028942110016942024, + -0.02197200059890747, + 0.019479379057884216, + -0.032011728733778, + 0.018186908215284348, + 0.0196524765342474, + -0.01891392283141613, + 0.04576730728149414, + 0.009601210243999958, + 0.01676749810576439, + 0.011863034218549728, + 0.004636161495000124, + -0.02619560994207859, + -0.043528564274311066, + 0.013086264953017235, + -0.039235714823007584, + -0.02212201990187168, + -0.04126673936843872, + -0.015128830447793007, + -0.0016545355319976807, + 0.034296631813049316, + 0.006023836322128773, + 0.010807131417095661, + -0.000544539769180119, + -0.0190177820622921, + -0.03224252536892891, + 0.0023094257339835167, + 0.02938062697649002, + 0.04133598133921623, + 0.0007998604560270905, + 0.017736850306391716, + -0.0293575469404459, + 0.01984865590929985, + -0.012716987170279026, + 0.0031359721906483173, + 0.05137570574879646, + -0.01914472132921219, + -0.010039727203547955, + -0.004139944911003113, + 0.004716940689831972, + -0.0036898881662636995, + -0.019363978877663612, + -0.0015391362830996513, + -0.006254634354263544, + -0.023102913051843643, + 0.009745459072291851, + 0.027972755953669548, + -0.01732141338288784, + 0.02458002232015133, + -0.020748769864439964, + 0.021498864516615868, + -0.0009931540116667747, + -0.0032917610369622707, + -0.003738932777196169, + 0.015694286674261093, + 0.007939462549984455, + 0.01704445667564869, + -0.014159477315843105, + -0.02668028697371483, + 0.030834656208753586, + 0.00019581794913392514, + -0.017667612060904503, + 0.0021002646535634995, + 0.015325008891522884, + -0.0096473703160882, + 0.016086643561720848, + -0.0024738695938140154, + -0.008199110627174377, + -0.0032859910279512405, + 0.0011388454586267471, + -0.020160233601927757, + -0.002362797735258937, + -0.004991013556718826, + 0.0022834609262645245, + -0.012867006473243237, + -0.0006350559997372329, + -0.006041145883500576, + -0.000998924020677805, + -0.005573779344558716, + 0.026334088295698166, + 0.01559042651206255, + -0.03122701309621334, + -0.032357923686504364, + -0.02065644972026348, + -0.013801739551126957, + 0.015174989588558674, + -0.004895809572190046, + -0.004483257420361042, + -0.004261114168912172, + 0.014759552665054798, + -0.007633654400706291, + 0.017413733527064323, + -0.012163071893155575, + 0.008724176324903965, + -0.03406583145260811, + 0.03173476830124855, + 0.046136584132909775, + 0.0062661743722856045, + 0.013155504129827023, + 0.01704445667564869, + -0.005994986277073622, + 0.015717366710305214, + -0.017886869609355927, + 0.013882518745958805, + -0.01336322259157896, + 0.03339651599526405, + -0.006872020196169615, + -0.033511918038129807, + -0.0063065639697015285, + -0.02880363166332245, + -0.0035658341366797686, + -0.01653669960796833, + -0.008372209034860134, + 0.016167422756552696, + -0.006952799391001463, + -0.032911840826272964, + 0.005994986277073622, + 0.016859818249940872, + 0.030073020607233047, + 0.003127317177131772, + -0.02801891602575779, + 0.009572360664606094, + -0.016802117228507996, + 0.0107955913990736, + 0.01931781880557537, + 0.017690692096948624, + 0.009583900682628155, + 0.008879965171217918, + -0.02831895463168621, + -0.008620317094027996, + 0.03270412236452103, + -0.03406583145260811, + -0.014355655759572983, + 0.007298997137695551, + 0.02561861462891102, + -0.011095629073679447, + -0.01812920905649662, + 0.022941352799534798, + -0.018590804189443588, + -0.04874460771679878, + 0.02086416818201542, + 0.006975879427045584, + -0.04228225350379944, + -0.016271281987428665, + 0.025457054376602173, + 0.02052951045334339, + 0.011978432536125183, + 0.03378887474536896, + -0.010957150720059872, + 0.007968312129378319, + -0.0314578115940094, + 0.020321791991591454, + 0.008031781762838364, + -0.033165719360113144, + 0.021152665838599205, + -0.028480513021349907, + -0.014147937297821045, + -0.025549374520778656, + 0.0133516825735569, + 0.0020223702304065228, + 0.005484345369040966, + -0.001764164655469358, + -0.025064697489142418, + 0.008545308373868465, + -0.0338350348174572, + -0.015417328104376793, + 0.006139235571026802, + -0.0001662469148868695, + -0.01625974103808403, + -0.006271944381296635, + 0.004517877008765936, + 0.005971906706690788, + 0.008037551306188107, + 0.056961026042699814, + -0.03011918067932129, + -0.003531214315444231, + -0.006889329757541418, + 0.011966893449425697, + -0.003611993743106723, + -0.005449725314974785, + -0.013928678818047047, + -0.023079833015799522, + 0.032011728733778, + 0.031111614778637886, + -0.02880363166332245, + -0.02078338898718357, + 0.017644532024860382, + -0.012370790354907513, + -0.03517366573214531, + 0.010362844914197922, + -0.006658531725406647, + 0.009110763669013977, + -0.013951758854091167, + -0.0003757685190066695, + -0.028088156133890152, + 0.015244229696691036, + -0.000404257676564157, + -0.000454384193290025, + -0.010235905647277832, + 0.004036085680127144, + -0.005420875735580921, + -0.0038774118293076754, + 0.019490918144583702, + -0.02014869451522827, + -0.0475444532930851, + 0.0036754633765667677, + -0.00045546606997959316, + -0.01878698356449604, + -0.022918272763490677, + -0.011101399548351765, + -0.022145099937915802, + -0.009889707900583744, + 0.017032915726304054, + -0.00456403661519289, + -0.0020685300696641207, + 0.017482973635196686, + 0.048790764063596725, + 0.010553252883255482, + -0.00128958560526371, + -0.04359780251979828, + 0.016525160521268845, + 0.014344115741550922, + -0.009468501433730125, + 0.01729833520948887, + -0.013282443396747112, + -0.020114073529839516, + 0.015094210393726826, + 0.01742527261376381, + -0.016052022576332092, + 0.00310135236941278, + -0.036373816430568695, + 0.008054861798882484, + -0.011205258779227734, + -0.004991013556718826, + -0.016571318730711937, + 0.016052022576332092, + 0.0054872301407158375, + 0.010033956728875637, + 0.014840331859886646, + -0.024718500673770905, + 0.036604613065719604, + -0.026911083608865738, + -0.03166553005576134, + 0.009970488026738167, + 0.005019863601773977, + -0.00821642018854618, + -0.055437758564949036, + 0.011089859530329704, + 0.030857736244797707, + -0.005097758024930954, + 0.008579927496612072, + -0.03812788426876068, + -0.011464906856417656, + -0.019790956750512123, + -0.011014849878847599, + -0.005718028638511896, + -0.008828035555779934, + -0.016571318730711937, + -0.019352439790964127, + 0.027903517708182335, + -0.004947739187628031, + 0.024672340601682663, + -0.02490313909947872, + -0.0014475382631644607, + 0.0010638360399752855, + 0.015451948158442974, + 0.004800605121999979, + 0.013697880320250988, + 0.001637225621379912, + 0.00925501249730587, + 0.003637958550825715, + 0.011909193359315395, + -0.03168860822916031, + 0.014044078066945076, + -0.002318080747500062, + -0.02961142547428608, + -0.01762145198881626, + 0.023529889062047005, + 0.009116534143686295, + 0.02751116082072258, + 0.03355807438492775, + 0.010732121765613556, + -0.022283578291535378, + -0.007806753274053335, + -0.0015376937808468938, + -0.007137438282370567, + 0.017159854993224144, + -0.01465569343417883, + 0.01969863660633564, + 0.029565265402197838, + -0.01759837195277214, + -0.01046670414507389, + 0.019583238288760185, + 0.004546727053821087, + -0.011886113323271275, + 0.007702894043177366, + -0.06471584737300873, + 0.002368567744269967, + 0.016052022576332092, + 0.012290011160075665, + -0.0032196366228163242, + 0.004163024947047234, + 0.017967648804187775, + 0.018013808876276016, + 0.013570941053330898, + 0.015278848819434643, + 0.000120267563033849, + -0.006127695553004742, + 0.03521982580423355, + 0.009081914089620113, + -0.003300416050478816, + -0.003923571668565273, + -0.008891505189239979, + 0.018983162939548492, + 0.039512671530246735, + -0.000717999180778861, + -0.00023386361135635525, + -0.0070739686489105225, + -0.009070374071598053, + 0.006416193209588528, + -0.015024971216917038, + 0.0005744714289903641, + 0.02852667309343815, + 0.007760593667626381, + -0.015451948158442974, + 0.006110385525971651, + 0.0015218264888972044, + 0.019075481221079826, + 0.005126607604324818, + -0.01729833520948887, + -0.054052967578172684, + -0.006600832100957632, + -0.03888951614499092, + -0.01876390352845192, + -0.022872114554047585, + 0.022272037342190742, + -0.010137815959751606, + -0.024672340601682663, + -0.003914916422218084, + -0.025780173018574715, + -0.03221944719552994, + 0.009595440700650215, + 0.012116911821067333, + 0.01767915114760399, + -0.012601588852703571, + 0.009076143614947796, + -0.03219636529684067, + -0.0002899403916671872, + 0.020437192171812057, + -0.013859439641237259, + -0.03039613924920559, + -0.012832386419177055, + 0.029657583683729172, + -0.012105371803045273, + -0.005213157273828983, + -0.00001506725402578013, + -0.011811104603111744, + 0.01995251514017582, + 0.0013350240187719464, + 0.04463639482855797, + -0.0022661511320620775, + 0.002688800450414419, + -0.0018983162008225918, + 0.036096855998039246, + 0.010801361873745918, + 0.015682745724916458, + 0.0272572822868824, + 0.028111236169934273, + 0.008522228337824345, + 0.014886491931974888, + -0.03942035511136055, + 0.010622492991387844, + -0.020471811294555664, + -0.013132425025105476, + 0.04161293804645538, + -0.02674952521920204, + -0.018417706713080406, + -0.016098182648420334, + -0.006716231349855661, + -0.003614878747612238, + 0.006375803612172604, + -0.009699299931526184, + 0.03542754426598549, + 0.020725689828395844, + -0.0016819427255541086, + -0.017182935029268265, + -0.016121262684464455, + 0.009687759913504124, + -0.005345866084098816, + -0.012647747993469238, + -0.030765416100621223, + 0.024741580709815025, + -0.015925085172057152, + 0.012336170300841331, + 0.031319331377744675, + 0.004737135488539934, + 0.013905598782002926, + 0.019363978877663612, + -0.023979945108294487, + 0.006318103987723589, + -0.003658153349533677, + -0.002670048037543893, + -0.007910612970590591, + 0.032173287123441696, + 0.025041617453098297, + -0.019237039610743523, + 0.0076798140071332455, + -0.017609912902116776, + -0.04452099651098251, + 0.038427919149398804, + -0.017783010378479958, + 0.010732121765613556, + 0.02536473609507084, + 0.03801248222589493, + -0.05257585644721985, + 0.035035185515880585, + -0.006843170151114464, + 0.023679908365011215, + -0.003917801659554243, + 0.012082291767001152, + -0.006543132476508617, + -0.011574535630643368, + -0.019502459093928337, + -0.020829549059271812, + -0.0033581156749278307, + -0.00003306456346763298, + 0.015809684991836548, + 0.009791619144380093, + -0.020968027412891388, + -0.004047625698149204, + 0.0046996306627988815, + 0.010530173778533936, + -0.01696367748081684, + -0.007622114848345518, + 0.02880363166332245, + 0.009918557479977608, + 0.03231176361441612, + 0.002545994007959962, + 0.023068292066454887, + -0.02728036232292652, + -0.034758228808641434, + -0.011932273395359516, + 0.0029181563295423985, + 0.003851447021588683, + 0.027326522395014763, + 0.022791333496570587, + 0.002716207876801491, + -0.022929813712835312, + 0.03178092837333679, + 0.00818180013448, + 0.0009823354193940759, + 0.006300794426351786, + 0.015336548909544945, + -0.049067724496126175, + -0.001787244458682835, + 0.0006101730396039784, + 0.047729093581438065, + -0.03203480690717697, + -0.012059212662279606, + 0.008291429840028286, + -0.02283749356865883, + 0.025480134412646294, + -0.006000756286084652, + 0.00773751363158226, + 0.04842148721218109, + 0.014517214149236679, + 0.013097804971039295, + -0.0022921159397810698, + -0.0014547506580129266, + -0.015024971216917038, + -0.016479000449180603, + -0.020310252904891968, + 0.02432614378631115, + 0.016698257997632027, + -0.015382708050310612, + -0.0006826581666246057, + 0.0002461247786413878, + 0.031827088445425034, + 0.022087398916482925, + 0.033488836139440536, + -0.004494797438383102, + 0.003655268345028162, + -0.03365039452910423, + 0.027880437672138214, + -0.03125009313225746 + ] + }, + { + "HotelId": "29", + "HotelName": "Treehouse Hotel", + "Description": "Near the beating heart of our vibrant downtown and bustling business district. Experience the warmth of our hotel. Enjoy free WiFi, local transportation and Milk & Cookies.", + "Description_fr": "SĆ©journez au cœur du centre-ville prĆØs du quartier des affaires. Vivez la chaleur de notre hĆ“tel. Profitez du WiFi gratuit, du transport local et du lait et des biscuits.", + "Category": "Budget", + "Tags": [ + "free wifi", + "coffee in lobby", + "free parking" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2017-05-25T00:00:00Z", + "Rating": 2.6, + "Address": { + "StreetAddress": "9585 SW Washington Square Rd", + "City": "Portland", + "StateProvince": "OR", + "PostalCode": "97223", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.782829, + 45.448959 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "tv" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 83.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker", + "tv" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "tv", + "tv" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 267.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "tv" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "coffee maker" + ] + } + ], + "embedding": [ + -0.003234762465581298, + -0.05199647694826126, + 0.031933143734931946, + 0.02972257137298584, + -0.038636937737464905, + -0.022550228983163834, + -0.046397965401411057, + 0.021985571831464767, + 0.027800334617495537, + -0.014296628534793854, + 0.018237212672829628, + 0.0379401296377182, + -0.024941010400652885, + -0.005211061332374811, + 0.011064870283007622, + 0.05901264026761055, + -0.04752727970480919, + 0.06650935858488083, + 0.049785908311605453, + 0.02062799222767353, + -0.005646567791700363, + -0.009148640558123589, + -0.009004473686218262, + -0.013888153247535229, + 0.023799682036042213, + 0.029794655740261078, + -0.04872867837548256, + -0.03998250514268875, + 0.035729557275772095, + -0.023006759583950043, + -0.06146349012851715, + -0.04142418131232262, + 0.01573830470442772, + 0.0060430290177464485, + 0.004174856003373861, + 0.006865986157208681, + -0.036906927824020386, + -0.00546635827049613, + 0.01691567525267601, + 0.0028608276043087244, + -0.03183703124523163, + -0.0009025497711263597, + 0.03950194641947746, + -0.011485358700156212, + -0.026959357783198357, + -0.0078811664134264, + -0.028401033952832222, + -0.0076589081436395645, + 0.014753160066902637, + 0.020483825355768204, + -0.022382033988833427, + -0.019666874781250954, + -0.04327433183789253, + -0.08707728236913681, + -0.04159237816929817, + 0.044427674263715744, + 0.014320656657218933, + -0.01731213554739952, + 0.04363475367426872, + -0.0018456467660143971, + 0.038949303328990936, + -0.018765827640891075, + 0.020832231268286705, + 0.030635632574558258, + -0.013840097934007645, + 0.03743554279208183, + -0.03053952194750309, + -0.0022481149062514305, + -0.03332676365971565, + -0.01197192445397377, + 0.05526427924633026, + 0.02150501310825348, + 0.006859979126602411, + 0.0007906696409918368, + -0.06271294504404068, + -0.020039308816194534, + -0.015425941906869411, + -0.04140015318989754, + -0.010500213131308556, + -0.011245079338550568, + -0.07333329319953918, + -0.025373512879014015, + 0.0006859228014945984, + 0.019690902903676033, + 0.005343214608728886, + -0.04502837359905243, + -0.033206623047590256, + -0.007388593629002571, + 0.0053702462464571, + 0.05021841078996658, + 0.042313214391469955, + 0.01696373149752617, + 0.001769057591445744, + -0.025781987234950066, + 0.010344031266868114, + 0.003396951127797365, + -0.015281775034964085, + -0.051323696970939636, + -0.0032647973857820034, + 0.017948877066373825, + 0.023271067067980766, + -0.0840497612953186, + 0.03253383934497833, + -0.002387777203693986, + 0.0017270087264478207, + -0.04334641620516777, + 0.02518128976225853, + -0.01487329974770546, + -0.0010872646234929562, + 0.005253110080957413, + -0.09587150812149048, + -0.0016789528308436275, + -0.024063989520072937, + 0.024268226698040962, + -0.005637557245790958, + 0.020075350999832153, + 0.009737325832247734, + -0.038997359573841095, + -0.014488852582871914, + -0.03299037367105484, + -0.032341618090867996, + 0.04512448608875275, + -0.020495839416980743, + -0.041520293802022934, + -0.036979012191295624, + -0.09193092584609985, + -0.022189809009432793, + 0.044716011732816696, + -0.01218216959387064, + 0.005550455767661333, + -0.023343151435256004, + -0.03508080169558525, + -0.010410108603537083, + -0.011581470258533955, + -0.011887826956808567, + 0.052621204406023026, + 0.013960237614810467, + 0.019318468868732452, + -0.013491692952811718, + -0.021997585892677307, + 0.020027294754981995, + -0.006025007925927639, + 0.010872646234929562, + -0.012386406771838665, + -0.05122758448123932, + -0.0157623328268528, + 0.011094904504716396, + -0.008968431502580643, + -0.012272274121642113, + 0.05699429288506508, + 0.01945062354207039, + 0.034023575484752655, + -0.016831576824188232, + -0.015281775034964085, + -0.03380732238292694, + -0.0054453336633741856, + 0.012422448955476284, + 0.030371325090527534, + -0.026743104681372643, + 0.049737852066755295, + -0.014092391356825829, + -0.0054723648354411125, + -0.020435769110918045, + -0.005583494435995817, + -0.014140446670353413, + 0.016987759619951248, + -0.006763867102563381, + 0.002100943587720394, + -0.07025771588087082, + -0.058003466576337814, + 0.02102445438504219, + 0.003234762465581298, + -0.021997585892677307, + 0.0758802592754364, + 0.01402030698955059, + 0.030683688819408417, + -0.010025661438703537, + -0.014416768215596676, + 0.0281367264688015, + 0.022033628076314926, + -0.006271294318139553, + -0.018669715151190758, + 0.058387912809848785, + -0.01280689612030983, + 0.010320003144443035, + 0.047262974083423615, + -0.014440796338021755, + 0.024268226698040962, + -0.005907871760427952, + -0.000155993941007182, + -0.026214491575956345, + -0.0034960664343088865, + -0.045196570456027985, + -0.011052856221795082, + -0.006499559618532658, + 0.030299242585897446, + -0.03339884802699089, + 0.0036162061151117086, + -0.008764193393290043, + 0.02318696863949299, + -0.03306245431303978, + -0.0040457057766616344, + 0.025037121027708054, + -0.006301329005509615, + -0.03837263211607933, + -0.03248578682541847, + 0.0005871829926036298, + 0.020796189084649086, + 0.010187849402427673, + 0.030323268845677376, + 0.006817929912358522, + 0.02390780858695507, + 0.04918520897626877, + 0.03051549382507801, + 0.011941890232264996, + 0.006523587740957737, + -0.039814308285713196, + 0.05781124159693718, + 0.01780470833182335, + 0.04711880534887314, + -0.0239919051527977, + 0.020363684743642807, + 0.02400391921401024, + 0.049785908311605453, + 0.04260155186057091, + 0.0552162230014801, + -0.029578402638435364, + -0.052236758172512054, + 0.0150294816121459, + -0.026526853442192078, + 0.022586271166801453, + -0.051756199449300766, + -0.022934675216674805, + -0.043130166828632355, + -0.02108452469110489, + 0.026743104681372643, + -0.03308648243546486, + -0.008517907001078129, + 0.00932284351438284, + 0.03414371237158775, + -0.03911750018596649, + 0.005117952823638916, + -0.0029929811134934425, + 0.017924848943948746, + 0.02396787703037262, + 0.015077536925673485, + 0.0026926319114863873, + -0.006012993864715099, + 0.012686756439507008, + -0.016254905611276627, + -0.015041494742035866, + -0.018020961433649063, + 0.0030845878645777702, + -0.013107245787978172, + 0.009887500666081905, + 0.02888159267604351, + -0.026262545958161354, + 0.01028996892273426, + 0.022213837131857872, + -0.00370931439101696, + 0.04178459942340851, + 0.047719504684209824, + 0.006427476182579994, + -0.06891215592622757, + 0.01607469655573368, + -0.04135209694504738, + -0.04493226110935211, + -0.0038024226669222116, + 0.001766054192557931, + 0.014777187258005142, + -0.04659019038081169, + -0.01773262582719326, + -0.021625151857733727, + 0.027776306495070457, + -0.02396787703037262, + -0.02307884395122528, + -0.038684993982315063, + 0.040727369487285614, + 0.05670595541596413, + 0.015918515622615814, + -0.036474425345659256, + -0.019991252571344376, + 0.011088897474110126, + -0.026767132803797722, + -0.034071628004312515, + 0.020003266632556915, + 0.0020964383147656918, + 0.017204010859131813, + -0.049353405833244324, + 0.024941010400652885, + -0.008836277760565281, + -0.014717117883265018, + -0.019282428547739983, + -0.04510045796632767, + 0.016987759619951248, + 0.023295095190405846, + 0.058003466576337814, + -0.05093924701213837, + 0.003475041827186942, + -0.013299468904733658, + 0.02640671469271183, + 0.04829617589712143, + -0.021228691563010216, + 0.0012749829329550266, + 0.0146810756996274, + 0.03219744935631752, + -0.05574483796954155, + 0.003108615754172206, + 0.05867624655365944, + -0.013023147359490395, + -0.028809508308768272, + 0.015546081587672234, + 0.00994156301021576, + -0.0020048317965120077, + -0.02806464210152626, + 0.03709915280342102, + 0.015269760973751545, + 0.023859752342104912, + -0.0354892797768116, + -0.0018186152447015047, + 0.0032197448890656233, + -0.004595344886183739, + -0.019258400425314903, + -0.013119258917868137, + 0.0006074565462768078, + -0.03541719540953636, + 0.02151702716946602, + -0.0030815843492746353, + -0.04944951459765434, + -0.04452378675341606, + 0.032822176814079285, + -0.037771932780742645, + 0.02724769338965416, + -0.013816069811582565, + -0.05411093682050705, + -0.003231758950278163, + -0.015377886593341827, + -0.01548601221293211, + 0.016423102468252182, + 0.04920923709869385, + 0.013647873885929585, + -0.039429862052202225, + -0.026598937809467316, + -0.03130841627717018, + 0.03596983850002289, + -0.03546525165438652, + -0.020748132839798927, + 0.007094251457601786, + 0.011148967780172825, + 0.02477281354367733, + -0.02352336049079895, + -0.0013665895676240325, + -0.017083870247006416, + 0.009551108814775944, + -0.0033098498824983835, + -0.009052528999745846, + 0.0603582039475441, + 0.02765616774559021, + 0.015209690667688847, + 0.03976625204086304, + -0.046397965401411057, + 0.008415788412094116, + 0.03580164164304733, + 0.04125598445534706, + 0.06333766877651215, + 0.023295095190405846, + -0.03923763707280159, + 0.018681729212403297, + -0.010812575928866863, + -0.020411740988492966, + 0.015053508803248405, + 0.036114003509283066, + 0.013203357346355915, + 0.016266919672489166, + -0.05584095045924187, + 0.05242898315191269, + 0.013335511088371277, + 0.06074265018105507, + 0.013371552340686321, + -0.013035161420702934, + 0.00474551972001791, + 0.003652248065918684, + 0.028184782713651657, + -0.009653228335082531, + 0.05699429288506508, + 0.002006333554163575, + 0.006499559618532658, + -0.0652599036693573, + -0.022370019927620888, + 0.036114003509283066, + 0.013551762327551842, + -0.020483825355768204, + -0.0619921050965786, + -0.05247703567147255, + 0.018441449850797653, + -0.024652674794197083, + 0.0036252166610211134, + 0.04000653326511383, + 0.017588457092642784, + -0.02024354599416256, + 0.016363032162189484, + -0.019582776352763176, + 0.006046032067388296, + -0.021300775930285454, + 0.030875911936163902, + 0.005745682865381241, + 0.003970618359744549, + -0.05372649058699608, + 0.02969854325056076, + 0.01697574555873871, + -0.008331690914928913, + -0.07616859674453735, + 0.011070876382291317, + -0.0054753683507442474, + -0.003288825275376439, + 0.026719078421592712, + 0.02974659949541092, + -0.023463290184736252, + 0.001737520913593471, + 0.02438836731016636, + -0.006427476182579994, + 0.029602430760860443, + -0.03496066480875015, + 0.0527653731405735, + -0.04997812956571579, + 0.004628383554518223, + 0.024124059826135635, + -0.021709250286221504, + -0.055072054266929626, + -0.001585844554938376, + -0.021312789991497993, + 0.01563018001616001, + 0.0058808401226997375, + 0.04586935043334961, + -0.03844471648335457, + 0.03138050064444542, + -0.03921360895037651, + -0.0018711764132604003, + 0.01137723308056593, + -0.0019012113334611058, + -0.02479684166610241, + -0.010247919708490372, + -0.03551330789923668, + 0.03219744935631752, + -0.002135483780875802, + 0.034480106085538864, + 0.046037547290325165, + 0.02729574777185917, + 0.016375046223402023, + -0.010668409056961536, + 0.014981425367295742, + -0.04579726979136467, + 0.012446477077901363, + 0.018669715151190758, + 0.007520747371017933, + 0.02724769338965416, + 0.03351898491382599, + 0.0032047275453805923, + 0.008181516081094742, + -0.04500434547662735, + 0.010686429217457771, + -0.0150294816121459, + -0.014104405418038368, + -0.0010624858550727367, + 0.0037483598571270704, + -0.052669260650873184, + -0.02441239543259144, + 0.025781987234950066, + 0.04632588103413582, + -0.03171689063310623, + -0.003649244550615549, + 0.009773368015885353, + -0.02638268657028675, + -0.00546035123988986, + -0.022514186799526215, + -0.05478372052311897, + -0.011166988871991634, + 0.02604629471898079, + -0.0032017240300774574, + -0.007232412230223417, + -0.009725311771035194, + -0.010986778885126114, + -0.06708602607250214, + -0.031116191297769547, + -0.006673762574791908, + -0.028593257069587708, + -0.004246939904987812, + 0.01857360266149044, + -0.038684993982315063, + -0.010770527645945549, + 0.01569025032222271, + 0.0033278707414865494, + 0.016651367768645287, + -0.01075250655412674, + -0.008553949184715748, + 0.008710131049156189, + -0.08174307644367218, + -0.012236231938004494, + 0.02400391921401024, + -0.011689596809446812, + 0.014308642596006393, + -0.0065416088327765465, + 0.014368712902069092, + -0.0033849370665848255, + 0.04156835004687309, + 0.03769984841346741, + 0.0025604781694710255, + -0.016242893412709236, + 0.0007110770675353706, + -0.05483177676796913, + -0.008373740129172802, + 0.015173648484051228, + -0.020291602239012718, + 0.047214917838573456, + -0.015077536925673485, + 0.03342287614941597, + 0.011857791803777218, + 0.04461989924311638, + 0.0018967060605064034, + -0.008349712006747723, + 0.0003972120175603777, + 0.017984919250011444, + 0.003276811446994543, + 0.04317822307348251, + -0.004138813819736242, + -0.0028443082701414824, + -0.010584310628473759, + -0.04795978218317032, + 0.007478698622435331, + -0.008397767320275307, + -0.007022167555987835, + -0.025421569123864174, + 0.0014319154433906078, + 0.016999773681163788, + 0.034071628004312515, + 0.009725311771035194, + 0.020519867539405823, + -0.024965036660432816, + 0.04096765071153641, + -0.028713397681713104, + 0.020868271589279175, + 0.003649244550615549, + -0.020964384078979492, + -0.013455650769174099, + -0.023379193618893623, + -0.024448435753583908, + -0.0519484207034111, + -0.023691555485129356, + -0.0002896494115702808, + 0.023811696097254753, + 0.014164474792778492, + 0.0034299895633012056, + 0.028352977707982063, + -0.008277627639472485, + -0.015894487500190735, + -0.01857360266149044, + -0.01737220585346222, + -0.05281342938542366, + -0.014608992263674736, + 0.01010975893586874, + -0.023271067067980766, + -0.018069015815854073, + -0.018693743273615837, + -0.010500213131308556, + -0.013287454843521118, + 0.020772160962224007, + 0.0312843881547451, + 0.06799909472465515, + -0.021973557770252228, + -0.006427476182579994, + 0.03508080169558525, + 0.042673636227846146, + -0.005208057817071676, + 0.006763867102563381, + -0.008271620608866215, + -0.008950410410761833, + -0.009046521969139576, + -0.01008573081344366, + -0.0387570783495903, + 0.05007424205541611, + -0.012398420833051205, + -0.012650714255869389, + 0.009352878667414188, + 0.024148087948560715, + -0.004000653047114611, + -0.018705757334828377, + 0.021264733746647835, + 0.0015047502238303423, + 0.009418955072760582, + 0.031236331909894943, + 0.0049767885357141495, + 0.023391207680106163, + 0.030875911936163902, + -0.033182594925165176, + -0.015209690667688847, + -0.02724769338965416, + -0.041520293802022934, + 0.00609709182754159, + -0.059204861521720886, + 0.011947897262871265, + -0.013527734205126762, + -0.006289315409958363, + -0.026671022176742554, + -0.006118115969002247, + -0.011629526503384113, + -0.0020829227287322283, + -0.012086058035492897, + 0.01483725756406784, + 0.007016160525381565, + -0.022526200860738754, + -0.00949103944003582, + -0.037747904658317566, + -0.008085404522716999, + -0.01898207888007164, + -0.04248141124844551, + -0.013011133298277855, + -0.014356698840856552, + -0.015125593170523643, + 0.01939055323600769, + 0.01403232105076313, + -0.015437955968081951, + -0.007490712683647871, + 0.03267800807952881, + 0.006968104746192694, + 0.007094251457601786, + 0.019150273874402046, + 0.0061331335455179214, + -0.04125598445534706, + -0.009731318801641464, + -0.019618818536400795, + -0.017564428970217705, + 0.08299253135919571, + 0.023006759583950043, + -0.038564857095479965, + -0.016639353707432747, + 0.015137607231736183, + 0.0065656364895403385, + 0.0009168163524009287, + -0.03419176861643791, + -0.01644713059067726, + -0.02233397774398327, + 0.01029597595334053, + 0.02763213962316513, + -0.02599823847413063, + 0.011941890232264996, + 0.019342496991157532, + 0.04128001257777214, + 0.017600471153855324, + -0.013900167308747768, + -0.007610852364450693, + 0.000849988660775125, + -0.003168685594573617, + 0.036186087876558304, + 0.01822519861161709, + -0.01973895914852619, + -0.002516927430406213, + -0.001236688462086022, + 0.015906501561403275, + 0.024868926033377647, + 0.05396677181124687, + 0.013095231726765633, + 0.039886392652988434, + -0.046397965401411057, + -0.008187523111701012, + -0.04125598445534706, + 0.0422651581466198, + 0.04128001257777214, + 0.030851883813738823, + -0.024941010400652885, + 0.025085177272558212, + 0.04017472639679909, + 0.038684993982315063, + 0.03313453868031502, + 0.007388593629002571, + -0.01730012148618698, + 0.03971819579601288, + -0.018693743273615837, + -0.03621011599898338, + 0.011257093399763107, + 0.011929876171052456, + 0.030010906979441643, + -0.004297999199479818, + -0.0488007627427578, + 0.005523424595594406, + 0.05228481441736221, + -0.03743554279208183, + 0.03337481990456581, + 0.04745519533753395, + 0.031092163175344467, + -0.011431296356022358, + -0.015425941906869411, + -0.01197192445397377, + 0.026767132803797722, + 0.007568803615868092, + -0.06290517002344131, + -0.08366531133651733, + 0.011935883201658726, + 0.012019980698823929, + -0.004559303168207407, + -0.0851069912314415, + -0.01156945712864399, + -0.018873952329158783, + 0.001974796876311302, + -0.011593484319746494, + 0.002622049767524004, + -0.007755020167678595, + -0.00013027653039898723, + -0.020363684743642807, + 0.017191996797919273, + 0.020099377259612083, + 0.0161107387393713, + -0.02563782036304474, + -0.00027350563323125243, + 0.02193751558661461, + 0.0051600015722215176, + -0.018693743273615837, + -0.03505677357316017, + 0.03878110647201538, + -0.024268226698040962, + -0.012092064134776592, + -0.005117952823638916, + 0.03217342123389244, + -0.011389247141778469, + -0.045148514211177826, + -0.0007891678833402693, + -0.004343051463365555, + 0.0014161471044644713, + -0.0071002584882080555, + -0.035345111042261124, + 0.027103524655103683, + 0.03270203620195389, + 0.032437730580568314, + 0.0055714803747832775, + 0.001829127548262477, + 0.011257093399763107, + -0.038108326494693756, + 0.006589664611965418, + -0.004781561437994242, + -0.030299242585897446, + -0.009695276618003845, + 0.009557115845382214, + -0.020015280693769455, + 0.028737425804138184, + -0.011707616969943047, + 0.03472038358449936, + -0.021312789991497993, + 0.010590317659080029, + -0.03592178225517273, + -0.06516379117965698, + -0.00824759341776371, + 0.00183213094715029, + 0.009058536030352116, + -0.0024133070837706327, + 0.00546635827049613, + 0.005556462798267603, + -0.03914152830839157, + 0.02763213962316513, + 0.026286574080586433, + 0.014921355061233044, + 0.003297835821285844, + -0.01939055323600769, + 0.030010906979441643, + 0.0016023637726902962, + 0.043562669306993484, + 0.005277138203382492, + -0.014344684779644012, + 0.051323696970939636, + 0.04370683804154396, + -0.022213837131857872, + -0.02064000628888607, + 0.013755999505519867, + -0.015341844409704208, + 0.01567823626101017, + -0.011953904293477535, + 0.050122298300266266, + -0.011665568687021732, + -0.038108326494693756, + -0.02389579452574253, + 0.010980771854519844, + 0.02146897092461586, + 0.013371552340686321, + -0.009340864606201649, + 0.001534034265205264, + -0.006397441029548645, + -0.005676602479070425, + -0.013984265737235546, + -0.0014642030000686646, + -0.012710784561932087, + 0.0039465902373194695, + 0.013359539210796356, + -0.0035050767473876476, + -0.02597421035170555, + 0.00027369335293769836, + -0.03991042077541351, + -0.0027406876906752586, + 0.01136521901935339, + 0.011239072307944298, + -0.019558750092983246, + 0.032005224376916885, + 0.017216024920344353, + 0.020844245329499245, + -0.006313343066722155, + 0.004538278561085463, + -0.010259933769702911, + 0.02102445438504219, + 0.013359539210796356, + -0.021577097475528717, + 0.02354738861322403, + 0.019630832597613335, + -0.05214064568281174, + 0.0026460776571184397, + 0.02026757411658764, + -0.013239399529993534, + 0.024280240759253502, + 0.010506220161914825, + -0.038612913340330124, + 0.0015182659262791276, + 0.011016814038157463, + -0.03553733602166176, + 0.017408248037099838, + -0.031572721898555756, + -0.011010807007551193, + -0.029962850734591484, + 0.004502236843109131, + -0.015606151893734932, + 0.01200796663761139, + -0.02224987931549549, + 0.005496392957866192, + -0.023006759583950043, + -0.022898634895682335, + -0.0371231772005558, + 0.018393393605947495, + -0.0080253342166543, + 0.01530580222606659, + 0.029386179521679878, + -0.031188275665044785, + 0.024460449814796448, + 0.027848390862345695, + -0.017852764576673508, + 0.020303616300225258, + -0.0028923642821609974, + 0.029145900160074234, + -0.020051322877407074, + -0.0005624041659757495, + -0.05021841078996658, + 0.01690366119146347, + 0.04714283347129822, + -0.028401033952832222, + -0.00824759341776371, + -0.0027662175707519054, + 0.025757959112524986, + -0.012566616758704185, + 0.0037543668877333403, + -0.03813235089182854, + 0.009184682741761208, + -0.013071203604340553, + -0.00014538785035256296, + -0.005307172890752554, + -0.002315693534910679, + -0.05074702575802803, + -0.02604629471898079, + 0.005175019148737192, + 0.02152904123067856, + -0.02317495457828045, + -0.01197793148458004, + 0.034864552319049835, + -0.002267637522891164, + 0.0173361636698246, + 0.020351670682430267, + 0.024532534182071686, + -0.007400607690215111, + 0.013647873885929585, + 0.006259280256927013, + -0.010067709721624851, + 0.020543895661830902, + -0.018261240795254707, + -0.011299142614006996, + 0.008133459836244583, + -0.011905848048627377, + -0.012104078195989132, + 0.05108341574668884, + 0.014404754154384136, + 0.01056028250604868, + 0.012878979556262493, + -0.03599386662244797, + 0.02849714644253254, + -0.017059842124581337, + 0.012446477077901363, + -0.022886620834469795, + -0.003547125728800893, + 0.014476838521659374, + 0.04579726979136467, + 0.009382913820445538, + 0.014164474792778492, + -0.005772714503109455, + 0.006265287287533283, + -0.020928341895341873, + 0.04618171602487564, + -0.026767132803797722, + 0.010380073450505733, + -0.003586171194911003, + 0.021757306531071663, + 0.008511899970471859, + -0.012230224907398224, + -0.004685449879616499, + -0.017612485215067863, + -0.022382033988833427, + 0.011413275264203548, + 0.0013560772640630603, + 0.013719958253204823, + 0.005865822546184063, + -0.04918520897626877, + -0.018345337361097336, + -0.02313891425728798, + -0.01214612741023302, + 0.0026130392216145992, + -0.02799255959689617, + 0.002742189448326826, + -0.04178459942340851, + 0.041039735078811646, + 0.023727597668766975, + 0.031044108793139458, + -0.05026646703481674, + 0.0014589469647035003, + 0.004343051463365555, + 0.019726945087313652, + -0.032846204936504364, + 0.017276093363761902, + -0.03130841627717018, + -0.01466906163841486, + -0.02310287207365036, + 0.008343704976141453, + 0.0038624925073236227, + -0.019102217629551888, + 0.03390343487262726, + -0.01423655916005373, + 0.003607195569202304, + -0.009965591132640839, + -0.006829943973571062, + -0.010986778885126114, + -0.017936863005161285, + 0.015918515622615814, + 0.004883680492639542, + -0.003778394777327776, + 0.04171251505613327, + -0.008259606547653675, + -0.013191343285143375, + 0.005301165860146284, + -0.00680591631680727, + -0.006403448060154915, + -0.0017870785668492317, + 0.03053952194750309, + 0.012566616758704185, + -0.0061691757291555405, + -0.0445958711206913, + 0.015053508803248405, + -0.003646241035312414, + -0.0021159611642360687, + -0.021973557770252228, + -0.012398420833051205, + -0.0027181615587323904, + -0.0027121545281261206, + -0.014512880705296993, + 0.002012340584769845, + -0.012278281152248383, + 0.018753813579678535, + -0.016290947794914246, + 0.046878524124622345, + 0.008571970276534557, + 0.0026971371844410896, + -0.007094251457601786, + 0.05949319899082184, + -0.00046704322448931634, + -0.019955210387706757, + -0.011215044185519218, + 0.021180635318160057, + 0.020904313772916794, + 0.016363032162189484, + 0.03890124708414078, + 0.01983506977558136, + 0.006187196355313063, + 0.02635865844786167, + 0.03383135050535202, + 0.008121446706354618, + 0.001405634917318821, + -0.012710784561932087, + -0.03094799630343914, + 0.01215213444083929, + 0.06031014770269394, + -0.011851784773170948, + 0.04178459942340851, + 0.001039208727888763, + -0.010500213131308556, + 0.021769320592284203, + 0.014789201319217682, + 0.005910875275731087, + 0.00027744771796278656, + 0.06703796982765198, + 0.03138050064444542, + 0.03426385298371315, + -0.04548490419983864, + -0.008962424471974373, + -0.007989292964339256, + 0.01857360266149044, + 0.01219418365508318, + 0.06285711377859116, + 0.016771506518125534, + 0.015281775034964085, + -0.027055468410253525, + -0.06021403521299362, + 0.0568501241505146, + 0.02561379224061966, + 0.025397541001439095, + 0.0018741799285635352, + -0.01821318455040455, + 0.007544775493443012, + 0.03813235089182854, + -0.007917208597064018, + 0.002344226697459817, + 0.04788769781589508, + 0.029818682000041008, + 0.0076589081436395645, + 0.026094350963830948, + -0.003898534458130598, + 0.017432276159524918, + -0.04630185663700104, + 0.033639125525951385, + 0.008938396349549294, + 0.0073405378498137, + 0.002461362862959504, + 0.03344690427184105, + 0.028232838958501816, + 0.04099167883396149, + 0.029842710122466087, + 0.0202555600553751, + 0.011263100430369377, + 0.0022481149062514305, + -0.04988202080130577, + 0.002758708782494068, + -0.0035741571336984634, + -0.007262446917593479, + -0.008722145110368729, + 0.010488199070096016, + 0.02140890061855316, + -0.021384872496128082, + 0.01570226438343525, + -0.006211224477738142, + -0.02263432741165161, + 0.051131471991539, + 0.004781561437994242, + 0.0024658681359142065, + -0.028184782713651657, + -0.016254905611276627, + 0.022358005866408348, + -0.019222358241677284, + 0.017552414909005165, + -0.018681729212403297, + -0.004871666431427002, + 0.0030935981776565313, + -0.010326010175049305, + 0.006343378219753504, + 0.00946701131761074, + -0.019666874781250954, + -0.0922192633152008, + -0.02056792378425598, + -0.0037603736855089664, + -0.014140446670353413, + 0.0021595116704702377, + -0.009406941011548042, + 0.023463290184736252, + -0.01072847843170166, + 0.039838336408138275, + -0.030635632574558258, + -0.019931182265281677, + 0.011605498380959034, + -0.011803729459643364, + 0.00021625153021886945, + -0.054687608033418655, + -0.007905194535851479, + 0.012746825814247131, + 0.02267036773264408, + 0.01565420813858509, + -0.003832457587122917, + -0.011094904504716396, + -0.02801658771932125, + 0.009364892728626728, + 0.02479684166610241, + -0.015834417194128036, + 0.0055114105343818665, + 0.0019117235206067562, + 0.02108452469110489, + -0.01775665394961834, + -0.018885966390371323, + 0.0024763804394751787, + 0.003718324936926365, + 0.01220019068568945, + 0.0070401886478066444, + 0.04180862754583359, + 0.004270967561751604, + 0.033975519239902496, + 0.01945062354207039, + -0.005562469828873873, + 0.005388267338275909, + 0.00947902537882328, + 0.0019072183640673757, + -0.010614345781505108, + -0.009172668680548668, + -0.004553296137601137, + 0.008932389318943024, + 0.011124939657747746, + 0.010067709721624851, + -0.015582123771309853, + 0.01260265801101923, + 0.01776866801083088, + 0.00743664987385273, + 0.006199210416525602, + 0.001949267229065299, + 0.003967614844441414, + -0.04048709198832512, + 0.0027181615587323904, + 0.02686324529349804, + -0.010259933769702911, + -0.002435833215713501, + 0.018693743273615837, + -0.0009716300992295146, + -0.010524241253733635, + -0.019306456670165062, + -0.001482974854297936, + 0.013275440782308578, + 0.014801215380430222, + -0.012830924242734909, + -0.01898207888007164, + -0.01198393851518631, + -0.011719631031155586, + 0.021396886557340622, + -0.019210344180464745, + -0.004967777989804745, + 0.002976462012156844, + 0.007292482070624828, + -0.00865606777369976, + -0.005178022664040327, + 0.010079723782837391, + 0.02227390743792057, + 0.012830924242734909, + 0.008157487958669662, + 0.009839444421231747, + -0.020039308816194534, + 0.06079070642590523, + 0.007262446917593479, + 0.008968431502580643, + -0.009851458482444286, + 0.027824362739920616, + -0.018369365483522415, + 0.00889034103602171, + -0.023595444858074188, + -0.03565747290849686, + -0.008361726067960262, + -0.016783520579338074, + -0.03587372601032257, + -0.02844909019768238, + -0.004943750333040953, + 0.008944403380155563, + -0.003718324936926365, + -0.02479684166610241, + 0.005715648178011179, + -0.005253110080957413, + -0.00743064284324646, + -0.0010369560914114118, + 0.03512885794043541, + 0.023751625791192055, + 0.019666874781250954, + -0.0036372304894030094, + 0.006028011441230774, + -0.016206851229071617, + 0.014705103822052479, + -0.0024283244274556637, + 0.012566616758704185, + 0.006265287287533283, + 0.022454116493463516, + 0.0005406287964433432, + -0.01693970337510109, + -0.002359244041144848, + -0.020808203145861626, + -0.027415888383984566, + 0.007580817211419344, + -0.01487329974770546, + -0.0014033822808414698, + 0.004607358947396278, + 0.005117952823638916, + -0.034864552319049835, + -0.02188945934176445, + 0.02643074281513691, + 0.011911855079233646, + -0.01769658364355564, + -0.02765616774559021, + 0.006349385250359774, + -0.0021625151857733727, + 0.04714283347129822, + 0.0008116940734907985, + 0.027920475229620934, + 0.015582123771309853, + -0.015786360949277878, + -0.016771506518125534, + 0.019486665725708008, + -0.0008004310075193644, + 0.00016697545652277768, + -0.02808867022395134, + 0.015161634422838688, + -0.01851353421807289, + -0.007208384107798338, + 0.002782736672088504, + -0.001537037780508399, + -0.029578402638435364, + -0.021745292469859123, + 0.018453463912010193, + 0.0009979107417166233, + 0.008818256668746471, + 0.014729131944477558, + -0.04512448608875275, + -0.01486128568649292, + -0.006151154637336731, + 0.02101244032382965, + 0.005057882983237505, + -0.011299142614006996, + 0.02267036773264408, + -0.027031440287828445, + -0.024568576365709305, + -0.00412079319357872, + 0.020387712866067886, + 0.016363032162189484, + -0.02060396410524845, + -0.015233718790113926, + -0.02265835367143154, + 0.03351898491382599, + -0.008499886840581894, + 0.05161203071475029, + 0.003958604298532009, + 0.0018967060605064034, + 0.011833763681352139, + 0.010590317659080029, + -0.01219418365508318, + 0.020748132839798927, + 0.028641313314437866, + 0.019558750092983246, + -0.005541445221751928, + -0.007004146929830313, + -0.01816512830555439, + -0.0019462637137621641, + -0.002489896025508642, + -0.005256113596260548, + 0.024280240759253502, + -0.008908361196517944, + -0.005033854860812426, + -0.013707944191992283, + -0.024472463876008987, + -0.02729574777185917, + -0.005217067897319794, + -0.009821423329412937, + 0.019126245751976967, + -0.01091469544917345, + -0.017660541459918022, + -0.03515288606286049, + -0.039045415818691254, + 0.0003778770042117685, + 0.0034990699496120214, + -0.03784401714801788, + 0.007761027198284864, + 0.01530580222606659, + 0.021384872496128082, + 0.021360846236348152, + -0.017131926491856575, + -0.01056628953665495, + -0.03354301303625107, + 0.006799909286201, + 0.03923763707280159, + 0.021553069353103638, + 0.01987111195921898, + 0.02149299904704094, + 0.007238419260829687, + 0.003610199084505439, + 0.02688727341592312, + -0.04317822307348251, + -0.008253599517047405, + -0.011839770711958408, + 0.007592831272631884, + 0.049305349588394165, + 0.009581143967807293, + -0.000692680652718991, + 0.011845777742564678, + 0.008908361196517944, + -0.007094251457601786, + 0.027391860261559486, + 0.01154542900621891, + -0.027103524655103683, + -0.00015317815996240824, + 0.011647547595202923, + -0.01486128568649292, + -0.03339884802699089, + 0.03673873096704483, + -0.01280689612030983, + -0.008313669823110104, + -0.000589811010286212, + -0.02106049656867981, + 0.005928895901888609, + -0.00366426189430058, + 0.03219744935631752, + 0.013179329223930836, + 0.026502825319767, + -0.035681501030921936, + -0.06944076716899872, + -0.017540400847792625, + 0.0013673403300344944, + -0.0010947734117507935, + 0.02180536277592182, + -0.015846431255340576, + -0.007917208597064018, + 0.005850805435329676, + -0.037363458424806595, + -0.01010975893586874, + -0.028641313314437866, + 0.02223786525428295, + 0.0010226895101368427, + 0.0161107387393713, + -0.024652674794197083, + -0.005205054301768541, + 0.0016639353707432747, + -0.016831576824188232, + 0.007941236719489098, + -0.017035814002156258, + -0.011749666184186935, + 0.01218216959387064, + 0.06612490862607956, + 0.009971598163247108, + -0.034023575484752655, + -0.004553296137601137, + 0.0005199798033572733, + -0.029193956404924393, + 0.011461330577731133, + 0.011058863252401352, + -0.02969854325056076, + 0.02804061397910118, + 0.002827789168804884, + 0.0046674287877976894, + 0.011713624000549316, + 0.0314045287668705, + 0.006205217447131872, + 0.009052528999745846, + -0.05502399802207947, + -0.013011133298277855, + 0.016795534640550613, + 0.007268453948199749, + -0.003667265409603715, + 0.03226953372359276, + 0.003937579691410065, + 0.008001306094229221, + 0.026767132803797722, + 0.024184128269553185, + -0.0038054261822253466, + -0.020507853478193283, + 0.013479678891599178, + -0.00884829182177782, + 0.016014626249670982, + 0.00670980429276824, + -0.022033628076314926, + 0.03265397995710373, + 0.012122099287807941, + -0.025349484756588936, + 0.02021951787173748, + -0.01575031876564026, + -0.030227158218622208, + 0.014777187258005142, + -0.02597421035170555, + -0.01156345009803772, + 0.0036372304894030094, + 0.0034990699496120214, + -0.027776306495070457, + -0.009046521969139576, + -0.0078811664134264, + 0.025517679750919342, + 0.015281775034964085, + -0.024196142330765724, + -0.00007804390043020248, + 0.025373512879014015, + -0.02429225482046604, + -0.010524241253733635, + 0.000747119018342346, + 0.024868926033377647, + -0.002931409515440464, + -0.0429619699716568, + 0.004072736948728561, + 0.007706964388489723, + 0.003916555549949408, + -0.005427312571555376, + -0.007929222658276558, + 0.017564428970217705, + -0.020736118778586388, + 0.02844909019768238, + -0.02599823847413063, + 0.017216024920344353, + -0.0062532732263207436, + 0.018008947372436523, + -0.009406941011548042, + -0.0059469169937074184, + 0.0379401296377182, + 0.008902354165911674, + -0.003985635936260223, + -0.0034329930786043406, + -0.007670922204852104, + 0.005772714503109455, + 0.014705103822052479, + 0.019138259813189507, + -0.0005541445570997894, + 0.012494532391428947, + 0.01772061176598072, + -0.006547615863382816, + -0.024088017642498016, + 0.051323696970939636, + -0.01219418365508318, + -0.024472463876008987, + -0.0005319937481544912, + 0.003985635936260223, + -0.02924201264977455, + -0.02688727341592312, + -0.014416768215596676, + 0.0038024226669222116, + 0.037387486547231674, + -0.02638268657028675, + -0.02191348746418953, + -0.010163822211325169, + 0.005487382411956787, + -0.03265397995710373, + -0.011749666184186935, + -0.01563018001616001, + 0.04094362258911133, + 0.02558976411819458, + -0.053438156843185425, + -0.01692768931388855, + -0.004406124819070101, + 0.0010542261879891157, + 0.02635865844786167, + 0.014981425367295742, + -0.030323268845677376, + 0.03267800807952881, + -0.018657701089978218, + 0.003730338765308261, + 0.025878099724650383, + -0.015618165954947472, + 0.029169928282499313, + -0.025854071602225304, + -0.00008583421004004776, + 0.01691567525267601, + 0.003598185023292899, + 0.004766543861478567, + 0.008109432645142078, + 0.018681729212403297, + 0.0027572070248425007, + -0.018093043938279152, + -0.029025761410593987, + -0.02472475729882717, + -0.0033759265206754208, + 0.038540828973054886, + -0.01737220585346222, + -0.028977705165743828, + 0.0396941676735878, + 0.055889006704092026, + 0.015942543745040894, + 0.04411531239748001, + 0.014765174128115177, + -0.018261240795254707, + -0.0005676602595485747, + 0.004592341370880604, + -0.03890124708414078, + -0.008187523111701012, + -0.010061702691018581, + -0.0009566126391291618, + -0.0047274986281991005, + 0.04505240172147751, + 0.019558750092983246, + 0.022982731461524963, + 0.00869811698794365, + -0.008908361196517944, + 0.017516374588012695, + 0.02635865844786167, + -0.04079945385456085, + 0.011010807007551193, + -0.0024688716512173414, + -0.012224217876791954, + 0.007724985014647245, + 0.03265397995710373, + 0.0227064099162817, + -0.03577761352062225, + -0.0007024420192465186, + 0.02355940267443657, + -0.027728252112865448, + -0.00952107459306717, + 0.05228481441736221, + 0.019991252571344376, + 0.0028578240890055895, + -0.004805589560419321, + 0.016314975917339325, + -0.019618818536400795, + 0.0001257712865481153, + -0.009142634458839893, + 0.02070007659494877, + -0.06698992103338242, + 0.006349385250359774, + -0.023703569546341896, + 0.018789855763316154, + -0.009382913820445538, + 0.006151154637336731, + -0.009214717894792557, + -0.0070401886478066444, + 0.0036192096304148436, + -0.05314981937408447, + 0.010452156886458397, + 0.036546509712934494, + 0.0011616010451689363, + -0.006499559618532658, + -0.025277400389313698, + 0.0061932033859193325, + 0.0026610952336341143, + -0.025685876607894897, + -0.04053514823317528, + 0.017888806760311127, + 0.011647547595202923, + 0.01900610700249672, + 0.004288988653570414, + 0.006046032067388296, + -0.009629200212657452, + -0.004916718695312738, + 0.0029704549815505743, + 0.018069015815854073, + -0.011052856221795082, + -0.029866738244891167, + -0.012650714255869389, + -0.01942659541964531 + ] + }, + { + "HotelId": "3", + "HotelName": "Gastronomic Landscape Hotel", + "Description": "The Gastronomic Hotel stands out for its culinary excellence under the management of William Dough, who advises on and oversees all of the Hotel’s restaurant services.", + "Description_fr": "L'hĆ“tel Gastronomic se distingue par son excellence gastronomique sous la direction de William Dough, qui conseille et supervise tous les services de restauration de l'hĆ“tel.", + "Category": "Suite", + "Tags": [ + "restaurant", + "bar", + "continental breakfast" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2015-09-20T00:00:00Z", + "Rating": 4.8, + "Address": { + "StreetAddress": "3393 Peachtree Rd", + "City": "Atlanta", + "StateProvince": "GA", + "PostalCode": "30326", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -84.362465, + 33.846432 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 124.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 127.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite", + "suite", + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite", + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 259.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 130.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "vcr/dvd", + "tv" + ] + } + ], + "embedding": [ + -0.009585379622876644, + 0.021182915195822716, + 0.04930887371301651, + -0.03283572942018509, + -0.016041968017816544, + -0.03137636557221413, + 0.0033581997267901897, + 0.015566568821668625, + 0.020541679114103317, + -0.07867307960987091, + 0.004262011498212814, + -0.0072249663062393665, + -0.003090096404775977, + -0.00515200337395072, + 0.006478699389845133, + 0.06814795732498169, + -0.05554434657096863, + -0.0022443276830017567, + 0.037302274256944656, + 0.017125437036156654, + -0.016174636781215668, + -0.02419009432196617, + 0.0004204659489914775, + 0.027772173285484314, + 0.025760017335414886, + 0.020696459338068962, + -0.03433931991457939, + 0.03491422161459923, + -0.02589268609881401, + 0.028170181438326836, + -0.040088336914777756, + -0.019867274910211563, + 0.06346029788255692, + -0.026644481346011162, + 0.013830807991325855, + -0.022664392367005348, + 0.026135914027690887, + 0.0399777777493, + 0.004698715638369322, + 0.03396342322230339, + -0.06713082641363144, + 0.0423879437148571, + 0.025450455024838448, + 0.002132387598976493, + -0.009253705851733685, + -0.021614091470837593, + -0.010259783826768398, + 0.03469310328364372, + -0.013996644876897335, + -0.0531562939286232, + 0.014206704683601856, + 0.05731327459216118, + -0.009027061983942986, + -0.045682571828365326, + 0.022863397374749184, + -0.0011359836207702756, + 0.014062979258596897, + -0.010978410951793194, + 0.032371386885643005, + 0.047009266912937164, + 0.020972855389118195, + 0.01501377858221531, + 0.04415687173604965, + 0.033698081970214844, + -0.057888176292181015, + -0.014947443269193172, + -0.056428808718919754, + 0.03739072009921074, + 0.00021576086874119937, + 0.004977874457836151, + 0.023681527003645897, + -0.014107202179729939, + -0.04327240586280823, + -0.030536122620105743, + 0.04440009966492653, + -0.05426187440752983, + 0.012305106967687607, + -0.01678270660340786, + -0.030248671770095825, + 0.03082357347011566, + -0.02865663729608059, + 0.03285784274339676, + -0.0307572390884161, + -0.0007020434131845832, + -0.01630730740725994, + -0.04101702198386192, + 0.0029878304339945316, + 0.002084018662571907, + -0.002258147345855832, + 0.01362074725329876, + 0.053023625165224075, + 0.021746762096881866, + 0.05107780173420906, + -0.007490305230021477, + 0.015577624551951885, + -0.0244333203881979, + 0.028899865224957466, + 0.015467066317796707, + -0.03986721858382225, + 0.017689282074570656, + -0.004847968928515911, + -0.04508555680513382, + -0.0016625161515548825, + 0.006876708474010229, + 0.04190148785710335, + -0.011365363374352455, + 0.005397995002567768, + -0.026003245264291763, + 0.04762839153409004, + -0.021625148132443428, + -0.0721280500292778, + 0.009480349719524384, + -0.01595352217555046, + -0.028103847056627274, + -0.025406232103705406, + 0.005226630251854658, + 0.02832496352493763, + -0.03670525923371315, + 0.00026723946211859584, + -0.013067957013845444, + -0.0265781469643116, + 0.017755616456270218, + -0.06284117698669434, + -0.07451610267162323, + 0.033388521522283554, + -0.01755661331117153, + -0.05032600834965706, + -0.007484777364879847, + -0.014814773574471474, + -0.05660570412874222, + 0.004021547734737396, + -0.017711393535137177, + 0.02449965663254261, + -0.033764418214559555, + 0.019270261749625206, + 0.05059134587645531, + -0.008977310732007027, + 0.019126536324620247, + 0.008977310732007027, + 0.02273072674870491, + 0.005486441310495138, + 0.026467587798833847, + -0.06195671111345291, + 0.0023410660214722157, + -0.003311212407425046, + -0.014770550653338432, + -0.04891086369752884, + -0.010574874468147755, + 0.012570446357131004, + 0.05010489374399185, + -0.07535634189844131, + 0.03004966862499714, + -0.02943054400384426, + -0.018772751092910767, + -0.00973463337868452, + 0.0012693442404270172, + 0.002084018662571907, + 0.0043642777018249035, + -0.03577657416462898, + 0.04196782037615776, + -0.03668314963579178, + 0.02971799485385418, + -0.012692060321569443, + 0.021116580814123154, + 0.0025262506678700447, + -0.004734646994620562, + -0.0234161876142025, + 0.06217782571911812, + -0.022951843217015266, + -0.050547122955322266, + 0.008977310732007027, + 0.02693193219602108, + 0.02273072674870491, + 0.010082891210913658, + -0.015798740088939667, + 0.031243694946169853, + 0.015478122048079967, + -0.016815874725580215, + 0.019270261749625206, + -0.04665548354387283, + -0.005704793613404036, + 0.01186287496238947, + 0.05527900531888008, + -0.046699706465005875, + -0.02171359397470951, + 0.025782128795981407, + -0.03816462680697441, + -0.03533434122800827, + -0.01345491036772728, + 0.04762839153409004, + 0.026401253417134285, + 0.001502207014709711, + 0.030558235943317413, + -0.01770033873617649, + 0.000002521024953239248, + 0.014980610460042953, + 0.011674926616251469, + -0.020121557638049126, + 0.031619593501091, + 0.0047208270989358425, + -0.03117736056447029, + -0.016185693442821503, + 0.03142058849334717, + -0.04260905832052231, + -0.06545034795999527, + -0.03389708697795868, + 0.022454332560300827, + -0.0007255369564518332, + -0.05943598970770836, + 0.02522933855652809, + 0.004228843841701746, + -0.0013805931666865945, + 0.032636724412441254, + 0.03924809396266937, + -0.034781552851200104, + -0.007639558985829353, + -0.05956865847110748, + 0.00006231844599824399, + 0.0678384006023407, + 0.028501855209469795, + 0.014062979258596897, + 0.0010150608140975237, + 0.010591457597911358, + -0.011188470758497715, + -0.011238222010433674, + -0.002795735839754343, + -0.011105552315711975, + -0.03228294104337692, + -0.022907620295882225, + -0.018142569810152054, + -0.0006643845699727535, + 0.00828632339835167, + -0.02452176809310913, + -0.010392453521490097, + -0.010281895287334919, + 0.002255383413285017, + -0.02803751267492771, + 0.03173014894127846, + 0.026445476338267326, + 0.0356881283223629, + -0.01503589004278183, + 0.03323373943567276, + -0.01692643202841282, + -0.03703693300485611, + 0.05492522194981575, + 0.005348243750631809, + 0.005630166735500097, + -0.017733504995703697, + -0.027440499514341354, + 0.020696459338068962, + 0.007130991667509079, + 0.02931998483836651, + 0.001420670421794057, + -0.027396276593208313, + -0.010099474340677261, + 0.045262452214956284, + -0.023858418688178062, + -0.030690904706716537, + 0.03823096305131912, + -0.020165782421827316, + 0.04207837954163551, + 0.02620224840939045, + 0.012493055313825607, + 0.031332142651081085, + -0.024389097467064857, + 0.03007178008556366, + 0.015444954857230186, + 0.02522933855652809, + -0.006180192809551954, + 0.021945765241980553, + -0.05912642553448677, + 0.0005945948068983853, + -0.02029845118522644, + 0.06677704304456711, + -0.021182915195822716, + -0.02237694151699543, + -0.01313429232686758, + 0.02310662530362606, + 0.007296829018741846, + 0.004864552523940802, + -0.037280160933732986, + -0.029872775077819824, + 0.01857374608516693, + 0.015179615467786789, + 0.01190709788352251, + 0.015997745096683502, + -0.014217760413885117, + -0.007739061024039984, + -0.007899370044469833, + 0.02419009432196617, + 0.008595885708928108, + -0.022078435868024826, + 0.047053489834070206, + 0.013841863721609116, + 0.017600836232304573, + 0.009303457103669643, + 0.0014718035236001015, + -0.004425084684044123, + 0.044201094657182693, + 0.03190704435110092, + -0.037633948028087616, + 0.0574459433555603, + 0.006440004333853722, + 0.04373675212264061, + -0.02138192020356655, + -0.027727950364351273, + -0.0303813423961401, + -0.002863452536985278, + -0.006064107175916433, + 0.020364785566926003, + -0.0034936333540827036, + 0.040420010685920715, + 0.01609724760055542, + 0.005345480050891638, + -0.013510189019143581, + 0.004259247332811356, + -0.014925331808626652, + 0.07429498434066772, + -0.012150325812399387, + -0.06885553151369095, + 0.005898269824683666, + -0.01678270660340786, + -0.035865020006895065, + -0.004505238961428404, + 0.019811995327472687, + -0.026357030496001244, + 0.05934754014015198, + 0.008098374120891094, + 0.0033803111873567104, + -0.021094469353556633, + 0.011663870885968208, + 0.00030282529769465327, + -0.026423364877700806, + -0.014184593223035336, + -0.055809684097766876, + 0.0518738217651844, + 0.02934209629893303, + 0.01883908547461033, + 0.04203415662050247, + -0.013941365294158459, + -0.010226616635918617, + -0.007888314314186573, + -0.05381964147090912, + -0.02629069611430168, + 0.006882236339151859, + -0.010679904371500015, + -0.013388575054705143, + 0.009823079220950603, + 0.007700365502387285, + 0.05178537219762802, + -0.04223316162824631, + -0.037302274256944656, + -0.004328346345573664, + 0.04234372079372406, + -0.005793239921331406, + 0.034073978662490845, + -0.021558811888098717, + 0.025030333548784256, + 0.025715794414281845, + 0.006871180608868599, + -0.061426032334566116, + -0.004278595093637705, + -0.009823079220950603, + 0.05143158882856369, + -0.00022336174151860178, + 0.00037002385943196714, + 0.02768372744321823, + -0.0384741872549057, + 0.02121608331799507, + -0.04137080907821655, + -0.014217760413885117, + 0.01876169443130493, + -0.027551056817173958, + 0.01572134904563427, + -0.029518989846110344, + 0.0033360880333930254, + 0.04203415662050247, + 0.02726360596716404, + -0.029806440696120262, + -0.0345604345202446, + 0.04192359745502472, + -0.018164681270718575, + 0.028877753764390945, + -0.04621325060725212, + 0.03955765813589096, + -0.00017145129095297307, + -0.0023161903955042362, + -0.0029325513169169426, + 0.0518738217651844, + -0.000887919042725116, + 0.017788784578442574, + -0.011210582219064236, + 0.020176837220788002, + -0.008452160283923149, + -0.011315613053739071, + 0.023946866393089294, + -0.028170181438326836, + 0.0011933355126529932, + 0.013598635792732239, + -0.013377519324421883, + 0.014195648953318596, + -0.03677159547805786, + -0.031199472025036812, + -0.02969588339328766, + 0.029961220920085907, + -0.0341845378279686, + -0.03257039189338684, + -0.005447746254503727, + -0.056782595813274384, + 0.01313429232686758, + -0.06005511432886124, + -0.013930309563875198, + 0.016672149300575256, + -0.012946343049407005, + -0.02256488986313343, + -0.020906521007418633, + 0.023327741771936417, + -0.04349352419376373, + 0.030536122620105743, + 0.04373675212264061, + 0.005583179648965597, + 0.06284117698669434, + -0.011763372458517551, + -0.007158631458878517, + 0.03608613461256027, + 0.04015466943383217, + -0.010646737180650234, + 0.008197876624763012, + -0.029541101306676865, + -0.013156403787434101, + -0.03077935054898262, + -0.010198976844549179, + -0.011829707771539688, + -0.015610791742801666, + -0.037633948028087616, + -0.037589725106954575, + -0.016395753249526024, + -0.008026511408388615, + 0.010856796987354755, + -0.0170922689139843, + -0.010729655623435974, + -0.0010302624432370067, + -0.03299051150679588, + -0.03946921229362488, + 0.022321663796901703, + -0.008855696767568588, + 0.032658837735652924, + 0.032747283577919006, + 0.04221104830503464, + -0.08818107098340988, + 0.019015979021787643, + 0.01777772791683674, + -0.015257005579769611, + -0.044621214270591736, + -0.03736861050128937, + 0.021072357892990112, + 0.015964576974511147, + -0.0069430433213710785, + -0.05386386439204216, + -0.0574459433555603, + 0.0016003272030502558, + -0.031243694946169853, + -0.05275828391313553, + -0.004422320518642664, + -0.0031674872152507305, + -0.011929209344089031, + -0.031708039343357086, + 0.06191248819231987, + -0.027794284746050835, + -0.00493917940184474, + -0.0176561139523983, + -0.025008222088217735, + -0.012791561894118786, + 0.009546684101223946, + -0.020121557638049126, + -0.023858418688178062, + -0.04922042787075043, + -0.05258139222860336, + 0.0020978383254259825, + 0.012802617624402046, + 0.005353771615773439, + -0.018872253596782684, + -0.02591479755938053, + -0.00019658597011584789, + 0.02690982073545456, + -0.020011000335216522, + -0.01139853149652481, + 0.024897664785385132, + 0.0033968950156122446, + -0.02372574992477894, + -0.010690960101783276, + -0.03800984472036362, + 0.005630166735500097, + -0.007506889291107655, + -0.007059129420667887, + 0.06584835052490234, + 0.015091168694198132, + -0.027462610974907875, + -0.03254827857017517, + 0.011299028992652893, + 0.05134314298629761, + -0.056119248270988464, + -0.030690904706716537, + 0.03529011830687523, + 0.023150848224759102, + 0.02626858465373516, + -0.07164159417152405, + -0.01772245019674301, + 0.036572590470314026, + -0.03774450719356537, + -0.018109403550624847, + -0.00828632339835167, + -0.0336538590490818, + -0.011149776168167591, + 0.02483133040368557, + -0.0019928081892430782, + 0.017269162461161613, + 0.015433899126946926, + -0.006025411654263735, + -0.006428948603570461, + -0.04820329323410988, + 0.011453810147941113, + -0.017081212252378464, + 0.0025981133803725243, + 0.029165204614400864, + 0.038982756435871124, + -0.0056578065268695354, + -0.02275284007191658, + -0.009800967760384083, + 0.0016445504734292626, + 0.036572590470314026, + -0.02943054400384426, + 0.0003204454842489213, + 0.013222738169133663, + 0.016539478674530983, + -0.004220552276819944, + -0.001237558783032, + -0.004601977299898863, + 0.025981133803725243, + 0.005643986631184816, + 0.010823629796504974, + 0.026644481346011162, + -0.010320590808987617, + 0.0013895760057494044, + 0.01624097302556038, + -0.01673848368227482, + -0.01911548152565956, + 0.004098938312381506, + 0.014693159610033035, + 0.021370863541960716, + 0.03042556531727314, + 0.00995022151619196, + 0.00512159988284111, + 0.00854613445699215, + -0.01673848368227482, + -0.0341845378279686, + -0.013244849629700184, + -0.024676548317074776, + -0.011608591303229332, + 0.0313984751701355, + -0.02152564562857151, + -0.02312873676419258, + -0.03422876074910164, + -0.011442754417657852, + -0.01605302281677723, + 0.014958498999476433, + -0.01815362647175789, + -0.0024654436856508255, + -0.0023604135494679213, + 0.0015464301686733961, + 0.0032891009468585253, + 0.07274717092514038, + -0.012271939776837826, + 0.03316740319132805, + 0.05107780173420906, + 0.02258700132369995, + 0.057224828749895096, + 0.020917575806379318, + -0.03009389154613018, + -0.006545034237205982, + 0.00039386292337439954, + 0.000239599947235547, + -0.032039713114500046, + 0.034405652433633804, + -0.048070624470710754, + 0.02591479755938053, + 0.03226082772016525, + -0.0037147493567317724, + 0.001410996657796204, + 0.03907120227813721, + 0.02940843254327774, + 0.009109980426728725, + -0.0014400181826204062, + -0.01156436838209629, + 0.018164681270718575, + -0.013996644876897335, + -0.03323373943567276, + 0.03389708697795868, + 0.02218899317085743, + 0.04468755051493645, + -0.0005686827935278416, + -0.00013569268048740923, + 0.013410687446594238, + -0.018208904191851616, + -0.0071696871891617775, + 0.02164725959300995, + -0.013554412871599197, + 0.0011663869954645634, + 0.024963999167084694, + -0.007600863464176655, + -0.02339407615363598, + -0.007506889291107655, + -0.023195071145892143, + -0.0643005445599556, + -0.0377223938703537, + 0.021094469353556633, + -0.032725173979997635, + -0.03909331187605858, + 0.025627346709370613, + 0.012537279166281223, + 0.019413987174630165, + 0.022575946524739265, + 0.018164681270718575, + -0.02447754517197609, + 0.01174126099795103, + 0.025627346709370613, + 0.011210582219064236, + 0.019458210095763206, + -0.03190704435110092, + 0.03137636557221413, + 0.020353730767965317, + 0.008861225098371506, + 0.04590368643403053, + -0.023305628448724747, + -0.0037258050870150328, + 0.05258139222860336, + 0.05779973044991493, + -0.06699815392494202, + 0.017147548496723175, + -0.01344385463744402, + 0.017501333728432655, + 0.004787161946296692, + 0.023305628448724747, + 0.015920354053378105, + 0.05218338221311569, + 0.016904320567846298, + 0.015820851549506187, + -0.004455488175153732, + -0.02688770927488804, + -0.009695937857031822, + -0.008009928278625011, + -0.02688770927488804, + -0.034494102001190186, + -0.018418965861201286, + -0.007158631458878517, + 0.030270785093307495, + 0.013001622632145882, + -0.00041355605935677886, + 0.014118258841335773, + 0.005925909616053104, + -0.012238772585988045, + 0.022487500682473183, + -0.034073978662490845, + -0.02374786138534546, + -0.008772778324782848, + 0.0038861141074448824, + -0.030005445703864098, + -0.017213882878422737, + -0.041746705770492554, + 0.02374786138534546, + 0.03526800498366356, + 0.02553890086710453, + 0.029231538996100426, + 0.04411264881491661, + -0.0025483621284365654, + 0.02412375807762146, + 0.003908225800842047, + -0.05417342856526375, + -0.017103325575590134, + 0.002205632394179702, + -0.004361513536423445, + 0.011663870885968208, + 0.022089490666985512, + 0.013974533416330814, + 0.016605813056230545, + -0.01488110888749361, + 0.023504633456468582, + -0.014449932612478733, + 0.056428808718919754, + -0.01362074725329876, + 0.019347652792930603, + -0.01904914528131485, + -0.006550562102347612, + -0.029120981693267822, + 0.012924231588840485, + 0.031332142651081085, + 0.03577657416462898, + -0.016163581982254982, + 0.015102224424481392, + -0.042830172926187515, + -0.006616896949708462, + -0.009535628370940685, + -0.005417342763394117, + -0.014947443269193172, + -0.0011000522645190358, + 0.005572123918682337, + 0.052227605134248734, + -0.005077376961708069, + 0.007728005293756723, + 0.029165204614400864, + -0.002313426462933421, + 0.010596985928714275, + 0.007650614716112614, + 0.0009563268395140767, + 0.0018407909665256739, + -0.021404031664133072, + -0.036860041320323944, + 0.03113313764333725, + 0.011774428188800812, + -0.011498033069074154, + -0.007374219596385956, + 0.00973463337868452, + -0.00328633701428771, + -0.010674376040697098, + 0.02629069611430168, + -0.006920931860804558, + 0.04851285740733147, + -0.03245983272790909, + 0.005765600595623255, + 0.015566568821668625, + -0.012282995507121086, + -0.009463765658438206, + 0.0012741810642182827, + -0.02967377007007599, + -0.0014455460477620363, + 0.02169148251414299, + 0.00681037362664938, + -0.01971249468624592, + -0.006782734300941229, + -0.013554412871599197, + -0.00031336286338046193, + 0.0007739061256870627, + -0.047584168612957, + 0.007927009835839272, + 0.01595352217555046, + -0.04798217862844467, + 0.014836885035037994, + 0.002046705223619938, + -0.0325261689722538, + -0.001420670421794057, + -0.025030333548784256, + 0.00663900887593627, + 0.012913175858557224, + -0.047761060297489166, + 0.0013211682671681046, + -0.020309507846832275, + 0.0019002158660441637, + 0.01538967527449131, + 0.02905464544892311, + 0.004925359506160021, + 0.03637358546257019, + 0.005154767539352179, + 0.032658837735652924, + -0.0012831639032810926, + 0.022387998178601265, + -0.023283516988158226, + 0.02514089271426201, + -0.0036815819330513477, + -0.004187384620308876, + -0.025472566485404968, + -0.04406842589378357, + -0.043250296264886856, + 0.023570967838168144, + 0.03767817094922066, + -0.0013854301068931818, + -0.05501366779208183, + 0.060276228934526443, + -0.017048045992851257, + 0.006163609214127064, + -0.010718599893152714, + 0.04731883108615875, + -0.03391920030117035, + 0.0204421766102314, + -0.00805967953056097, + -0.01777772791683674, + -0.011100024916231632, + 0.02270861528813839, + -0.022321663796901703, + 0.009087868966162205, + 0.0036677620373666286, + 0.027816396206617355, + 0.028523966670036316, + -0.025339897722005844, + 0.004684895742684603, + -0.020187893882393837, + -0.0016072371508926153, + 0.01139853149652481, + -0.03641780838370323, + -0.012382498010993004, + 0.02454387955367565, + -0.00016359130677301437, + 0.015168559737503529, + 0.026312807574868202, + -0.020619070157408714, + 0.025472566485404968, + 0.01540073100477457, + 0.009988916106522083, + 0.03710326924920082, + 0.015632903203368187, + -0.0234161876142025, + -0.004187384620308876, + -0.007960177026689053, + -0.009729105047881603, + -0.0049474709667265415, + 0.04486444219946861, + -0.05523478239774704, + 0.009955748915672302, + 0.009596435353159904, + -0.020928632467985153, + 0.011962377466261387, + -0.023217182606458664, + 0.000352749164449051, + -0.011050273664295673, + 0.043581970036029816, + 0.00689881993457675, + 0.03555545583367348, + -0.030270785093307495, + -0.005771128460764885, + -0.019579824060201645, + -0.02629069611430168, + 0.008993894793093204, + 0.012238772585988045, + -0.05731327459216118, + 0.04895509034395218, + 0.03184070810675621, + 0.0058429911732673645, + 0.024256428703665733, + 0.012194548733532429, + -0.022410109639167786, + 0.01869536004960537, + -0.005804295651614666, + -0.06049734354019165, + -0.018982810899615288, + 0.014239871874451637, + -0.05673837289214134, + 0.007119935937225819, + 0.007213910575956106, + -0.00865116436034441, + -0.008789362385869026, + -0.005135419778525829, + -0.007357636000961065, + -0.027197271585464478, + 0.031310029327869415, + -0.001958258915692568, + 0.026644481346011162, + 0.022973954677581787, + -0.004049187060445547, + -0.002054997021332383, + -0.007086768746376038, + -0.036174580454826355, + 0.030713016167283058, + 0.0005448437295854092, + -0.016506310552358627, + -0.036572590470314026, + 0.016274139285087585, + -0.01470421627163887, + 0.009342152625322342, + 0.013996644876897335, + 0.048822417855262756, + -0.027418388053774834, + -0.015942465513944626, + -0.02556101232767105, + -0.0259369108825922, + -0.018286295235157013, + 0.0008927559829317033, + -0.003946921322494745, + 0.0399777777493, + -0.007523472886532545, + 0.004635144956409931, + -0.02306240238249302, + 0.03542278707027435, + 0.023659415543079376, + 0.034869998693466187, + -0.021404031664133072, + 0.024632325395941734, + 0.038695305585861206, + -0.026467587798833847, + 0.027750061824917793, + -0.050547122955322266, + 0.005903798155486584, + -0.004823093302547932, + 0.018684305250644684, + -0.010829157195985317, + 0.020685404539108276, + -0.02164725959300995, + -0.004192912485450506, + -0.019436098635196686, + -0.003982852678745985, + 0.012625725008547306, + -0.015754517167806625, + -0.005671625956892967, + 0.012780506163835526, + -0.008844641037285328, + 0.0006768223247490823, + -0.00875619426369667, + 0.017357608303427696, + 0.0038059595972299576, + -0.02520722709596157, + 0.0008195113041438162, + -0.07097824662923813, + -0.025008222088217735, + -0.00981755182147026, + 0.0007669962360523641, + -0.035201672464609146, + -0.003980088513344526, + 0.01982305198907852, + -0.01770033873617649, + 0.034737326204776764, + -0.005046973470598459, + -0.027860619127750397, + 0.0539080873131752, + 0.02260911464691162, + -0.05567701533436775, + 0.007827507331967354, + -0.009314512833952904, + 0.027904842048883438, + 0.016207804903388023, + -0.030005445703864098, + -0.026666592806577682, + -0.010226616635918617, + -0.002440568059682846, + 0.004344929940998554, + 0.012183493003249168, + 0.011929209344089031, + 0.01800990104675293, + 0.001634876593016088, + -0.009159731678664684, + 0.025096669793128967, + -0.02445543184876442, + -0.016019856557250023, + 0.021580925211310387, + -0.03529011830687523, + 0.004085118416696787, + -0.0026658300776034594, + -0.0025027571246027946, + -0.0023687053471803665, + -0.0016362585593014956, + -0.0023065165150910616, + 0.01734655164182186, + -0.018164681270718575, + 0.05174114927649498, + -0.02032056264579296, + -0.006545034237205982, + -0.021614091470837593, + -0.002175228903070092, + 0.01186287496238947, + 0.002652010414749384, + -0.005964604672044516, + -0.04152559116482735, + -0.0011802067747339606, + -0.0054974970407783985, + 0.014062979258596897, + 0.03635147586464882, + 0.0017910398310050368, + -0.006008828058838844, + -0.010596985928714275, + -0.008595885708928108, + 0.017169659957289696, + -0.03495844453573227, + -0.014604713767766953, + -0.008612468838691711, + 0.04753994569182396, + 0.03949132189154625, + -0.0007124082185328007, + -0.005323368590325117, + -0.038319408893585205, + 0.06372564285993576, + 0.04512977972626686, + -0.02273072674870491, + 0.021039189770817757, + 0.011995544657111168, + 0.014449932612478733, + -0.033101070672273636, + -0.001140820560976863, + -0.013587580062448978, + 0.00665559247136116, + 0.05067979544401169, + 0.031265806406736374, + -0.008612468838691711, + -0.012625725008547306, + -0.03524589538574219, + -0.01609724760055542, + 0.007755644619464874, + 0.03352119028568268, + 0.01567712612450123, + 0.023681527003645897, + 0.0003016160917468369, + -0.014472044073045254, + 0.02138192020356655, + 0.010983938351273537, + 0.005726905073970556, + -0.006091746501624584, + 0.00796570535749197, + 0.0012983656488358974, + -0.019082313403487206, + -0.025118781253695488, + -0.009668298065662384, + 0.01381975132972002, + -0.0060696350410580635, + -0.008623525500297546, + 0.012194548733532429, + 0.04665548354387283, + -0.0038916422054171562, + 0.030315008014440536, + 0.001934765256009996, + -0.00009820661216508597, + -0.015588680282235146, + 0.014173537492752075, + -0.0061857206746935844, + 0.013841863721609116, + -0.011116608045995235, + 0.01037586946040392, + 0.021591980010271072, + -0.018850142136216164, + 0.0009549448732286692, + 0.014107202179729939, + 0.03873952850699425, + 0.0038474188186228275, + 0.06368141621351242, + 0.012581502087414265, + 0.061381809413433075, + 0.036240916699171066, + 0.02084018476307392, + 0.04477599635720253, + 0.014118258841335773, + -0.01139853149652481, + 0.013178515248000622, + -0.023924754932522774, + -0.004485891200602055, + 0.02048639953136444, + 0.0015104988124221563, + -0.015511289238929749, + 0.0010385543573647738, + -0.017103325575590134, + 0.04159192368388176, + 0.007081240881234407, + -0.023858418688178062, + 0.005682681687176228, + 0.051254693418741226, + -0.007799868006259203, + 0.010005500167608261, + -0.029297873377799988, + 0.023349853232502937, + -0.010370342060923576, + -0.020353730767965317, + 0.011763372458517551, + 0.020895464345812798, + 0.008794889785349369, + -0.026025356724858284, + 0.0028289032634347677, + -0.005494733341038227, + -0.001643168507143855, + 0.030690904706716537, + -0.024212205782532692, + 0.009087868966162205, + 0.009320040233433247, + -0.02372574992477894, + 0.04577101767063141, + -0.02516300417482853, + 0.026732927188277245, + -0.010348229669034481, + 0.00328633701428771, + 0.010121585801243782, + 0.0014455460477620363, + -0.04784950986504555, + -0.009275817312300205, + -0.011182943359017372, + -0.012957398779690266, + 0.004508003126829863, + 0.002296842634677887, + 0.04369252547621727, + 0.029098868370056152, + 0.004568810109049082, + 0.017291273921728134, + -0.004331110045313835, + 0.024212205782532692, + -0.002628516871482134, + -0.06881130486726761, + -0.003590371459722519, + 0.0061857206746935844, + 0.0060696350410580635, + 0.0071365199983119965, + -0.03876163810491562, + 0.016605813056230545, + -0.03999989107251167, + 0.001632112660445273, + 0.021260306239128113, + 0.04099491238594055, + 0.03840785473585129, + 0.015312285162508488, + 0.013432798907160759, + 0.003134319791570306, + -0.030690904706716537, + -0.009900470264256, + -0.0019651686307042837, + -0.02204526774585247, + 0.03188493102788925, + 0.009436126798391342, + 0.002169701037928462, + -0.019657215103507042, + 0.01821996085345745, + 0.0023217182606458664, + 0.04926465079188347, + 0.015124335885047913, + 0.017810896039009094, + -0.010862325318157673, + 0.01208399049937725, + 0.028479743748903275, + -0.039668213576078415, + 0.001457983860746026, + -0.01538967527449131, + 0.0010240436531603336, + 0.0056163473054766655, + 0.015577624551951885, + 0.0027860619593411684, + -0.015920354053378105, + -0.019745660945773125, + 0.015179615467786789, + -0.008446631953120232, + -0.002276113023981452, + -0.037213828414678574, + -0.01919287070631981, + -0.0005669553065672517, + -0.026777150109410286, + -0.03663892671465874, + 0.01767822727560997, + -0.05700371041893959, + 0.013731305487453938, + 0.023195071145892143, + 0.028435520827770233, + 0.004734646994620562, + 0.007860674522817135, + 0.014162481762468815, + 0.0022153062745928764, + 0.005630166735500097, + -0.0017468166770413518, + 0.012559390626847744, + 0.05386386439204216, + 0.0045494623482227325, + -0.023548856377601624, + 0.01923709362745285, + 0.05550012364983559, + 0.01755661331117153, + -0.02148142270743847, + -0.03144269809126854, + 0.016130413860082626, + -0.016484199091792107, + 0.024676548317074776, + -0.02551678940653801, + -0.01763400249183178, + -0.0137976398691535, + 0.016163581982254982, + -0.01536756381392479, + -0.027219383046030998, + -0.02976221777498722, + -0.002943607047200203, + -0.01734655164182186, + -0.021558811888098717, + -0.011630702763795853, + -0.008347130380570889, + 0.017235994338989258, + 0.0025981133803725243, + 0.011807596310973167, + -0.01484794169664383, + -0.0038114874623715878, + -0.0511220246553421, + 0.01519067119807005, + -0.024256428703665733, + -0.011332196183502674, + -0.032680947333574295, + 0.03880586475133896, + -0.00515753123909235, + 0.0032338218297809362, + 0.0063294460996985435, + 0.0038391270209103823, + -0.012095047160983086, + 0.012636780738830566, + -0.009585379622876644, + 0.01471527200192213, + 0.008761722594499588, + 0.03321162611246109, + 0.04466543719172478, + -0.003128791693598032, + -0.05280250683426857, + -0.031597480177879333, + 0.029828552156686783, + 0.0019320013234391809, + 0.025649460032582283, + 0.006224416196346283, + 0.01815362647175789, + 0.008253155276179314, + 0.010486427694559097, + -0.004643436521291733, + -0.024742882698774338, + -0.048733972012996674, + -0.00810943078249693, + -0.031685926020145416, + -0.00648422772064805, + -0.019867274910211563, + -0.03427298367023468, + -0.0021586453076452017, + -0.00648422772064805, + -0.003966268617659807, + -0.019601935520768166, + 0.01730232872068882, + -0.031221583485603333, + 0.014162481762468815, + 0.001896069967187941, + -0.006539506372064352, + -0.012747338972985744, + 0.002998886164277792, + 0.03261461481451988, + -0.014516266994178295, + -0.010613569058477879, + 0.004215024411678314, + -0.023703638464212418, + -0.020530622452497482, + -0.011475921608507633, + 0.010497483424842358, + 0.011216110549867153, + 0.027727950364351273, + 0.011498033069074154, + -0.02867874875664711, + -0.008208932355046272, + 0.016627924516797066, + 0.009369791485369205, + -0.006246527656912804, + -0.001590653439052403, + 0.01344385463744402, + -0.026998266577720642, + -0.0010717217810451984, + -0.012581502087414265, + 0.021779928356409073, + 0.02027633972465992, + 0.004143161699175835, + -0.0008126014145091176, + -0.006086218636482954, + 0.009215010330080986, + 0.019292373210191727, + 0.002631280804052949, + 0.022410109639167786, + 0.008540606126189232, + -0.03911542519927025, + -0.0014165245229378343, + 0.0050110421143472195, + -0.04380308464169502, + -0.0017606363398954272, + 0.01189604215323925, + 0.01206187903881073, + -0.014250927604734898, + -0.005630166735500097, + -0.020707515999674797, + -0.0071144080720841885, + 0.02218899317085743, + -0.0011035071220248938, + 0.0027183452621102333, + 0.014162481762468815, + 0.024389097467064857, + -0.023217182606458664, + 0.012625725008547306, + 0.006705343723297119, + 0.005373119376599789, + 0.005765600595623255, + 0.04652281105518341, + 0.021614091470837593, + 0.012747338972985744, + -0.004057479090988636, + -0.03674948215484619, + 0.013244849629700184, + -0.03257039189338684, + 0.010768350213766098, + -0.0006968610105104744, + 0.03261461481451988, + 0.029651658609509468, + 0.00986730307340622, + -0.007777756080031395, + -0.03332218527793884, + -0.008043095469474792, + 0.021492477506399155, + -0.026113802567124367, + 0.025649460032582283, + -0.0004121740930713713, + -0.03882797434926033, + -0.06487544625997543, + 0.028745083138346672, + 0.01642892137169838, + 0.013521244749426842, + -0.004977874457836151, + -0.010392453521490097, + 0.019557712599635124, + -0.0005987407639622688, + 0.029187316074967384, + -0.032725173979997635, + 0.02312873676419258, + -0.018828030675649643, + -0.00823657214641571, + -0.048468634486198425, + -0.010652264580130577, + -0.022476444020867348, + -0.022222161293029785, + 0.037656061351299286, + 0.04709771275520325, + 0.025030333548784256, + 0.002940843114629388, + -0.011061329394578934, + -0.006970682647079229, + 0.017976732924580574, + 0.007230494171380997, + -0.010967355221509933, + -0.021580925211310387, + -0.0076782540418207645, + -0.03453832492232323, + -0.014250927604734898, + -0.020884409546852112, + -0.012813673354685307, + 0.022012101486325264, + 0.003770028240978718, + 0.012415665201842785, + 0.001969314645975828, + -0.022819174453616142, + -0.016937486827373505, + 0.014184593223035336, + -0.018452132120728493, + -0.03294628858566284, + -0.0029353152494877577, + -0.01697065494954586, + 0.014527322724461555, + 0.003059693146497011, + -0.010751767084002495, + 0.008761722594499588, + 0.04336085170507431, + -0.008435576222836971, + 0.04572679474949837, + 0.008861225098371506, + 0.005925909616053104, + -0.02414586953818798, + 0.004389153327792883, + -0.012338274158537388, + -0.0259369108825922, + 0.021348752081394196, + 0.017589779570698738, + 0.00814259797334671, + -0.0023244821932166815, + 0.005671625956892967, + -0.03283572942018509, + 0.019789883866906166, + 0.011818652041256428, + -0.020121557638049126, + 0.06611369550228119, + 0.009314512833952904, + 0.016650035977363586, + 0.014361485838890076, + 0.022631226107478142, + -0.011685982346534729, + 0.003687109798192978, + 0.018297351896762848, + -0.017711393535137177, + 0.012017656117677689, + -0.02131558582186699, + 0.020928632467985153, + 0.013985589146614075, + -0.016893263906240463, + -0.04336085170507431, + -0.010359286330640316, + 0.027551056817173958, + 0.007799868006259203, + -0.05014911666512489, + 0.01772245019674301, + 0.017224937677383423, + 0.027197271585464478, + -0.006080690771341324, + -0.03951343521475792, + 0.0303813423961401, + -0.03438354283571243, + -0.0026464825496077538, + -0.033366408199071884, + -0.03650625795125961, + -0.02624647319316864, + 0.03559967875480652, + 0.004488655366003513, + -0.004336637910455465, + -0.027727950364351273, + 0.001473185489885509, + -0.0158097967505455, + 0.007794340141117573, + -0.0237920843064785, + -0.013355407863855362, + -0.028899865224957466, + 0.016981711611151695, + -0.005201754625886679, + 0.007849618792533875, + 0.016417864710092545, + -0.015898242592811584, + -0.019612992182374, + -0.01836368627846241, + -0.03363174945116043, + -0.013753416948020458, + -0.006169137079268694, + 0.00029885213007219136, + -0.008468743413686752, + 0.01221666019409895, + 0.009590907953679562, + 0.009491405449807644, + 0.04161403700709343, + 0.018938587978482246, + -0.01152014546096325, + -0.015876131132245064, + 0.012570446357131004, + -0.013244849629700184, + 0.02235483005642891, + -0.022266384214162827, + -0.03389708697795868, + 0.01487005315721035, + -0.0006156699382700026, + 0.03469310328364372, + 0.00981755182147026, + 0.03192915394902229, + 0.005475385580211878, + -0.03009389154613018, + 0.02221110463142395, + 0.003783848136663437, + 0.04344930127263069, + -0.016064079478383064, + 0.008982839062809944, + 0.000902429805137217, + -0.022973954677581787, + -0.0227749515324831, + -0.020552733913064003, + 0.0030292896553874016, + -0.011829707771539688, + 0.007385275326669216, + 0.004875608254224062, + 0.02693193219602108, + -0.0014275803696364164, + 0.000679240794852376, + -0.0237920843064785, + -0.006108330097049475, + 0.0054781497456133366, + -0.007921481505036354, + -0.011205054819583893, + 0.011752316728234291, + 0.007689309772104025, + 0.0405084565281868, + 0.011829707771539688, + -0.0034825773909687996, + 0.017224937677383423, + -0.014018756337463856, + 0.009402958676218987, + 0.0028441050089895725, + -0.03458254784345627, + 0.034869998693466187, + -0.00035827705869451165, + -0.01153120119124651, + 0.028479743748903275, + 0.012526223435997963, + 0.01130455732345581, + 0.0013854301068931818, + -0.005254269577562809, + 0.003275281051173806, + -0.016539478674530983, + -0.005055265035480261, + -0.029518989846110344, + 0.00493917940184474, + 0.007285773288458586, + 0.006478699389845133, + -0.038850087672472, + 0.02150353416800499, + 0.0042675393633544445, + 0.0023120443802326918, + -0.004952998831868172, + -0.02938631922006607, + -0.023924754932522774, + 0.01963510364294052, + -0.03314529359340668, + 0.00840240903198719, + 0.01153120119124651, + 0.01572134904563427, + -0.00988941453397274, + -0.04210049286484718, + 0.04294073209166527, + 0.016517367213964462, + -0.010514067485928535, + 0.02242116443812847, + -0.01597563363611698, + 0.00003066257340833545, + 0.012603613547980785, + 0.03217238187789917, + 0.004173565190285444, + -0.010508539155125618, + 0.03226082772016525, + -0.044178981333971024, + 0.03259250149130821, + -0.01990044303238392, + 0.011851819232106209, + -0.04192359745502472, + -0.03739072009921074, + 0.004339402075856924, + 0.01154225692152977, + -0.0028745082672685385, + 0.0006740583921782672, + 0.01628519594669342, + 0.02310662530362606, + 0.019657215103507042, + -0.041149694472551346, + 0.0046323807910084724, + 0.04296284541487694, + 0.023570967838168144, + -0.01522383838891983, + 0.011354307644069195, + -0.034073978662490845, + -0.02166937105357647, + -0.023371964693069458, + -0.006141497753560543, + 0.012946343049407005, + -0.007739061024039984, + 0.024389097467064857, + 0.015478122048079967, + -0.019999945536255836, + 0.012835785746574402, + 0.019226038828492165, + -0.013410687446594238, + 0.010668848641216755, + -0.007512417156249285, + -0.02553890086710453, + 0.04709771275520325, + -0.019425043836236 + ] + }, + { + "HotelId": "30", + "HotelName": "Fishing Creek Lodge", + "Description": "Best bites along the Colorado river, but only if you know where to go! Fishing expeditions offered daily. Package deals include professional guides, gear, lunch, and fishing licenses. ", + "Description_fr": "Meilleures bouchĆ©es le long du fleuve Colorado, mais seulement si vous savez où aller! ExpĆ©ditions de pĆŖche offertes tous les jours. Les forfaits incluent des guides professionnels, du matĆ©riel, le dĆ©jeuner et des permis de pĆŖche.", + "Category": "Budget", + "Tags": [ + "restaurant", + "coffee in lobby", + "24-hour front desk service" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-08-29T00:00:00Z", + "Rating": 4.2, + "Address": { + "StreetAddress": "3309 Esperanza Xing", + "City": "Austin", + "StateProvince": "TX", + "PostalCode": "78758", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -97.726486, + 30.40016 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 239.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 73.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "coffee maker", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "jacuzzi tub", + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.0007526544504798949, + 0.009476800449192524, + 0.03864685446023941, + 0.0019415883580222726, + -0.040426645427942276, + 0.029979048296809196, + -0.011545516550540924, + 0.03554955869913101, + -0.020606262609362602, + 0.02433919720351696, + 0.004417691379785538, + 0.006893794517964125, + 0.02454722486436367, + -0.008199743926525116, + 0.00866202637553215, + 0.07738616317510605, + 0.02588784508407116, + -0.019519897177815437, + -0.02910071238875389, + 0.05256156995892525, + 0.008760262280702591, + -0.005761201027780771, + -0.008748704567551613, + 0.0022767435293644667, + 0.03649723902344704, + 0.029840365052223206, + -0.030903615057468414, + 0.08635445684194565, + 0.039109136909246445, + 0.029378080740571022, + 0.027945004403591156, + -0.040311072021722794, + -0.01704668439924717, + -0.06495075672864914, + -0.020744947716593742, + -0.002520886715501547, + 0.018341075628995895, + 0.011730429716408253, + 0.01971636712551117, + -0.00006415078678401187, + 0.0446334183216095, + 0.04442539066076279, + 0.03684395179152489, + 0.026951095089316368, + -0.0038802875205874443, + 0.013336863368749619, + -0.05380973592400551, + 0.03416271135210991, + -0.005024437792599201, + 0.017797892913222313, + -0.04937181994318962, + 0.018641559407114983, + -0.0042443354614079, + -0.02616521529853344, + 0.0030337318312376738, + 0.057970281690359116, + 0.012631881982088089, + -0.014076516032218933, + 0.02117255888879299, + -0.027875661849975586, + 0.032729633152484894, + -0.03460187837481499, + 0.011429945938289165, + 0.012759009376168251, + -0.06485829502344131, + 0.053486138582229614, + -0.030464446172118187, + 0.02089518867433071, + -0.02567981742322445, + 0.012886136770248413, + 0.002178508322685957, + -0.004432137589901686, + -0.003964076284319162, + -0.020779618993401527, + 0.0016815542476251721, + 0.0026682394091039896, + 0.01571762003004551, + 0.00041822160710580647, + 0.017647651955485344, + -0.01943899877369404, + -0.021912211552262306, + -0.00466327928006649, + -0.02047913521528244, + 0.00100402079988271, + -0.02420051209628582, + -0.05265402793884277, + 0.005688969511538744, + -0.04040353000164032, + 0.024177398532629013, + 0.02251317910850048, + -0.01487395353615284, + -0.05556641146540642, + -0.03078804351389408, + -0.021785084158182144, + -0.0034671220928430557, + 0.04146678000688553, + -0.008910504169762135, + 0.02180819772183895, + -0.00023493364278692752, + 0.0218890979886055, + 0.03684395179152489, + -0.04909444972872734, + 0.01055160816758871, + -0.0422295480966568, + 0.08760261535644531, + -0.016538172960281372, + -0.04613583907485008, + 0.0489557646214962, + 0.04375508055090904, + 0.014249871484935284, + -0.006194591522216797, + -0.012562539428472519, + -0.004677725490182638, + 0.011655309237539768, + -0.011591744609177113, + 0.044078677892684937, + 0.023668887093663216, + -0.019196299836039543, + 0.03554955869913101, + 0.017381839454174042, + -0.005301807541400194, + 0.001859244192019105, + -0.035387758165597916, + 0.0015342015540227294, + -0.04650566354393959, + 0.0067262169905006886, + 0.0017321164486929774, + 0.0036953743547201157, + 0.006009678356349468, + -0.040079932659864426, + -0.03002527728676796, + 0.0035798035096377134, + 0.08704788237810135, + -0.03640478104352951, + -0.010522715747356415, + 0.004567933268845081, + -0.06046660989522934, + -0.010372473858296871, + -0.013290634378790855, + -0.020109308883547783, + 0.0054636066779494286, + 0.034902364015579224, + -0.00932655856013298, + -0.02406182698905468, + 0.04218331724405289, + -0.03478679060935974, + -0.014330771751701832, + 0.012354511767625809, + 0.016434159129858017, + 0.03085738606750965, + -0.01332530565559864, + -0.006466182880103588, + -0.01028001680970192, + -0.003594249952584505, + -0.024015599861741066, + -0.017578309401869774, + -0.05399464815855026, + -0.03367731347680092, + 0.012828351929783821, + 0.04726843163371086, + -0.010701850056648254, + 0.010199117474257946, + 0.012932365760207176, + -0.015428693033754826, + 0.03397779539227486, + -0.0482623390853405, + -0.03210555016994476, + -0.00776635343208909, + -0.0541333332657814, + -0.01003153994679451, + 0.037837859243154526, + -0.00030481783323921263, + 0.00008861927926773205, + 0.01936965622007847, + 0.011585966683924198, + -0.02342618815600872, + -0.03654346615076065, + -0.037283118814229965, + 0.009684828110039234, + -0.04951050505042076, + -0.01663062907755375, + -0.018144605681300163, + -0.037745401263237, + -0.03866996988654137, + 0.006304383743554354, + 0.008355764672160149, + 0.03182817995548248, + -0.02947053872048855, + -0.030811158940196037, + 0.005238243844360113, + -0.004189439117908478, + 0.016156788915395737, + -0.027667634189128876, + -0.013059493154287338, + -0.011741986498236656, + 0.03122721239924431, + -0.03263717517256737, + 0.007841474376618862, + 0.03670526668429375, + -0.003129077609628439, + -0.04005681723356247, + -0.03561890125274658, + 0.05371727794408798, + 0.022466951981186867, + -0.05556641146540642, + 0.02392314188182354, + -0.00043447373900562525, + 0.03238292038440704, + 0.012782123871147633, + -0.03691329434514046, + 0.020999202504754066, + 0.040010590106248856, + 0.0637950450181961, + 0.03450942039489746, + -0.002609009388834238, + -0.037213776260614395, + -0.05270025506615639, + 0.03344617038965225, + -0.014018730260431767, + 0.018953600898385048, + -0.06277802586555481, + -0.02819925919175148, + -0.012192713096737862, + 0.026951095089316368, + 0.017716994509100914, + 0.02743649296462536, + -0.003079960122704506, + -0.0211147740483284, + -0.010678736492991447, + -0.029262511059641838, + 0.011869114823639393, + 0.025980301201343536, + -0.0015139766037464142, + 0.005376928485929966, + -0.012920808047056198, + 0.02054847776889801, + -0.04530372843146324, + -0.02245539426803589, + 0.009869741275906563, + -0.04454096034169197, + 0.004250113852322102, + -0.04784628376364708, + -0.04685237631201744, + -0.006743552628904581, + 0.04216020554304123, + -0.015752291306853294, + -0.027251578867435455, + -0.017971249297261238, + 0.023553315550088882, + 0.00859846267849207, + 0.029378080740571022, + -0.0038542840629816055, + -0.006079020909965038, + -0.07992871850728989, + 0.03652035444974899, + -0.03235980495810509, + -0.00809573009610176, + -0.03316880017518997, + 0.03330748528242111, + -0.061622317880392075, + 0.007425419986248016, + -0.009967976249754429, + -0.02540244720876217, + -0.02194688282907009, + -0.024108055979013443, + 0.001870801323093474, + 0.03071870282292366, + -0.01893048733472824, + -0.0017061129910871387, + -0.04692171886563301, + -0.07632291316986084, + 0.008910504169762135, + -0.01816771924495697, + 0.03529530391097069, + -0.024038713425397873, + -0.012701223604381084, + 0.032406035810709, + -0.08293356001377106, + 0.048585936427116394, + 0.009667492471635342, + -0.027945004403591156, + -0.019820380955934525, + 0.05760045349597931, + -0.031180985271930695, + 0.025240648537874222, + -0.045766010880470276, + 0.06495075672864914, + -0.010690293274819851, + -0.013880045153200626, + -0.025910958647727966, + 0.0005085112643428147, + 0.007760575041174889, + 0.028800226747989655, + 0.029516765847802162, + 0.0222358088940382, + -0.004466808866709471, + -0.00026870195870287716, + -0.045349955558776855, + 0.04694483429193497, + -0.016029661521315575, + -0.04643632099032402, + 0.004455252084881067, + 0.03009461984038353, + 0.011996242217719555, + -0.016156788915395737, + 0.0391322523355484, + -0.00403630780056119, + -0.03779163211584091, + -0.022698093205690384, + -0.024847708642482758, + 0.01357956137508154, + 0.0244778823107481, + -0.018040591850876808, + -0.03640478104352951, + 0.06578285992145538, + -0.021449929103255272, + 0.02112632989883423, + -0.006581753492355347, + 0.026881752535700798, + -0.038693081587553024, + 0.03536464646458626, + 0.05478052794933319, + 0.05630606412887573, + 0.006945801433175802, + -0.025078849866986275, + -0.030395103618502617, + 0.06633760035037994, + -0.006876458879560232, + 0.006847565993666649, + 0.017578309401869774, + 0.012747452594339848, + -0.017867235466837883, + -0.03247537836432457, + 0.020074637606739998, + -0.02406182698905468, + 0.00546938506886363, + -0.00008812268788460642, + -0.01591408997774124, + 0.041628580540418625, + 0.0682791918516159, + -0.035734470933675766, + 0.04396310821175575, + -0.016318587586283684, + 0.0004366406938061118, + 0.01817927695810795, + 0.030903615057468414, + -0.009829291142523289, + 0.027598291635513306, + -0.018976714462041855, + 0.028361059725284576, + 0.020779618993401527, + 0.03212866559624672, + -0.003103074384853244, + -0.014504127204418182, + -0.022744320333003998, + -0.028361059725284576, + 0.027320921421051025, + 0.04241446033120155, + -0.014920182526111603, + 0.020074637606739998, + -0.04227577522397041, + -0.014665926806628704, + 0.020652491599321365, + -0.020444463938474655, + 0.015810076147317886, + 0.0009382899152114987, + -0.01367201842367649, + 0.0021611726842820644, + 0.0036491460632532835, + -0.01754363812506199, + 0.04877085238695145, + 0.032729633152484894, + -0.027667634189128876, + 0.0162030179053545, + 0.016099004074931145, + 0.05912598967552185, + 0.07909661531448364, + 0.041073840111494064, + -0.02426985464990139, + 0.022813662886619568, + -0.023946257308125496, + -0.02722846530377865, + 0.0187918022274971, + -0.019878167659044266, + 0.04551175609230995, + -0.004310788586735725, + -0.05542772635817528, + -0.015336236916482449, + -0.014481013640761375, + -0.0014135745586827397, + 0.04923313483595848, + -0.02988659217953682, + -0.00010906988609349355, + -0.03878553956747055, + 0.05773913860321045, + 0.030071506276726723, + 0.017659207805991173, + -0.014122744090855122, + -0.010915656574070454, + -0.005365371238440275, + 0.003972744103521109, + -0.01570606231689453, + -0.012689666822552681, + -0.0007425419753417373, + 0.013683575205504894, + 0.031088529154658318, + -0.017647651955485344, + -0.02967856451869011, + -0.033076345920562744, + 0.014226757921278477, + -0.014400113373994827, + -0.03323814272880554, + 0.038045886904001236, + 0.009407457895576954, + 0.0034324508160352707, + 0.026951095089316368, + -0.00025768662453629076, + -0.04320034012198448, + 0.001381070353090763, + -0.027251578867435455, + 0.030187075957655907, + -0.0003723544650711119, + 0.02350708842277527, + 0.013209735043346882, + -0.013544890098273754, + 0.06222328543663025, + 0.04343148320913315, + -0.00456215487793088, + 0.031805068254470825, + 0.02699732407927513, + 0.03971010446548462, + -0.0631016194820404, + -0.009863962419331074, + 0.05468807369470596, + -0.0565372034907341, + -0.031088529154658318, + 0.005951893050223589, + 0.032868318259716034, + -0.024292968213558197, + -0.007471648044884205, + -0.00046481104800477624, + 0.028499742969870567, + 0.00032052822643890977, + -0.006183034274727106, + -0.025910958647727966, + -0.012516310438513756, + 0.013891602866351604, + 0.013440876267850399, + -0.0353415310382843, + -0.06661497056484222, + -0.008991403505206108, + -0.0009397345711477101, + -0.004039197228848934, + -0.0090491883456707, + 0.027182238176465034, + 0.041281867772340775, + 0.050250157713890076, + -0.08381190150976181, + -0.001532756956294179, + 0.021854426711797714, + 0.00992174819111824, + -0.0014294655993580818, + -0.0006034959224052727, + -0.019623911008238792, + -0.02161172777414322, + -0.033839110285043716, + -0.008228636346757412, + 0.032521605491638184, + 0.05843256413936615, + -0.017485853284597397, + 0.03441696614027023, + 0.009343894198536873, + -0.027528949081897736, + 0.026327013969421387, + -0.017786337062716484, + -0.0847826898097992, + -0.011701537296175957, + -0.038461942225694656, + 0.027736976742744446, + 0.06730839610099792, + 0.014816168695688248, + 0.02385379932820797, + -0.039109136909246445, + 0.041559237986803055, + 0.006073242053389549, + -0.05408710613846779, + -0.012527868151664734, + -0.018352633342146873, + -0.10050031542778015, + -0.004362795501947403, + -0.012654995545744896, + -0.003091517137363553, + -0.07257842272520065, + -0.009095417335629463, + -0.016330145299434662, + 0.030256418511271477, + -0.022050896659493446, + -0.010187560692429543, + 0.022409165278077126, + 0.017936578020453453, + 0.022131796926259995, + -0.014261429198086262, + 0.01591408997774124, + -0.025309991091489792, + 0.003964076284319162, + -0.004120096564292908, + -0.004331013187766075, + -0.00016089613200165331, + 0.006639538798481226, + 0.0672159418463707, + 0.02517130598425865, + 0.019901281222701073, + 0.012470082379877567, + 0.01196157094091177, + -0.007304070517420769, + -0.00511978380382061, + -0.03233669325709343, + 0.005001323763281107, + -0.020363563671708107, + 0.017162254080176353, + -0.0028704882133752108, + -0.01985505223274231, + 0.03772228956222534, + -0.0025512240827083588, + -0.019693253561854362, + 0.014642812311649323, + 0.03515661880373955, + -0.007234727963805199, + 0.003077070927247405, + 0.009384343400597572, + 0.0195661261677742, + -0.02054847776889801, + -0.02917005494236946, + 0.01237762626260519, + 0.004749957472085953, + -0.013359976932406425, + -0.000482868985272944, + 0.0355033315718174, + -0.007853031158447266, + 0.01599499024450779, + -0.03813834488391876, + 0.01866467483341694, + -0.029562994837760925, + 0.022674977779388428, + 0.00498109869658947, + -0.0105978362262249, + 0.007708568125963211, + 0.038184572011232376, + 0.012839908711612225, + -0.00912430975586176, + -0.02049069106578827, + 0.02868465706706047, + -0.012389183044433594, + 0.00601545674726367, + 0.04680614918470383, + -0.01315195020288229, + 0.00037777185207232833, + -0.0010047430405393243, + -0.016723085194826126, + 0.03716754913330078, + -0.01126236841082573, + -0.024524111300706863, + 0.0007548214052803814, + 0.0204213485121727, + 0.0761842280626297, + 0.03460187837481499, + 0.03617364168167114, + -0.02306791953742504, + -0.03698263689875603, + -0.023900028318166733, + 0.025078849866986275, + 0.02595718763768673, + -0.0035653572995215654, + -0.02251317910850048, + 0.0775710791349411, + 0.00932655856013298, + 0.031943753361701965, + -0.02778320573270321, + -0.02778320573270321, + -0.00436568446457386, + 0.010303131304681301, + 0.0029152717906981707, + -0.011950014159083366, + 0.00933233741670847, + 0.0037589382845908403, + -0.018918929621577263, + 0.006679988466203213, + -0.021854426711797714, + 0.003987190313637257, + 0.030464446172118187, + 0.020444463938474655, + 0.030002163723111153, + -0.03175883740186691, + 0.010603615082800388, + 0.006847565993666649, + -0.02126501500606537, + 0.002042712876573205, + -0.0044234697706997395, + -0.03647412359714508, + 0.020363563671708107, + 0.011065898463129997, + -0.004400355741381645, + -0.005951893050223589, + 0.004371463321149349, + -0.02259407937526703, + -0.01977415382862091, + -0.021831313148140907, + 0.01230828370898962, + 0.009806176647543907, + -0.002737581729888916, + -0.005177569109946489, + 0.025934074074029922, + 0.036728378385305405, + -0.0014330771518871188, + -0.05736931413412094, + 0.03298388794064522, + -0.010921434499323368, + -0.030210191383957863, + -0.008760262280702591, + -0.004712396766990423, + -0.010782749392092228, + -0.004926202818751335, + 0.01606433279812336, + 0.0033746655099093914, + 0.008760262280702591, + 0.011996242217719555, + 0.014122744090855122, + -0.016803985461592674, + -0.01437699981033802, + -0.026003416627645493, + -0.0010451928246766329, + -0.00021994556300342083, + 0.0513596348464489, + -0.012250497937202454, + -0.032082438468933105, + -0.038623739033937454, + -0.009476800449192524, + 0.0027433603536337614, + -0.0237844567745924, + 0.018283290788531303, + 0.017069797962903976, + 0.0056716338731348515, + 0.013313748873770237, + -0.01880335807800293, + 0.021207230165600777, + -0.01374136097729206, + 0.028430400416254997, + -0.03261406347155571, + -0.015336236916482449, + -0.010216453112661839, + 0.07156140357255936, + 0.009632821194827557, + 0.01985505223274231, + -0.005249800626188517, + 0.027621407061815262, + -0.01164375152438879, + 0.014226757921278477, + -0.030187075957655907, + -0.013359976932406425, + -0.05122094973921776, + 0.0031724167056381702, + 0.04461030289530754, + 0.007945488207042217, + -0.026211442425847054, + 0.06356390565633774, + 0.015185995027422905, + -0.01754363812506199, + -0.01739339530467987, + -0.04299231246113777, + 0.045280613005161285, + -0.020733390003442764, + -0.008985624648630619, + 0.013475547544658184, + -0.022917676717042923, + -0.02785254828631878, + 0.02187754027545452, + -0.01196157094091177, + -0.014723711647093296, + 0.03520284593105316, + 0.020941417664289474, + -0.024385426193475723, + 0.003897623158991337, + -0.0038918445352464914, + 0.011869114823639393, + -0.019670139998197556, + -0.0014215200208127499, + 0.01444634236395359, + 0.0065933107398450375, + 0.014018730260431767, + -0.009210987947881222, + 0.015428693033754826, + -0.008361542597413063, + -0.003712709993124008, + -0.012516310438513756, + 0.028869569301605225, + 0.014342328533530235, + -0.02489393763244152, + -0.00654130382463336, + 0.007916595786809921, + -0.08732525259256363, + -0.014134300872683525, + 0.005590734537690878, + 0.014272985979914665, + 0.001616545720025897, + -0.01487395353615284, + -0.03219800814986229, + -0.0050966693088412285, + -0.020016850903630257, + 0.016364816576242447, + 0.0325678326189518, + 0.014203643426299095, + -0.007899260148406029, + -0.0014504127902910113, + 0.023807572200894356, + 0.01003153994679451, + -0.01118724700063467, + -0.05394842103123665, + 0.05616737902164459, + 0.002179953036829829, + -0.01392627414315939, + -0.00789348129183054, + 0.021993111819028854, + 0.027182238176465034, + -0.004813521169126034, + -0.017589865252375603, + 0.03115786984562874, + 0.035179730504751205, + -0.027459606528282166, + 0.015590492635965347, + 0.060790207237005234, + 0.0025309992488473654, + -0.052006833255290985, + 0.018606888130307198, + 0.02433919720351696, + -0.016179902479052544, + -0.002094719558954239, + -0.006674210075289011, + 0.008251750841736794, + -0.048632167279720306, + -0.014272985979914665, + -0.019543010741472244, + -0.00834420695900917, + 0.03582692891359329, + -0.013302192091941833, + 0.019878167659044266, + -0.05154454708099365, + 0.002932607429102063, + -0.00020947196753695607, + -0.030002163723111153, + -0.02385379932820797, + -0.029932821169495583, + 0.007853031158447266, + -0.01403028704226017, + -0.046043381094932556, + -0.00964437797665596, + 0.03682083636522293, + -0.000321250525303185, + -0.04719908908009529, + 0.006362169049680233, + -0.011701537296175957, + 0.013198178261518478, + 0.02868465706706047, + -0.014561912976205349, + 0.0015688727144151926, + -0.022478507831692696, + 0.005587845109403133, + -0.022744320333003998, + -0.0069342441856861115, + -0.03263717517256737, + -0.00834420695900917, + 0.03737557679414749, + 0.027690747752785683, + 0.00410565035417676, + 0.009563478641211987, + 0.007176942657679319, + 0.02482459507882595, + 0.0038456162437796593, + 0.02047913521528244, + -0.019485225901007652, + -0.02089518867433071, + 0.05001901462674141, + -0.02554113231599331, + -0.012759009376168251, + 0.019126957282423973, + -0.029447423294186592, + 0.011141018941998482, + 0.021623285487294197, + 0.01501263864338398, + 0.01564827747642994, + 0.022536294534802437, + 0.04715286195278168, + -0.017012013122439384, + -0.002567115006968379, + -0.014561912976205349, + 0.014977967366576195, + -0.037560489028692245, + -0.00394674064591527, + -0.01546336431056261, + 0.041697923094034195, + -0.0035682464949786663, + 0.029239395633339882, + -0.014735269360244274, + -0.014400113373994827, + -0.006616424769163132, + 0.07119157165288925, + -0.04343148320913315, + -0.019878167659044266, + -0.023391516879200935, + -0.0023186379112303257, + -0.019034501165151596, + -0.018560661002993584, + -0.009453685954213142, + -0.040519099682569504, + -0.001019189483486116, + 0.026835525408387184, + -0.020606262609362602, + 0.012816795147955418, + -0.021056989207863808, + 0.024801479652523994, + -0.005870993249118328, + 0.007454312406480312, + 0.026118986308574677, + 0.03009461984038353, + -0.0006750053144060075, + -0.005749644245952368, + 0.010366695001721382, + 0.010649843141436577, + 0.010228009894490242, + -0.004813521169126034, + -0.00128500210121274, + -0.043870650231838226, + 0.05029638484120369, + 0.0029109378810971975, + 0.002958610886707902, + -0.00821130070835352, + 0.018826473504304886, + 0.02588784508407116, + 0.028869569301605225, + 0.00275347288697958, + 0.037075091153383255, + 0.029146939516067505, + -0.0051804580725729465, + 0.014504127204418182, + -0.021519271656870842, + -0.013429319486021996, + -0.011169911362230778, + -0.00029416364850476384, + 0.03400091081857681, + -0.0041172076016664505, + 0.010147110559046268, + 0.009309222921729088, + -0.008084173314273357, + -0.0344863086938858, + 0.042830515652894974, + -0.00166566320694983, + -0.00457371212542057, + -0.005940335802733898, + 0.0018274622270837426, + -0.009002960287034512, + -0.0188727006316185, + -0.011037005111575127, + -0.003406447358429432, + 0.02715912275016308, + 0.005631184205412865, + -0.05339368060231209, + 0.003631810424849391, + 0.01093877013772726, + -0.0005955504602752626, + -0.025910958647727966, + -0.0014345217496156693, + -0.03568824380636215, + -0.015498035587370396, + -0.0006916186539456248, + 0.024084942415356636, + -0.004475476685911417, + -0.012470082379877567, + 0.031943753361701965, + -0.018710901960730553, + -0.009176316671073437, + 0.018260177224874496, + 0.020432906225323677, + 0.003319769399240613, + 0.04026484489440918, + -0.0031579704955220222, + 0.028499742969870567, + -0.009476800449192524, + -0.0018346854485571384, + 0.01322129275649786, + 0.020005295053124428, + 0.012643438763916492, + -0.05228419974446297, + 0.009101195260882378, + -0.0162839163094759, + -0.006483518518507481, + -0.015128209255635738, + 0.03529530391097069, + 0.007725903764367104, + 0.002413983689621091, + 0.04098138213157654, + -0.0035538000520318747, + -0.03127344325184822, + -0.0007241229177452624, + -0.02671995386481285, + 0.022131796926259995, + -0.008858497254550457, + -0.03360797092318535, + -0.02960922196507454, + -0.006812894716858864, + 0.029123825952410698, + 0.002958610886707902, + 0.010528494603931904, + -0.014111187309026718, + 0.005275804083794355, + 0.020028408616781235, + -0.01280523743480444, + 0.0060674636624753475, + -0.024524111300706863, + 0.032013095915317535, + -0.02208556793630123, + -0.01789035089313984, + -0.02644258551299572, + -0.0024818815290927887, + 0.0031435240525752306, + 0.03726000711321831, + 0.02496327832341194, + -0.007136492989957333, + -0.023379961028695107, + -0.007974380627274513, + -0.0011304263025522232, + -0.014758382923901081, + 0.0173240527510643, + 0.001251053181476891, + 0.01823706179857254, + 0.03141212463378906, + -0.01203091349452734, + -0.004669057670980692, + 0.05667588859796524, + 0.01698889769613743, + -0.01196157094091177, + 0.03513350337743759, + -0.005868104286491871, + -0.01353333331644535, + -0.013371534645557404, + -0.014723711647093296, + -0.009817734360694885, + -0.022767435759305954, + 0.02720535174012184, + -0.03143524006009102, + -0.021369028836488724, + -0.01963546872138977, + 0.022189581766724586, + -0.007564104627817869, + -0.01676931418478489, + -0.005232464987784624, + -0.03682083636522293, + 0.021923769265413284, + -0.0027809208258986473, + 0.016850212588906288, + -0.013290634378790855, + -0.005501166917383671, + 0.033561743795871735, + 0.014897068031132221, + -0.0015804298454895616, + 0.0005518502439372241, + 0.022339822724461555, + 0.002811258193105459, + 0.07243973761796951, + 0.0070035867393016815, + -0.002494883257895708, + 0.010522715747356415, + 0.004189439117908478, + 0.008124622516334057, + 0.023807572200894356, + 0.013232849538326263, + -0.035041049122810364, + 0.029285624623298645, + -0.0020297111477702856, + 0.007009365130215883, + 0.005108226556330919, + -0.038531284779310226, + 0.001982038142159581, + 0.037075091153383255, + -0.024108055979013443, + 0.03092672862112522, + -0.009511471726000309, + 0.03499481827020645, + -0.025448676198720932, + -0.0157754048705101, + -0.007361855823546648, + -0.025910958647727966, + 0.04544241353869438, + -0.01872245967388153, + -0.02917005494236946, + 0.02574915997684002, + -0.005356703884899616, + -0.0060327923856675625, + 0.007801024708896875, + 0.01196157094091177, + 0.020456019788980484, + 0.03298388794064522, + 0.013544890098273754, + 0.002285411348566413, + -0.02104543149471283, + 0.03372354060411453, + -0.002544000744819641, + 0.00013904603838454932, + 0.02561047486960888, + 0.019254084676504135, + -0.03591938689351082, + -0.04139743745326996, + -0.013556447811424732, + -0.010534272529184818, + -0.008049502037465572, + 0.01367201842367649, + 0.010846314020454884, + -0.05001901462674141, + 0.010274238884449005, + 0.0005106782191433012, + 0.004437916446477175, + 0.03168949484825134, + -0.024570338428020477, + 0.021438371390104294, + -0.012747452594339848, + 0.040380414575338364, + -0.005842100828886032, + -0.03908602148294449, + 0.02461656741797924, + -0.016815541312098503, + 0.009002960287034512, + 0.004908867180347443, + 0.007471648044884205, + 0.006188813131302595, + -0.00022843277838546783, + 0.01255098171532154, + 0.007483205292373896, + -0.005599402356892824, + -0.006061685271561146, + 0.005573398899286985, + 0.022605637088418007, + 0.020317334681749344, + -0.019866609945893288, + -0.023414630442857742, + -0.013544890098273754, + -0.005634073633700609, + -0.024038713425397873, + 0.006009678356349468, + -0.025263763964176178, + 0.028153032064437866, + 0.015740733593702316, + 0.003368886886164546, + -0.004983988124877214, + -0.013302192091941833, + -0.01564827747642994, + -0.024986393749713898, + 0.013094164431095123, + 0.011314375326037407, + -0.003802277147769928, + -0.01237762626260519, + -0.01718536950647831, + 0.005235354416072369, + -0.0057409764267504215, + 0.0006771722692064941, + 0.01963546872138977, + -0.03150458261370659, + 0.001326896483078599, + -0.012516310438513756, + -0.0033255480229854584, + -0.0006443068850785494, + -0.017566751688718796, + 0.003600028343498707, + 0.025772273540496826, + 0.01125658955425024, + 0.026188328862190247, + 0.02201622538268566, + -0.031943753361701965, + -0.030949844047427177, + 0.01146461721509695, + -0.008500227704644203, + 0.026188328862190247, + 0.0014951963676139712, + 0.002338862745091319, + -0.000848000287078321, + -0.02517130598425865, + -0.0056427414529025555, + -0.019046057015657425, + -0.01346399076282978, + -0.020005295053124428, + -0.0010849202517420053, + -0.03381599858403206, + 0.024917051196098328, + -0.0003900512238033116, + 0.041559237986803055, + -0.0018606889061629772, + -0.008719812147319317, + -0.024154284968972206, + 0.03723689168691635, + 0.05233043059706688, + 0.025356220081448555, + -0.005873882677406073, + 0.002611898584291339, + -0.015197551809251308, + -0.016861770302057266, + 0.009679049253463745, + -0.017358724027872086, + 0.01663062907755375, + 0.040010590106248856, + -0.008240193128585815, + 0.018780244514346123, + 0.027736976742744446, + 0.049140676856040955, + 0.008534898981451988, + 0.018757130950689316, + 0.012111812829971313, + 0.005475163459777832, + 0.011037005111575127, + 0.0013066716492176056, + -0.022478507831692696, + 0.0348099060356617, + -0.00841932836920023, + 0.0016020993934944272, + -0.029008254408836365, + -0.006235041189938784, + -0.002175619127228856, + 0.009621263481676579, + 0.027320921421051025, + -0.040796469897031784, + -0.01753208041191101, + -0.03030264750123024, + -0.005582066718488932, + -0.012562539428472519, + -0.0015110874082893133, + 0.015139766968786716, + -0.03231357783079147, + -0.0007772131939418614, + 0.00866202637553215, + -0.0368901789188385, + 0.009569256566464901, + -0.025564247742295265, + -0.0070671504363417625, + 0.049418047070503235, + 0.035873156040906906, + 0.057554226368665695, + 0.0025497793685644865, + 0.018884258344769478, + 0.005007102154195309, + -0.048585936427116394, + 0.020640933886170387, + 0.07290202379226685, + 0.029909707605838776, + -0.026072759181261063, + 0.025864731520414352, + -0.03799965977668762, + 0.03885488212108612, + 0.0067262169905006886, + -0.007702789735049009, + 0.05149831995368004, + -0.0005969951162114739, + 0.012400739826261997, + -0.00046336642117239535, + 0.03596561402082443, + 0.025564247742295265, + 0.018075263127684593, + -0.029239395633339882, + 0.0348099060356617, + -0.010632507503032684, + -0.01069607213139534, + 0.0048192995600402355, + -0.0034208938013762236, + -0.020721832290291786, + 0.03469433635473251, + -0.033215031027793884, + -0.03767605870962143, + 0.0018866922473534942, + 0.0008588350610807538, + -0.006529746577143669, + 0.007523654960095882, + 0.009794619865715504, + 0.02195844054222107, + -0.002201622584834695, + -0.0237844567745924, + 0.04424047842621803, + 0.0009296220960095525, + -0.022143352776765823, + 0.029077596962451935, + -0.031666383147239685, + -0.020328892394900322, + 0.005899886135011911, + -0.018479760736227036, + 0.022050896659493446, + -0.011903786100447178, + -0.020583149045705795, + -0.008904725313186646, + 0.02258252166211605, + 0.00957503542304039, + -0.04105072468519211, + -0.01409962959587574, + 0.015682948753237724, + 0.005544506013393402, + 0.04729154706001282, + 0.01280523743480444, + 0.005206461530178785, + -0.0177516657859087, + -0.01613367535173893, + -0.00003677045606309548, + -0.04075024276971817, + 0.036797720938920975, + 0.012412297539412975, + 0.015729177743196487, + -0.020224878564476967, + -0.0009274551412090659, + 0.011441502720117569, + -0.015197551809251308, + -0.020929859951138496, + -0.0001526797714177519, + -0.010649843141436577, + 0.01761298067867756, + 0.02743649296462536, + -0.02854597195982933, + -0.0010285795433446765, + -0.02630390040576458, + 0.013128835707902908, + 0.0005002046236768365, + 0.014353885315358639, + -0.024015599861741066, + 0.010372473858296871, + -0.0286153145134449, + 0.0075929975137114525, + -0.010574722662568092, + 0.008812268264591694, + 0.02699732407927513, + 0.000006506496902147774, + 0.02510196343064308, + 0.0253331046551466, + 0.012077142484486103, + 0.004160546697676182, + 0.000063247891375795, + 0.011522402055561543, + 0.016919555142521858, + 0.018271733075380325, + 0.015833191573619843, + -0.003764716675505042, + -0.02124190144240856, + 0.011337488889694214, + 0.022570965811610222, + -0.006142584607005119, + -0.027945004403591156, + -0.0361967533826828, + -0.0014301878400146961, + -0.018271733075380325, + 0.0032908767461776733, + 0.01675775647163391, + -0.003897623158991337, + 0.006431511603295803, + -0.0009223989327438176, + -0.007905038073658943, + -0.025125078856945038, + 0.023668887093663216, + 0.015498035587370396, + -0.014007173478603363, + -0.021623285487294197, + -0.009459464810788631, + -0.01041292306035757, + 0.029493652284145355, + 0.013336863368749619, + -0.06388750672340393, + -0.003365997690707445, + -0.013198178261518478, + -0.0049117561429739, + -0.005122672766447067, + 0.01963546872138977, + -0.029239395633339882, + 0.015093537978827953, + 0.007165385875850916, + 0.008494448848068714, + -0.010470708832144737, + 0.009811955504119396, + -0.024015599861741066, + 0.021935325115919113, + 0.006229262799024582, + 0.034116480499506, + -0.00014247704530134797, + 0.03182817995548248, + 0.011164133436977863, + -0.028777113184332848, + 0.018109934404492378, + -0.0020831625442951918, + 0.00887005403637886, + -0.01118724700063467, + 0.008199743926525116, + 0.010337802581489086, + -0.04454096034169197, + -0.019623911008238792, + -0.0006858400884084404, + -0.04890953749418259, + 0.02201622538268566, + 0.02013242244720459, + 0.02273276448249817, + -0.02826860174536705, + 0.05575132369995117, + -0.002278188243508339, + 0.021276572719216347, + 0.006356390658766031, + 0.049834102392196655, + 0.0035393538419157267, + 0.010765413753688335, + 0.030695587396621704, + -0.015336236916482449, + -0.004498590715229511, + 0.01598343253135681, + 0.0066222031600773335, + -0.008604241535067558, + -0.00023457247880287468, + -0.009210987947881222, + 0.019034501165151596, + -0.00971949938684702, + -0.01866467483341694, + 0.04054221510887146, + -0.03402402624487877, + 0.005807429552078247, + -0.023102590814232826, + -0.007685454096645117, + -0.001974815037101507, + 0.030071506276726723, + -0.00027141065220348537, + -0.01599499024450779, + 0.01171887293457985, + -0.0018476871773600578, + -0.04652877897024155, + 0.024223625659942627, + 0.015613606199622154, + 0.02426985464990139, + 0.01817927695810795, + 0.010407145135104656, + -0.019092286005616188, + -0.015937205404043198, + 0.010516936890780926, + -0.03492547571659088, + 0.0029571661725640297, + -0.003426672425121069, + 0.024084942415356636, + 0.015821633860468864, + 0.022570965811610222, + 0.024454768747091293, + 0.0038889553397893906, + 0.01416897214949131, + 0.005426045972853899, + 0.028522858396172523, + -0.018907371908426285, + -0.019092286005616188, + 0.023553315550088882, + 0.025148192420601845, + -0.001703223679214716, + -0.002848818665370345, + 0.020999202504754066, + 0.009251437149941921, + -0.004368573892861605, + 0.004305009730160236, + -0.0037444918416440487, + -0.0019098063930869102, + 0.007540990598499775, + -0.024732137098908424, + 0.00627549085766077, + -0.02160017006099224, + -0.013799145817756653, + 0.008725591003894806, + 0.020675605162978172, + 0.02251317910850048, + -0.003478679107502103, + -0.00687068048864603, + -0.012562539428472519, + 0.010355138219892979, + 0.012863023206591606, + 0.03282209113240242, + -0.014041844755411148, + 0.015324680134654045, + -0.008436664007604122, + -0.007044036407023668, + 0.018606888130307198, + 0.01906917244195938, + -0.018364189192652702, + 0.014654369093477726, + -0.03092672862112522, + -0.006778223905712366, + 0.0007382080657407641, + -0.01571762003004551, + 0.019543010741472244, + -0.0014388556592166424, + -0.021311243996024132, + -0.019184742122888565, + 0.006159920245409012, + -0.004749957472085953, + 0.00427611730992794, + 0.06578285992145538, + 0.02110321633517742, + -0.01557893492281437, + -0.0060674636624753475, + -0.015867862850427628, + 0.0001894276647362858, + -0.003790720133110881, + 0.011770879849791527, + 0.0006663375534117222, + 0.0010603615082800388, + -0.03626609593629837, + 0.009627042338252068, + 0.00248043704777956, + -0.042044635862112045, + 0.011152575723826885, + -0.03247537836432457, + -0.015590492635965347, + -0.013163506984710693, + -0.007714346516877413, + 0.015694506466388702, + -0.009655934758484364, + 0.004726842977106571, + 0.03508727625012398, + 0.018814915791153908, + -0.004539040848612785, + 0.0253331046551466, + 0.048216111958026886, + -0.0009288997971452773, + -0.05311631038784981, + -0.02349553070962429, + 0.0020672716200351715, + -0.001954590203240514, + 0.02265186421573162, + 0.037745401263237, + -0.018826473504304886, + -0.004192328546196222, + 0.009343894198536873, + 0.027112895622849464, + -0.040865812450647354, + -0.003938072826713324, + 0.024732137098908424, + 0.0111179044470191, + 0.006448847241699696, + -0.019600797444581985, + -0.02194688282907009, + -0.007881924510002136, + -0.013140392489731312, + -0.004712396766990423, + 0.01859533227980137, + -0.01739339530467987, + 0.015890976414084435, + 0.0020094860810786486, + -0.03568824380636215, + -0.024732137098908424, + -0.014434784650802612, + -0.00473262183368206, + -0.004411912988871336, + -0.040449757128953934, + -0.01718536950647831, + 0.005810318980365992, + -0.0017899017548188567, + -0.011487731710076332, + 0.03444007784128189, + 0.019612353295087814, + 0.003914958797395229, + -0.01845664717257023, + 0.0015963207697495818, + 0.010164446197450161, + 0.007234727963805199, + 0.02748272195458412, + -0.008586905896663666, + 0.05981941521167755, + 0.009910190477967262, + 0.018144605681300163, + -0.003082849318161607, + -0.020918304100632668, + -0.02238605171442032, + 0.012608767487108707, + -0.01364890392869711, + -0.010713407769799232, + -0.0270666666328907, + -0.027968117967247963, + -0.010528494603931904, + 0.036081183701753616, + -0.00349890417419374, + 0.02854597195982933, + 0.04479521885514259, + -0.008153515867888927, + 0.030395103618502617, + -0.038485053926706314, + 0.002555557992309332, + -0.017358724027872086, + -0.016584400087594986, + 0.007396527100354433, + 0.0021539495792239904, + 0.01360267587006092, + -0.022848334163427353, + 0.03365419805049896, + -0.005530059803277254, + -0.029701679944992065, + 0.0060385712422430515, + -0.004186550155282021, + 0.0541333332657814, + 0.008835382759571075, + 0.01621457375586033, + 0.004614161793142557, + 0.005319143179804087, + 0.06610646098852158, + -0.003114631399512291, + 0.02847662940621376, + -0.022686535492539406, + 0.04669057950377464, + -0.01553270686417818, + -0.01614523120224476, + 0.04063466936349869, + 0.0021207230165600777, + 0.013937830924987793, + -0.035179730504751205, + 0.025263763964176178, + -0.008089951239526272, + 0.009494136087596416, + -0.01648038625717163, + 0.011632194742560387, + 0.02720535174012184, + 0.018745573237538338, + -0.04853970929980278, + 0.014157415367662907, + -0.0025815614499151707, + 0.004686393309384584, + 0.017647651955485344, + -0.039525192230939865, + -0.03765294700860977, + 0.006836009211838245, + -0.0018245730316266418, + -0.024732137098908424, + -0.006506632547825575, + 0.02231670916080475, + 0.013949387706816196, + 0.012065584771335125, + 0.0204213485121727, + 0.012978593818843365, + 0.007737461011856794, + 0.012412297539412975, + 0.00018744128465186805 + ] + }, + { + "HotelId": "31", + "HotelName": "Country Residence Hotel", + "Description": "All of the suites feature full-sized kitchens stocked with cookware, separate living and sleeping areas and sofa beds. Some of the larger rooms have fireplaces and patios or balconies. Experience real country hospitality in the heart of bustling Nashville. The most vibrant music scene in the world is just outside your front door.", + "Description_fr": "Toutes les suites disposent d'une cuisine pleine grandeur Ć©quipĆ©e d'ustensiles de cuisine, de coins salon et chambre sĆ©parĆ©s et de canapĆ©s-lits. Certaines des plus grandes chambres ont des cheminĆ©es. DĆ©couvrez la vĆ©ritable hospitalitĆ© campagnarde au cœur de la ville animĆ©e de Nashville. La scĆØne musicale la plus vibrante du monde est juste devant votre porte.", + "Category": "Extended-Stay", + "Tags": [ + "laundry service", + "restaurant", + "free parking" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-10-05T00:00:00Z", + "Rating": 2.7, + "Address": { + "StreetAddress": "2126 Abbott Martin Rd", + "City": "Nashville", + "StateProvince": "TN", + "PostalCode": "37215", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -86.816017, + 36.107281 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 164.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 119.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Suite, 2 Double Beds (Waterfront View)", + "Description_fr": "Suite, 2 lits doubles (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "coffee maker", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "tv" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 235.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 142.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.04819943383336067, + -0.006480092648416758, + 0.02896277979016304, + -0.00108849979005754, + -0.018410170450806618, + -0.02707025781273842, + -0.010468763299286366, + -0.030999038368463516, + 0.024411143735051155, + -0.03952736780047417, + -0.00050831597764045, + -0.015487541444599628, + 0.015212047845125198, + 0.013618974946439266, + -0.04575592279434204, + 0.06377081573009491, + -0.01239721942692995, + 0.02730981819331646, + 0.02358466200530529, + 0.0019793629180639982, + 0.04106054827570915, + -0.023572685196995735, + -0.05097832530736923, + -0.03087925910949707, + 0.02651927061378956, + 0.04431856423616409, + -0.07287409156560898, + -0.00011622393503785133, + 0.026088062673807144, + 0.0010922430083155632, + -0.03861704096198082, + -0.02783684805035591, + 0.0314781591296196, + -0.051457446068525314, + -0.03087925910949707, + -0.0233451034873724, + 0.046762071549892426, + -0.01158271636813879, + 0.0002938350662589073, + -0.008534317836165428, + -0.015307871624827385, + 0.06123148649930954, + -0.031070906668901443, + -0.028196189552545547, + -0.019009070470929146, + 0.03634122014045715, + -0.0036443034186959267, + 0.006252510938793421, + -0.002723495475947857, + 0.026806741952896118, + -0.01957203634083271, + -0.01666138507425785, + -0.054523810744285583, + -0.06827454268932343, + -0.013738754205405712, + 0.007749759592115879, + -0.02982519567012787, + -0.04359988495707512, + 0.015140179544687271, + 0.034089360386133194, + 0.037107814103364944, + -0.03171771764755249, + 0.00880382303148508, + 0.05768600106239319, + -0.01686500944197178, + 0.008546295575797558, + -0.03236452862620354, + 0.034879907965660095, + 0.00240008975379169, + 0.04362383857369423, + 0.019140828400850296, + 0.018745554611086845, + -0.02263840101659298, + 0.0026471358723938465, + 0.01365490909665823, + 0.0077916826121509075, + -0.01353512890636921, + -0.012540956027805805, + 0.016829075291752815, + 0.0036353198811411858, + 0.002004816196858883, + -0.02536938339471817, + -0.03538298234343529, + 0.033777933567762375, + 0.02539333887398243, + 0.005066689569503069, + -0.02484235167503357, + 0.014912597835063934, + -0.013834578916430473, + 0.0524635948240757, + 0.041779227554798126, + 0.017284240573644638, + -0.03729946166276932, + -0.019092915579676628, + -0.018422149121761322, + 0.0245309229940176, + 0.0585005022585392, + -0.023776309564709663, + -0.02594432607293129, + 0.07311365008354187, + 0.029417943209409714, + -0.03993462026119232, + -0.006105780601501465, + 0.002015296835452318, + 0.013511172495782375, + -0.042929116636514664, + -0.0012584376381710172, + 0.016745230183005333, + 0.003713176818564534, + -0.032675955444574356, + -0.08509164303541183, + -0.021704118698835373, + -0.0020736895967274904, + -0.024351254105567932, + -0.0569194070994854, + -0.029633548110723495, + 0.020638076588511467, + -0.05332601070404053, + -0.024123672395944595, + -0.0013325513573363423, + 0.029561679810285568, + 0.0524635948240757, + -0.024986086413264275, + -0.003967709373682737, + -0.008630141615867615, + -0.0023207354824990034, + -0.011564749293029308, + -0.0017218360444530845, + -0.028771132230758667, + 0.0016918911132961512, + -0.04613921791315079, + 0.00031835251138545573, + 0.021284887567162514, + 0.03797022998332977, + -0.02817223221063614, + 0.06305214017629623, + -0.004108450375497341, + -0.01977566070854664, + 0.020338626578450203, + 0.03428100794553757, + 0.018326325342059135, + -0.022003566846251488, + 0.005698528606444597, + -0.020242802798748016, + -0.05342183634638786, + -0.04228230565786362, + 0.012708647176623344, + 0.0655914768576622, + -0.012385241687297821, + 0.058069296181201935, + -0.02982519567012787, + 0.02980124019086361, + -0.006378279533237219, + 0.003871885361149907, + 0.00039302778895944357, + -0.016409846022725105, + -0.03919198364019394, + -0.026327623054385185, + -0.027501465752720833, + 0.03447265550494194, + 0.018410170450806618, + -0.007797671481966972, + -0.0007609766907989979, + 0.030400138348340988, + 0.005938088521361351, + -0.006126741878688335, + -0.023991914466023445, + 0.01930852048099041, + -0.050067998468875885, + -0.02623179741203785, + 0.010043544694781303, + 0.0001393377169733867, + -0.024698615074157715, + 0.08030044287443161, + 0.05936291813850403, + -0.02156038209795952, + 0.04031791538000107, + 0.010001622140407562, + -0.007510199677199125, + 0.026686962693929672, + -0.02699838951230049, + -0.032148923724889755, + 0.0022039501927793026, + -0.009522502310574055, + -0.003045403864234686, + 0.048151519149541855, + -0.030735522508621216, + -0.04781613498926163, + -0.01668534055352211, + -0.009827940724790096, + -0.001652962644584477, + -0.037946272641420364, + -0.053373925387859344, + 0.00036289566196501255, + -0.004707349929958582, + -0.02043445035815239, + -0.049493055790662766, + 0.008516350761055946, + 0.009522502310574055, + 0.06707674264907837, + -0.025752678513526917, + -0.005441002082079649, + 0.052559420466423035, + -0.0487983301281929, + -0.012624801136553288, + -0.016074461862444878, + 0.00818695593625307, + 0.028268055990338326, + -0.010726289823651314, + -0.0021814913488924503, + 0.019943352788686752, + 0.046474602073431015, + 0.014685016125440598, + 0.06712465733289719, + 0.02814827673137188, + -0.03538298234343529, + -0.04479768127202988, + 0.002907657064497471, + -0.03059178590774536, + 0.04992426186800003, + -0.017751380801200867, + 0.0032340572215616703, + 0.011894144117832184, + 0.020841702818870544, + 0.010049534030258656, + 0.04834316670894623, + -0.013367436826229095, + -0.02371641993522644, + 0.02169214002788067, + 0.015930727124214172, + 0.0030663653742522, + 0.009019426070153713, + -0.04079703241586685, + -0.01408611610531807, + -0.0545717217028141, + 0.03758693113923073, + -0.04683393985033035, + -0.013894468545913696, + 0.01681709848344326, + 0.024674659594893456, + -0.05409260466694832, + -0.033849798142910004, + -0.002430034801363945, + 0.05375722050666809, + 0.045372627675533295, + -0.01815863326191902, + -0.00828876905143261, + -0.03555067628622055, + 0.026974434033036232, + 0.02953772433102131, + -0.05136162042617798, + 0.031046951189637184, + -0.014637104235589504, + -0.006252510938793421, + 0.034592434763908386, + 0.01904500462114811, + -0.006857399363070726, + 0.0031322443392127752, + -0.003010967280715704, + -0.01922467350959778, + 0.03947945684194565, + 0.03011266700923443, + -0.023129498586058617, + -0.025177735835313797, + -0.014912597835063934, + -0.04383944347500801, + 0.0015391716733574867, + 0.04086890071630478, + 0.02486630715429783, + -0.019404344260692596, + -0.01187018770724535, + -0.025057954713702202, + -0.026112018153071404, + 0.0034855951089411974, + -0.009408711455762386, + -0.019128849729895592, + 0.022303016856312752, + -0.03641308844089508, + 0.020877636969089508, + 0.06856201589107513, + -0.06036907061934471, + -0.023884112015366554, + 0.03260408714413643, + -0.0030723544768989086, + -0.002401587087661028, + -0.03552671894431114, + 0.029849151149392128, + 0.004599548410624266, + -0.01393040269613266, + -0.008115088567137718, + 0.020745879039168358, + 0.004051554948091507, + 0.020218847319483757, + -0.040916815400123596, + 0.012696669436991215, + 0.0043929279781877995, + 0.01999126560986042, + -0.026926521211862564, + 0.0380420982837677, + -0.018877312541007996, + 0.011421013623476028, + 0.0031891397666186094, + 0.005048722960054874, + -0.0015930726658552885, + -0.02647135779261589, + 0.014050181955099106, + -0.0325322225689888, + 0.002871723147109151, + 0.027501465752720833, + -0.015212047845125198, + 0.011313211172819138, + 0.05481128394603729, + 0.0042342194356024265, + -0.009450634010136127, + -0.030184535309672356, + -0.00016123497334774584, + -0.03775462508201599, + 0.0010405879002064466, + 0.03140629082918167, + -0.015607320703566074, + 0.018086764961481094, + -0.0014538285322487354, + 0.007977341301739216, + -0.02049434185028076, + -0.018529949709773064, + 0.013762710615992546, + -0.02387213334441185, + 0.03396958112716675, + -0.061135660856962204, + -0.010870026424527168, + 0.02568081021308899, + -0.042378127574920654, + -0.006809487473219633, + 0.027190037071704865, + -0.01886533387005329, + -0.04467790201306343, + -0.022267082706093788, + -0.01025914866477251, + -0.04791196063160896, + -0.015415673144161701, + -0.04221043735742569, + -0.031286511570215225, + -0.07411979883909225, + 0.05222403630614281, + 0.01239721942692995, + -0.03202914446592331, + -0.01763160154223442, + 0.048151519149541855, + 0.0012157659512013197, + 0.014828751794993877, + -0.0066238283179700375, + 0.008666075766086578, + -0.02027873694896698, + 0.058596327900886536, + 0.024279385805130005, + 0.0054739415645599365, + 0.02303367480635643, + -0.011690517887473106, + -0.04379153251647949, + -0.004030593670904636, + -0.06511235237121582, + 0.030280359089374542, + 0.011121563613414764, + 0.03612561896443367, + 0.0016364929033443332, + -0.006384268868714571, + -0.022949829697608948, + -0.0440790019929409, + -0.02261444553732872, + 0.021033350378274918, + 0.06832245737314224, + 0.0006722646648995578, + 0.023704443126916885, + 0.027741024270653725, + -0.016649406403303146, + 0.018398193642497063, + 0.0545717217028141, + -0.00883975625038147, + 0.005935093853622675, + -0.026327623054385185, + 0.029992887750267982, + 0.01886533387005329, + 0.01516413502395153, + -0.03143024444580078, + 0.007414375897496939, + 0.007965363562107086, + -0.032172881066799164, + -0.030184535309672356, + -0.04082098975777626, + 0.04982843995094299, + 0.014780839905142784, + -0.013175789266824722, + -0.0008511859341524541, + -0.00015898910351097584, + 0.02455488033592701, + -0.031813543289899826, + 0.024674659594893456, + 0.015044355764985085, + -0.006015945691615343, + -0.023704443126916885, + 0.04074912145733833, + -0.020769834518432617, + 0.010121401399374008, + -0.009899809025228024, + -0.000997916329652071, + -0.03320298716425896, + 0.03284364938735962, + -0.02699838951230049, + -0.006989157292991877, + -0.03547880798578262, + -0.018841378390789032, + -0.035191334784030914, + 0.0028477672021836042, + -0.012289417907595634, + 0.00690531125292182, + 0.006599872373044491, + 0.0013228192692622542, + -0.03569440916180611, + 0.02810036391019821, + 0.04472581669688225, + -0.03164584934711456, + 0.02982519567012787, + 0.00910327211022377, + 0.014301720075309277, + -0.01159469410777092, + -0.022602466866374016, + -0.0017517810920253396, + -0.031238598749041557, + -0.06103983893990517, + 0.027381684631109238, + -0.07804858684539795, + 0.047600533813238144, + 0.0295137669891119, + 0.048462945967912674, + -0.046522513031959534, + 0.031885407865047455, + -0.027501465752720833, + -0.01432567648589611, + -0.027812892571091652, + 0.03607770428061485, + 0.02927420847117901, + -0.045636143535375595, + -0.056440290063619614, + -0.01670929603278637, + -0.05414051562547684, + 0.040102310478687286, + 0.018458083271980286, + 0.015882814303040504, + 0.02702234499156475, + -0.0028133303858339787, + -0.007408387027680874, + -0.02623179741203785, + 0.014277764596045017, + -0.04113241657614708, + -0.0017293223645538092, + 0.010348983108997345, + 0.01802687533199787, + -0.0023387025576084852, + -0.013990292325615883, + 0.022267082706093788, + 0.019691815599799156, + 0.03454452380537987, + -0.013247656635940075, + -0.03258013352751732, + 0.025608941912651062, + -0.01054662000387907, + -0.025800591334700584, + 0.008306736126542091, + 0.00022776896366849542, + -0.044869549572467804, + -0.013403370976448059, + -0.09199096262454987, + -0.0051894644275307655, + 0.01686500944197178, + -0.016829075291752815, + -0.016853032633662224, + -0.028220145031809807, + 0.06856201589107513, + -0.01684105396270752, + 0.022650379687547684, + -0.029633548110723495, + -0.006581905763596296, + -0.04324054345488548, + 0.03638913482427597, + -0.010762223973870277, + -0.060560718178749084, + -0.027693113312125206, + 0.004398916848003864, + -0.01891324669122696, + 0.014708971604704857, + 0.025225646793842316, + -0.004997816402465105, + 0.0061926208436489105, + -0.010762223973870277, + 0.05591325834393501, + 0.017799293622374535, + -0.02329719066619873, + 0.010193269699811935, + 0.025704767554998398, + -0.0056835561990737915, + -0.02248268760740757, + -0.005677567329257727, + -0.006809487473219633, + 0.00910327211022377, + 0.022865982726216316, + 0.013870512135326862, + -0.024231472983956337, + -0.03368210792541504, + 0.001643979107029736, + -0.0063423458486795425, + -0.018014896661043167, + 0.012984140776097775, + -0.02444707788527012, + 0.03121464140713215, + 0.021740052849054337, + 0.015523475594818592, + -0.03991066291928291, + -0.021416645497083664, + -0.029154427349567413, + -0.024770483374595642, + 0.0021201041527092457, + 0.026303665712475777, + -0.014708971604704857, + -0.013834578916430473, + 0.043695706874132156, + 0.008648108690977097, + 0.0068514104932546616, + -0.032675955444574356, + 0.026088062673807144, + -0.01516413502395153, + 0.01794302836060524, + -0.009911786764860153, + -0.030807390809059143, + 0.017439953982830048, + 0.029417943209409714, + 0.032148923724889755, + 0.03667660430073738, + -0.012445131316781044, + 0.05433216318488121, + -0.01681709848344326, + 0.04137197881937027, + -0.004312076605856419, + -0.00870799832046032, + -0.019739728420972824, + 0.014134027995169163, + -0.028866956010460854, + 0.01959599182009697, + 0.011091618798673153, + 0.029633548110723495, + -0.008216900750994682, + 0.030807390809059143, + 0.007114925887435675, + 0.032148923724889755, + 0.019631925970315933, + -0.020111044868826866, + 0.01379864476621151, + 0.00722871720790863, + -0.02623179741203785, + 0.01475688349455595, + 0.03152607008814812, + -0.004689383320510387, + -0.009690194390714169, + 0.012055846862494946, + -0.0120019456371665, + 0.01408611610531807, + 0.015607320703566074, + 0.02211136929690838, + 0.028627395629882812, + -0.0043180654756724834, + 0.005926110781729221, + -0.010163324885070324, + -0.0031022995244711637, + 0.0032280683517456055, + -0.03531111404299736, + -0.021572360768914223, + -0.01365490909665823, + 0.031597938388586044, + -0.017404019832611084, + -0.004569603130221367, + 0.0018715609330683947, + 0.006881355307996273, + 0.0005932848434895277, + -0.012600845657289028, + 0.024015869945287704, + -0.051457446068525314, + -0.016757208853960037, + 0.008534317836165428, + -0.00600097281858325, + 0.02728586085140705, + -0.02195565588772297, + -0.013978314585983753, + 0.01027112640440464, + 0.025297515094280243, + -0.006821465212851763, + 0.01433765422552824, + 0.005656605586409569, + -0.02644740231335163, + 0.003916802816092968, + -0.06415411829948425, + 0.02457883581519127, + 0.004000648856163025, + -0.02175202965736389, + 0.018374236300587654, + 0.004003643058240414, + -0.009839918464422226, + 0.003120266366750002, + -0.014289742335677147, + -0.021416645497083664, + -0.04280933737754822, + -0.00044730305671691895, + 0.024722572416067123, + -0.016278088092803955, + 0.011037717573344707, + -0.02027873694896698, + -0.037946272641420364, + 0.00683344341814518, + 0.01117546483874321, + 0.004515702370554209, + -0.005596715956926346, + -0.018793465569615364, + 0.022949829697608948, + 0.014301720075309277, + 0.036580782383680344, + 0.07934220880270004, + 0.029106516391038895, + 0.04312076419591904, + 0.015475562773644924, + -0.00894755870103836, + 0.0017398030031472445, + -0.007174815982580185, + 0.050115909427404404, + 0.07689869403839111, + 0.038473304361104965, + 0.02539333887398243, + -0.025728723034262657, + 0.020182913169264793, + 0.017463909462094307, + -0.022446753457188606, + -0.010366950184106827, + 0.011972000822424889, + 0.012804470956325531, + 0.012193594127893448, + 0.023908067494630814, + -0.001164110959507525, + -0.012540956027805805, + 0.04007835313677788, + 0.0093128876760602, + 0.002946585649624467, + -0.0037101823836565018, + -0.013283590786159039, + -0.004635482095181942, + 0.008139044046401978, + -0.022698290646076202, + -0.014720949344336987, + 0.0017143498407676816, + 0.052032388746738434, + -0.005809325259178877, + 0.007186794187873602, + 0.008109099231660366, + 0.04515702277421951, + -0.006749597378075123, + 0.05342183634638786, + -0.0245309229940176, + -0.018482038751244545, + -0.010085467249155045, + 0.030472006648778915, + 0.019009070470929146, + 0.01752379909157753, + -0.015080289915204048, + 0.006557949353009462, + 0.055529963225126266, + 0.036293309181928635, + 0.013199744746088982, + 0.04130011051893234, + 0.021811919286847115, + -0.009163162671029568, + 0.004452817607671022, + 0.0023656529374420643, + 0.01420589629560709, + 0.012259473092854023, + -0.002419553929939866, + 0.019584013149142265, + -0.02704630233347416, + 0.007755748461931944, + 0.00572547921910882, + -0.008528328500688076, + -0.006474103778600693, + -0.007102948147803545, + 0.03504759818315506, + -0.050930414348840714, + -0.023668508976697922, + 0.015140179544687271, + -0.011139530688524246, + -0.016613472253084183, + 0.015140179544687271, + -0.03967110440135002, + -0.011486892588436604, + -0.003093315986916423, + 0.0300407987087965, + -0.037083856761455536, + -0.00936678797006607, + 0.03614957258105278, + -0.005914132576435804, + -0.048151519149541855, + -0.007474265992641449, + -0.00696520134806633, + -0.011397057212889194, + -0.03447265550494194, + 0.008845745585858822, + -0.009606348350644112, + -0.0122654614970088, + 0.012936228886246681, + -0.00988783035427332, + -0.012612823396921158, + -0.011888154782354832, + -0.033825844526290894, + -0.013583040796220303, + -0.03504759818315506, + 0.03588605672121048, + -0.011379090137779713, + 0.010313049890100956, + 0.027525421231985092, + 0.035143423825502396, + 0.02589641511440277, + 0.0014238836010918021, + 0.00358441355638206, + -0.006971190217882395, + -0.013894468545913696, + -0.0020482363179326057, + 0.04395922273397446, + -0.0025528091937303543, + -0.011816287413239479, + 0.027213992550969124, + -0.007378441747277975, + 0.0020482363179326057, + -0.016613472253084183, + 0.006881355307996273, + 0.009792006574571133, + -0.02051829732954502, + -0.028315968811511993, + 0.015786990523338318, + -0.028603440150618553, + 0.012516999617218971, + -0.0024824384599924088, + 0.043671753257513046, + -0.026375534012913704, + -0.007845583371818066, + -0.025872457772493362, + -0.037347372621297836, + -0.01860181801021099, + -0.06525608897209167, + 0.008492395281791687, + 0.008504373021423817, + -0.023836201056838036, + -0.02948981150984764, + -0.07445518672466278, + 0.016206219792366028, + -0.002419553929939866, + 0.003767077811062336, + -0.04525284469127655, + 0.006533993408083916, + 0.004919959232211113, + 0.0049618822522461414, + 0.03864099457859993, + 0.015643255785107613, + -0.004719328135251999, + 0.030519919469952583, + 0.04822338744997978, + -0.05715896934270859, + 0.0016469736583530903, + -0.04793591797351837, + -0.011516837403178215, + 0.008222890086472034, + -0.006581905763596296, + 0.0375150665640831, + -0.027980584651231766, + -0.0002642644103616476, + -0.03248430788516998, + 0.02651927061378956, + 0.006498059723526239, + 0.04321658983826637, + -0.02481839619576931, + 0.04987635090947151, + 0.028052452951669693, + -0.050642941147089005, + 0.028531571850180626, + 0.0472172386944294, + -0.01891324669122696, + -0.03399353474378586, + -0.013223701156675816, + -0.0019539096392691135, + -0.0005760664353147149, + -0.011558759957551956, + -0.050882503390312195, + -0.02395598031580448, + 0.033586286008358, + 0.01644578017294407, + -0.010582554154098034, + 0.018613796681165695, + -0.01117546483874321, + 0.01448138989508152, + -0.02673487365245819, + 0.05706314370036125, + -0.01041486207395792, + 0.024962130934000015, + 0.010600521229207516, + -0.024770483374595642, + 0.015643255785107613, + 0.035143423825502396, + -0.0052463598549366, + 0.025728723034262657, + 0.02594432607293129, + 0.02946585603058338, + -0.045396581292152405, + 0.012804470956325531, + 0.016541603952646255, + -0.009726127609610558, + 0.02788476087152958, + -0.011606672778725624, + -0.04280933737754822, + -0.0016559570794925094, + -0.023225322365760803, + -0.004557625390589237, + 0.031094862148165703, + -0.03095112554728985, + -0.010576564818620682, + -0.05481128394603729, + 0.037107814103364944, + 0.009354810230433941, + -0.024986086413264275, + 0.02277015894651413, + 0.01639786921441555, + -0.03286760300397873, + 0.024698615074157715, + -0.027190037071704865, + 0.003964714705944061, + 0.026543226093053818, + 0.00792344007641077, + 0.028723219409585, + -0.004183312878012657, + 0.0006086316425353289, + 0.021033350378274918, + -0.018637752160429955, + -0.015583365224301815, + -0.03835352510213852, + -0.016278088092803955, + 0.03143024444580078, + 0.04525284469127655, + -0.011265299282968044, + -0.018973136320710182, + 0.018242478370666504, + 0.009540469385683537, + 0.024099716916680336, + -0.04791196063160896, + 0.038760777562856674, + 0.018817422911524773, + 0.031286511570215225, + 0.03061574324965477, + -0.0024090732913464308, + 0.02051829732954502, + -0.011277277953922749, + 0.0021949666552245617, + -0.0007280372083187103, + 0.004449823405593634, + -0.034616392105817795, + 0.037634845823049545, + -0.024255430325865746, + 0.02261444553732872, + -0.005279299337416887, + -0.018146654590964317, + -0.04307285323739052, + -0.011241343803703785, + 0.012720625847578049, + 0.0009874355746433139, + 0.010354972444474697, + -0.012612823396921158, + 0.034640345722436905, + -0.007534155622124672, + -0.038257699459791183, + -0.021632250398397446, + -0.011115575209259987, + -0.00696520134806633, + -0.015583365224301815, + 0.026567181572318077, + -0.0070730033330619335, + 0.033849798142910004, + 0.014565235935151577, + 0.03035222738981247, + -0.005596715956926346, + -0.0021530436351895332, + 0.002981022233143449, + -0.02536938339471817, + 0.018278412520885468, + -0.0016694323858246207, + 0.0003292075707577169, + 0.0003915305424015969, + -0.03286760300397873, + 0.04309680685400963, + -0.0009507529903203249, + -0.001524199265986681, + -0.016014572232961655, + -0.0006258499925024807, + -0.016757208853960037, + -0.01584688015282154, + 0.009247008711099625, + 0.01239721942692995, + -0.023201366886496544, + -0.006929267197847366, + -0.06022533401846886, + -0.014445455744862556, + -0.0002736222231760621, + -0.021871810778975487, + -0.0322687067091465, + 0.0188892912119627, + -0.011960023082792759, + 0.025992238894104958, + -0.012337329797446728, + -0.006725641433149576, + -0.017427975311875343, + 0.006075835321098566, + 0.018661707639694214, + 0.062237635254859924, + -0.01721237227320671, + -0.019607970491051674, + -0.001903003198094666, + -0.015906771644949913, + -0.013355459086596966, + -0.04031791538000107, + -0.003758094273507595, + -0.0013527642004191875, + 0.011780353263020515, + 0.016014572232961655, + -0.0007680886192247272, + 0.02615993097424507, + 0.04963679239153862, + -0.015727100893855095, + -0.011936066672205925, + 0.0014717954909428954, + 0.008109099231660366, + 0.0022848015651106834, + 0.031861454248428345, + 0.017427975311875343, + 0.02356070652604103, + -0.0333227701485157, + 0.020877636969089508, + -0.02177598513662815, + 0.003443672088906169, + -0.008983492851257324, + -0.017691491171717644, + -0.0031891397666186094, + 0.013906446285545826, + 0.011223376728594303, + 0.010714312084019184, + -0.0550987534224987, + -0.024351254105567932, + 0.002362658502534032, + -0.006282455753535032, + -0.011211398988962173, + -0.003686226438730955, + 0.0005274058785289526, + 0.03059178590774536, + 0.05442798510193825, + 0.038569126278162, + 0.009881841950118542, + 0.004557625390589237, + -0.0008968519978225231, + 0.0067855315282940865, + 0.026088062673807144, + -0.0023491831962019205, + 0.021021371707320213, + -0.0058213029988110065, + 0.0110856294631958, + -0.008941569365561008, + 0.01487666368484497, + -0.007426353637129068, + 0.017835227772593498, + 0.00827679131180048, + -0.0006992151611484587, + -0.007456298917531967, + -0.0041713351383805275, + 0.03066365420818329, + 0.02481839619576931, + -0.005273310001939535, + -0.010654422454535961, + -0.02618388645350933, + 0.008414537645876408, + 0.00015870836796239018, + 0.0040994673036038876, + 0.015283915214240551, + 0.015798969194293022, + 0.03564649820327759, + -0.01999126560986042, + -0.018266435712575912, + 0.009624315425753593, + -0.06856201589107513, + 0.03727550432085991, + 0.029897063970565796, + 0.05663193762302399, + 0.003713176818564534, + 0.007977341301739216, + -0.015367761254310608, + -0.010157335549592972, + 0.002687561558559537, + -0.022602466866374016, + 0.006462125573307276, + 0.045947570353746414, + 0.0023027686402201653, + 0.011373101733624935, + -0.0002086790482280776, + -0.020757857710123062, + 0.006863388232886791, + 0.007522177882492542, + 0.026088062673807144, + 0.006048885174095631, + -0.014385566115379333, + 0.018673686310648918, + 0.020422473549842834, + -0.007049047388136387, + 0.023309169337153435, + 0.020901592448353767, + 0.014038204215466976, + 0.026854652911424637, + 0.0002764295495580882, + 0.014277764596045017, + 0.00016778544522821903, + -0.0031921344343572855, + 0.045947570353746414, + -0.0013639936223626137, + 0.014385566115379333, + 0.001338540343567729, + 0.013511172495782375, + 0.027405641973018646, + 0.01660149358212948, + -0.0005521104903891683, + 0.027932673692703247, + 0.0003599011688493192, + -0.016493692994117737, + -0.01741599664092064, + -0.018745554611086845, + -0.03761088848114014, + -0.0466902069747448, + -0.0038179843686521053, + 0.012163649313151836, + 0.024602791294455528, + -0.03145420178771019, + 0.023464882746338844, + 0.006492070388048887, + -0.02812432125210762, + 0.015415673144161701, + -0.005285288207232952, + -0.019009070470929146, + 0.004422872792929411, + -0.0011049695312976837, + -0.018434125930070877, + -0.0002532221842557192, + 0.015080289915204048, + -0.01353512890636921, + -0.04130011051893234, + 0.01013936847448349, + -0.011528815142810345, + 0.007306573912501335, + 0.011840242892503738, + -0.0036802373360842466, + -0.020602142438292503, + -0.016900943592190742, + 0.025321470573544502, + -0.015834903344511986, + -0.025728723034262657, + -0.02382422238588333, + 0.009594369679689407, + 0.037107814103364944, + 0.009229041635990143, + 0.015667211264371872, + -0.017188414931297302, + 0.009899809025228024, + -0.018254457041621208, + 0.009252997115254402, + 0.012960185296833515, + 0.016146330162882805, + 0.04740888625383377, + -0.005572760012000799, + 0.00683344341814518, + -0.018829399719834328, + 0.01433765422552824, + -0.010408873669803143, + 0.015367761254310608, + -0.01823050156235695, + -0.03420913964509964, + 0.000960485078394413, + 0.011912111192941666, + -0.03753902018070221, + 0.030136622488498688, + -0.010037555359303951, + 0.01657753810286522, + 0.048702508211135864, + 0.02085368148982525, + -0.006300422828644514, + -0.0009230538853444159, + -0.004644465632736683, + 0.015247981064021587, + 0.047337017953395844, + 0.018110720440745354, + 0.013630952686071396, + -0.04415087029337883, + -0.02224312722682953, + -0.0029675469268113375, + -0.03255617618560791, + 0.00572547921910882, + -0.010905959643423557, + -0.01864973083138466, + -0.02975332736968994, + 0.006336356978863478, + -0.018194567412137985, + 0.04213856905698776, + -0.006198609713464975, + 0.03420913964509964, + 0.026591137051582336, + 0.02484235167503357, + -0.024411143735051155, + -0.009552447125315666, + -0.020554231479763985, + -0.002099142875522375, + 0.0025902404449880123, + 0.032412439584732056, + -0.02810036391019821, + 0.017332151532173157, + -0.0027684129308909178, + 0.023105543106794357, + 0.013750732876360416, + 0.059985775500535965, + 0.018398193642497063, + -0.026974434033036232, + -0.0056086936965584755, + -0.039311762899160385, + -0.006504048593342304, + -0.0013565074186772108, + 0.010630466043949127, + -0.01933247596025467, + 0.005357156042009592, + 0.007384431082755327, + -0.0027848826721310616, + -0.0038269679062068462, + -0.002945088315755129, + -0.04625899717211723, + 0.012660735286772251, + -0.02327323518693447, + 0.011798320338129997, + 0.04556427523493767, + -0.004336032550781965, + -0.005947072058916092, + -0.03066365420818329, + 0.005491908639669418, + 0.026950478553771973, + 0.01880544424057007, + 0.012103758752346039, + 0.024171583354473114, + 0.009624315425753593, + 0.0011476412182673812, + 0.00029664242174476385, + 0.004737295210361481, + -0.01767951250076294, + 0.011780353263020515, + 0.032699912786483765, + -0.029393987730145454, + 0.01618226431310177, + 0.004464795812964439, + -0.029130471870303154, + 0.03202914446592331, + -0.0020093077328056097, + 0.015571387484669685, + 0.008935580961406231, + -0.0016679351683706045, + -0.010217225179076195, + -0.017883138731122017, + 0.009714149869978428, + -0.008755911141633987, + 0.0011948045575991273, + 0.021009394899010658, + 0.023153454065322876, + -0.010959860868752003, + -0.025584986433386803, + 0.04554031789302826, + 0.0044677904807031155, + 0.01752379909157753, + -0.02649531327188015, + 0.013271613046526909, + 0.027405641973018646, + -0.02049434185028076, + -0.04074912145733833, + -0.024986086413264275, + -0.051457446068525314, + 0.011133541353046894, + -0.009306898340582848, + -0.05869214981794357, + 0.0030334258917719126, + 0.010103434324264526, + -0.021320821717381477, + 0.008851734921336174, + 0.024890262633562088, + 0.019056981429457664, + 0.004830124322324991, + 0.006096797063946724, + -0.033011339604854584, + -0.010798158124089241, + -0.030807390809059143, + -0.03339463472366333, + -0.009420689195394516, + -0.016745230183005333, + -0.01461314782500267, + 0.01805083081126213, + 0.01605050638318062, + 0.0035365016665309668, + -0.04132406413555145, + -0.04405504837632179, + 0.0490618459880352, + -0.051984477788209915, + -0.009965687990188599, + 0.010702334344387054, + 0.011121563613414764, + -0.027453552931547165, + 0.02135675586760044, + 0.013714798726141453, + 0.0037820504512637854, + 0.041276153177022934, + -0.0014994946541264653, + -0.004916965030133724, + -0.03701198846101761, + -0.013355459086596966, + -0.013702820986509323, + 0.0060548740439116955, + -0.01796698570251465, + 0.015918748453259468, + -0.00012679825886152685, + 0.018122699111700058, + 0.022147303447127342, + -0.0038479294162243605, + -0.03732341527938843, + 0.010941893793642521, + -0.020889613777399063, + 0.01184623222798109, + -0.0015122212935239077, + 0.03011266700923443, + 0.0146251255646348, + 0.0053990790620446205, + 0.03729946166276932, + 0.017775338143110275, + -0.02156038209795952, + 0.00598899507895112, + -0.008845745585858822, + 0.004713339265435934, + 0.012816449627280235, + -0.0438154861330986, + -0.0067855315282940865, + -0.017356107011437416, + -0.0024045815225690603, + -0.013379414565861225, + 0.030016843229532242, + 0.00493193743750453, + -0.01741599664092064, + -0.011480903252959251, + -0.03059178590774536, + 0.0049618822522461414, + -0.024722572416067123, + -0.021835876628756523, + -0.026639049872756004, + -0.007462287787348032, + 0.03971901535987854, + 0.05600908026099205, + -0.014972487464547157, + 0.013559084385633469, + -0.036293309181928635, + -0.01655358262360096, + -0.002076684031635523, + -0.025824546813964844, + 0.009839918464422226, + -0.03861704096198082, + -0.0036472980864346027, + 0.026854652911424637, + 0.0195480789989233, + -0.015775013715028763, + 0.0014381074579432607, + 0.0009020923753269017, + -0.01710456982254982, + 0.002633660566061735, + -0.012768537737429142, + 0.058644238859415054, + 0.0019913408905267715, + 0.006647784262895584, + 0.022937851026654243, + -0.03614957258105278, + -0.03727550432085991, + 0.017727425321936607, + 0.002458482515066862, + -0.03495177626609802, + 0.015583365224301815, + 0.007396408822387457, + -0.0008788850391283631, + -0.028507616370916367, + 0.009839918464422226, + -0.0006531747640110552, + -0.00045329207205213606, + 0.0022668347228318453, + 0.00032771032419987023, + 0.003976692911237478, + -0.0038299623411148787, + -0.011900133453309536, + -0.004554630722850561, + 0.021524447947740555, + 0.012852383777499199, + -0.010882004164159298, + -0.0022952824365347624, + 0.0165296271443367, + -0.03478408232331276, + 0.019560057669878006, + 0.020206868648529053, + -0.012684691697359085, + -0.035670455545186996, + -0.00038554155617021024, + -0.01857786253094673, + -0.048103608191013336, + -0.009031404741108418, + 0.0048151519149541855, + 0.019404344260692596, + 0.005330205429345369, + 0.02014697901904583, + 0.03964714705944061, + -0.018266435712575912, + -0.025273559615015984, + 0.022518621757626534, + -0.03729946166276932, + -0.0029900057706981897, + 0.007025090977549553, + 0.010049534030258656, + 0.009061349555850029, + 0.00662981765344739, + -0.038473304361104965, + -0.0030813380144536495, + -0.017248306423425674, + 0.005171497352421284, + -0.010696345008909702, + -0.004446828737854958, + -0.04661833867430687, + -0.017164459452033043, + -0.008240857161581516, + 0.03717968240380287, + -0.00005974958185106516, + -0.021632250398397446, + -0.05596116930246353, + -0.012199582532048225, + -0.004371966235339642, + -0.002566284267231822, + 0.002569278934970498, + 0.032077059149742126, + 0.007456298917531967, + 0.03581419214606285, + 0.01180430967360735, + 0.02166818454861641, + -0.006779542192816734, + 0.030687609687447548, + -0.008791844360530376, + -0.011786342598497868, + 0.01915280520915985, + 0.009462611749768257, + 0.00751618854701519, + 0.01983555220067501, + 0.006695696618407965, + -0.020877636969089508, + 0.009139206260442734, + 0.0054709468968212605, + 0.015727100893855095, + 0.020111044868826866, + -0.015834903344511986, + -0.014289742335677147, + 0.02277015894651413, + 0.01503237709403038, + 0.013822600245475769, + -0.030807390809059143, + 0.0024794440250843763, + 0.04640273377299309, + 0.016853032633662224, + -0.04324054345488548, + 0.0007733289967291057, + 0.02675882913172245, + 0.021919721737504005, + -0.01569116674363613, + 0.02023082599043846, + 0.02618388645350933, + -0.03665265068411827, + 0.006294433958828449, + 0.010564587078988552, + -0.0064022354781627655, + -0.010935905389487743, + -0.01618226431310177, + -0.0029959948733448982, + 0.027741024270653725, + -0.061950165778398514, + -0.000562965520657599, + -0.018422149121761322, + -0.0055458093993365765, + 0.03440078720450401, + -0.028363879770040512, + 0.04307285323739052, + -0.04189901053905487, + 0.0006632811855524778, + 0.0033029308542609215, + -0.011037717573344707, + -0.003928780555725098, + -0.022434774786233902, + -0.016218198463320732, + 0.016218198463320732, + 0.05241568386554718, + 0.008570251986384392, + 0.027381684631109238, + 0.0059830062091350555, + -0.006390257738530636, + -0.02318938821554184, + 0.00045104618766345084, + -0.01434963196516037, + 0.016960833221673965, + -0.003599385963752866, + -0.00486006960272789, + -0.02369246445596218, + -0.006198609713464975, + -0.01475688349455595, + -0.018673686310648918, + -0.012540956027805805, + -0.019284563139081, + -0.022027524188160896, + -0.04551636055111885, + -0.0074203647673130035, + -0.002325227251276374, + 0.02151246927678585, + -0.0077916826121509075, + 0.022961806505918503, + 0.06616641581058502, + -0.014768862165510654, + 0.001940434449352324, + -0.005012788809835911, + 0.016254132613539696, + 0.026615094393491745, + 0.02893882431089878, + 0.011337167583405972, + 0.006252510938793421, + -0.005138557869940996, + -0.008270801976323128, + 0.010528652928769588, + 0.025824546813964844, + 0.010498708114027977, + 0.018985114991664886, + 0.009989643469452858, + 0.010558598674833775, + -0.012337329797446728, + 0.007462287787348032, + -0.003910813946276903, + 0.03780253604054451, + -0.004333037883043289, + 0.012325352057814598, + 0.025513118132948875, + -0.017427975311875343, + -0.01944027841091156, + 0.020182913169264793, + -0.02455488033592701, + -0.010456785559654236, + 0.007025090977549553, + 0.046762071549892426, + -0.034376829862594604, + 0.042090658098459244, + -0.03370606526732445, + 0.012361286208033562, + 0.01891324669122696, + 0.010157335549592972, + -0.05332601070404053, + 0.005330205429345369, + 0.003982681781053543, + -0.02239884063601494, + -0.0055368258617818356, + -0.015667211264371872, + -0.017308196052908897, + 0.01805083081126213, + 0.0011468925513327122, + -0.024962130934000015, + -0.0016095424070954323, + 0.00022365152835845947, + -0.03399353474378586, + -0.014780839905142784, + 0.029633548110723495, + -0.004428861662745476, + 0.04901393502950668, + -0.029178384691476822, + 0.02224312722682953, + -0.0059680333361029625, + -0.02017093449831009, + 0.0120019456371665, + -0.017703469842672348, + -0.02534542791545391, + 0.0093128876760602, + 0.024914219975471497, + 0.01239721942692995, + -0.023788288235664368, + 0.015798969194293022, + -0.01516413502395153, + 0.001579597475938499, + 0.0018026875331997871, + -0.006492070388048887, + -0.023416969925165176, + -0.03119068592786789, + -0.011385079473257065, + 0.03361023962497711, + -0.00427015358582139, + -0.009258986450731754, + 0.013307547196745872, + -0.004419878125190735, + -0.031573981046676636, + -0.020003244280815125, + -0.031046951189637184, + 0.035406939685344696, + -0.013834578916430473, + -0.023620596155524254, + 0.02017093449831009, + -0.0020287721417844296, + -0.018458083271980286, + -0.01849401742219925, + -0.015056333504617214, + 0.011403046548366547, + 0.0008249840466305614, + 0.017990941181778908, + 0.020769834518432617, + -0.016098419204354286, + -0.02707025781273842, + -0.005647622514516115, + 0.02206345833837986, + -0.01723632775247097, + -0.01957203634083271, + -0.021943677216768265, + -0.052032388746738434, + -0.0245309229940176 + ] + }, + { + "HotelId": "32", + "HotelName": "Gold View Inn", + "Description": "AAA Four Diamond Resort. Nestled on six beautifully landscaped acres, located 2 blocks from the park. Unwind at the spa and indulge in art tours on site.", + "Description_fr": "AAA Four Diamond Resort. NichĆ© sur six hectares magnifiquement amĆ©nagĆ©s, situĆ© Ć  2 pĆ¢tĆ©s de lĆ  du parc. DĆ©Tendez-vous au spa et profitez de visites d'art sur place.", + "Category": "Suite", + "Tags": [ + "continental breakfast", + "free parking", + "pool" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2021-01-31T00:00:00Z", + "Rating": 2.8, + "Address": { + "StreetAddress": "1414 NW Northrup St", + "City": "Portland", + "StateProvince": "OR", + "PostalCode": "97209", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.685928, + 45.531139 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "coffee maker", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 153.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "jacuzzi tub" + ] + } + ], + "embedding": [ + -0.043708715587854385, + 0.00742770079523325, + 0.031286727637052536, + 0.05766027793288231, + -0.011164726689457893, + -0.028969191014766693, + -0.01680213026702404, + 0.007862238213419914, + 0.009183233603835106, + -0.007248091511428356, + 0.004942143801599741, + 0.004455461632460356, + 0.004075965378433466, + -0.052422646433115005, + 0.035829097032547, + 0.050012409687042236, + 0.0063906037248671055, + 0.02026684582233429, + 0.04329155758023262, + 0.035782743245363235, + -0.008412652648985386, + -0.03471667692065239, + -0.01872568577528, + -0.0826433077454567, + 0.061136581003665924, + -0.012387226335704327, + -0.010846065357327461, + -0.02275819703936577, + 0.029618101194500923, + -0.01613004505634308, + -0.013754571788012981, + -0.017949311062693596, + 0.07657136768102646, + -0.019977154210209846, + 0.0197222251445055, + 0.005156516097486019, + 0.012653742916882038, + 0.0011189350625500083, + 0.023986490443348885, + -0.005808322690427303, + 0.01905013993382454, + 0.05766027793288231, + -0.012827557511627674, + 0.02667483128607273, + 0.022908836603164673, + 0.004006439354270697, + -0.013603932224214077, + 0.050661321729421616, + 0.0307073425501585, + -0.0023870612494647503, + 0.009635153226554394, + 0.015040803700685501, + -0.009189027361571789, + -0.03279312327504158, + -0.07096292823553085, + 0.028227580711245537, + 0.026257675141096115, + -0.031425777822732925, + 0.03327980637550354, + 0.012259761802852154, + 0.03186611086130142, + 0.006124087143689394, + 0.017010709270834923, + 0.055018287152051926, + -0.03768312558531761, + 0.04829743504524231, + -0.037242792546749115, + -0.009443956427276134, + 0.013001373037695885, + -0.02110115811228752, + 0.013186776079237461, + 0.04978065937757492, + -0.009791586548089981, + -0.006703470833599567, + 0.020324785262346268, + 0.014681586064398289, + -0.01526097021996975, + -0.024009665474295616, + -0.03228326514363289, + -0.018146300688385963, + 0.036617059260606766, + 0.02343028225004673, + -0.018134713172912598, + 0.03212103992700577, + -0.0008487973245792091, + -0.024983029812574387, + -0.04280487820506096, + -0.0005717793828807771, + -0.029177770018577576, + 0.05867999419569969, + 0.023337580263614655, + -0.017543742433190346, + -0.011755697429180145, + -0.05733582377433777, + -0.031101323664188385, + 0.0023334682919085026, + 0.02389378845691681, + 0.0370110385119915, + -0.04616530239582062, + 0.043036628514528275, + 0.03283947333693504, + -0.06609610468149185, + -0.00020568125182762742, + -0.006361634470522404, + 0.020394310355186462, + -0.05019781365990639, + 0.02695293538272381, + 0.05019781365990639, + -0.0036414272617548704, + 0.004637967329472303, + -0.12598121166229248, + -0.00795494019985199, + -0.04764852672815323, + 0.009693091735243797, + -0.011576089076697826, + 0.04004700854420662, + 0.01734675094485283, + -0.022491680458188057, + -0.014878576621413231, + -0.004768328741192818, + -0.011888955719769001, + 0.020823054015636444, + -0.004469946026802063, + -0.05385952070355415, + 0.047741226851940155, + -0.0007101072696968913, + -0.02286248467862606, + -0.026373552158474922, + 0.005469383206218481, + -0.015979405492544174, + -0.02732374146580696, + 0.002269736025482416, + -0.009797380305826664, + -0.013302652165293694, + 0.009438162669539452, + 0.034971605986356735, + -0.030151134356856346, + 0.030012082308530807, + -0.02334916777908802, + -0.005559187848120928, + 0.041785161942243576, + 0.03923587128520012, + 0.005599744617938995, + -0.002401545876637101, + 0.015631776303052902, + 0.02353457175195217, + 0.03492525592446327, + 0.02586369402706623, + -0.00933387316763401, + 0.03309440240263939, + -0.028019001707434654, + 0.0035429319832473993, + 0.005559187848120928, + -0.00683093536645174, + -0.017543742433190346, + -0.03956032916903496, + -0.02051018737256527, + -0.024612225592136383, + -0.01702229678630829, + 0.04987335950136185, + -0.02302471362054348, + 0.021634191274642944, + -0.000819103850517422, + -0.00677879061549902, + 0.051959142088890076, + 0.030475588515400887, + -0.016269097104668617, + 0.041298478841781616, + -0.085377998650074, + -0.015712888911366463, + 0.05399857088923454, + 0.018575046211481094, + -0.017381515353918076, + 0.024357296526432037, + -0.0061646439135074615, + -0.003757304046303034, + 0.013152012601494789, + 0.025770992040634155, + -0.003047558944672346, + 0.0017120791599154472, + 0.002016255632042885, + -0.02093893103301525, + 0.03327980637550354, + 0.020707176998257637, + -0.03395189344882965, + 0.018575046211481094, + -0.021761655807495117, + 0.009021006524562836, + 0.003441539825871587, + 0.013476467691361904, + 0.0002355557371629402, + 0.00003127767195110209, + -0.02213246189057827, + 0.004678524564951658, + -0.007775330916047096, + 0.010150804184377193, + -0.043384261429309845, + -0.017879784107208252, + 0.016431326046586037, + 0.009177439846098423, + -0.022016584873199463, + -0.04857553914189339, + 0.01091559138149023, + -0.04004700854420662, + -0.017358338460326195, + -0.04927080124616623, + -0.0055331154726445675, + -0.07800823450088501, + 0.027509143576025963, + -0.02727738954126835, + 0.02711516246199608, + -0.02808852680027485, + 0.04477478191256523, + 0.029942555353045464, + -0.038841892033815384, + -0.06308331340551376, + 0.04248042032122612, + -0.013986325822770596, + 0.009386017918586731, + 0.03487890586256981, + -0.007682629395276308, + 0.009443956427276134, + -0.02635037712752819, + 0.04041781648993492, + -0.004258471075445414, + 0.002114750910550356, + 0.01109519973397255, + -0.020255258306860924, + 0.00654124328866601, + -0.008505354635417461, + 0.0011812187731266022, + 0.007613103371113539, + -0.031912460923194885, + -0.023546159267425537, + -0.05636245757341385, + 0.023824263364076614, + 0.004582926165312529, + 0.00306783732958138, + 0.030290186405181885, + -0.0042816465720534325, + -0.02324487827718258, + -0.01596781797707081, + -0.004516297020018101, + 0.015214619226753712, + 0.040695920586586, + -0.015527486801147461, + 0.02316376566886902, + -0.026558954268693924, + 0.03972255438566208, + 0.018690921366214752, + -0.068413645029068, + 0.028320280835032463, + -0.04217914119362831, + -0.01639656163752079, + 0.03684880957007408, + -0.020243670791387558, + 0.0029200944118201733, + -0.0044670491479337215, + -0.0005370163707993925, + -0.0010139216901734471, + 0.06651326268911362, + 0.013916799798607826, + -0.036246251314878464, + -0.05056862160563469, + -0.008632819168269634, + 0.004695905838161707, + 0.033024877309799194, + 0.0221903994679451, + -0.02229468896985054, + -0.019015377387404442, + -0.06331506371498108, + -0.03647800534963608, + -0.007740567903965712, + -0.02010461874306202, + 0.03276994824409485, + -0.02345345728099346, + -0.035968147218227386, + -0.04115942493081093, + 0.031912460923194885, + 0.008377890102565289, + 0.04213279113173485, + -0.03168070688843727, + 0.0463738813996315, + -0.01921236701309681, + -0.018215827643871307, + 0.007613103371113539, + 0.0027057223487645388, + -0.013685045763850212, + -0.02892284095287323, + 0.004493121523410082, + 0.03986160829663277, + 0.0017540844855830073, + -0.006558625027537346, + 0.010370970703661442, + -0.04004700854420662, + -0.016929594799876213, + -0.004629276692867279, + -0.0234071072191, + 0.032213740050792694, + 0.021981822326779366, + -0.00026814607554115355, + 0.022653907537460327, + -0.06071942299604416, + -0.022225163877010345, + -0.0029722389299422503, + 0.057613927870988846, + 0.006657120306044817, + -0.04396364465355873, + 0.021448789164423943, + -0.00021093191753607243, + -0.007416112814098597, + -0.01818106509745121, + 0.024681750684976578, + -0.020405897870659828, + 0.0036269426345825195, + -0.0003657360502984375, + -0.0059618595987558365, + 0.014658411033451557, + -0.005524424836039543, + -0.02042907290160656, + 0.04092767462134361, + 0.025029381737113, + -0.003345941659063101, + -0.052422646433115005, + 0.005599744617938995, + -0.02454269863665104, + 0.02438047155737877, + 0.01572447642683983, + 0.002043776446953416, + -0.06869174540042877, + 0.030776869505643845, + -0.024287769570946693, + 0.006825141608715057, + -0.007149596232920885, + -0.02762502059340477, + -0.025770992040634155, + -0.04797298088669777, + -0.03151848167181015, + 0.0337664894759655, + 0.05283980444073677, + -0.034508101642131805, + -0.025608764961361885, + -0.00881822220981121, + -0.022665495052933693, + -0.04037146642804146, + -0.03307122737169266, + -0.02107798308134079, + 0.040464166551828384, + 0.02051018737256527, + 0.026837058365345, + -0.0027390369214117527, + -0.019108077511191368, + 0.01436871849000454, + 0.031912460923194885, + 0.02792629972100258, + -0.051310230046510696, + 0.039004117250442505, + -0.000679327524267137, + -0.0048957932740449905, + 0.028505684807896614, + -0.032213740050792694, + -0.0001485576358390972, + 0.015794003382325172, + -0.014832225628197193, + -0.02553923800587654, + 0.02600274607539177, + -0.03840155899524689, + -0.03216738998889923, + 0.03490208089351654, + -0.044334448873996735, + -0.03362743556499481, + 0.017474215477705002, + 0.044983360916376114, + -0.009316491894423962, + -0.018540281802415848, + 0.09455543756484985, + 0.08792728930711746, + -0.021541491150856018, + 0.031425777822732925, + -0.04442715272307396, + -0.013858861289918423, + -0.018841562792658806, + 0.052422646433115005, + -0.03193563595414162, + 0.004336687736213207, + -0.007844856940209866, + 0.0068019661121070385, + -0.014924927614629269, + -0.03323345631361008, + 0.02067241445183754, + 0.012723268941044807, + -0.038053929805755615, + -0.004330893978476524, + -0.014669998548924923, + 0.01698753423988819, + -0.035157009959220886, + 0.012978198006749153, + -0.00830836407840252, + 0.009901669807732105, + 0.029757153242826462, + -0.0006789654144085944, + -0.025098906829953194, + -0.016442913562059402, + -0.009032594040036201, + 0.008302570320665836, + -0.019420946016907692, + -0.0027578670997172594, + -0.05571354925632477, + -0.029270470142364502, + 0.011570295318961143, + -0.03550463914871216, + -0.07592245936393738, + 0.015643363818526268, + -0.001580269425176084, + -0.024148717522621155, + -0.005822807550430298, + 0.01396314986050129, + -0.02646625228226185, + -0.010492640547454357, + -0.02716151438653469, + -0.0009016660624183714, + 0.06382492184638977, + 0.022491680458188057, + -0.017497390508651733, + -0.03759042173624039, + 0.017659619450569153, + 0.005938684102147818, + 0.019084902480244637, + -0.02938634715974331, + 0.014658411033451557, + 0.03311757743358612, + -0.031912460923194885, + 0.03833203390240669, + 0.031240375712513924, + -0.07063847780227661, + 0.06688407063484192, + -0.019177604466676712, + -0.029432697221636772, + -0.03640848025679588, + -0.02748596854507923, + -0.013951562345027924, + -0.030313361436128616, + -0.061785489320755005, + 0.0005562084843404591, + -0.04166928306221962, + 0.046142127364873886, + 0.06730122119188309, + 0.028667911887168884, + 0.011153138242661953, + -0.03939810022711754, + -0.06401032209396362, + -0.016871657222509384, + -0.03267724812030792, + 0.005144928116351366, + 0.022503267973661423, + 0.03995430842041969, + 0.04122895374894142, + 0.010121835395693779, + 0.028459332883358, + -0.008412652648985386, + 0.09520434588193893, + -0.030776869505643845, + 0.0002516698441468179, + 0.01526097021996975, + 0.008557499386370182, + -0.07170454412698746, + -0.020405897870659828, + 0.02353457175195217, + -0.03003525733947754, + -0.018575046211481094, + 0.012862320989370346, + -0.028459332883358, + 0.03589862212538719, + -0.0005145652685314417, + 0.01599099300801754, + -0.050800371915102005, + -0.024589048698544502, + 0.017277225852012634, + 0.028714261949062347, + 0.015666538849473, + -0.03587544709444046, + 0.0029056097846478224, + -0.011008292436599731, + 0.019571585580706596, + -0.02037113532423973, + -0.014809050597250462, + 0.001406454248353839, + 0.07434653490781784, + -0.07198264449834824, + -0.0038905623368918896, + -0.008644406683743, + 0.022989949211478233, + -0.010260887444019318, + -0.009756824001669884, + 0.03677928447723389, + 0.04927080124616623, + -0.025400185957551003, + -0.01045787800103426, + -0.02304788865149021, + 0.005089886952191591, + -0.005092783831059933, + -0.014171727932989597, + -0.01436871849000454, + 0.007016337942332029, + 0.016222747042775154, + 0.015527486801147461, + -0.0014289052924141288, + 0.00799549650400877, + 0.0029374759178608656, + -0.020000329241156578, + 0.043894119560718536, + 0.010243506170809269, + -0.02730056643486023, + 0.01850551925599575, + -0.012943434529006481, + 0.007398731540888548, + 0.02472810074687004, + -0.0025188711006194353, + -0.02535383589565754, + -0.01996556669473648, + 0.004142594523727894, + 0.01696435920894146, + 0.01937459409236908, + -0.02876061201095581, + 0.040649570524692535, + 0.02251485548913479, + -0.014959690161049366, + -0.0016570377629250288, + -0.03453127667307854, + 0.01143124233931303, + 0.01074177585542202, + -0.017578504979610443, + -0.02345345728099346, + 0.022225163877010345, + 0.024264594539999962, + -0.0020133587531745434, + 0.035296063870191574, + -0.024009665474295616, + 0.04164610803127289, + -0.0014303538482636213, + 0.031750231981277466, + 0.010759157128632069, + -0.021576253697276115, + -0.02486715279519558, + -0.010434702970087528, + -0.04051051661372185, + -0.024148717522621155, + 0.010649074800312519, + -0.0029186459723860025, + 0.00015290301234927028, + 0.028505684807896614, + 0.018911087885499, + -0.009478718973696232, + -0.012004832737147808, + -0.014959690161049366, + 0.017868196591734886, + 0.015342083759605885, + 0.02553923800587654, + -0.02231786400079727, + 0.04139117896556854, + 0.003803654806688428, + 0.015145093202590942, + 0.033534735441207886, + -0.00922379083931446, + 0.021634191274642944, + -0.015573836863040924, + 0.030313361436128616, + 0.06693042069673538, + 0.013209951110184193, + 0.01907331496477127, + 0.009021006524562836, + 0.025933219119906425, + -0.033372506499290466, + -0.005336124915629625, + -0.007815888151526451, + -0.01067224983125925, + 0.03179658576846123, + -0.01501762866973877, + 0.010724394582211971, + 0.00234071072191, + 0.012097533792257309, + -0.0013195466017350554, + 0.010081278160214424, + 0.025794167071580887, + -0.01767120696604252, + 0.0059618595987558365, + 0.022850897163152695, + -0.019108077511191368, + 0.030012082308530807, + 0.04164610803127289, + 0.01617639698088169, + 0.006639738567173481, + 0.033395685255527496, + -0.04299027845263481, + 0.0010479604825377464, + -0.020347960293293, + -0.013685045763850212, + -0.003119981847703457, + 0.012051183730363846, + 0.039189521223306656, + 0.010220330208539963, + -0.020417485386133194, + 0.0043222033418715, + -0.04584084823727608, + -0.02825075574219227, + 0.033048052340745926, + -0.007497226819396019, + 0.01114734448492527, + 0.013395354151725769, + -0.01663990318775177, + -0.017080234363675117, + -0.026883408427238464, + 0.021854357793927193, + 0.004620586056262255, + 0.003166332608088851, + 0.011738316155970097, + -0.030660992488265038, + -0.028273930773139, + 0.019270306453108788, + -0.03807710483670235, + 0.0166630782186985, + 0.01551589835435152, + -0.004800194874405861, + 0.02018573321402073, + -0.012178648263216019, + 0.037057388573884964, + 0.0040122331120073795, + -0.011153138242661953, + -0.03504113480448723, + 0.016222747042775154, + -0.022897249087691307, + 0.01596781797707081, + 0.05052226781845093, + -0.031124498695135117, + -0.031078148633241653, + -0.004600307438522577, + -0.008464797399938107, + 0.01860980875790119, + 0.025886869058012962, + 0.0030359711963683367, + 0.0018902397714555264, + 0.01804201304912567, + 0.03228326514363289, + 0.01599099300801754, + 0.006790378596633673, + -0.008708138950169086, + 0.04764852672815323, + -0.023059476166963577, + -0.01070121955126524, + -0.02938634715974331, + -0.00989008229225874, + 0.012885496020317078, + -0.013708220794796944, + 0.0179145485162735, + -0.0027245525270700455, + 0.009270140901207924, + 0.0002603605971671641, + -0.022283101454377174, + -0.02091575600206852, + 0.03752089664340019, + 0.0008980449056252837, + 0.06896985322237015, + -0.005475176963955164, + -0.04051051661372185, + -0.008250425569713116, + 0.020962106063961983, + 0.0010168185690417886, + -0.025237958878278732, + -0.035643693059682846, + 0.023546159267425537, + 0.08630501478910446, + 0.012955022044479847, + -0.024032840505242348, + 0.04651293158531189, + 0.007815888151526451, + -0.0018931366503238678, + -0.018007248640060425, + -0.024032840505242348, + -0.013650283217430115, + 0.0008857329958118498, + 0.002601433312520385, + -0.008418447338044643, + -0.04783392697572708, + -0.004837854765355587, + 0.027532318606972694, + -0.005399857182055712, + 0.03309440240263939, + 0.0148554015904665, + 0.0011841156519949436, + -0.022978361696004868, + -0.006755615584552288, + -0.027370091527700424, + 0.016060519963502884, + -0.024148717522621155, + 0.015156680718064308, + -0.016952769830822945, + -0.0067845843732357025, + -0.031889285892248154, + 0.01308248657733202, + -0.05251535028219223, + -0.026141798123717308, + 0.0038239331915974617, + 0.029525399208068848, + -0.0006499962182715535, + 0.0023551953490823507, + -0.018192652612924576, + -0.017277225852012634, + -0.04834378510713577, + 0.039490800350904465, + -0.03511065989732742, + 0.03703421354293823, + -0.049687955528497696, + -0.038239333778619766, + 0.027370091527700424, + -0.015006041154265404, + 0.0056924461387097836, + 0.009774205274879932, + 0.01574765145778656, + -0.012224998325109482, + 0.0036674996372312307, + -0.014982865191996098, + -0.005738796666264534, + 0.04454302787780762, + 0.005463589448481798, + -0.014727937057614326, + 0.01276961900293827, + 0.004142594523727894, + -0.06280520558357239, + -0.019988741725683212, + 0.07972321659326553, + -0.044334448873996735, + 0.013036135584115982, + 0.005449105054140091, + 0.002297256840392947, + -0.006813553627580404, + 0.0005160137079656124, + 0.018934262916445732, + 0.012398813851177692, + -0.03130990266799927, + -0.01210912223905325, + 0.007723186165094376, + -0.02118227258324623, + -0.02389378845691681, + -0.01674419268965721, + -0.022144049406051636, + -0.050151463598012924, + 0.00014249220839701593, + -0.019200779497623444, + -0.02332599274814129, + 0.028227580711245537, + -0.0018018836854025722, + 0.007827475666999817, + 0.017277225852012634, + -0.00833153910934925, + -0.030660992488265038, + -0.04090449959039688, + 0.010446290485560894, + 0.0044728429056704044, + 0.023418694734573364, + 0.0007119178771972656, + 0.02811170369386673, + 0.0085517056286335, + 0.01568971388041973, + -0.0036124582402408123, + 0.012897083535790443, + -0.012734856456518173, + 0.0056808581575751305, + 0.03939810022711754, + -0.019420946016907692, + -0.006402191240340471, + -0.03807710483670235, + -0.013453292660415173, + -0.014681586064398289, + 0.016048932448029518, + 0.0695260614156723, + -0.026211323216557503, + 0.022259926423430443, + -0.03777582570910454, + 0.026118623092770576, + -0.02150672674179077, + 0.05562084540724754, + 0.0017685691127553582, + 0.0015252279117703438, + 0.019791752099990845, + -0.029432697221636772, + -0.001646898570470512, + 0.029502224177122116, + -0.020823054015636444, + -0.008325745351612568, + 0.007514608092606068, + -0.021251797676086426, + -0.004524987656623125, + 0.03518018499016762, + -0.02091575600206852, + 0.026049096137285233, + -0.03311757743358612, + 0.0029896204359829426, + -0.021495139226317406, + 0.02288566157221794, + 0.011466005817055702, + 0.01382409781217575, + 0.003099703462794423, + 0.023441869765520096, + 0.008146136067807674, + 0.006454335991293192, + 0.011413861066102982, + -0.024843977764248848, + 0.03942127525806427, + -0.01704547181725502, + -0.03585227206349373, + -0.006767203100025654, + 0.007879620417952538, + -0.0006728094886057079, + -0.026141798123717308, + 0.009339666925370693, + -0.019756987690925598, + 0.004591616801917553, + -0.005480970721691847, + -0.007195947226136923, + 0.007514608092606068, + -0.03427634760737419, + -0.02681388333439827, + 0.005139134358614683, + 0.021414026618003845, + -0.03888824209570885, + 0.025075731799006462, + -0.024589048698544502, + -0.004756741225719452, + 0.022607557475566864, + -0.012259761802852154, + -0.004493121523410082, + 0.002995414426550269, + -0.0234071072191, + 0.019223954528570175, + -0.011900543235242367, + -0.006077736150473356, + 0.05283980444073677, + 0.020904168486595154, + -0.03276994824409485, + -0.00420053256675601, + 0.015307320281863213, + 0.017080234363675117, + -0.002689789282158017, + 0.008655994199216366, + -0.04380141571164131, + -0.03511065989732742, + 0.012978198006749153, + -0.022688670083880424, + 0.023441869765520096, + 0.011153138242661953, + -0.013221538625657558, + 0.012827557511627674, + 0.038865067064762115, + 0.01880679838359356, + -0.011570295318961143, + -0.02760184556245804, + -0.023604096844792366, + -0.005721415393054485, + 0.045794498175382614, + -0.006859904620796442, + 0.018737273290753365, + 0.02332599274814129, + -0.0070047504268586636, + -0.01929348148405552, + -0.006471717264503241, + -0.003511065850034356, + -0.0014071784680709243, + -0.01796089857816696, + -0.028181228786706924, + -0.0036935717798769474, + -0.024774452671408653, + -0.027717722579836845, + -0.03181976079940796, + 0.007166977971792221, + 0.01696435920894146, + -0.0020741941407322884, + 0.012387226335704327, + 0.008569086901843548, + 0.012862320989370346, + -0.04375506564974785, + -0.0015179855981841683, + -0.02326805517077446, + -0.0013152012834325433, + 0.023360755294561386, + 0.018598221242427826, + 0.026651656255126, + 0.0034791999496519566, + 0.04973430559039116, + 0.014843813143670559, + 0.011923719197511673, + -0.0013883485225960612, + 0.01686006970703602, + 0.04477478191256523, + -0.01396314986050129, + -0.025933219119906425, + 0.010463671758770943, + 0.04027876257896423, + 0.045307815074920654, + -0.025446537882089615, + -0.011014086194336414, + -0.012074358761310577, + -0.04491383209824562, + -0.012792794965207577, + 0.005405650939792395, + 0.014554121531546116, + 0.011946894228458405, + -0.025979571044445038, + 0.04560909420251846, + -0.022955186665058136, + -0.042596299201250076, + 0.010087071917951107, + -0.03522653505206108, + 0.00952506996691227, + 0.026280850172042847, + 0.017845021560788155, + 0.052051842212677, + -0.019687462598085403, + 0.002185725374147296, + -0.030660992488265038, + -0.006465923506766558, + 0.03589862212538719, + 0.010764951817691326, + 0.0023566437885165215, + 0.0012348117306828499, + -0.009090532548725605, + -0.004452564753592014, + 0.006338458973914385, + -0.005339021794497967, + 0.0036211488768458366, + -0.034484926611185074, + 0.017242463305592537, + 0.023302817717194557, + 0.010168186388909817, + 0.031727056950330734, + 0.04950255528092384, + 0.007219122257083654, + -0.0036964688915759325, + 0.00391663471236825, + 0.009675709530711174, + 0.019444121047854424, + -0.0023537466768175364, + 0.009136882610619068, + 0.01672101765871048, + -0.010724394582211971, + -0.007503020577132702, + -0.04333791136741638, + 0.03084639459848404, + -0.0035834889858961105, + 0.028806963935494423, + -0.013302652165293694, + 0.01880679838359356, + 0.027184689417481422, + 0.004061480518430471, + -0.01062010508030653, + -0.015701301395893097, + 0.033372506499290466, + -0.006935224402695894, + -0.009565627202391624, + -0.010869240388274193, + -0.010990911163389683, + 0.0021697923075407743, + 0.020359547808766365, + 0.02776407264173031, + -0.00876607745885849, + 0.000856763799674809, + 0.0021929678041487932, + -0.003765994915738702, + 0.01501762866973877, + -0.016813717782497406, + 0.031217200681567192, + -0.027370091527700424, + -0.00365301501005888, + -0.02906189300119877, + 0.031402602791786194, + -0.013198363594710827, + 0.018111538141965866, + 0.014438244514167309, + -0.008858778513967991, + 0.0051217530854046345, + -0.03939810022711754, + 0.015411609783768654, + 0.03316393122076988, + 0.023152178153395653, + -0.006657120306044817, + 0.0141369653865695, + 0.008603849448263645, + 0.03986160829663277, + 0.018934262916445732, + 0.01775231957435608, + -0.01702229678630829, + -0.023824263364076614, + 0.024589048698544502, + 0.029038717970252037, + 0.026304025202989578, + 0.0010370970703661442, + 0.03323345631361008, + -0.013337415643036366, + 0.02472810074687004, + 0.013024548068642616, + 0.02310582622885704, + -0.005156516097486019, + 0.006622357293963432, + -0.028042176738381386, + 0.005260805133730173, + -0.03993113338947296, + -0.024658575654029846, + 0.022503267973661423, + 0.05460113286972046, + 0.028714261949062347, + -0.022016584873199463, + 0.017114998772740364, + 0.013569168746471405, + -0.03293217718601227, + -0.021923882886767387, + -0.0013470674166455865, + -0.018760448321700096, + -0.012132297269999981, + -0.024519523605704308, + -0.047115493565797806, + 0.021008457988500595, + 0.033673789352178574, + -0.02267708256840706, + 0.017879784107208252, + -0.011454418301582336, + 0.019896039739251137, + -0.04155340790748596, + 0.03411411866545677, + 0.010156597942113876, + 0.02405601553618908, + 0.003441539825871587, + 0.0038065516855567694, + 0.0227813720703125, + -0.03186611086130142, + -0.0195368230342865, + -0.006315283477306366, + 0.00023845265968702734, + -0.01139068603515625, + -0.017010709270834923, + -0.01117631420493126, + 0.006460129749029875, + 0.003647221252322197, + -0.03119402565062046, + 0.00892830453813076, + -0.007972321473062038, + -0.014380306005477905, + -0.010521610267460346, + -0.008082404732704163, + 0.017543742433190346, + 0.043685540556907654, + 0.010434702970087528, + -0.0042034294456243515, + -0.05956065654754639, + -0.011066230945289135, + 0.015840353444218636, + -0.00836050882935524, + -0.017485802993178368, + -0.015133505687117577, + -0.019119666889309883, + -0.002421824261546135, + 0.011784667149186134, + -0.026141798123717308, + 0.030776869505643845, + 0.008447416126728058, + -0.028320280835032463, + 0.007700011134147644, + -0.0038586962036788464, + -0.023638859391212463, + -0.013939974829554558, + -0.03348838537931442, + 0.009484512731432915, + 0.015214619226753712, + 0.04584084823727608, + 0.02695293538272381, + -0.028389807790517807, + 0.00859226193279028, + -0.005159412976354361, + -0.009849525056779385, + 0.002391406800597906, + -0.011477593332529068, + 0.048065681010484695, + 0.0038529024459421635, + 0.013951562345027924, + -0.039490800350904465, + 0.049178097397089005, + -0.02486715279519558, + -0.00153391866479069, + 0.024959854781627655, + -0.03372013941407204, + -0.006842522881925106, + 0.010452084243297577, + 0.0002628953952807933, + 0.0007151769241318107, + -0.02188912034034729, + 0.038355208933353424, + -0.051773738116025925, + 0.013545993715524673, + 0.009635153226554394, + 0.04169245809316635, + 0.009913257323205471, + 0.006703470833599567, + -0.01132116001099348, + 0.025585589930415154, + 0.02762502059340477, + 0.026790708303451538, + 0.0014781529316678643, + 0.0014361476060003042, + -0.007271267008036375, + 0.004785710480064154, + -0.01574765145778656, + 0.01079392060637474, + 0.01237563882023096, + -0.006054561119526625, + -0.00018793762137647718, + 0.0010979323415085673, + -0.017566917464137077, + -0.012804382480680943, + -0.003345941659063101, + -0.029849855229258537, + 0.0016367592616006732, + 0.029687626287341118, + 0.01126901526004076, + -0.005909714847803116, + 0.036732934415340424, + 0.010846065357327461, + -0.011686171405017376, + -0.036593880504369736, + -0.006448541767895222, + -0.030591465532779694, + -0.01609528250992298, + 0.012781207449734211, + 0.003783376421779394, + 0.02878378890454769, + -0.01826217770576477, + -0.035643693059682846, + -0.021135922521352768, + -0.025817343965172768, + 0.019733812659978867, + 0.039653029292821884, + -0.008070816285908222, + 0.006848316639661789, + 0.013175188563764095, + -0.0002862518304027617, + 0.005405650939792395, + -0.039351750165224075, + 0.000050741349696181715, + -0.004293234087526798, + 0.02045224979519844, + 0.04945620149374008, + 0.022827722132205963, + 0.002666614018380642, + -0.009304904378950596, + -0.015469548292458057, + 0.02191229537129402, + -0.01420649141073227, + 0.025423362851142883, + -0.008151930756866932, + 0.020197320729494095, + 0.006239963695406914, + -0.026744356378912926, + 0.011529738083481789, + -0.03490208089351654, + -0.004383038729429245, + 0.002873743651434779, + -0.01655878871679306, + -0.00037334044463932514, + -0.016187984496355057, + -0.006628151051700115, + 0.02353457175195217, + 0.006396397482603788, + 0.004953731782734394, + 0.016245922073721886, + -0.021066395565867424, + -0.005101474467664957, + 0.025585589930415154, + 0.01014501042664051, + 0.012885496020317078, + 0.02016255632042885, + -0.019177604466676712, + 0.010139216668903828, + -0.02711516246199608, + 0.013152012601494789, + 0.042596299201250076, + 0.005414342042058706, + 0.031588006764650345, + -0.006958399899303913, + 0.022422153502702713, + -0.014890164136886597, + 0.010399939492344856, + 0.006941018160432577, + 0.015956230461597443, + -0.013337415643036366, + -0.001830852823331952, + 0.031889285892248154, + -0.0411362498998642, + -0.03276994824409485, + 0.002265390707179904, + 0.014727937057614326, + 0.029455874115228653, + -0.005008772946894169, + -0.005605538375675678, + 0.015550661832094193, + 0.019513648003339767, + -0.016524026170372963, + -0.023233290761709213, + -0.054183974862098694, + -0.0011269014794379473, + -0.020626064389944077, + -0.02535383589565754, + 0.01519144419580698, + 0.01615322008728981, + -0.017091821879148483, + 0.0260259211063385, + -0.06980416178703308, + 0.00986111257225275, + 0.034948430955410004, + -0.03200516104698181, + 0.03666340932250023, + 0.009414986707270145, + 0.007937557995319366, + -0.024334119632840157, + -0.04889999330043793, + 0.007288648281246424, + 0.0029577543027698994, + 0.04908539727330208, + 0.05232994630932808, + 0.01236405037343502, + -0.006297902204096317, + -0.0043627601116895676, + -0.010110247880220413, + 0.03765994682908058, + -0.046142127364873886, + -0.010782333090901375, + -0.026049096137285233, + 0.0012753686169162393, + -0.01674419268965721, + 0.005527321714907885, + 0.012352462857961655, + 0.010318825952708721, + -0.023152178153395653, + -0.005724312271922827, + -0.013603932224214077, + -0.009021006524562836, + 0.004837854765355587, + -0.008742901496589184, + 0.014554121531546116, + -0.0007850650581531227, + 0.012873908504843712, + 0.028853313997387886, + -0.014878576621413231, + -0.03911999613046646, + 0.03181976079940796, + 0.0008466246072202921, + -0.020950518548488617, + 0.00563450763002038, + 0.013754571788012981, + 0.008024466224014759, + 0.010654868558049202, + 0.017682794481515884, + 0.003276415402069688, + 0.009107913821935654, + -0.024519523605704308, + 0.00446415226906538, + 0.027045637369155884, + -0.0044670491479337215, + 0.014959690161049366, + 0.016199572011828423, + 0.015573836863040924, + 0.012815969996154308, + -0.011182107962667942, + -0.0011479042004793882, + -0.05766027793288231, + 0.017091821879148483, + -0.02107798308134079, + 0.03228326514363289, + 0.020197320729494095, + -0.027694547548890114, + -0.020730353891849518, + 0.004052789881825447, + 0.016813717782497406, + -0.019444121047854424, + 0.007120626978576183, + -0.03478620573878288, + 0.024797627702355385, + -0.0037022626493126154, + 0.019247131422162056, + 0.029919380322098732, + 0.033187106251716614, + 0.0023769221734255552, + 0.011784667149186134, + 0.005848879460245371, + -0.04039464145898819, + 0.011240046471357346, + 0.0029606514144688845, + -0.04551639407873154, + -0.02456587366759777, + 0.011466005817055702, + -0.004539472050964832, + -0.014218078926205635, + -0.0049131750129163265, + 0.03784535080194473, + -0.03395189344882965, + -0.011466005817055702, + -0.0043424819596111774, + 0.011118375696241856, + -0.01014501042664051, + 0.013430116698145866, + -0.024959854781627655, + 0.020962106063961983, + -0.0044670491479337215, + -0.0018323013791814446, + 0.02394014038145542, + 0.0009596044546924531, + 0.0047915042378008366, + -0.004962422419339418, + 0.02126338705420494, + 0.003198198741301894, + -0.009600389748811722, + 0.004061480518430471, + 0.01777549646794796, + -0.017566917464137077, + 0.03035971149802208, + 0.000750302046071738, + -0.013870448805391788, + 0.008262013085186481, + -0.013117250055074692, + -0.030081607401371002, + 0.0010906900279223919, + -0.0006174058653414249, + -0.027509143576025963, + 0.0017164245946332812, + -0.013905211351811886, + 0.01210912223905325, + 0.06160008907318115, + 0.004907380789518356, + -0.01420649141073227, + -0.04447350278496742, + -0.022572793066501617, + -0.0026970317121595144, + 0.004316409584134817, + -0.007769537158310413, + 0.01542319729924202, + -0.0019148634746670723, + 0.037080563604831696, + 0.005695343017578125, + 0.06609610468149185, + -0.009136882610619068, + -0.0054114446975290775, + -0.02570146694779396, + -0.034461747854948044, + 0.019629523158073425, + 0.02140243910253048, + 0.002165446989238262, + -0.031402602791786194, + 0.0042034294456243515, + 0.007601515855640173, + 0.008540117181837559, + 0.01197007019072771, + -0.031147673726081848, + 0.0006934499833732843, + 0.0004859581822529435, + 0.0038065516855567694, + -0.014461420476436615, + 0.0010776539565995336, + -0.019768575206398964, + 0.01511032972484827, + 0.004107831511646509, + 0.0032822093926370144, + -0.015226206742227077, + -0.0017453937325626612, + 0.0022393185645341873, + -0.011500769294798374, + -0.025237958878278732, + -0.03179658576846123, + 0.012746443971991539, + 0.007056895177811384, + -0.02792629972100258, + -0.016999121755361557, + -0.007555164862424135, + 0.012213410809636116, + 0.017601680010557175, + -0.028528859838843346, + -0.01593305543065071, + 0.011668790131807327, + -0.032561369240283966, + 0.003989057615399361, + 0.01661672815680504, + 0.0006369600887410343, + 0.012167059816420078, + -0.03181976079940796, + -0.008511148393154144, + -0.030730517581105232, + -0.008598055690526962, + 0.005886539816856384, + 0.017624855041503906, + 0.0034473338164389133, + -0.016106870025396347, + 0.053210608661174774, + -0.019061727449297905, + 0.00338939530774951, + 0.006379015743732452, + 0.00150494952686131, + 0.018899500370025635, + -0.014148552902042866, + 0.05103212594985962, + -0.02635037712752819, + -0.01143124233931303, + -0.011251633986830711, + -0.009820555336773396, + -0.03024383634328842, + -0.0034849937073886395, + -0.00494504114612937, + 0.006715058349072933, + 0.007450875826179981, + 0.0018670643912628293, + 0.029710803180933, + 0.054925587028265, + -0.006274726707488298, + 0.015457960776984692, + 0.032700423151254654, + -0.016327036544680595, + -0.00898044928908348, + 0.004591616801917553, + -0.014554121531546116, + -0.0014310780679807067, + 0.0065991817973554134, + 0.007728980388492346, + -0.01736992783844471, + -0.03476303070783615, + 0.010776539333164692, + -0.0066976770758628845, + -0.050429567694664, + -0.0028158053755760193, + 0.00393691286444664, + 0.013372178189456463, + 0.003345941659063101, + -0.016929594799876213, + -0.03135625272989273, + -0.03865648806095123, + -0.020174143835902214, + -0.03728914260864258, + -0.0015179855981841683, + 0.009443956427276134, + 0.02245691604912281, + 0.0006499962182715535, + -0.0032532401382923126, + 0.019675875082612038, + -0.0038731808308511972, + 0.045006535947322845, + 0.03249184414744377, + -0.002434860449284315, + 0.016871657222509384, + -0.003818139433860779, + 0.020220495760440826, + 0.018296940252184868, + 0.017682794481515884, + -0.011981657706201077, + -0.02635037712752819, + -0.01348805520683527, + 0.012804382480680943, + 0.019548410549759865, + 0.024635400623083115, + -0.013372178189456463, + 0.014426656998693943, + 0.04502971097826958, + 0.0435696616768837, + 0.004971113055944443, + 0.02906189300119877, + -0.04278170317411423, + 0.004640864208340645, + -0.006465923506766558, + -0.0016295169480144978, + -0.02180800773203373, + -0.0020553641952574253, + -0.036130376160144806, + 0.007253885269165039, + -0.009901669807732105, + 0.02002350427210331, + 0.0005916957161389291, + 0.015156680718064308, + -0.021634191274642944, + 0.00019644733401946723, + -0.005365094169974327, + 0.012155472300946712, + -0.012595804408192635, + -0.0039137378334999084, + -0.0030446620658040047, + -0.003519756719470024, + 0.028969191014766693, + -0.02762502059340477, + 0.012862320989370346, + -0.02391696348786354, + 0.029502224177122116, + -0.008233044296503067, + 0.022827722132205963, + 0.034670326858758926, + 0.05446207895874977, + 0.036431655287742615, + -0.02300153858959675, + 0.010822889395058155, + 0.011639821343123913, + -0.022004997357726097, + 0.03668658435344696, + 0.0005337573238648474, + 0.005133340600878, + -0.051588334143161774, + -0.024496348574757576, + 0.031078148633241653, + 0.0403251126408577, + -0.013847273774445057, + 0.008140342310070992, + 0.04092767462134361, + 0.001703388406895101, + 0.03436904773116112, + -0.019432533532381058, + 0.003137363353744149, + 0.04540051519870758, + -0.0033285601530224085, + 0.009496101178228855, + -0.004904483910650015, + 0.020011916756629944, + -0.010428909212350845, + -0.02394014038145542, + -0.020556537434458733, + 0.012873908504843712, + 0.005750384647399187, + -0.005663476884365082, + 0.01913125440478325, + 0.018088363111019135, + 0.016083694994449615, + -0.015145093202590942, + 0.003021486569195986, + 0.007288648281246424, + 0.00589812733232975, + -0.02410236746072769, + -0.003954294603317976, + -0.01095614768564701 + ] + }, + { + "HotelId": "33", + "HotelName": "Thunderbird Motel", + "Description": "Book Now & Save. Clean, Comfortable rooms at the lowest price. Enjoy complimentary coffee and tea in common areas.", + "Description_fr": "RĆ©servez maintenant et Ć©conomisez. Chambres propres et confortables au plus bas prix. Profitez du cafĆ© et du thĆ© gratuits dans les parties communes.", + "Category": "Budget", + "Tags": [ + "coffee in lobby", + "free parking", + "free wifi" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-01-30T00:00:00Z", + "Rating": 4.4, + "Address": { + "StreetAddress": "1555 Broadway St", + "City": "Detroit", + "StateProvince": "MI", + "PostalCode": "48226", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -83.049103, + 42.336109 + ] + }, + "Rooms": [ + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 151.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 68.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 73.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "tv" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 103.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Suite, 1 King Bed (City View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + } + ], + "embedding": [ + -0.008190575987100601, + -0.03984975069761276, + 0.02526332624256611, + -0.02716093324124813, + -0.029538657516241074, + -0.031847793608903885, + -0.009676653891801834, + 0.04924633726477623, + 0.006470154970884323, + -0.016438309103250504, + 0.02482893317937851, + 0.010082467459142208, + -0.0029021387454122305, + 0.025423364713788033, + 0.016598347574472427, + 0.013008898124098778, + -0.031847793608903885, + 0.05743119865655899, + 0.057202570140361786, + 0.07110311836004257, + -0.013226093724370003, + 0.01307748630642891, + -0.03207642212510109, + -0.022428346797823906, + 0.04282191023230553, + -0.010899810120463371, + -0.004646851681172848, + -0.037311989814043045, + -0.011094143614172935, + -0.019810562953352928, + -0.021799620240926743, + -0.024783208966255188, + 0.03331100940704346, + -0.016586916521191597, + 0.032693713903427124, + -0.004601126071065664, + -0.025583403185009956, + 0.01576385833323002, + -0.01059116329997778, + -0.04371355473995209, + -0.0016475460724905133, + 0.0194218959659338, + 0.02578916773200035, + 0.007847635075449944, + -0.007270350586622953, + -0.02574344351887703, + 0.00925940927118063, + -0.027092345058918, + -0.008064830675721169, + 0.027458148077130318, + -0.05212704464793205, + -0.04195312410593033, + -0.015752427279949188, + -0.08678695559501648, + -0.014414956793189049, + 0.019547641277313232, + -0.01449497602880001, + -0.019090386107563972, + 0.049474965780973434, + 0.021330934017896652, + 0.0033293862361460924, + 0.007441821042448282, + 0.03353963792324066, + 0.061637941747903824, + -0.033653952181339264, + 0.01448354497551918, + -0.003349391045048833, + -0.00010868731624213979, + -0.014803622849285603, + 0.008099124766886234, + 0.00736180180683732, + -0.01718134805560112, + -0.01378623116761446, + -0.027732500806450844, + 0.00198334245942533, + -0.007830487564206123, + -0.009579487144947052, + 0.0005115537787787616, + -0.00508410157635808, + -0.027778226882219315, + -0.02213113009929657, + -0.024051601067185402, + -0.016083937138319016, + 0.05958029627799988, + 0.037266261875629425, + -0.0425475537776947, + -0.011374211870133877, + 0.017409974709153175, + -0.026406463235616684, + 0.04433085024356842, + -0.007641870062798262, + 0.024691756814718246, + -0.029264304786920547, + -0.025057561695575714, + 0.032853756099939346, + 0.026795128360390663, + 0.04965786635875702, + -0.025880619883537292, + 0.004523964133113623, + 0.06707927584648132, + 0.03987261652946472, + -0.09821832180023193, + 0.010699761100113392, + -0.005529924761503935, + 0.01105984952300787, + -0.028829913586378098, + -0.017078464850783348, + -0.007373232860118151, + -0.04474237933754921, + 0.037311989814043045, + -0.08043111115694046, + -0.026452187448740005, + -0.005115537438541651, + 0.008024821057915688, + 0.0004922633524984121, + -0.03262512758374214, + -0.006018615793436766, + -0.01938760280609131, + -0.008202007040381432, + -0.03070465661585331, + 0.0036408910527825356, + 0.019719110801815987, + -0.008516370318830013, + -0.019650522619485855, + -0.0360088124871254, + -0.04067281261086464, + -0.06282680481672287, + -0.025011835619807243, + -0.05016084760427475, + -0.04284477233886719, + 0.04467378929257393, + 0.008184860460460186, + 0.05921449139714241, + 0.009625212289392948, + -0.003512288210913539, + -0.00294643547385931, + 0.025972070172429085, + -0.020176365971565247, + 0.005870007909834385, + 0.002975013805553317, + 0.05148688703775406, + -0.00856209546327591, + 0.005332733504474163, + -0.022336894646286964, + -0.046777162700891495, + -0.041335832327604294, + -0.008442065678536892, + -0.01899893581867218, + -0.047737397253513336, + 0.03696904703974724, + 0.00311219017021358, + -0.00461541535332799, + -0.008567810989916325, + -0.02622356079518795, + -0.04663998633623123, + 0.0011102716671302915, + 0.003572302870452404, + 0.013854819349944592, + -0.028304070234298706, + 0.05002367123961449, + -0.02759532444179058, + -0.016838407143950462, + -0.03655751794576645, + 0.002920714905485511, + 0.03022453933954239, + 0.014586427249014378, + -0.03916386887431145, + -0.007578997872769833, + -0.07325221598148346, + -0.035391516983509064, + 0.08957620710134506, + 0.036397479474544525, + 0.016072504222393036, + 0.03644320368766785, + 0.045039594173431396, + 0.011122722178697586, + 0.00378092541359365, + -0.004669714253395796, + -0.00861353613436222, + 0.03129908815026283, + 0.010396829806268215, + 0.00689311558380723, + 0.053590256720781326, + 0.008013390004634857, + 0.018838895484805107, + 0.020142072811722755, + -0.019216131418943405, + -0.028144029900431633, + -0.049520689994096756, + 0.004869763273745775, + 0.004781170282512903, + -0.031413402408361435, + -0.0716060921549797, + 0.0007408956298604608, + 0.0035494400653988123, + 0.02222258225083351, + -0.021330934017896652, + 0.01714705303311348, + 0.012688819319009781, + 0.008013390004634857, + -0.05482484772801399, + -0.06977707892656326, + 0.034088343381881714, + -0.003692332189530134, + 0.01313464343547821, + -0.017832934856414795, + 0.014620721340179443, + 0.014586427249014378, + -0.02480607107281685, + -0.031870655715465546, + 0.04455947503447533, + 0.04284477233886719, + 0.012597369030117989, + 0.006252958904951811, + -0.02029068022966385, + -0.038089320063591, + -0.026475051417946815, + 0.0022119698114693165, + -0.016987014561891556, + 0.06474727392196655, + -0.03904955834150314, + -0.030361715704202652, + 0.01895320974290371, + 0.021582424640655518, + 0.028372658416628838, + -0.006258674431592226, + 0.01992487534880638, + -0.02844124659895897, + 0.016095368191599846, + -0.02626928687095642, + 0.0014539272524416447, + 0.030361715704202652, + 0.0015089407097548246, + -0.033631086349487305, + 0.002422021236270666, + 0.023685796186327934, + -0.013031761161983013, + 0.014563564211130142, + 0.014620721340179443, + 0.029950186610221863, + -0.03331100940704346, + -0.011151300743222237, + -0.03658038005232811, + 0.05829998105764389, + 0.03582591190934181, + -0.015283740125596523, + -0.0022662689443677664, + -0.054459042847156525, + 0.017261367291212082, + -0.01151138823479414, + -0.05523637682199478, + 0.019547641277313232, + 0.00790479127317667, + -0.0353686548769474, + 0.06022045388817787, + -0.0014946515439078212, + -0.008219154551625252, + 0.00622438034042716, + 0.06447292119264603, + -0.03381399065256119, + -0.0018833180656656623, + 0.026932304725050926, + 0.02266840450465679, + -0.035985950380563736, + 0.000301323743769899, + 0.0016489749541506171, + -0.0324193611741066, + 0.005112679675221443, + 0.0012581651099026203, + -0.0039581116288900375, + -0.02354861982166767, + -0.04924633726477623, + 0.028601285070180893, + 0.007338938768953085, + 0.010785496793687344, + -0.01897607184946537, + -0.012460192665457726, + 0.009613781236112118, + -0.014380662702023983, + 0.022805580869317055, + -0.07009715586900711, + -0.009619496762752533, + 0.07229197770357132, + -0.048148926347494125, + -0.010768349282443523, + -0.016872700303792953, + 0.035871636122465134, + 0.04615986719727516, + -0.023777248337864876, + 0.024966109544038773, + 0.007864781655371189, + 0.008007674477994442, + 0.017752915620803833, + -0.02163958176970482, + 0.005678532645106316, + 0.020439287647604942, + 0.06278108060359955, + -0.04193026199936867, + 0.031916383653879166, + -0.024051601067185402, + 0.025171874091029167, + 0.02398301288485527, + -0.004586836788803339, + 0.03429410606622696, + 0.012025800533592701, + 0.05093818157911301, + -0.03255653753876686, + -0.017958680167794228, + -0.013706211932003498, + 0.003380827372893691, + -0.027846815064549446, + 0.04522249475121498, + 0.023685796186327934, + -0.042204614728689194, + -0.008607820607721806, + 0.002131950343027711, + -0.012494486756622791, + 0.016175387427210808, + -0.03831794857978821, + -0.02216542512178421, + 0.036900460720062256, + 0.004569689743220806, + 0.04334774985909462, + -0.045908376574516296, + -0.012837427668273449, + 0.02208540588617325, + -0.006607331335544586, + 0.007847635075449944, + -0.008322036825120449, + -0.029584383592009544, + 0.020862247794866562, + -0.030384579673409462, + 0.01308891735970974, + -0.02574344351887703, + -0.046822886914014816, + 0.0010488281259313226, + -0.022919895127415657, + 0.02035926841199398, + -0.031847793608903885, + 0.022291170433163643, + 0.0253547765314579, + -0.03706049919128418, + -0.03829508647322655, + -0.007956232875585556, + 0.009842408820986748, + -0.018427366390824318, + -0.0044067925773561, + -0.0024806070141494274, + 0.03742630407214165, + 0.06022045388817787, + 0.0023091365583240986, + 0.019513346254825592, + -0.010282516479492188, + 0.01040826179087162, + 0.004181023221462965, + 0.02400587499141693, + 0.07046295702457428, + 0.0133289759978652, + -0.03916386887431145, + 0.050389476120471954, + -0.03251081332564354, + -0.022771287709474564, + 0.037746381014585495, + -0.029310030862689018, + 0.03353963792324066, + 0.012082956731319427, + -0.02357148379087448, + 0.018724583089351654, + 0.0006790947518311441, + -0.03381399065256119, + 0.023319993168115616, + 0.049017708748579025, + 0.01679268106818199, + -0.04513104632496834, + -0.02396014891564846, + 0.02038213051855564, + -0.006007184274494648, + 0.03203069791197777, + 0.019604798406362534, + 0.013066055253148079, + 0.024714620783925056, + -0.027435285970568657, + 0.026109246537089348, + 0.00992242805659771, + 0.02853269688785076, + 0.017787210643291473, + -0.021833915263414383, + -0.0316648930311203, + 0.03806645795702934, + 0.02125091478228569, + -0.0037780674174427986, + 0.01808442547917366, + -0.010814075358211994, + -0.012768839485943317, + 0.055785082280635834, + 0.026017796248197556, + 0.01983342505991459, + 0.01765003427863121, + -0.04108434170484543, + -0.018415935337543488, + 0.0017747200326994061, + -0.0039323908276855946, + -0.009716663509607315, + -0.014655015431344509, + -0.039575397968292236, + -0.01848452351987362, + -0.0020447862334549427, + -0.029744422063231468, + 0.0034208372235298157, + -0.016644073650240898, + 0.01982199400663376, + -0.05144115909934044, + 0.0014067728770896792, + -0.015157995745539665, + -0.053041551262140274, + -0.006813095882534981, + 0.00023094937205314636, + -0.012768839485943317, + -0.02661222778260708, + -0.009442310780286789, + -0.004572547506541014, + -0.011385643854737282, + 0.014106309041380882, + 0.03077324479818344, + -0.026955168694257736, + 0.04444516450166702, + 0.016186818480491638, + -0.08934757858514786, + -0.07956232875585556, + -0.03763206675648689, + -0.02706948108971119, + -0.038706615567207336, + -0.029012814164161682, + 0.004221032839268446, + -0.02032497338950634, + 0.011134153231978416, + -0.0604948066174984, + -0.041724495589733124, + -0.018655994907021523, + 0.0032465087715536356, + -0.0434163399040699, + -0.013877682387828827, + -0.045473985373973846, + 0.012014368548989296, + -0.007699027191847563, + 0.00026935164351016283, + -0.020153503865003586, + 0.04147300869226456, + 0.00009127234079642221, + -0.01665550470352173, + -0.019113248214125633, + -0.03575732186436653, + 0.02846410870552063, + -0.008533516898751259, + -0.021959660574793816, + -0.010248222388327122, + 0.04533680900931358, + -0.023251404985785484, + 0.008476359769701958, + -0.039118144661188126, + 0.04019269347190857, + 0.010911242105066776, + -0.005412753205746412, + 0.0008094838121905923, + 0.07732178270816803, + -0.01631256379187107, + -0.03148198872804642, + 0.06598186492919922, + -0.0020233523100614548, + -0.023411443457007408, + -0.021776758134365082, + -0.0041352976113557816, + -0.026383599266409874, + -0.015489504672586918, + 0.011111291125416756, + 0.008270595222711563, + -0.0015075118280947208, + -0.0343855582177639, + 0.020142072811722755, + 0.027366697788238525, + -0.03664897009730339, + 0.01983342505991459, + 0.012563074938952923, + -0.023594345897436142, + 0.012986035086214542, + -0.06140931323170662, + -0.007516125217080116, + 0.00006456937262555584, + -0.025446226820349693, + -0.02528618834912777, + 0.013054623268544674, + 0.019204700365662575, + 0.01905609294772148, + -0.008647830225527287, + -0.01853024959564209, + 0.0026006365660578012, + -0.015066544525325298, + 0.04016983136534691, + 0.03925532102584839, + -0.0041124350391328335, + -0.05619661137461662, + -0.020039189606904984, + 0.005001224111765623, + 0.016838407143950462, + -0.011162731796503067, + 0.049566417932510376, + -0.020953699946403503, + -0.054459042847156525, + 0.024165913462638855, + -0.00947088934481144, + -0.024120189249515533, + 0.004435371141880751, + -0.02025638520717621, + 0.000008696324584889226, + 0.010522575117647648, + 0.03781496733427048, + 0.009556624107062817, + 0.024623168632388115, + -0.04792029783129692, + -0.03616885095834732, + 0.014152035117149353, + 0.008047684095799923, + 0.021136600524187088, + -0.02038213051855564, + -0.02165101282298565, + 0.003309381427243352, + 0.011179879307746887, + -0.06470154970884323, + 0.02169673889875412, + -0.02038213051855564, + 0.01314607448875904, + -0.002146239625290036, + 0.005527066998183727, + -0.015226583927869797, + 0.007744752336293459, + -0.01064832042902708, + 0.03125336393713951, + -0.0017218500142917037, + -0.00475544948130846, + -0.020965130999684334, + 0.0018547396175563335, + -0.00012261929805390537, + -0.0032407930120825768, + -0.02165101282298565, + -0.001977626932784915, + -0.03383685275912285, + -0.019776267930865288, + -0.00900220312178135, + 0.0011802888475358486, + -0.000016968439012998715, + 0.03646606579422951, + 0.013283250853419304, + 0.005910017993301153, + -0.021376660093665123, + 0.03246508911252022, + -0.00450681708753109, + 0.04124438017606735, + 0.012631663121283054, + 0.025126149877905846, + -0.00060800596838817, + -0.021913934499025345, + -0.021822484210133553, + -0.015935327857732773, + -0.019764836877584457, + -0.02668081596493721, + -0.007630439009517431, + 0.010768349282443523, + 0.056745316833257675, + -0.017432838678359985, + -0.01809585653245449, + -0.0034808518830686808, + -0.0010152484755963087, + -0.02256552316248417, + 0.013248956762254238, + 0.0005572792142629623, + -0.029492931440472603, + 0.010425408370792866, + -0.0030121656600385904, + -0.05519064888358116, + 0.029607245698571205, + 0.01843879744410515, + -0.006395850796252489, + 0.026772266253829002, + 0.07105738669633865, + -0.012700251303613186, + -0.00792193878442049, + 0.026840854436159134, + 0.01893034763634205, + 0.0012817422393709421, + 0.0046325623989105225, + 0.009368007071316242, + -0.0008759286720305681, + -0.017718622460961342, + -0.04508531838655472, + -0.04186167195439339, + 0.005232708994299173, + -0.028624147176742554, + 0.03660324215888977, + -0.03406548127532005, + 0.0057356893084943295, + -0.008704987354576588, + -0.010579732246696949, + 0.010956967249512672, + 0.04350779205560684, + 0.00900220312178135, + 0.004298194777220488, + -0.03708336129784584, + -0.019730543717741966, + -0.020199229940772057, + -0.00768188014626503, + 0.0190446600317955, + -0.021068012341856956, + 0.015718132257461548, + 0.0029893030878156424, + -0.024097325280308723, + -0.012780270539224148, + -0.04373641684651375, + -0.004483954515308142, + -0.013706211932003498, + -0.013614760711789131, + -0.0167012307792902, + -0.0009488036157563329, + 0.0030664647929370403, + 0.015329466201364994, + 0.03628316521644592, + 0.016975583508610725, + -0.020907973870635033, + -0.0360088124871254, + 0.0010931246215477586, + -0.014849347993731499, + 0.010991261340677738, + 0.07174327224493027, + 0.012768839485943317, + -0.013340407982468605, + -0.00589287094771862, + -0.005841429810971022, + 0.019341876730322838, + -0.01396913267672062, + 0.013889113441109657, + -0.018255896866321564, + 0.01331754494458437, + -0.016575485467910767, + 0.011700006201863289, + -0.043644968420267105, + 0.022405482828617096, + 0.020907973870635033, + 0.04618272930383682, + -0.021525267511606216, + 0.013477584347128868, + 0.0019476194866001606, + 0.019078955054283142, + -0.01242589857429266, + 0.03984975069761276, + -0.035002853721380234, + -0.015318034216761589, + 0.002307707676663995, + 0.012414466589689255, + 0.03308238089084625, + 0.005915733519941568, + 0.048057474195957184, + -0.01899893581867218, + 0.018404504284262657, + -0.04218175262212753, + 0.019593367353081703, + -0.049474965780973434, + 0.0067502232268452644, + -0.013534740544855595, + 0.041815947741270065, + -0.054962024092674255, + -0.01266595721244812, + 0.029584383592009544, + -0.012631663121283054, + 0.017867229878902435, + 0.017101328819990158, + -0.0045439694076776505, + -0.00243202387355268, + 0.02809830568730831, + -0.002503469819203019, + 0.006241527386009693, + 0.010299663059413433, + -0.01950191520154476, + -0.0026863717939704657, + -0.01633542589843273, + -0.02215399406850338, + 0.005598512943834066, + -0.01982199400663376, + 0.0003711622557602823, + 0.004229606594890356, + 0.031413402408361435, + 0.006230096332728863, + 0.011808604001998901, + -0.010836937464773655, + 0.03481994941830635, + 0.009339428506791592, + -0.030155951157212257, + -0.011174162849783897, + -0.005249856039881706, + -0.00012199414049973711, + 0.017398543655872345, + -0.08216868340969086, + 0.030453167855739594, + -0.030110226944088936, + 0.031847793608903885, + 0.0149065051227808, + -0.009888133965432644, + 0.021525267511606216, + 0.047645945101976395, + -0.031916383653879166, + 0.016575485467910767, + 0.004349635913968086, + 0.00396668491885066, + -0.018861759454011917, + -0.022736992686986923, + 0.017981544137001038, + 0.0030321707017719746, + 0.02578916773200035, + -0.05839143320918083, + 0.018153013661503792, + 0.02071364037692547, + 0.01222013309597969, + -0.015958191826939583, + 0.021068012341856956, + -0.0013174653286114335, + -0.012986035086214542, + -0.03648893162608147, + 0.024234501644968987, + 0.0010402546031400561, + -0.06735362857580185, + -0.02485179714858532, + 0.008962193503975868, + 0.026886580511927605, + -0.019581934437155724, + -0.01040826179087162, + -0.014780759811401367, + 0.0015475215623155236, + 0.008287742733955383, + -0.034545596688985825, + 0.0031807783525437117, + -0.014986525289714336, + -0.016141092404723167, + 0.0443994365632534, + 0.00032847325201146305, + 0.03621457889676094, + 0.008270595222711563, + -0.0063044000416994095, + -0.016872700303792953, + 0.018415935337543488, + 0.009945291094481945, + -0.05185268819332123, + 0.02400587499141693, + -0.0498407706618309, + 0.007664733100682497, + -0.005109821911901236, + -0.00710459565743804, + 0.003963827155530453, + -0.0711488425731659, + 0.030864696949720383, + 0.03417979180812836, + -0.02892136387526989, + 0.007847635075449944, + -0.016152525320649147, + 0.05747692286968231, + -0.014540701173245907, + 0.014334936626255512, + 0.038249362260103226, + 0.00027113777468912303, + -0.004501101560890675, + -0.024988973513245583, + -0.03760920464992523, + -0.00417530769482255, + -0.003392258659005165, + 0.008710702881217003, + 0.011774309910833836, + -0.0006880255532450974, + -0.0027320971712470055, + 0.020027758553624153, + -0.01668979972600937, + -0.02352575771510601, + 0.0021133744157850742, + -0.005932880565524101, + 0.02750387415289879, + 0.0073675173334777355, + -0.0040724254213273525, + -0.025149011984467506, + -0.02222258225083351, + -0.030407441779971123, + 0.0053298757411539555, + -0.02125091478228569, + -0.02805257961153984, + -0.01579815149307251, + -0.008173428475856781, + -0.023822972550988197, + 0.019158974289894104, + -0.012140113860368729, + 0.005209846422076225, + 0.005504204425960779, + -0.014837916940450668, + -0.0007366088684648275, + 0.028555558994412422, + 0.008527801372110844, + 0.013123211450874805, + 0.004649709444493055, + 0.017775779590010643, + -0.03447701036930084, + 0.011659996584057808, + -0.010625457391142845, + 0.027481012046337128, + -0.004706866107881069, + 0.039072420448064804, + -0.03694618493318558, + -0.022508366033434868, + -0.017318524420261383, + -0.01174001581966877, + 0.01491793617606163, + 0.012025800533592701, + 0.027915403246879578, + 0.015329466201364994, + 0.0002282701461808756, + -0.03075038269162178, + -0.03811218589544296, + 0.019273288547992706, + -0.02526332624256611, + 0.005598512943834066, + 0.03342532366514206, + 0.010642604902386665, + -0.0016175387427210808, + 0.013923407532274723, + -0.007550419308245182, + -0.0017232788959518075, + -0.04782884940505028, + 0.01715848408639431, + -0.047234416007995605, + 0.008093409240245819, + -0.014746465720236301, + 0.02398301288485527, + 0.008430634625256062, + 0.012071525678038597, + 0.015969622880220413, + -0.010951251722872257, + 0.027000892907381058, + 0.0033351019956171513, + -0.011322771199047565, + 0.01848452351987362, + 0.004063851665705442, + -0.02757246233522892, + -0.0049469247460365295, + -0.00394668010994792, + -0.03022453933954239, + 0.02173103205859661, + -0.007121742703020573, + -0.0043382043950259686, + -0.014643583446741104, + -0.005778557155281305, + -0.005024086683988571, + 0.015672406181693077, + -0.006658772472292185, + 0.03246508911252022, + 0.016003916040062904, + 0.039186734706163406, + -0.011339917778968811, + 0.014220623299479485, + 0.017798641696572304, + 0.011339917778968811, + -0.01586673967540264, + 0.004583979025483131, + 0.01244876068085432, + -0.024783208966255188, + -0.02979014813899994, + 0.03164203092455864, + 0.010854084976017475, + 0.007613291963934898, + 0.02988159842789173, + -0.016472602263092995, + -0.03701477125287056, + 0.049886494874954224, + 0.0011581405997276306, + 0.03305951878428459, + 0.010242506861686707, + -0.045885514467954636, + -0.017981544137001038, + 0.02809830568730831, + 0.00006483729521278292, + -0.021102307364344597, + 0.014563564211130142, + 0.012494486756622791, + 0.031824931502342224, + -0.002081938087940216, + 0.028281206265091896, + 0.00901935063302517, + 0.024485992267727852, + 0.0017232788959518075, + 0.025651991367340088, + 0.031824931502342224, + 0.023708660155534744, + 0.0039095282554626465, + -0.024211639538407326, + -0.014312073588371277, + -0.0006619477062486112, + -0.004238179884850979, + 0.06808523088693619, + -0.011545682325959206, + 0.059946101158857346, + -0.004646851681172848, + -0.013351839035749435, + 0.01982199400663376, + 0.011717153713107109, + -0.02264554239809513, + 0.009813830256462097, + 0.009345144033432007, + 0.009139379486441612, + 0.003100758884102106, + -0.07796193659305573, + -0.059443119913339615, + -0.00907079130411148, + -0.006607331335544586, + -0.008419203571975231, + -0.04517677053809166, + 0.004929777700453997, + 0.022256875410676003, + 0.033631086349487305, + -0.010311095044016838, + 0.005138400476425886, + -0.08797581493854523, + 0.005792846437543631, + 0.035482969135046005, + 0.014403524808585644, + -0.013843388296663761, + 0.01396913267672062, + 0.018781740218400955, + -0.02892136387526989, + 0.025606267154216766, + 0.00837919395416975, + -0.019273288547992706, + 0.01716991700232029, + 0.0622323714196682, + 0.015157995745539665, + 0.027366697788238525, + -0.01673552393913269, + 0.01631256379187107, + -0.04869763180613518, + 0.018290190026164055, + -0.013260387815535069, + -0.02310279756784439, + -0.025423364713788033, + 0.017924387007951736, + -0.010311095044016838, + 0.0002909640606958419, + 0.005870007909834385, + 0.02253122813999653, + 0.006310115568339825, + 0.0059214490465819836, + -0.007207478396594524, + 0.017409974709153175, + -0.033676814287900925, + 0.006235811859369278, + -0.011648564599454403, + -0.020004896447062492, + 0.008453497663140297, + -0.008064830675721169, + 0.01378623116761446, + 0.0010052460711449385, + 0.04101575165987015, + 0.012265859171748161, + -0.02389156073331833, + 0.029035678133368492, + 0.014780759811401367, + -0.013454721309244633, + 0.0408099889755249, + 0.017501426860690117, + 0.03468277305364609, + 0.02396014891564846, + 0.03719767555594444, + -0.005721400026232004, + 0.011574260890483856, + -0.015420916490256786, + 0.03518575429916382, + -0.01758144609630108, + 0.03422551974654198, + 0.03891238197684288, + -0.0006433717207983136, + -0.006178655195981264, + 0.037220537662506104, + 0.028738461434841156, + -0.03262512758374214, + -0.01716991700232029, + 0.05459621921181679, + 0.0029835873283445835, + 0.0011074139038100839, + 0.011225604452192783, + -0.019113248214125633, + 0.024280227720737457, + 0.00439536152407527, + -0.0021876783575862646, + -0.00044082215754315257, + -0.005967174656689167, + -0.0012567361118271947, + -0.00710459565743804, + 0.03221359848976135, + 0.033653952181339264, + 0.001276741037145257, + 0.013729074038565159, + -0.007727605290710926, + -0.0014267778024077415, + -0.010002448223531246, + -0.0029035676270723343, + 0.01847309246659279, + 0.010625457391142845, + 0.0408099889755249, + -0.06095205992460251, + -0.011808604001998901, + 0.009705232456326485, + 0.023354286327958107, + 0.013831956312060356, + -0.01356903463602066, + -0.02937861904501915, + -0.009916712529957294, + 0.018667425960302353, + 0.007218909449875355, + -0.003135052975267172, + -0.0021290925797075033, + 0.024028737097978592, + 0.05025229975581169, + -0.03479708731174469, + -0.015489504672586918, + 0.025171874091029167, + 0.026932304725050926, + 0.02222258225083351, + -0.005447047296911478, + 0.014997956342995167, + -0.0007909078267402947, + 0.03518575429916382, + -0.0005508490721695125, + 0.02081652358174324, + 0.024691756814718246, + 0.005298439413309097, + -0.016392583027482033, + -0.02663508988916874, + -0.023708660155534744, + -0.0088135851547122, + -0.020885111764073372, + -0.0008294887375086546, + 0.009345144033432007, + 0.03294520452618599, + -0.0012874578824266791, + -0.0015218009939417243, + 0.017067033797502518, + 0.0030121656600385904, + -0.0009066504426300526, + 0.04412508383393288, + -0.02526332624256611, + 0.03758634254336357, + -0.03493426367640495, + 0.00924226175993681, + 0.0031807783525437117, + -0.012597369030117989, + 0.0504809245467186, + 0.005121253430843353, + -0.015718132257461548, + 0.013351839035749435, + -0.022839875891804695, + -0.010694045573472977, + -0.01720421016216278, + 0.019604798406362534, + -0.03475136309862137, + -0.010551153682172298, + -0.013957701623439789, + -0.028372658416628838, + -0.047737397253513336, + -0.010516859591007233, + 0.04581692814826965, + -0.018278758972883224, + 0.03029312752187252, + 0.009442310780286789, + -0.003135052975267172, + -0.008139134384691715, + -0.013294681906700134, + 0.01063117291778326, + 0.022211149334907532, + -0.01576385833323002, + 0.036420341581106186, + 0.015923896804451942, + 0.02885277569293976, + -0.01992487534880638, + 0.0026392173022031784, + -0.03607740253210068, + 0.014963662251830101, + -0.0026120678521692753, + -0.026406463235616684, + 0.004443944897502661, + -0.005229851230978966, + -0.014094877988100052, + -0.010585447773337364, + -0.03964398801326752, + 0.05327017977833748, + -0.009590918198227882, + -0.04567975178360939, + 0.04474237933754921, + 0.01585530862212181, + 0.034568458795547485, + 0.007007429376244545, + 0.021422386169433594, + 0.0027306682895869017, + 0.029492931440472603, + -0.0037523468490689993, + -0.0060129002667963505, + -0.0007830488029867411, + -0.01982199400663376, + 0.019227562472224236, + -0.02933289296925068, + -0.014049152843654156, + 0.00839062500745058, + -0.03616885095834732, + 0.014792191796004772, + 0.012894583866000175, + 0.01355760358273983, + 0.04782884940505028, + 0.006127213593572378, + 0.0017518573440611362, + -0.006818811409175396, + 0.015100838616490364, + 0.0298130102455616, + -0.040375594049692154, + 0.0039323908276855946, + 0.01574099436402321, + 0.010402546264231205, + 0.01290601585060358, + 0.00733322324231267, + 0.03239649906754494, + -0.022462639957666397, + 0.009310849942266941, + -0.0044525181874632835, + 0.03127622604370117, + -0.0021133744157850742, + -0.044033635407686234, + 0.02940148115158081, + -0.013180368579924107, + -0.017375681549310684, + 0.0032665138132870197, + -0.0031407687347382307, + -0.022416913881897926, + 0.0075618508271873, + -0.02530905045568943, + -0.010499712079763412, + -0.004292479250580072, + 0.012803133577108383, + -0.0005390605074353516, + -0.015500936657190323, + 0.061272136867046356, + 0.005815709009766579, + 0.006144360639154911, + 0.0022762713488191366, + 0.015992484986782074, + 0.02162815071642399, + 0.015580955892801285, + -0.020210660994052887, + 0.005944312084466219, + 0.00790479127317667, + 0.014997956342995167, + -0.017970111221075058, + 0.0037780674174427986, + 0.0004029557458125055, + -0.004603983834385872, + 0.006904547102749348, + -0.005224135704338551, + -0.012288721278309822, + 0.016964152455329895, + -0.006567321717739105, + 0.03655751794576645, + -0.0037523468490689993, + 0.02572057954967022, + -0.016895564272999763, + 0.015283740125596523, + 0.02668081596493721, + -0.014735034666955471, + 0.002289131749421358, + 0.015226583927869797, + 0.048560455441474915, + 0.013500446453690529, + 0.006298684515058994, + -0.02122805267572403, + -0.04691433906555176, + 0.021833915263414383, + -0.007418958470225334, + -0.013614760711789131, + 0.001896178349852562, + 0.010453986935317516, + -0.0006280108354985714, + -0.025171874091029167, + 0.0004626132140401751, + -0.04010124132037163, + -0.01489507406949997, + 0.009716663509607315, + 0.0062643904238939285, + -0.015729563310742378, + -0.03662610799074173, + 0.002696374198421836, + -0.002033354714512825, + 0.041381556540727615, + -0.010339673608541489, + 0.013454721309244633, + 0.005206988658756018, + -0.054184690117836, + -0.03980402648448944, + 0.035940222442150116, + -0.026795128360390663, + 0.011888624168932438, + -0.040535636246204376, + -0.02487465925514698, + -0.016518328338861465, + 0.006355841178447008, + 0.003429410746321082, + -0.0010366822825744748, + -0.005687105935066938, + 0.016495466232299805, + 0.024691756814718246, + 0.01898750476539135, + -0.011134153231978416, + 0.0029492932371795177, + 0.0003686616546474397, + -0.015718132257461548, + -0.003352249041199684, + 0.024280227720737457, + -0.014460681937634945, + -0.02348003163933754, + 0.01622111350297928, + -0.00248775165528059, + -0.03838653862476349, + 0.0013403280172497034, + 0.007784762419760227, + -0.020439287647604942, + -0.0066644879989326, + -0.006515880580991507, + -0.01673552393913269, + 0.02894422598183155, + 0.0002936433011200279, + 0.03180206939578056, + -0.018747445195913315, + -0.01805013231933117, + -0.026772266253829002, + 0.016129661351442337, + 0.008922183886170387, + 0.03077324479818344, + 0.021845346316695213, + 0.002253408543765545, + 0.014334936626255512, + -0.0001441424246877432, + 0.006167223677039146, + 0.01266595721244812, + -0.03562014549970627, + -0.004026699811220169, + 0.013626191765069962, + 0.011094143614172935, + 0.006601615808904171, + 0.0113456342369318, + -0.02125091478228569, + -0.006121498066931963, + 0.007447537034749985, + -0.02754960022866726, + -0.023777248337864876, + -0.00486404774710536, + 0.014334936626255512, + -0.0026049232110381126, + 0.002883562818169594, + 0.05185268819332123, + -0.00563566479831934, + 0.005398463923484087, + -0.015981053933501244, + 0.0596260204911232, + 0.013957701623439789, + 0.027092345058918, + -0.044079359620809555, + -0.009162242524325848, + -0.04286763444542885, + 0.014940799213945866, + 0.04067281261086464, + -0.007607575971633196, + 0.014655015431344509, + -0.005112679675221443, + -0.04161018505692482, + 0.010842653922736645, + 0.018164444714784622, + -0.013603328727185726, + -0.0018418793333694339, + 0.004978361073881388, + 0.02576630562543869, + 0.03557442128658295, + -0.002673511393368244, + 0.02492038533091545, + 0.005318444222211838, + -0.014552133157849312, + 0.011357065290212631, + 0.01846166141331196, + -0.030064500868320465, + -0.025423364713788033, + -0.011900055222213268, + 0.029904460534453392, + -0.03120763786137104, + -0.047691673040390015, + 0.009819545783102512, + -0.026566501706838608, + 0.03219073638319969, + 0.001490364782512188, + 0.038729477673769, + 0.005852860864251852, + -0.01491793617606163, + 0.014094877988100052, + 0.017524288967251778, + -0.015077975578606129, + -0.01803870126605034, + -0.01941046491265297, + 0.010311095044016838, + 0.004235322121530771, + -0.02127377688884735, + -0.013168937526643276, + 0.0060757724568247795, + 0.022942757233977318, + 0.011322771199047565, + -0.004701150581240654, + 0.01843879744410515, + -0.04419367387890816, + 0.036397479474544525, + 0.02526332624256611, + 0.0063444096595048904, + -0.009745242074131966, + -0.006195802241563797, + 0.004106719512492418, + 0.02846410870552063, + -0.02354861982166767, + -0.0018947494681924582, + 0.0005297724856063724, + 0.0038752341642975807, + 0.027206657454371452, + -0.012071525678038597, + -0.016072504222393036, + -0.000007831157745386008, + 0.04021555557847023, + -0.014472112990915775, + 0.0005726401577703655, + -0.00023809398408047855, + -0.010985545814037323, + 0.011054133996367455, + -0.005392748396843672, + -0.004495386034250259, + -0.0024848938919603825, + 0.026955168694257736, + 0.00972237903624773, + -0.012883152812719345, + -0.05061810091137886, + -0.02074793539941311, + -0.02658936381340027, + -0.003223645966500044, + -0.016152525320649147, + 0.0002816760679706931, + 0.03578018397092819, + 0.03486567735671997, + 0.012951740995049477, + 0.03422551974654198, + 0.029241442680358887, + -0.02163958176970482, + -0.02713806927204132, + 0.008316321298480034, + 0.04920061305165291, + -0.033516775816679, + 0.014003426767885685, + 0.018370209261775017, + 0.00816199742257595, + -0.015203720889985561, + 0.03744916617870331, + -0.008584958501160145, + -0.022771287709474564, + -0.014106309041380882, + -0.011671427637338638, + -0.00014253488916438073, + 0.015958191826939583, + 0.01849595457315445, + -0.03209928423166275, + 0.022359758615493774, + 0.008996487595140934, + 0.018918916583061218, + 0.023868698626756668, + 0.024485992267727852, + 0.021125169470906258, + 0.02711520716547966, + -0.005829998292028904, + -0.005387032870203257, + -0.040878575295209885, + 0.006978850811719894, + -0.049886494874954224, + -0.05637951195240021, + -0.015283740125596523, + -0.026452187448740005, + -0.03904955834150314, + -0.0008402056409977376, + 0.01149995718151331, + -0.02853269688785076, + -0.0023720089811831713, + 0.011911486275494099, + -0.012460192665457726, + -0.009973869659006596, + 0.01081979088485241, + -0.03027026541531086, + -0.012002937495708466, + -0.004761165007948875, + 0.0019804846961051226, + 0.0162668377161026, + -0.027412423864006996, + -0.014152035117149353, + 0.018655994907021523, + -0.017078464850783348, + 0.019741974771022797, + 0.024714620783925056, + 0.02123948372900486, + 0.0004972645547240973, + 0.01080264337360859, + 0.02306850254535675, + 0.00023952290939632803, + 0.032305050641298294, + -0.008030536584556103, + -0.017981544137001038, + -0.010745487175881863, + 0.005035518202930689, + -0.04938351362943649, + -0.006515880580991507, + -0.025629129260778427, + -0.011465663090348244, + -0.0032693715766072273, + -0.02796112932264805, + 0.02034783735871315, + 0.007670448627322912, + -0.012265859171748161, + -0.041381556540727615, + -0.0208393856883049, + -0.008922183886170387, + 0.022874169051647186, + 0.038272224366664886, + 0.017512857913970947, + -0.043576378375291824, + -0.015946758911013603, + 0.01584387756884098, + 0.007298929151147604, + 0.021891072392463684, + -0.009127948433160782, + 0.032305050641298294, + -0.00048476149095222354, + -0.00016075362509582192, + 0.004558258224278688, + 0.015112269669771194, + 0.019136112183332443, + -0.03991834074258804, + -0.01672409288585186, + 0.028555558994412422, + -0.023822972550988197, + -0.011625702492892742, + 0.017535720020532608, + 0.05551072955131531, + 0.03216787427663803, + 0.0006340837571769953, + 0.008413488045334816, + -0.017970111221075058, + 0.00047333011752925813, + -0.020645052194595337, + 0.016506897285580635, + 0.0006265818956308067, + 0.001496080425567925, + 0.05692821741104126, + -0.022919895127415657, + 0.03754061460494995, + 0.013340407982468605, + -0.003883807687088847, + 0.032373636960983276, + 0.023845836520195007, + -0.035391516983509064, + -0.03706049919128418, + 0.0008945045992732048, + -0.0009730953024700284, + 0.0029121411498636007, + 0.018610268831253052, + 0.02118232659995556, + 0.03770065680146217, + -0.012643094174563885, + -0.004678288009017706, + -0.001348187099210918, + 0.018301621079444885, + 0.006795948836952448, + -0.012037231586873531, + 0.016152525320649147, + 0.0029049967415630817, + 0.00996815413236618, + -0.038592301309108734, + 0.04030700773000717, + 0.0056699588894844055, + 0.013477584347128868, + 0.031436264514923096, + -0.021433817222714424, + -0.0040238420478999615, + 0.014803622849285603, + -0.0056699588894844055, + 0.0035751606337726116, + -0.03401975333690643, + 0.0024505998007953167, + 0.016998445615172386, + 0.008081978186964989, + -0.00022469785471912473, + 0.00005840714948135428, + -0.04302767291665077, + 0.030818970873951912, + 0.0013931981520727277, + 0.013168937526643276, + 0.029744422063231468, + -0.013843388296663761, + -0.0006280108354985714, + -0.010745487175881863, + 0.031390540301799774, + -0.012700251303613186, + -0.0036866164300590754, + 0.03267085179686546, + -0.01313464343547821, + 0.014049152843654156, + -0.03216787427663803, + -0.023754384368658066, + -0.0047697387635707855, + -0.014094877988100052, + 0.023777248337864876, + 0.01665550470352173, + 0.015523798763751984, + 0.028281206265091896, + 0.01104841846972704, + 0.034202657639980316, + -0.022862737998366356, + 0.028372658416628838, + 0.02983587235212326, + 0.027092345058918, + 0.004815464373677969, + -0.020142072811722755, + 0.028166893869638443, + -0.02661222778260708 + ] + }, + { + "HotelId": "34", + "HotelName": "Lakefront Captain Inn", + "Description": "Every stay starts with a warm cookie. Amenities like the Counting Sheep sleep experience, our Wake-up glorious breakfast buffet and spacious workout facilities await.", + "Description_fr": "Chaque sĆ©jour commence par un biscuit chaud. CommoditĆ©s comme le comptage des moutons expĆ©rience de sommeil, notre rĆ©veil-up glorieux petit dĆ©jeuner buffet et des installations d'entraĆ®nement spacieuses vous attendent.", + "Category": "Budget", + "Tags": [ + "restaurant", + "laundry service", + "coffee in lobby" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2017-04-19T00:00:00Z", + "Rating": 3.4, + "Address": { + "StreetAddress": "1500 New Britain Ave", + "City": "West Hartford", + "StateProvince": "CT", + "PostalCode": "06110", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -72.761261, + 41.725285 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 266.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "suite", + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite", + "tv" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 245.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 134.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "tv" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 141.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + } + ], + "embedding": [ + 0.02190721593797207, + 0.0018808890599757433, + 0.0032973610796034336, + 0.028024252504110336, + -0.028793856501579285, + -0.02043434977531433, + 0.0428059846162796, + 0.017687655985355377, + 0.04400019720196724, + -0.0019074272131547332, + 0.029563462361693382, + 0.012340224348008633, + -0.021323377266526222, + 0.009314878843724728, + -0.02392411231994629, + 0.06958294659852982, + -0.05647311359643936, + 0.03325226157903671, + 0.024879485368728638, + 0.025901202112436295, + 0.00740413460880518, + 0.011106202378869057, + -0.05933922901749611, + 0.009620067663490772, + 0.03619799017906189, + 0.033809561282396317, + -0.01323588564991951, + -0.04461057484149933, + 0.03946217894554138, + -0.03776374086737633, + -0.0538458414375782, + -0.028156941756606102, + 0.01529922429472208, + -0.02296874113380909, + 0.04713169485330582, + -0.008651426061987877, + 0.009241899475455284, + -0.015498260036110878, + -0.010860724374651909, + -0.014436735771596432, + -0.019160520285367966, + 0.02884693257510662, + -0.021190686151385307, + -0.02120395563542843, + -0.06162150949239731, + 0.0007264809682965279, + 0.023207582533359528, + -0.031076135113835335, + 0.0067506334744393826, + 0.04713169485330582, + 0.02095184288918972, + 0.008094125427305698, + -0.02866116724908352, + -0.03359725698828697, + 0.006807026918977499, + 0.018722642213106155, + -0.018125534057617188, + 0.029669614508748055, + -0.03951525688171387, + 0.03014730103313923, + 0.025927741080522537, + 0.00688000675290823, + 0.0382414273917675, + 0.032668422907590866, + -0.0004590264870785177, + 0.009971697814762592, + -0.027732333168387413, + 0.026843305677175522, + -0.02700253389775753, + -0.02515813522040844, + -0.008392679505050182, + 0.014728655107319355, + -0.032933805137872696, + 0.0069131795316934586, + 0.0030220281332731247, + -0.0331195704638958, + 0.00003563467907952145, + -0.02595427818596363, + 0.02497236803174019, + 0.0034167824778705835, + 0.012433107942342758, + -0.03245611861348152, + 0.02533063292503357, + 0.023167775943875313, + 0.030359605327248573, + -0.020580310374498367, + -0.0380556583404541, + 0.001219094730913639, + -0.019001292064785957, + 0.0555708184838295, + 0.05169625207781792, + 0.01463577151298523, + -0.027493489906191826, + -0.0015715541085228324, + 0.014304045587778091, + -0.023512771353125572, + 0.05339469015598297, + -0.027466950938105583, + -0.05620773136615753, + 0.013196079060435295, + 0.01858995109796524, + -0.08932730555534363, + -0.026445234194397926, + -0.0023005229886621237, + 0.03611837700009346, + -0.018656296655535698, + 0.0068733724765479565, + 0.017647847533226013, + 0.004727101884782314, + -0.010203906334936619, + -0.09452877193689346, + -0.004219560418277979, + 0.02365873195230961, + -0.011185816489160061, + -0.001676877262070775, + 0.0003530813555698842, + 0.01571056619286537, + -0.013129733502864838, + 0.006684288382530212, + -0.023194314911961555, + 0.03463224321603775, + 0.046680547297000885, + 0.0038148544263094664, + -0.05981691554188728, + -0.01271839253604412, + -0.06809680908918381, + -0.061249975115060806, + 0.008439120836555958, + -0.03354417905211449, + -0.014051932841539383, + 0.027135225012898445, + -0.0073643275536596775, + 0.05530543625354767, + -0.02069973200559616, + 0.00030933492234908044, + 0.008405948989093304, + -0.012353493832051754, + -0.00031659143860451877, + -0.07255521416664124, + -0.007676150184124708, + 0.03574684262275696, + -0.027573103085160255, + 0.015193072147667408, + -0.013421652838587761, + -0.03664914146065712, + -0.03481800854206085, + -0.0010922093642875552, + -0.0029042651876807213, + -0.05066126585006714, + 0.015922870486974716, + -0.003778364509344101, + 0.029032699763774872, + -0.00211641495116055, + 0.018337838351726532, + -0.030306529253721237, + 0.0355876162648201, + -0.04418596625328064, + 0.004392058588564396, + 0.0006157672614790499, + 0.050793956965208054, + -0.03566722944378853, + -0.03391571342945099, + -0.027228107675909996, + 0.012977139092981815, + 0.012380031868815422, + -0.011603791266679764, + -0.038427192717790604, + 0.004408644512295723, + -0.0799328088760376, + -0.06931756436824799, + 0.07377596199512482, + -0.013521170243620872, + -0.031023059040308, + 0.005211422685533762, + 0.007510287221521139, + 0.05578312277793884, + 0.002793136751279235, + 0.021854139864444733, + 0.0002958585391752422, + -0.06119689717888832, + 0.021057995036244392, + -0.02961653843522072, + -0.006299485452473164, + -0.0005212252144701779, + 0.0064222244545817375, + 0.025582745671272278, + 0.025994086638092995, + -0.023366812616586685, + 0.04166484251618385, + 0.02656465582549572, + -0.03683490678668022, + 0.005264498759061098, + 0.010111022740602493, + -0.01902782917022705, + 0.010210540145635605, + -0.004040428437292576, + 0.031049596145749092, + 0.010336596518754959, + -0.025795049965381622, + 0.04944051057100296, + -0.037047211080789566, + -0.021429529413580894, + 0.05541158840060234, + 0.016719013452529907, + -0.04806052893400192, + -0.012134553864598274, + -0.0007567509892396629, + 0.027466950938105583, + -0.004869744647294283, + -0.010323327966034412, + 0.04628247767686844, + 0.000609132694080472, + 0.053606998175382614, + 0.016904780641198158, + -0.04102792963385582, + 0.048511676490306854, + -0.015498260036110878, + 0.013667129911482334, + -0.012287148274481297, + 0.044132888317108154, + 0.0034997141920030117, + 0.001663608243688941, + 0.007463845424354076, + 0.035534538328647614, + 0.05095318332314491, + 0.028714243322610855, + -0.01674555242061615, + -0.043708279728889465, + 0.003960813861340284, + -0.014582695439457893, + 0.01192224957048893, + 0.006103767082095146, + -0.03163343667984009, + 0.013209347613155842, + -0.027732333168387413, + 0.019094174727797508, + -0.001447985996492207, + 0.009892082773149014, + 0.04848514124751091, + -0.008220181800425053, + -0.025476591661572456, + -0.009487376548349857, + -0.050103966146707535, + 0.047397077083587646, + 0.018470529466867447, + 0.020314928144216537, + -0.00942766573280096, + -0.05113895237445831, + 0.008439120836555958, + -0.02392411231994629, + -0.01831130124628544, + 0.043177515268325806, + 0.044132888317108154, + 0.022398170083761215, + 0.02051396481692791, + 0.0213101077824831, + -0.009938525035977364, + -0.001980406930670142, + 0.06363840401172638, + -0.017409004271030426, + 0.02805078960955143, + -0.01945243962109089, + -0.04304482415318489, + -0.006498521659523249, + -0.018908407539129257, + 0.022146059200167656, + -0.04500864818692207, + -0.038612961769104004, + -0.018351107835769653, + 0.01239993516355753, + -0.05180240422487259, + -0.01851033605635166, + 0.01691805012524128, + 0.02884693257510662, + 0.05997614562511444, + 0.006123670376837254, + -0.02629927359521389, + 0.005181567277759314, + 0.000051313938456587493, + 0.006163477897644043, + -0.007994608022272587, + -0.02831617183983326, + 0.04216906800866127, + -0.021018188446760178, + 0.009089305065572262, + 0.009494011290371418, + 0.002988855354487896, + 0.011059760116040707, + -0.02517140470445156, + 0.04792783781886101, + -0.001063183299265802, + -0.027029072865843773, + 0.0003746435686480254, + -0.021283570677042007, + -0.008969883434474468, + 0.005874875467270613, + 0.030731139704585075, + 0.0070126974023878574, + 0.021854139864444733, + 0.034579165279865265, + 0.031261902302503586, + 0.015657488256692886, + -0.0004921991494484246, + -0.00001693619014986325, + 0.008857096545398235, + 0.0445309616625309, + -0.04824629798531532, + -0.022305287420749664, + 0.05249239504337311, + 0.002678691176697612, + 0.016758820042014122, + 0.0016080440254881978, + 0.026073699817061424, + 0.005009069573134184, + -0.021893946453928947, + -0.018470529466867447, + -0.010774475522339344, + 0.02972269058227539, + -0.003245943458750844, + -0.016188250854611397, + 0.011033222079277039, + -0.01017736829817295, + -0.00523796072229743, + 0.023127969354391098, + 0.03810873627662659, + 0.020049547776579857, + 0.04498210921883583, + -0.002942413790151477, + -0.025622552260756493, + -0.06183381378650665, + 0.02234509401023388, + -0.044504422694444656, + 0.0001300989679293707, + 0.02736079879105091, + -0.04246098920702934, + -0.015975946560502052, + 0.017409004271030426, + -0.0350303128361702, + 0.025450054556131363, + 0.052041247487068176, + -0.029669614508748055, + -0.06565529853105545, + -0.04301828891038895, + 0.010761206038296223, + -0.009666508994996548, + -0.015617681667208672, + 0.020235314965248108, + 0.04670708626508713, + 0.01512672659009695, + 0.044212501496076584, + 0.013680399395525455, + 0.009673143737018108, + 0.00011703724157996476, + 0.0013816406717523932, + 0.02552966959774494, + -0.055464666336774826, + 0.05742848664522171, + -0.017382467165589333, + 0.024149686098098755, + 0.030969982966780663, + -0.015272686257958412, + -0.000012517491086327937, + 0.047635920345783234, + 0.018364377319812775, + 0.0213101077824831, + 0.005732233170419931, + -0.04821975901722908, + -0.009726219810545444, + 0.025476591661572456, + -0.005672522354871035, + 0.03964794799685478, + 0.0605069063603878, + 0.006564866751432419, + -0.08226816356182098, + -0.038612961769104004, + 0.07738514989614487, + 0.05028973147273064, + 0.0354018472135067, + 0.014662309549748898, + -0.015591143630445004, + 0.046255938708782196, + 0.016891511157155037, + 0.05726925656199455, + -0.021495874971151352, + 0.07202444970607758, + 0.0024945829063653946, + -0.029032699763774872, + -0.018643027171492577, + -0.01547172199934721, + 0.006730730179697275, + 0.027997713536024094, + -0.03874564915895462, + -0.010674957185983658, + -0.004836571868509054, + -0.012459645979106426, + 0.008233451284468174, + -0.025755243375897408, + 0.028024252504110336, + -0.010442748665809631, + -0.04848514124751091, + -0.04593748226761818, + -0.05801232531666756, + 0.003063493873924017, + -0.032827649265527725, + -0.031023059040308, + -0.014702117070555687, + -0.018470529466867447, + -0.026776960119605064, + -0.04461057484149933, + 0.003367023542523384, + -0.007258174940943718, + -0.007118850015103817, + 0.033783022314310074, + -0.03163343667984009, + -0.013089925982058048, + 0.015657488256692886, + -0.04423904046416283, + -0.03142113238573074, + -0.007696053944528103, + 0.012333589605987072, + -0.02323412150144577, + 0.009202091954648495, + -0.010681591928005219, + 0.016785359010100365, + -0.016971126198768616, + 0.010449383407831192, + -0.019704552367329597, + -0.05626080930233002, + -0.0492812842130661, + -0.02164183370769024, + -0.005636032670736313, + -0.0010465970262885094, + 0.019492246210575104, + 0.047901302576065063, + -0.034154556691646576, + -0.01376001350581646, + -0.06883987784385681, + 0.017780538648366928, + -0.02464064210653305, + -0.0011486029252409935, + 0.016626130789518356, + 0.04248752444982529, + -0.06560222804546356, + 0.01209474727511406, + -0.02077934518456459, + -0.01989031955599785, + -0.019346287474036217, + 0.00305851805023849, + -0.02586139552295208, + -0.017634578049182892, + 0.019664743915200233, + -0.07759745419025421, + 0.032933805137872696, + -0.01170330960303545, + 0.01241320464760065, + 0.014304045587778091, + -0.0035793285351246595, + -0.018098995089530945, + 0.03086383081972599, + -0.035985685884952545, + 0.030492296442389488, + -0.023817960172891617, + 0.027838485315442085, + 0.018165340647101402, + 0.016692476347088814, + -0.0037750471383333206, + -0.04795437678694725, + 0.011736482381820679, + -0.009487376548349857, + -0.015047112479805946, + -0.059126924723386765, + -0.05161663889884949, + -0.013156271539628506, + 0.03744528442621231, + -0.02129683829843998, + 0.006946352310478687, + -0.0028909961692988873, + 0.006067276932299137, + 0.011630330234766006, + 0.03165997192263603, + -0.037392206490039825, + 0.006030787248164415, + 0.004620949737727642, + -0.0007961434894241393, + -0.014569425955414772, + -0.006170112174004316, + -0.04129331186413765, + -0.028873471543192863, + -0.04970589280128479, + -0.020832421258091927, + 0.03924987465143204, + 0.005042242351919413, + 0.02534390240907669, + -0.01433058362454176, + 0.008671329356729984, + -0.008127298206090927, + 0.027307722717523575, + 0.00405701482668519, + 0.008724406361579895, + 0.00629285117611289, + -0.00013300158025231212, + -0.0269229207187891, + -0.018006112426519394, + 0.07202444970607758, + 0.0445309616625309, + 0.010011504404246807, + -0.045964017510414124, + -0.034924160689115524, + 0.017953036352992058, + -0.038719113916158676, + 0.02279624342918396, + 0.03516300395131111, + -0.0029938314110040665, + 0.02900616265833378, + -0.020673193037509918, + 0.04787476360797882, + 0.020925305783748627, + 0.05997614562511444, + -0.04078908637166023, + -0.020474158227443695, + -0.008425852283835411, + 0.014516349881887436, + -0.003784999018535018, + -0.005075415130704641, + 0.01464904099702835, + -0.04007255658507347, + -0.03810873627662659, + -0.04341635853052139, + -0.01771419309079647, + -0.007589901331812143, + 0.0037485091015696526, + -0.024653911590576172, + -0.009235264733433723, + -0.003811537055298686, + 0.009865544736385345, + 0.021933753043413162, + -0.008140567690134048, + -0.009553722105920315, + -0.02008935436606407, + -0.04742361605167389, + 0.023738345131278038, + 0.037206441164016724, + 0.004076918121427298, + -0.03611837700009346, + -0.009898717515170574, + 0.010960242711007595, + -0.03306649252772331, + -0.052386242896318436, + 0.006687605287879705, + -0.00558627350255847, + 0.0020152381621301174, + 0.03855988383293152, + 0.033517640084028244, + -0.016944587230682373, + -0.013972318731248379, + -0.00583175104111433, + -0.00824671983718872, + 0.00024195299192797393, + 0.024070072919130325, + 0.02271662838757038, + -0.016334211453795433, + -0.01902782917022705, + -0.03999294340610504, + 0.02701580338180065, + -0.0248264092952013, + 0.010641785338521004, + -0.0035726940259337425, + 0.014688847586512566, + 0.007450576405972242, + 0.011119470931589603, + -0.0010822576005011797, + 0.033093031495809555, + -0.014980766922235489, + -0.030439220368862152, + 0.00031348151969723403, + 0.006170112174004316, + 0.021602027118206024, + 0.013076657429337502, + -0.030731139704585075, + 0.024959098547697067, + 0.025834856554865837, + 0.014396928250789642, + -0.024773333221673965, + 0.044132888317108154, + -0.06464685499668121, + 0.03972756117582321, + 0.0029407551046460867, + 0.013189444318413734, + 0.017382467165589333, + 0.04232829809188843, + -0.005533197429031134, + 0.03280111402273178, + 0.010044677183032036, + -0.02866116724908352, + 0.01910744421184063, + 0.01577690988779068, + -0.053951993584632874, + 0.008041049353778362, + -0.029696153476834297, + 0.037737201899290085, + 0.00027885756571777165, + 0.0018477163976058364, + 0.015405377373099327, + -0.023459695279598236, + 0.002977245021611452, + 0.004902916960418224, + -0.05960461124777794, + 0.01415808591991663, + 0.011484370566904545, + -0.019240135326981544, + 0.01223407220095396, + -0.03495069965720177, + 0.032217275351285934, + 0.002068314468488097, + -0.03848027065396309, + -0.01727631501853466, + -0.03810873627662659, + -0.03779027983546257, + -0.005742185283452272, + 0.010588708333671093, + 0.009494011290371418, + 0.004441817291080952, + -0.006322706583887339, + 0.01832457073032856, + 0.015670757740736008, + 0.03829450160264969, + -0.01920032687485218, + -0.01069486141204834, + -0.02611350640654564, + 0.04312444105744362, + -0.01771419309079647, + 0.0555708184838295, + 0.030041148886084557, + -0.02174798771739006, + -0.06868064403533936, + 0.018019381910562515, + 0.027838485315442085, + -0.037126824259757996, + 0.000814388447906822, + 0.004315761383622885, + 0.04962627962231636, + 0.0010482555953785777, + 0.015073650516569614, + -0.05514620617032051, + 0.01929321140050888, + 0.016878241673111916, + 0.05758771300315857, + 0.009732854552567005, + 0.02850193716585636, + 0.0032077948562800884, + -0.0035196177195757627, + -0.0028047473169863224, + 0.037392206490039825, + -0.003960813861340284, + -0.020832421258091927, + -0.034924160689115524, + -0.01568402722477913, + 0.016413824632763863, + 0.03338495269417763, + 0.00893671065568924, + -0.028873471543192863, + 0.009394493885338306, + -0.021854139864444733, + -0.003784999018535018, + -0.007132119033485651, + 0.05854308605194092, + -0.02051396481692791, + -0.014184623956680298, + -0.017740732058882713, + -0.0015922869788482785, + 0.01851033605635166, + 0.02034146711230278, + -0.0030153936240822077, + 0.03688798099756241, + 0.014038664288818836, + -0.005659253336489201, + 0.0005058828392066061, + -0.007470480166375637, + 0.014489811845123768, + 0.040019482374191284, + 0.022663552314043045, + 0.015392107889056206, + 0.002614004537463188, + 0.0015043795574456453, + 0.007072408217936754, + -0.04524749144911766, + 0.05530543625354767, + -0.011371582746505737, + 0.04200983792543411, + -0.008505466394126415, + 0.009752757847309113, + -0.022066444158554077, + 0.001541698700748384, + -0.01069486141204834, + -0.006199967581778765, + -0.0302534531801939, + -0.013355307281017303, + 0.010263617150485516, + 0.0035859630443155766, + -0.06475300341844559, + -0.0040503800846636295, + 0.00663784658536315, + 0.02866116724908352, + -0.028342708945274353, + -0.018377646803855896, + 0.018125534057617188, + -0.01271839253604412, + 0.009513914585113525, + 0.008346238173544407, + 0.01204830501228571, + -0.006405638065189123, + -0.044398270547389984, + -0.014144816435873508, + 0.031606897711753845, + -0.00806758739054203, + -0.029032699763774872, + -0.00946747325360775, + 0.006067276932299137, + -0.011477735824882984, + 0.013680399395525455, + -0.009175553917884827, + 0.003940910566598177, + 0.028873471543192863, + -0.01946570910513401, + 0.023472964763641357, + 0.018364377319812775, + 0.05031627044081688, + -0.038427192717790604, + -0.010011504404246807, + 0.06252380460500717, + 0.02112434059381485, + 0.0017880056984722614, + 0.005247912835329771, + 0.02603389322757721, + -0.036941058933734894, + -0.021854139864444733, + -0.007735860999673605, + -0.0088040204718709, + -0.03436686098575592, + -0.02647177129983902, + 0.014038664288818836, + -0.0107014961540699, + 0.04423904046416283, + -0.0009744464769028127, + 0.01205493975430727, + -0.03014730103313923, + 0.011862538754940033, + -0.00045570923248305917, + -0.0359591469168663, + -0.006442127749323845, + 0.004156532697379589, + 0.011816096492111683, + -0.009978331625461578, + -0.03078421577811241, + 0.04304482415318489, + -0.031182287260890007, + 0.004780178423970938, + -0.0053043062798678875, + 0.009208726696670055, + 0.005884827580302954, + 0.0022656917572021484, + 0.030624987557530403, + 0.031686510890722275, + 0.024242570623755455, + -0.014582695439457893, + 0.01100004930049181, + -0.036861445754766464, + -0.009241899475455284, + 0.000595863675698638, + -0.034154556691646576, + -0.03314610943198204, + -0.027493489906191826, + 0.012028401717543602, + -0.014224430546164513, + 0.02024858258664608, + -0.032296888530254364, + 0.012127919122576714, + -0.014489811845123768, + 0.006511790677905083, + 0.0016478511970490217, + 0.029775766655802727, + 0.017501888796687126, + -0.007755764760077, + -0.0029739276506006718, + -0.003708701813593507, + -0.003420099848881364, + 0.004521431867033243, + -0.022849319502711296, + -0.026843305677175522, + -0.0038480269722640514, + 0.006720778066664934, + -0.010363134555518627, + 0.015670757740736008, + -0.06162150949239731, + 0.03234996646642685, + -0.018988022580742836, + -0.028077328577637672, + -0.027997713536024094, + 0.05074087902903557, + 0.010084484703838825, + -0.00827989261597395, + -0.021761255338788033, + 0.00604737363755703, + -0.023685269057750702, + 0.04994473606348038, + -0.006186698563396931, + 0.008140567690134048, + 0.019518785178661346, + 0.028608091175556183, + 0.006581453140825033, + -0.026617731899023056, + 0.02209298312664032, + -0.010728034190833569, + 0.020182238891720772, + -0.0014836465707048774, + -0.03534877300262451, + 0.0032276983838528395, + 0.04338982328772545, + 0.01122562400996685, + -0.03354417905211449, + 0.007576632313430309, + -0.033438026905059814, + -0.029696153476834297, + 0.01796630583703518, + 0.002754988381639123, + 0.007430672645568848, + -0.03357071802020073, + 0.015538067556917667, + 0.03622452914714813, + -0.010316693224012852, + -0.025967547670006752, + -0.007443941663950682, + 0.0030253452714532614, + 0.016148444265127182, + 0.023871036246418953, + -0.02024858258664608, + 0.03142113238573074, + 0.022915665060281754, + -0.017488619312644005, + 0.005496707279235125, + -0.02629927359521389, + -0.025795049965381622, + -0.0017216603737324476, + -0.0019853829871863127, + -0.04559248685836792, + -0.005274450872093439, + 0.032403040677309036, + -0.005964441690593958, + -0.008206912316381931, + -0.02462737262248993, + 0.02095184288918972, + -0.0450882613658905, + 0.019585130736231804, + -0.06894602626562119, + 0.008200278505682945, + 0.004242781549692154, + 0.04795437678694725, + -0.006979524623602629, + -0.019041098654270172, + 0.0016188251320272684, + -0.00541709316894412, + 0.02490602247416973, + 0.019850511103868484, + -0.00008526406600140035, + -0.004206291399896145, + 0.029775766655802727, + 0.014304045587778091, + 0.0008454878116026521, + 0.010986780747771263, + -0.00576208857819438, + -0.010568805038928986, + -0.002074948977679014, + -0.0028329440392553806, + -0.030757678672671318, + 0.02068646252155304, + -0.01789996027946472, + -0.0038447098340839148, + 0.002215932821854949, + -0.014012126252055168, + -0.011165913194417953, + 0.0175151564180851, + -0.013295596465468407, + 0.0099916011095047, + 0.005224691703915596, + -0.015909601002931595, + 0.02454775758087635, + -0.031155750155448914, + 0.03579992055892944, + -0.014224430546164513, + 0.021349914371967316, + -0.009042863734066486, + 0.013667129911482334, + -0.008041049353778362, + 0.024043533951044083, + -0.028448861092329025, + 0.0002915046352427453, + -0.0001300989679293707, + 0.0011320165358483791, + -0.01927994191646576, + 0.00758326705545187, + -0.024760063737630844, + 0.0056061772629618645, + -0.04628247767686844, + -0.006266313139349222, + 0.061143822968006134, + -0.009480742737650871, + -0.02472025528550148, + 0.016188250854611397, + -0.020898766815662384, + -0.017634578049182892, + 0.01139148697257042, + -0.04715823382139206, + -0.04251406341791153, + -0.0028279682155698538, + 0.030731139704585075, + 0.028608091175556183, + -0.02059357799589634, + -0.00041590206092223525, + -0.028024252504110336, + 0.02120395563542843, + -0.0014156426768749952, + 0.024866215884685516, + -0.0355876162648201, + 0.01691805012524128, + 0.017302852123975754, + 0.015577875077724457, + 0.0011195768602192402, + -0.01292406301945448, + 0.0315803587436676, + -0.0070657734759151936, + 0.007908359169960022, + 0.027811946347355843, + 0.008034414611756802, + -0.012559164315462112, + 0.014582695439457893, + -0.021283570677042007, + -0.004080235492438078, + -0.013640591874718666, + -0.012088112533092499, + -0.018616490066051483, + -0.0024348723236471415, + 0.015206340700387955, + -0.007344423793256283, + -0.03420763462781906, + 0.023804690688848495, + -0.009149015881121159, + 0.024852946400642395, + 0.0043655200861394405, + -0.006946352310478687, + -0.043708279728889465, + 0.015086920000612736, + -0.015922870486974716, + 0.04814014583826065, + -0.05066126585006714, + -0.01709054782986641, + 0.041346386075019836, + -0.00898315291851759, + 0.007808840833604336, + 0.008273257873952389, + -0.01621478982269764, + 0.013826359063386917, + -0.0015126726357266307, + 0.005486755631864071, + -0.03508339077234268, + 0.025370439514517784, + -0.021084534004330635, + -0.01665266789495945, + 0.040205247700214386, + -0.030014609917998314, + 0.02972269058227539, + -0.005201471038162708, + 0.024574296548962593, + 0.0062729474157094955, + -0.014529619365930557, + -0.0024763380642980337, + 0.0010673298966139555, + 0.037126824259757996, + 0.04084216058254242, + 0.030386144295334816, + 0.003831440582871437, + 0.03468531742691994, + 0.05838385596871376, + 0.033968791365623474, + -0.029669614508748055, + -0.02356584742665291, + 0.03619799017906189, + 0.02953692525625229, + 0.030359605327248573, + 0.025542937219142914, + 0.031155750155448914, + 0.015564605593681335, + -0.025927741080522537, + -0.007802206557244062, + 0.01789996027946472, + -0.021071264520287514, + -0.0017697607399895787, + -0.008359506726264954, + -0.0026305909268558025, + 0.02786502242088318, + -0.004096821881830692, + -0.01938609406352043, + -0.01612190529704094, + 0.013826359063386917, + -0.00806758739054203, + 0.02980230562388897, + 0.011159278452396393, + -0.017581501975655556, + -0.0017813710728660226, + -0.04723784700036049, + 0.03837411850690842, + 0.06496530771255493, + 0.018709372729063034, + 0.02024858258664608, + 0.01082091685384512, + -0.04705208167433739, + -0.019306480884552002, + 0.01754169538617134, + -0.016984395682811737, + -0.009520549327135086, + 0.03500377759337425, + -0.003970765974372625, + 0.03776374086737633, + 0.0010673298966139555, + -0.019226865842938423, + 0.013567612506449223, + -0.04031139984726906, + 0.04959974065423012, + 0.03463224321603775, + 0.03715336322784424, + 0.0037418745923787355, + 0.0033039955887943506, + 0.023472964763641357, + 0.023910842835903168, + 0.04622939974069595, + 0.007430672645568848, + 0.017753999680280685, + 0.01411827839910984, + -0.006136939395219088, + -0.00925516802817583, + -0.016891511157155037, + -0.005118539556860924, + -0.013733475469052792, + 0.032562270760536194, + 0.02937769517302513, + 0.012320321053266525, + 0.04078908637166023, + 0.00048100337153300643, + -0.009878814220428467, + 0.024003727361559868, + 0.010900531895458698, + 0.0014015443157404661, + -0.033703409135341644, + -0.024959098547697067, + -0.0016188251320272684, + 0.0013252472272142768, + 0.006680971011519432, + -0.005423727910965681, + -0.02262374572455883, + 0.03688798099756241, + 0.008711136877536774, + 0.014967498369514942, + 0.011736482381820679, + 0.02937769517302513, + -0.04787476360797882, + -0.019412633031606674, + -0.024653911590576172, + -0.03288072720170021, + -0.01289089024066925, + 0.006067276932299137, + 0.026246197521686554, + 0.0021180734038352966, + 0.031076135113835335, + 0.0036324048414826393, + -0.02805078960955143, + -0.008478928357362747, + -0.019226865842938423, + 0.01665266789495945, + -0.0034035134594887495, + -0.04216906800866127, + 0.04275290668010712, + -0.004461721051484346, + 0.0038745650090277195, + 0.0063956864178180695, + -0.02059357799589634, + 0.0003561913035809994, + 0.009540453553199768, + 0.029828842729330063, + -0.018735909834504128, + 0.00925516802817583, + -0.016453633084893227, + -0.006080545950680971, + 0.027281183749437332, + 0.0029921727254986763, + 0.02314123883843422, + -0.04118715599179268, + 0.022663552314043045, + 0.02850193716585636, + -0.010568805038928986, + 0.010429480113089085, + 0.03394225239753723, + 0.020222045481204987, + -0.0031281805131584406, + 0.03489762544631958, + 0.010847455821931362, + -0.012008498422801495, + -0.013852897100150585, + -0.020673193037509918, + -0.008379410021007061, + -0.02839578501880169, + -0.002667080843821168, + -0.002963976003229618, + -0.02656465582549572, + -0.00618006382137537, + 0.014768462628126144, + -0.003692115657031536, + 0.004723784979432821, + -0.007709322962909937, + -0.020845690742135048, + -0.020314928144216537, + -0.019412633031606674, + 0.01393251121044159, + -0.017475349828600883, + 0.03874564915895462, + -0.008140567690134048, + -0.013401749543845654, + -0.0144632738083601, + 0.00013694082736037672, + 0.006369147915393114, + -0.015909601002931595, + 0.01632094196975231, + -0.01613517478108406, + -0.04564556106925011, + 0.004415279254317284, + -0.032562270760536194, + -0.020633386448025703, + 0.019664743915200233, + -0.011889076791703701, + -0.03954179584980011, + -0.013547709211707115, + -0.0088040204718709, + 0.006256361026316881, + -0.001474524149671197, + -0.004630901385098696, + 0.00240999273955822, + -0.021442798897624016, + -0.0072382716462016106, + -0.002701912075281143, + 0.07563363015651703, + -0.0030601767357438803, + -0.0007090652943588793, + -0.02076607756316662, + 0.02314123883843422, + -0.007769033778458834, + -0.01047592144459486, + -0.03402186557650566, + 0.021602027118206024, + -0.010913800448179245, + 0.00126553641166538, + -0.02586139552295208, + 0.000902295985724777, + -0.0007774839177727699, + 0.004614314995706081, + 0.008319700136780739, + -0.04959974065423012, + -0.018696103245019913, + 0.007317885756492615, + -0.002995489863678813, + -0.008200278505682945, + -0.018563412129878998, + 0.017780538648366928, + 0.01206157449632883, + -0.020288391038775444, + 0.004892965313047171, + 0.001219094730913639, + 0.011165913194417953, + -0.008525369688868523, + 0.013308865949511528, + -0.02200009860098362, + 0.0020086036529392004, + -0.014609233476221561, + 0.01787342131137848, + 0.03917026147246361, + 0.0013584198895841837, + 0.015564605593681335, + -0.011305238120257854, + 0.011165913194417953, + -0.002398382406681776, + -0.0013741768198087811, + -0.012705123983323574, + 0.006966255605220795, + 0.0037451917305588722, + 0.004066966474056244, + 0.009480742737650871, + -0.02639215812087059, + -0.01012429129332304, + 0.016692476347088814, + 0.01480826921761036, + 0.01841745339334011, + -0.023605655878782272, + 0.02517140470445156, + 0.006143574137240648, + -0.019333017989993095, + -0.004275954328477383, + 0.02805078960955143, + -0.018032651394605637, + 0.029245005920529366, + -0.03261534497141838, + -0.0017200016882270575, + 0.0006738193915225565, + -0.008996421471238136, + -0.011650233529508114, + -0.014715385623276234, + -0.014741923660039902, + -0.0009396151872351766, + 0.015538067556917667, + -0.009321513585746288, + 0.04705208167433739, + -0.004289223346859217, + 0.01122562400996685, + -0.009958428330719471, + -0.0006883324240334332, + 0.015073650516569614, + -0.02296874113380909, + -0.02123049460351467, + 0.03664914146065712, + 0.004717150237411261, + -0.05450929328799248, + 0.03136805444955826, + 0.009328148327767849, + 0.02287585660815239, + 0.0234066192060709, + 0.027281183749437332, + 0.02262374572455883, + 0.002726791426539421, + 0.03752489760518074, + 0.0111791817471385, + 0.03147420659661293, + 0.006558232009410858, + 0.011676771566271782, + 0.027944637462496758, + 0.006123670376837254, + 0.0005539832054637372, + 0.029961533844470978, + -0.03641029819846153, + 0.017753999680280685, + -0.011557349935173988, + -0.027652718126773834, + 0.009984966367483139, + -0.007244905922561884, + 0.006282899063080549, + 0.0357733815908432, + -0.004431865643709898, + -0.018828794360160828, + 0.009447569958865643, + 0.0037352400831878185, + -0.005383920390158892, + -0.00876421295106411, + 0.01868283376097679, + -0.00370538467541337, + 0.004478307440876961, + -0.0032874091994017363, + 0.013501266948878765, + -0.003358730347827077, + -0.022159328684210777, + 0.024879485368728638, + 0.026086969301104546, + -0.026763690635561943, + 0.04832591116428375, + 0.012970504350960255, + 0.019598400220274925, + -0.011491004377603531, + 0.01082755159586668, + -0.034764934331178665, + 0.002330378396436572, + 0.027493489906191826, + -0.002335354220122099, + 0.019744358956813812, + 0.009918621741235256, + 0.008187009021639824, + 0.01206157449632883, + 0.0006559891044162214, + -0.002799771260470152, + 0.02174798771739006, + 0.000040092254494084045, + 0.0006688435096293688, + 0.01648017019033432, + -0.00788845494389534, + -0.0025028761010617018, + 0.025635821744799614, + -0.029404234141111374, + -0.02359238639473915, + 0.027944637462496758, + -0.0029341205954551697, + -0.04691939055919647, + -0.02392411231994629, + 0.033278800547122955, + 0.0122274374589324, + -0.037737201899290085, + 0.011126105673611164, + 0.02911231480538845, + 0.022252211347222328, + 0.010681591928005219, + 0.02866116724908352, + 0.010747937485575676, + 0.012088112533092499, + 0.022915665060281754, + 0.027387337759137154, + 0.018735909834504128, + -0.010907165706157684, + -0.023273928090929985, + 0.018085727468132973, + 0.0040371110662817955, + -0.00670419167727232, + 0.007258174940943718, + 0.003924324177205563, + -0.01241320464760065, + 0.005085366778075695, + 0.010436114855110645, + -0.017249776050448418, + 0.0020235313568264246, + -0.013202712871134281, + -0.003927641548216343, + -0.03877218812704086, + -0.005801895633339882, + 0.001542528043501079, + -0.01012429129332304, + 0.009407762438058853, + -0.03495069965720177, + -0.00915565062314272, + -0.017064008861780167, + 0.025795049965381622, + 0.03755143657326698, + -0.03216419741511345, + -0.022159328684210777, + -0.004962627775967121, + -0.00364899099804461, + 0.007603170350193977, + -0.007497018203139305, + -0.02551640011370182, + -0.016772089526057243, + 0.0006319389212876558, + -0.025728704407811165, + -0.02174798771739006, + -0.013036849908530712, + -0.011477735824882984, + 0.009832371957600117, + -0.012565798126161098, + -0.03479147329926491, + -0.0022192499600350857, + -0.02243797853589058, + -0.032137658447027206, + 0.009095939807593822, + 0.01596267707645893, + -0.0043754721991717815, + 0.012074843049049377, + -0.01648017019033432, + -0.0027583055198192596, + 0.0018377646338194609, + 0.013023581355810165, + -0.0265513863414526, + 0.0034698587842285633, + 0.045725174248218536, + 0.012068208307027817, + -0.030704600736498833, + 0.006986159365624189, + 0.0030054417438805103, + 0.021867409348487854, + -0.024587566033005714, + -0.006800392642617226, + 0.006010883487761021, + -0.02392411231994629, + -0.01929321140050888, + 0.023552579805254936, + -0.048352450132369995, + -0.006853468716144562, + -0.016758820042014122, + -0.020819153636693954, + 0.0203547365963459, + 0.04139946401119232, + 0.008857096545398235, + 0.01674555242061615, + -0.01051572896540165, + 0.005052193999290466, + -0.001427253126166761, + -0.010051311925053596, + 0.005672522354871035, + -0.012088112533092499, + -0.015524798072874546, + -0.05074087902903557, + 0.013269058428704739, + -0.014012126252055168, + -0.03280111402273178, + -0.009892082773149014, + 0.004239464178681374, + 0.013746744953095913, + -0.010601977817714214, + -0.017236506566405296, + -0.01955859176814556, + -0.02384449914097786, + 0.006379100028425455, + 0.003124863374978304, + 0.008976518176496029, + -0.018802255392074585, + 0.03627760708332062, + 0.0008633180987089872, + 0.0052810851484537125, + -0.0030800802633166313, + -0.024308916181325912, + -0.004919503349810839, + 0.014901152811944485, + 0.005354064982384443, + 0.014450004324316978, + -0.009016325697302818, + 0.0009064425830729306, + 0.001399885630235076, + -0.007138753309845924, + 0.015219610184431076, + -0.012844448909163475, + 0.009241899475455284, + -0.027281183749437332, + 0.001097185304388404, + -0.0036589428782463074, + 0.008206912316381931, + -0.01962493732571602, + -0.02403026446700096, + 0.019226865842938423, + -0.015073650516569614, + -0.055623892694711685, + 0.0048299371264874935, + 0.04856475442647934, + -0.041505616158246994, + 0.004332347773015499, + -0.010635150596499443, + 0.04760938137769699, + -0.002021872904151678, + 0.0019206962315365672, + -0.037312593311071396, + 0.017554964870214462, + 0.008021146059036255, + -0.006740681827068329, + 0.03155381977558136, + -0.022491054609417915, + 0.010409576818346977, + 0.01622805930674076, + -0.002995489863678813, + 0.017939766868948936, + 0.017568234354257584, + 0.04875051975250244, + -0.018377646803855896, + -0.021880676969885826, + 0.02961653843522072, + 0.010263617150485516, + -0.00942766573280096, + 0.018643027171492577, + 0.048777058720588684, + 0.012147823348641396, + -0.0015276003396138549, + 0.013786551542580128, + 0.022504324093461037, + -0.021257031708955765, + -0.019054368138313293, + -0.016002485528588295, + 0.019041098654270172, + -0.036251068115234375, + 0.04482287913560867, + 0.009029594250023365, + -0.007782302796840668, + -0.008386044763028622, + 0.007092311978340149, + -0.013162906281650066, + 0.007828744128346443, + -0.09389185905456543, + -0.02717503160238266, + -0.014662309549748898, + -0.031076135113835335, + 0.0014388635754585266, + -0.02813040465116501, + -0.01425096858292818, + 0.01205493975430727, + 0.001433887635357678, + -0.014715385623276234, + -0.018258225172758102, + 0.04118715599179268, + 0.00044202551362104714, + -0.01450308132916689, + 0.008007876574993134, + -0.040019482374191284, + 0.009938525035977364, + -0.01192224957048893, + 0.00863815750926733, + -0.02919192798435688, + -0.005218057427555323, + 0.015285955742001534, + -0.023632192984223366, + -0.004975896794348955, + 0.036675676703453064, + 0.026538116857409477, + -0.015352300368249416, + 0.005818482022732496, + 0.030359605327248573, + 0.007105580996721983, + 0.010562170296907425, + 0.013156271539628506, + 0.039913326501846313, + 0.00022246406297199428, + 0.0289265476167202, + -0.014967498369514942, + 0.013521170243620872, + -0.02453448995947838, + -0.016957856714725494, + -0.007291347719728947, + -0.003984034992754459, + -0.008359506726264954, + -0.027838485315442085, + -0.001273000263608992, + 0.04776861146092415, + -0.006866737734526396, + -0.009772662073373795, + -0.02961653843522072, + -0.022384902462363243, + 0.008910172618925571, + -0.016626130789518356, + -0.009407762438058853, + 0.010635150596499443, + 0.041877150535583496, + 0.03346456587314606, + 0.049228206276893616, + -0.023300467059016228, + -0.01157061941921711, + 0.020805884152650833, + -0.00569574348628521, + 0.014662309549748898, + -0.012877621687948704, + -0.00806095264852047, + 0.005599542520940304, + -0.006302802823483944 + ] + }, + { + "HotelId": "35", + "HotelName": "Bellevue Suites", + "Description": "Comfortable city living in the very center of downtown Bellevue. Newly reimagined, this hotel features apartment-style suites with sleeping, living and work spaces. Located across the street from the Light Rail to downtown. Free shuttle to the airport.", + "Description_fr": "Centre-ville confortable vivant en plein centre du centre-ville de Bellevue. RĆ©cemment repensĆ©, cet hĆ“tel propose des suites de style appartement avec des espaces de couchage, de vie et de travail. SituĆ© en face du tramway au centre-ville. SituĆ© en face du tramway au centre-ville. Navette gratuite pour l'aĆ©roport.", + "Category": "Extended-Stay", + "Tags": [ + "laundry service", + "view", + "24-hour front desk service" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2024-01-19T00:00:00Z", + "Rating": 4, + "Address": { + "StreetAddress": "11025 NE 8th St", + "City": "Bellevue", + "StateProvince": "WA", + "PostalCode": "98004", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.193008, + 47.61702 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "bathroom shower", + "tv" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 70.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 125.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 267.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 242.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 159.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 125.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "coffee maker", + "coffee maker" + ] + } + ], + "embedding": [ + -0.030262375250458717, + -0.0650421753525734, + 0.04061298444867134, + 0.03120533376932144, + -0.043112918734550476, + -0.06293696910142899, + -0.020317457616329193, + 0.04583214595913887, + 0.036073628813028336, + 0.006134709808975458, + -0.004681896418333054, + 0.010772747918963432, + -0.00846469309180975, + -0.013135625049471855, + -0.026731764897704124, + 0.039670027792453766, + -0.015438197180628777, + -0.02149067260324955, + -0.001358243403956294, + 0.009857201017439365, + 0.016721058636903763, + -0.017806556075811386, + 0.010619242675602436, + -0.0378718264400959, + -0.024516910314559937, + 0.030854465439915657, + -0.039077937602996826, + -0.014714531600475311, + -0.007203761022537947, + -0.0004848421667702496, + -0.0028151683509349823, + -0.021391989663243294, + 0.027652792632579803, + -0.016940351575613022, + -0.0209643691778183, + -0.016775881871581078, + 0.012620287947356701, + -0.028508033603429794, + 0.017017103731632233, + -0.012982120737433434, + -0.026665976271033287, + 0.07302442938089371, + 0.012751863338053226, + -0.02293800376355648, + -0.03238951414823532, + 0.031731635332107544, + -0.004292652010917664, + 0.04300327226519585, + -0.013387811370193958, + 0.007949355989694595, + -0.009873648174107075, + -0.025701088830828667, + -0.0083934236317873, + -0.0478057824075222, + -0.03605169802904129, + 0.08241014927625656, + -0.049340829253196716, + -0.07460333406925201, + 0.03267459198832512, + 0.012872474268078804, + 0.0703929141163826, + -0.006458166055381298, + -0.016326332464814186, + 0.11526017636060715, + -0.0494285449385643, + 0.01764208823442459, + 0.006737764459103346, + 0.0030426844023168087, + -0.0031687775626778603, + -0.03609555587172508, + 0.05653362348675728, + 0.05999844893813133, + 0.015514949336647987, + -0.04578828811645508, + -0.0067213173024356365, + 0.0035360928159207106, + -0.013069837354123592, + 0.024144113063812256, + -0.012861509807407856, + -0.04423131048679352, + -0.036775365471839905, + -0.060524750500917435, + -0.034297358244657516, + 0.04409973695874214, + -0.025328291580080986, + -0.046446166932582855, + -0.04706018790602684, + -0.01596449874341488, + -0.0007606711005792022, + 0.031249191612005234, + 0.016019321978092194, + 0.013837361708283424, + -0.0416436605155468, + -0.022630993276834488, + -0.03146848455071449, + 0.02616160362958908, + 0.019220994785428047, + -0.0059208995662629604, + -0.003936301451176405, + 0.050700441002845764, + 0.053595103323459625, + -0.06863857805728912, + 0.01052056159824133, + 0.021589353680610657, + 0.014593920670449734, + -0.04181909188628197, + 0.05754237249493599, + 0.0173350777477026, + 0.008985512889921665, + -0.022367842495441437, + -0.06789298355579376, + 0.013179483823478222, + -0.04352957382798195, + 0.033858772367239, + -0.008387940935790539, + -0.043112918734550476, + -0.0025958758778870106, + -0.043178707361221313, + -0.025350220501422882, + -0.03754288703203201, + 0.0025287175085395575, + 0.040700700134038925, + -0.00596475787460804, + -0.014868036843836308, + -0.005465867463499308, + -0.0693403109908104, + 0.003130401484668255, + -0.02778436802327633, + -0.028179096058011055, + 0.02342044748365879, + -0.034143853932619095, + 0.008705914951860905, + -0.018990736454725266, + 0.00037142678047530353, + -0.012181702069938183, + 0.011907586827874184, + -0.027696652337908745, + -0.02756507694721222, + -0.015843888744711876, + -0.04230153560638428, + 0.009402168914675713, + 0.0044708275236189365, + 0.03263073414564133, + -0.05605117976665497, + -0.08157683908939362, + 0.014900930225849152, + 0.04168751835823059, + 0.041994526982307434, + 0.016589483246207237, + 0.052893366664648056, + -0.02078893594443798, + -0.007834226824343204, + -0.005986687261611223, + 0.028332600370049477, + -0.004199452698230743, + -0.019769225269556046, + 0.009659837931394577, + -0.005794806405901909, + -0.013936042785644531, + -0.012971155345439911, + -0.03620520234107971, + -0.018793374300003052, + -0.035328034311532974, + -0.0021435848902910948, + 0.02493356540799141, + -0.0022641958203166723, + -0.024582697078585625, + 0.03131498023867607, + -0.052849508821964264, + -0.033288612961769104, + 0.030854465439915657, + -0.015153116546571255, + -0.014023760333657265, + 0.06267381459474564, + 0.052147772163152695, + 0.028464175760746002, + 0.040218256413936615, + 0.019242923706769943, + 0.020953405648469925, + 0.02912205271422863, + -0.007324371952563524, + -0.07315599918365479, + 0.02949485182762146, + 0.001955815590918064, + 0.0024643002543598413, + 0.04894610121846199, + -0.05394597351551056, + 0.04076648876070976, + -0.02611774578690529, + 0.04388044402003288, + -0.027959803119301796, + 0.026095816865563393, + -0.04065684229135513, + 0.025394080206751823, + -0.007192796561866999, + 0.0730682834982872, + -0.027872085571289062, + -0.012729933485388756, + 0.020832793787121773, + -0.028946619480848312, + 0.01396893709897995, + -0.013431670144200325, + 0.023025719448924065, + 0.0111510269343853, + -0.03453858196735382, + -0.03298160433769226, + 0.015065399929881096, + 0.008996477350592613, + 0.03282809630036354, + 0.015317586250603199, + -0.001241744146682322, + 0.03372719883918762, + -0.014681637287139893, + 0.057410795241594315, + -0.017718840390443802, + -0.03434121608734131, + 0.019078454002738, + -0.0023601362481713295, + -0.011512859724462032, + 0.058858126401901245, + 0.0467531755566597, + -0.010060046799480915, + 0.02964835613965988, + 0.011019451543688774, + 0.008535963483154774, + 0.03311317786574364, + -0.013025978580117226, + -0.03265266492962837, + -0.012236525304615498, + -0.02545986697077751, + 0.0186727624386549, + -0.03872706741094589, + -0.04815664887428284, + -0.020054304972290993, + -0.028705397620797157, + 0.06087561696767807, + 0.019166171550750732, + -0.0006167603423818946, + -0.010981075465679169, + -0.012017233297228813, + -0.055261727422475815, + -0.018387682735919952, + 0.014418486505746841, + 0.02486777864396572, + 0.028661539778113365, + -0.01985694281756878, + -0.005509725771844387, + 0.014484274201095104, + 0.052454784512519836, + 0.0314246267080307, + -0.06109490990638733, + -0.009369275532662868, + 0.03249916061758995, + -0.003969195764511824, + 0.036512214690446854, + -0.0018776926444843411, + -0.011090721935033798, + 0.018552152439951897, + 0.046709317713975906, + -0.008201542310416698, + 0.07798043638467789, + -0.015186010859906673, + 0.009873648174107075, + -0.03565697371959686, + 0.006622635759413242, + -0.037520959973335266, + -0.013398775830864906, + -0.0017392642330378294, + -0.018628904595971107, + -0.008908760733902454, + -0.10087458044290543, + -0.015218904241919518, + -0.0017940873512998223, + -0.017587264999747276, + 0.0133000947535038, + -0.05043729022145271, + -0.009988776408135891, + -0.003319541225209832, + 0.000004711363999376772, + 0.012631252408027649, + -0.05271793529391289, + 0.03552539646625519, + 0.05227934941649437, + -0.04142436757683754, + 0.0031441072933375835, + 0.010323197580873966, + 0.005446679424494505, + 0.024166041985154152, + -0.05473542585968971, + -0.01052056159824133, + 0.02200600877404213, + -0.008415352553129196, + -0.022609064355492592, + -0.07947162538766861, + 0.010789194144308567, + 0.0403059758245945, + 0.037477102130651474, + -0.05820024758577347, + -0.002623287495225668, + -0.023069579154253006, + 0.030547454953193665, + 0.03153427317738533, + -0.03214829042553902, + 0.0023971418850123882, + 0.027367712929844856, + 0.04815664887428284, + -0.010125834494829178, + -0.0038239143323153257, + 0.004065135959535837, + -0.02133716642856598, + -0.002979637822136283, + -0.004004830494523048, + -0.011589612811803818, + -0.03721395134925842, + -0.009933953173458576, + 0.045700572431087494, + -0.02515285834670067, + 0.01192951574921608, + 0.010043599642813206, + -0.014056653715670109, + 0.039363015443086624, + 0.015186010859906673, + 0.009665319696068764, + -0.020580608397722244, + -0.020646395161747932, + 0.0022532311268150806, + -0.005134187173098326, + -0.013990866020321846, + -0.05043729022145271, + -0.014879001304507256, + 0.03179742395877838, + -0.005745465401560068, + 0.02320115454494953, + -0.014166300185024738, + -0.00587155856192112, + -0.010685030370950699, + -0.03894636034965515, + -0.0063156262040138245, + -0.019067488610744476, + 0.018979772925376892, + 0.0030509079806506634, + -0.02326694130897522, + -0.03993317857384682, + -0.004747684113681316, + 0.01426498219370842, + -0.022247230634093285, + 0.03445086255669594, + 0.018990736454725266, + 0.030657101422548294, + 0.04409973695874214, + -0.034253500401973724, + -0.00781778059899807, + -0.019144240766763687, + -0.021885398775339127, + -0.010712441988289356, + -0.0031029898673295975, + 0.025876523926854134, + 0.009248664602637291, + -0.008990995585918427, + 0.010054564103484154, + -0.011896622367203236, + 0.02241170033812523, + -0.004180264659225941, + 0.05179690569639206, + -0.030657101422548294, + 0.00293577928096056, + -0.04254275932908058, + 0.024670414626598358, + -0.03958230838179588, + 0.009670802392065525, + 0.04464796930551529, + 0.00942958053201437, + 0.02226916141808033, + 0.02756507694721222, + -0.003333247033879161, + -0.009533744305372238, + 0.03131498023867607, + 0.009122570976614952, + -0.015218904241919518, + -0.003330505918711424, + 0.03208250179886818, + -0.01945125125348568, + -0.009248664602637291, + -0.026337038725614548, + 0.047630347311496735, + 0.04190681129693985, + -0.01002167072147131, + -0.03662186115980148, + -0.0558757483959198, + 0.02456076815724373, + 0.0002761715732049197, + -0.0016556589398533106, + 0.01829996518790722, + -0.004015795420855284, + 0.006825481541454792, + 0.006436237134039402, + 0.020174916833639145, + 0.016348261386156082, + -0.01509829331189394, + -0.010931734926998615, + 0.04348571598529816, + -0.02745543047785759, + 0.026315107941627502, + -0.05776166543364525, + -0.029078194871544838, + -0.023354658856987953, + -0.000029617345717269927, + -0.07429632544517517, + -0.03850777447223663, + 0.02686334028840065, + 0.010432844050228596, + -0.023946749046444893, + 0.005866076331585646, + -0.03331054002046585, + -0.005093070212751627, + -0.007916461676359177, + 0.03350790590047836, + -0.035218387842178345, + 0.010942699387669563, + 0.04723561927676201, + 0.042696263641119, + -0.009462474845349789, + -0.004010312724858522, + 0.03179742395877838, + -0.0057728770188987255, + 0.008239918388426304, + 0.04368308186531067, + -0.011688293889164925, + -0.0057893237099051476, + -0.034516651183366776, + -0.03583240509033203, + -0.01792716793715954, + 0.012718969024717808, + 0.028924690559506416, + -0.010712441988289356, + 0.009917506948113441, + -0.027367712929844856, + 0.023508163169026375, + -0.026929127052426338, + 0.019407393410801888, + -0.010887876152992249, + -0.07701554894447327, + -0.04153401404619217, + -0.004443415906280279, + -0.04149015620350838, + 0.01030126865953207, + -0.039516519755125046, + 0.034407004714012146, + -0.00007919374183984473, + 0.03035009279847145, + -0.01745568960905075, + -0.0076642753556370735, + -0.006003133952617645, + -0.0024848589673638344, + -0.020273597911000252, + -0.021874433383345604, + -0.008552410639822483, + -0.039779674261808395, + 0.040744561702013016, + 0.012499677017331123, + -0.004185746889561415, + 0.007313407491892576, + -0.007088632322847843, + 0.01181986927986145, + 0.04530584439635277, + -0.0010567160788923502, + -0.04688475281000137, + 0.016425013542175293, + -0.005959275644272566, + -0.06324397772550583, + 0.0018804337596520782, + -0.005402820650488138, + 0.07122622430324554, + -0.0028398388531059027, + 0.028946619480848312, + -0.01918810047209263, + 0.029078194871544838, + 0.03831041231751442, + -0.026293179020285606, + -0.002208002144470811, + -0.02063543163239956, + -0.010405432432889938, + -0.029056265950202942, + 0.018431540578603745, + -0.021391989663243294, + -0.022872215136885643, + -0.03550346568226814, + 0.03407806530594826, + -0.054121408611536026, + -0.011501895263791084, + -0.02097533456981182, + 0.0018256106413900852, + -0.0015281951054930687, + -0.008662056177854538, + 0.003138624830171466, + 0.016128968447446823, + -0.055086296051740646, + 0.0015227127587422729, + 0.025766877457499504, + -0.01871662028133869, + -0.012729933485388756, + -0.021501636132597923, + -0.012587393634021282, + 0.01715964451432228, + 0.037630606442689896, + 0.052367065101861954, + 0.00827829446643591, + -0.03730166703462601, + 0.027850156649947166, + -0.03442893549799919, + 0.00015367612650152296, + 0.006891269236803055, + 0.0013356287963688374, + 0.04278397932648659, + -0.005361703224480152, + 0.033332470804452896, + -0.01058086659759283, + 0.004218640737235546, + -0.013354917988181114, + -0.012587393634021282, + -0.009944918565452099, + 0.03155620023608208, + 0.00008703173807589337, + 0.020065270364284515, + 0.004013054072856903, + 0.01686359941959381, + -0.01474742591381073, + -0.04184102267026901, + 0.00291385012678802, + -0.011644436046481133, + 0.0009450139477849007, + -0.018870126456022263, + -0.011556718498468399, + 0.00213536131195724, + -0.003311317879706621, + 0.052893366664648056, + 0.0007826003711670637, + -0.0017132231732830405, + 0.06947188824415207, + -0.02868346869945526, + 0.04991098865866661, + 0.005353480111807585, + 0.0083934236317873, + -0.023508163169026375, + -0.013234307058155537, + -0.029955364763736725, + -0.050700441002845764, + -0.029801860451698303, + -0.009544708766043186, + 0.011140062473714352, + 0.013979901559650898, + 0.030108870938420296, + -0.0040349834598600864, + -0.0005735871382057667, + 0.02241170033812523, + 0.0005657062865793705, + 0.029538709670305252, + 0.004257017280906439, + 0.0681999921798706, + -0.0020462737884372473, + -0.000745594734326005, + 0.02192925661802292, + 0.021512601524591446, + 0.016951315104961395, + 0.018848195672035217, + 0.019286781549453735, + 0.022872215136885643, + 0.009511815384030342, + -0.010071011260151863, + -0.018760479986667633, + -0.024407263845205307, + 0.001369893318042159, + -0.008387940935790539, + -0.021391989663243294, + -0.005284951068460941, + -0.01048766728490591, + 0.005090328864753246, + -0.007631381507962942, + -0.008305706083774567, + -0.010476702824234962, + 0.028508033603429794, + -0.007357265800237656, + 0.028551893308758736, + 0.02197311632335186, + -0.0314246267080307, + -0.0006051104282960296, + 0.00022408959921449423, + -0.01241195946931839, + -0.008409869857132435, + 0.05346352979540825, + -0.015339515171945095, + 0.011611541733145714, + 0.02293800376355648, + -0.009106123819947243, + 0.0024355181958526373, + -0.018771443516016006, + -0.003763608867302537, + 0.0023861771915107965, + -0.013475528918206692, + -0.00911708828061819, + -0.03041587956249714, + -0.011578647419810295, + 0.0014829660067334771, + -0.03206057474017143, + -0.030262375250458717, + 0.0006743246340192854, + -0.02348623424768448, + -0.0027932391967624426, + -0.030657101422548294, + -0.0204161386936903, + 0.016501765698194504, + -0.012510641478002071, + 0.022959932684898376, + 0.013102731667459011, + -0.018398646265268326, + -0.004010312724858522, + 0.00008309132681461051, + -0.015109258703887463, + 0.009051300585269928, + -0.012104949913918972, + 0.0019366275519132614, + -0.006523954216390848, + 0.031183402985334396, + 0.053814396262168884, + 0.009939435869455338, + 0.024538839235901833, + 0.002373842056840658, + -0.052410926669836044, + -0.018979772925376892, + -0.030547454953193665, + 0.02556951344013214, + 0.043332211673259735, + 0.04405587911605835, + -0.03793761506676674, + 0.003092025173828006, + 0.013453599065542221, + 0.032850027084350586, + 0.036841150373220444, + 0.02078893594443798, + 0.00504647009074688, + -0.02130427397787571, + 0.025130929425358772, + -0.004786060191690922, + -0.021139804273843765, + 0.003925336990505457, + 0.04227960854768753, + 0.0066500473767519, + 0.02223626710474491, + 0.02945099212229252, + 0.00012857740512117743, + -0.03289388492703438, + -0.025021282956004143, + 0.007307924795895815, + -0.010229998268187046, + 0.018431540578603745, + -0.002927555935457349, + -0.010854982770979404, + 0.019133277237415314, + 0.012718969024717808, + 0.05473542585968971, + 0.006408825516700745, + 0.024911636486649513, + -0.006518471520394087, + 0.006046992726624012, + -0.0059428284876048565, + 0.020174916833639145, + 0.04142436757683754, + 0.019878871738910675, + -0.024473050609230995, + 0.0169293861836195, + 0.0360078401863575, + 0.018365753814578056, + 0.033288612961769104, + 0.01367289200425148, + 0.04390237480401993, + 0.0038485846016556025, + -0.021764786913990974, + -0.025174787268042564, + -0.0025341997388750315, + 0.008048037067055702, + 0.018541187047958374, + -0.014571991749107838, + -0.06583163142204285, + 0.02200600877404213, + 0.01990080066025257, + -0.007209243252873421, + -0.005515208002179861, + -0.0008990995702333748, + 0.04427517205476761, + -0.025701088830828667, + -0.042740121483802795, + -0.0091335354372859, + -0.003261977108195424, + 0.017554370686411858, + -0.017554370686411858, + -0.042148031294345856, + 0.01541626825928688, + 0.025108998641371727, + 0.021238485351204872, + -0.006085368804633617, + 0.005580996163189411, + 0.025328291580080986, + 0.0362490639090538, + -0.04508655145764351, + 0.00486281281337142, + -0.019878871738910675, + 0.01901266537606716, + -0.00989557709544897, + 0.029034337028861046, + -0.011403214186429977, + -0.004934082739055157, + -0.02778436802327633, + -0.033178966492414474, + -0.02627125009894371, + 0.005032764747738838, + 0.00906226597726345, + -0.0249774232506752, + 0.01990080066025257, + -0.010794676840305328, + -0.01633729599416256, + 0.02289414405822754, + -0.005663230549544096, + -0.009188358671963215, + -0.023705527186393738, + -0.016545625403523445, + -0.016435978934168816, + 0.0007887679967097938, + -0.010202586650848389, + -0.009873648174107075, + 0.02359588071703911, + 0.012927297502756119, + 0.0335736945271492, + 0.002974155591800809, + -0.024056395515799522, + 0.0236397385597229, + -0.0007154420018196106, + -0.03515259921550751, + 0.030437808483839035, + -0.027652792632579803, + -0.02771858125925064, + -0.023837102577090263, + -0.022806428372859955, + 0.015558808110654354, + -0.028880832716822624, + 0.00893068965524435, + -0.006858375389128923, + 0.008535963483154774, + 0.020350350067019463, + -0.04732333868741989, + -0.03971388563513756, + -0.02407832443714142, + 0.00506565859541297, + -0.014681637287139893, + 0.0072750309482216835, + -0.024407263845205307, + -0.06951574236154556, + -0.005619372241199017, + 0.008810078725218773, + 0.014199194498360157, + 0.05061272531747818, + -0.006414307747036219, + 0.019977552816271782, + 0.03824462369084358, + 0.01281765103340149, + 0.021764786913990974, + -0.027740510180592537, + 0.014889965765178204, + 0.03934108838438988, + -0.03852970525622368, + -0.01904555968940258, + -0.006266285199671984, + -0.003327764803543687, + 0.03745517134666443, + -0.001003948855213821, + 0.061007194221019745, + -0.03745517134666443, + -0.03659993037581444, + 0.005452161654829979, + 0.008941655047237873, + -0.00125065294560045, + 0.007532699964940548, + -0.002823391929268837, + 0.027258066460490227, + -0.044516392052173615, + -0.01770787499845028, + 0.023508163169026375, + -0.007083150092512369, + -0.007795850746333599, + 0.0008538704714737833, + 0.016732024028897285, + -0.0008524998556822538, + -0.016359226778149605, + 0.018508292734622955, + -0.03627099096775055, + -0.022323984652757645, + 0.02960449643433094, + -0.004821695387363434, + -0.01889205537736416, + 0.023837102577090263, + -0.02052578516304493, + -0.0028425799682736397, + 0.020470961928367615, + 0.024407263845205307, + -0.016907457262277603, + 0.004890224430710077, + -0.03260880708694458, + -0.0429813452064991, + -0.010454772971570492, + 0.0015761653194203973, + -0.00582770025357604, + -0.024166041985154152, + 0.044077806174755096, + 0.011918551288545132, + 0.0005588534404523671, + 0.01645790785551071, + 0.0035881747025996447, + 0.004764131270349026, + -0.026578260585665703, + -0.007516252808272839, + -0.006946092005819082, + -0.007861638441681862, + -0.017499547451734543, + 0.019626684486865997, + -0.00587155856192112, + -0.01789427362382412, + -0.010383503511548042, + 0.003174260025843978, + 0.0024231828283518553, + -0.0050409878604114056, + -0.05565645545721054, + -0.01259835809469223, + 0.0057838414795696735, + -0.005457643885165453, + 0.016534660011529922, + 0.012104949913918972, + -0.023990606889128685, + 0.007159902714192867, + 0.0022025196813046932, + -0.013815431855618954, + 0.035481538623571396, + 0.012126878835260868, + 0.029253629967570305, + -0.018288999795913696, + -0.006403343286365271, + -0.04149015620350838, + 0.04276205226778984, + 0.01098655816167593, + 0.02078893594443798, + -0.006507507059723139, + -0.010657618753612041, + -0.011271637864410877, + 0.007598487660288811, + 0.017400866374373436, + 0.015350479632616043, + 0.006195015273988247, + 0.03782796859741211, + -0.015734242275357246, + 0.005254798103123903, + 0.027060704305768013, + -0.029999224469065666, + -0.00654040090739727, + -0.00017766124801710248, + -0.007291478104889393, + -0.029538709670305252, + -0.025065140798687935, + 0.009029371663928032, + 0.010679548606276512, + -0.025108998641371727, + 0.012543534860014915, + 0.02664404734969139, + -0.027104562148451805, + 0.008113824762403965, + -0.012280384078621864, + -0.0040349834598600864, + 0.02471427246928215, + 0.03181935101747513, + 0.0007216096273623407, + 0.0633755549788475, + 0.010032635182142258, + -0.0008264588541351259, + 0.017126750200986862, + 0.01560266688466072, + 0.05618275701999664, + 0.021095944568514824, + -0.0330473892390728, + 0.004668190609663725, + -0.012609322555363178, + 0.051182884722948074, + 0.013047908432781696, + -0.021764786913990974, + 0.004947788547724485, + 0.027214208617806435, + 0.06973503530025482, + -0.0057673947885632515, + -0.02189636416733265, + 0.010569902136921883, + -0.019758259877562523, + 0.031117616221308708, + 0.018837232142686844, + 0.010197104886174202, + 0.024319546297192574, + -0.004775095731019974, + 0.027279995381832123, + 0.004736719653010368, + 0.025372151285409927, + -0.0015514949336647987, + -0.00894713681191206, + -0.008546927943825722, + -0.02407832443714142, + 0.0006904289475642145, + 0.04754262790083885, + -0.04508655145764351, + -0.03067903034389019, + 0.016655270010232925, + -0.016764916479587555, + 0.032586876302957535, + -0.01856311596930027, + 0.0005992854712530971, + 0.006896751467138529, + -0.011183921247720718, + -0.005909934639930725, + 0.05175304785370827, + -0.019330639392137527, + 0.019538968801498413, + -0.026073886081576347, + -0.026907198131084442, + -0.02960449643433094, + 0.028113307431340218, + -0.0020202328450977802, + -0.016841668635606766, + 0.004920376930385828, + 0.02149067260324955, + -0.014999612234532833, + -0.023508163169026375, + 0.05280565097928047, + 0.02315729483962059, + 0.03420964255928993, + -0.018957842141389847, + 0.016995174810290337, + -0.010920770466327667, + -0.03105182759463787, + 0.02197311632335186, + -0.002756233559921384, + -0.0025986169930547476, + 0.010240962728857994, + -0.04352957382798195, + -0.0033880702685564756, + -0.0017269289819523692, + 0.03203864395618439, + -0.01165540050715208, + 0.0025986169930547476, + 0.03072289004921913, + 0.02627125009894371, + -0.01098655816167593, + -0.031029898673295975, + -0.03754288703203201, + -0.02379324473440647, + -0.018694691359996796, + -0.006600706372410059, + 0.017203502357006073, + 0.023617809638381004, + 0.005079364404082298, + 0.012214596383273602, + -0.03420964255928993, + 0.029889577999711037, + -0.008892313577234745, + -0.014517168514430523, + 0.020427102223038673, + 0.0052301278337836266, + 0.00028508034301921725, + -0.012773792259395123, + 0.02789401449263096, + -0.008919725194573402, + -0.013903149403631687, + -0.003031719708815217, + 0.03337632864713669, + 0.009478921070694923, + 0.04028404504060745, + 0.04170944541692734, + -0.024999354034662247, + 0.040634915232658386, + 0.05929671227931976, + 0.009862683713436127, + -0.014966717921197414, + -0.03155620023608208, + 0.016797810792922974, + -0.02456076815724373, + 0.04230153560638428, + 0.03576662018895149, + -0.004199452698230743, + 0.023683598265051842, + 0.016238614916801453, + -0.03469208627939224, + -0.03208250179886818, + -0.016282472759485245, + 0.014023760333657265, + 0.012499677017331123, + 0.050261858850717545, + 0.02331080101430416, + 0.03622713312506676, + -0.021315237507224083, + 0.02837645821273327, + -0.02515285834670067, + -0.0030097905546426773, + 0.005068399477750063, + -0.01076178252696991, + 0.0007421682821586728, + 0.0015158598544076085, + 0.013091766275465488, + 0.0057619125582277775, + 0.02149067260324955, + 0.012400995008647442, + -0.0030563902109861374, + 0.01719253696501255, + -0.06398957222700119, + -0.008925207890570164, + 0.00896906666457653, + -0.00046119969920255244, + -0.005476831924170256, + 0.053156521171331406, + 0.01715964451432228, + 0.019988518208265305, + 0.014297875575721264, + 0.02670983597636223, + 0.025591442361474037, + -0.03267459198832512, + 0.0435076467692852, + -0.0181245319545269, + 0.058375682681798935, + 0.013508422300219536, + 0.012280384078621864, + -0.009418616071343422, + 0.013365882448852062, + -0.011688293889164925, + -0.008936172351241112, + -0.006584259681403637, + 0.0046051437966525555, + -0.006123744882643223, + 0.01967054419219494, + 0.016545625403523445, + -0.02163321152329445, + 0.0019311452051624656, + 0.024034466594457626, + -0.005128704942762852, + -0.04710404574871063, + -0.016962280496954918, + -0.00417752331122756, + 0.012664145790040493, + 0.028442246839404106, + -0.015613631345331669, + 0.0042762053199112415, + -0.014868036843836308, + -0.03804726153612137, + -0.012806686572730541, + 0.001784493331797421, + 0.006644565146416426, + -0.018102601170539856, + -0.021282345056533813, + 0.02530636265873909, + -0.008311188779771328, + 0.04146822541952133, + -0.003467563772574067, + 0.011512859724462032, + -0.00447356840595603, + -0.015339515171945095, + -0.007335336413234472, + -0.03149041160941124, + -0.018990736454725266, + 0.017093855887651443, + -0.008338600397109985, + 0.02760893478989601, + 0.031293049454689026, + -0.0017159644048660994, + -0.016326332464814186, + 0.025832664221525192, + -0.010049082338809967, + -0.0208218302577734, + 0.006518471520394087, + 0.006063439417630434, + 0.006282732356339693, + 0.006907715927809477, + -0.01013131719082594, + -0.0003782796848099679, + -0.006227909121662378, + -0.007768439594656229, + 0.04999870806932449, + 0.028135236352682114, + -0.021611282601952553, + 0.018508292734622955, + 0.006145674269646406, + 0.020613502711057663, + -0.00023025719565339386, + -0.011852763593196869, + -0.009588567540049553, + 0.02778436802327633, + -0.01048766728490591, + 0.0007387418299913406, + 0.02837645821273327, + -0.010416396893560886, + 0.02993343584239483, + 0.0186727624386549, + 0.020372280851006508, + -0.0340999960899353, + 0.012269419617950916, + 0.0012609323021024466, + -0.010564419440925121, + 0.010471220128238201, + -0.014780319295823574, + -0.012269419617950916, + -0.0032921298407018185, + 0.005397338420152664, + -0.013925078324973583, + -0.010542490519583225, + 0.03035009279847145, + 0.007686204742640257, + 0.05977915599942207, + 0.023464305326342583, + -0.0019571862649172544, + -0.008053519763052464, + 0.006863857619464397, + 0.052849508821964264, + -0.010103905573487282, + 0.013771574012935162, + -0.00442696874961257, + -0.006255320739001036, + 0.0057619125582277775, + -0.02701684460043907, + -0.0029083676636219025, + 0.009018407203257084, + 0.0451304130256176, + 0.02267485111951828, + -0.014988647773861885, + -0.036073628813028336, + -0.02078893594443798, + 0.008804596960544586, + -0.013552281074225903, + 0.014626814983785152, + 0.02052578516304493, + -0.01319044828414917, + 0.0429813452064991, + 0.022389771416783333, + 0.004742201883345842, + -0.0029604497831314802, + 0.007220208179205656, + 0.020876653492450714, + 0.02515285834670067, + 0.0028480621986091137, + 0.05578802898526192, + 0.02649054303765297, + -0.0271264910697937, + -0.02379324473440647, + 0.014385593123733997, + 0.01752147637307644, + 0.024845847859978676, + -0.006578776985406876, + -0.0009340493124909699, + 0.027323855087161064, + -0.024626556783914566, + 0.016282472759485245, + 0.026731764897704124, + 0.013749644160270691, + 0.004361181054264307, + 0.028222953900694847, + 0.02271871082484722, + -0.038551636040210724, + 0.005213680677115917, + -0.05929671227931976, + 0.0009820195846259594, + 0.022916072979569435, + -0.00390066672116518, + -0.01002167072147131, + -0.016907457262277603, + 0.017466653138399124, + 0.019473180174827576, + -0.01912231184542179, + 0.031073758378624916, + -0.011425143107771873, + -0.005986687261611223, + 0.03883671388030052, + -0.012170737609267235, + -0.010569902136921883, + 0.028442246839404106, + -0.006249838508665562, + -0.02475813217461109, + -0.0373455248773098, + 0.03008694015443325, + 0.014791283756494522, + -0.02934134565293789, + -0.009659837931394577, + -0.03809111937880516, + -0.020909545943140984, + 0.03431928902864456, + 0.04920925199985504, + -0.04335414245724678, + -0.006666494067758322, + 0.04039369150996208, + -0.0035909158177673817, + 0.0007565593696199358, + 0.016435978934168816, + 0.0011183921014890075, + 0.00029433175222948194, + 0.023135365918278694, + 0.00697350362315774, + -0.0034346699248999357, + -0.01413340587168932, + 0.0047942837700247765, + -0.021359097212553024, + -0.008914243429899216, + 0.005657748319208622, + -0.006436237134039402, + 0.028946619480848312, + 0.01930871047079563, + -0.025613373145461082, + -0.010558937676250935, + 0.025021282956004143, + -0.024407263845205307, + 0.004506462253630161, + 0.009692731313407421, + -0.0007812298135831952, + 0.007719098590314388, + -0.026885269209742546, + 0.014089548029005527, + 0.04219188913702965, + 0.011085239239037037, + 0.022477488964796066, + 0.003678632900118828, + -0.011403214186429977, + 0.012609322555363178, + 0.03166584670543671, + 0.03552539646625519, + -0.0038431023713201284, + -0.0046462612226605415, + -0.027477359399199486, + -0.022499417886137962, + 0.00848662294447422, + -0.02438533492386341, + 0.004122700542211533, + -0.02060253731906414, + -0.02664404734969139, + 0.017400866374373436, + 0.0019366275519132614, + 0.015569772571325302, + 0.017620157450437546, + -0.01615089736878872, + 0.001195829827338457, + -0.0008360529318451881, + -0.033551763743162155, + -0.011183921247720718, + -0.020810864865779877, + -0.020098164677619934, + 0.019835013896226883, + -0.018508292734622955, + 0.002732933731749654, + -0.007242137100547552, + -0.0279378741979599, + 0.017653051763772964, + 0.03243337199091911, + -0.044033948332071304, + -0.05938442796468735, + 0.019023630768060684, + 0.015054435469210148, + 0.006792587228119373, + -0.03089832328259945, + 0.01834382303059101, + -0.0035525397397577763, + -0.011622506193816662, + 0.02541600912809372, + 0.02460462599992752, + 0.023069579154253006, + 0.006907715927809477, + 0.00874429102987051, + 0.006299179047346115, + -0.012718969024717808, + 0.014517168514430523, + -0.0051780459471046925, + -0.01078371237963438, + -0.013519386760890484, + 0.03646835312247276, + 0.026665976271033287, + 0.01782848685979843, + -0.0031687775626778603, + -0.03184128180146217, + 0.0034565990790724754, + -0.04056912660598755, + 0.005487796850502491, + 0.010136798955500126, + 0.02789401449263096, + 0.018870126456022263, + 0.011425143107771873, + 0.02071218378841877, + -0.0021435848902910948, + 0.0040925475768744946, + 0.01281765103340149, + -0.038113050162792206, + 0.0040761008858680725, + 0.02300379052758217, + -0.038990218192338943, + -0.0378718264400959, + 0.0015720536466687918, + -0.01319044828414917, + -0.03469208627939224, + 0.017916202545166016, + 0.007779404055327177, + 0.0002237469598185271, + -0.0050300233997404575, + 0.010498631745576859, + 0.00894713681191206, + 0.011392248794436455, + -0.01385929062962532, + -0.03835427016019821, + -0.010246445424854755, + 0.0032756829168647528, + -0.006195015273988247, + 0.008936172351241112, + -0.017609193921089172, + -0.00022511753195431083, + 0.0006726114079356194, + 0.0019229217432439327, + 0.02627125009894371, + -0.015295657329261303, + -0.00587155856192112, + -0.012280384078621864, + 0.018617939203977585, + -0.0018489104695618153, + -0.001079330686479807, + -0.0006095648277550936, + -0.03094218112528324, + -0.015723276883363724, + -0.0040870653465390205, + -0.011534789577126503, + 0.004986165091395378, + 0.02741157077252865, + 0.06043703481554985, + -0.0007524476386606693, + 0.0029878614004701376, + -0.017170608043670654, + -0.016052216291427612, + 0.008990995585918427, + -0.014407522045075893, + -0.004232346545904875, + 0.049823272973299026, + -0.03526224568486214, + -0.03528417646884918, + -0.0063101439736783504, + 0.019911766052246094, + -0.01404568925499916, + -0.022214338183403015, + -0.020065270364284515, + 0.010295785963535309, + 0.009358310140669346, + -0.021841540932655334, + -0.02664404734969139, + 0.007998696528375149, + 0.0018009402556344867, + 0.03482365980744362, + 0.02896854840219021, + 0.018913984298706055, + 0.0009381610434502363, + -0.016885528340935707, + -0.017696911469101906, + 0.02938520535826683, + 0.055744171142578125, + 0.0010896099265664816, + 0.000004189366336504463, + 0.04320063814520836, + 0.011211332865059376, + -0.03872706741094589, + -0.010345127433538437, + 0.015920640900731087, + -0.005701607093214989, + 0.01823417656123638, + -0.01982404850423336, + 0.04754262790083885, + 0.03434121608734131, + 0.006688423454761505, + -0.026512471958994865, + 0.00944602768868208, + -0.015262763015925884, + 0.006074404343962669, + 0.010778229683637619, + -0.024845847859978676, + -0.04184102267026901, + 0.00023642480664420873, + 0.025240575894713402, + 0.0057893237099051476, + 0.0225652065128088, + -0.0217538233846426, + -0.01901266537606716, + -0.04260854795575142, + -0.003955489955842495, + 0.010202586650848389, + -0.04552513733506203, + 0.03315703570842743, + 0.011249708943068981, + 0.03197285532951355, + 0.008585304021835327, + 0.02852996438741684, + -0.010827571153640747, + 0.015920640900731087, + -0.0021778494119644165, + -0.009731108322739601, + -0.01993369497358799, + -0.0008353676530532539, + 0.036446426063776016, + -0.0021285086404532194, + -0.01600835844874382, + -0.027060704305768013, + 0.004550321027636528, + -0.022313019260764122, + 0.02734578400850296, + 0.023223083466291428, + 0.023442376405000687, + 0.0020449033472687006, + 0.0104109151288867, + 0.03166584670543671, + -0.0051890104077756405, + 0.016578517854213715, + 0.007730063050985336, + 0.013223341666162014, + -0.011852763593196869, + 0.006682941224426031, + -0.03083253651857376, + -0.012927297502756119, + -0.03427542746067047, + -0.02820102497935295, + 0.02486777864396572, + -0.023069579154253006, + 0.010789194144308567, + -0.006107298191636801, + -0.01097011100500822, + -0.007335336413234472, + 0.006145674269646406, + -0.00644720159471035, + 0.02245556004345417, + 0.00754914665594697, + -0.010887876152992249, + -0.0022491193376481533, + -0.0010306751355528831, + 0.019089417532086372, + 0.00896358396857977, + 0.030174657702445984, + -0.021995045244693756, + 0.026095816865563393, + -0.00071681261761114, + -0.00047627606545574963, + 0.00020318827591836452, + 0.010811123996973038, + -0.03298160433769226, + -0.021359097212553024, + 0.019100382924079895, + 0.034143853932619095, + 0.006584259681403637, + -0.0042350878939032555, + -0.029319416731595993, + 0.040108609944581985, + 0.024626556783914566, + 0.0279378741979599, + -0.00846469309180975, + -0.01982404850423336, + -0.012379066087305546, + 0.02186346985399723, + -0.019517038017511368, + -0.005402820650488138, + -0.006085368804633617, + 0.01793813332915306, + -0.016063181683421135, + 0.041292790323495865, + 0.01461584959179163, + 0.020767007023096085, + 0.023573951795697212, + -0.005427491385489702, + -0.03153427317738533, + 0.020613502711057663, + -0.004939564969390631, + -0.01840961165726185, + -0.02252134680747986, + 0.03289388492703438, + 0.006951574701815844, + 0.04706018790602684, + 0.0017776404274627566, + -0.033178966492414474, + -0.010750818066298962, + 0.009100642055273056, + 0.0010902952635660768, + 0.03407806530594826, + 0.024955494329333305, + -0.00867302156984806, + 0.013826396316289902, + -0.009764001704752445, + -0.01359613984823227, + 0.022389771416783333, + 0.0036868564784526825, + 0.03035009279847145, + -0.03890250250697136, + 0.0012342060217633843, + 0.045744430273771286, + 0.013760608620941639, + 0.027104562148451805, + -0.009890095330774784, + 0.014813213609158993, + 0.014407522045075893, + -0.009391204454004765, + 0.006622635759413242, + -0.0007127008866518736, + -0.022872215136885643, + 0.00506565859541297, + -0.015756171196699142, + 0.011732152663171291, + 0.0030591313261538744, + 0.010229998268187046, + -0.028003660961985588, + -0.007521735038608313, + -0.011200368404388428, + -0.047147903591394424, + 0.003522387007251382, + -0.009533744305372238, + -0.02234591357409954, + 0.013914113864302635, + -0.03035009279847145, + -0.0022943485528230667, + -0.03166584670543671, + 0.010142281651496887, + -0.04561285674571991, + 0.033858772367239, + -0.009462474845349789, + -0.0124887116253376, + 0.0016433236887678504, + 0.02108498103916645, + -0.009424097836017609, + 0.02320115454494953, + -0.013420705683529377, + 0.007390159647911787, + -0.02670983597636223, + -0.012400995008647442, + -0.021052086725831032, + -0.022313019260764122 + ] + }, + { + "HotelId": "36", + "HotelName": "Hotel on the Harbor", + "Description": "Stunning Downtown Hotel with indoor Pool. Ideally located close to theatres, museums and the convention center. Indoor Pool and Sauna and fitness centre. Popular Bar & Restaurant", + "Description_fr": "Superbe hĆ“tel du centre-ville avec piscine couverte. IdĆ©alement situĆ© Ć  proximitĆ© des théâtres, des musĆ©es et du Centre des CongrĆØs. Piscine couverte et sauna et centre de fitness. Populaire bar & restaurant", + "Category": "Luxury", + "Tags": [ + "bar", + "pool", + "24-hour front desk service" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2023-10-31T00:00:00Z", + "Rating": 3.5, + "Address": { + "StreetAddress": "6465 N Quail Hollow Rd", + "City": "Memphis", + "StateProvince": "TN", + "PostalCode": "38120", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -89.847656, + 35.104061 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 62.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 94.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 133.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 130.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 136.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + } + ], + "embedding": [ + -0.05364219844341278, + -0.005536556243896484, + 0.037002816796302795, + -0.013361027464270592, + -0.007646192330867052, + -0.008195886388421059, + -0.030347062274813652, + -0.005764357279986143, + 0.018550930544734, + -0.019125385209918022, + -0.003503679297864437, + -0.024899646639823914, + -0.017481256276369095, + -0.028742551803588867, + 0.025454292073845863, + 0.05954521521925926, + -0.04060801491141319, + 0.057643573731184006, + 0.028584081679582596, + 0.05221596360206604, + -0.004967053420841694, + -0.008280073292553425, + -0.0010653414065018296, + -0.02989146113395691, + 0.024325191974639893, + 0.04140036553144455, + -0.008116650395095348, + -0.023116854950785637, + 0.004892770666629076, + 0.016768138855695724, + 0.009206133894622326, + -0.013113417662680149, + -0.020878462120890617, + 0.0263654962182045, + -0.008195886388421059, + 0.028286948800086975, + -0.012004125863313675, + 0.04179654270410538, + 0.043460480868816376, + -0.016886992380023003, + 0.018461789935827255, + 0.03652740642428398, + 0.002112112008035183, + -0.005437512416392565, + 0.004798678681254387, + 0.012251735664904118, + -0.006680513732135296, + 0.019313568249344826, + 0.036151036620140076, + -0.001848407555371523, + -0.04504518210887909, + -0.003005983540788293, + -0.022423548623919487, + -0.045837536454200745, + -0.03385321795940399, + 0.03549734875559807, + -0.021017124876379967, + -0.0438566580414772, + 0.01838255487382412, + -0.0015240386128425598, + 0.04516403749585152, + 0.034586142748594284, + -0.036170847713947296, + 0.060694124549627304, + -0.03359570354223251, + 0.062120359390974045, + -0.01136033982038498, + 0.017897240817546844, + 0.0021764906123280525, + -0.03662645071744919, + 0.07658077776432037, + 0.0455205962061882, + -0.01838255487382412, + -0.005610838998109102, + -0.03133750334382057, + 0.0007818280719220638, + -0.036151036620140076, + -0.011499001644551754, + -0.026860715821385384, + -0.012974755838513374, + -0.031634632498025894, + -0.04575829952955246, + -0.016778042539954185, + 0.08628708124160767, + 0.01892729662358761, + -0.047937266528606415, + -0.014074143953621387, + 0.020957697182893753, + -0.013103513047099113, + 0.08295920491218567, + 0.020858652889728546, + -0.011310817673802376, + 0.00827016867697239, + -0.033496659249067307, + 0.015490472316741943, + -0.028821786865592003, + -0.019145194441080093, + -0.027474788948893547, + 0.0023906731512397528, + 0.057920895516872406, + 0.060456421226263046, + -0.09524065256118774, + 0.05348372831940651, + -0.03892426937818527, + -0.007576861418783665, + -0.03650759533047676, + 0.013985004276037216, + 0.019442325457930565, + 0.016906799748539925, + -0.0010480086784809828, + -0.11401938647031784, + 0.015916360542178154, + -0.07166819274425507, + -0.03224870562553406, + -0.03351647034287453, + 0.0006864983006380498, + 0.0012615722371265292, + -0.024523278698325157, + -0.04714491590857506, + 0.023057429119944572, + 0.03498231992125511, + 0.03720090538263321, + -0.00028506084345281124, + -0.006784509867429733, + -0.013261983171105385, + -0.05110667273402214, + -0.009963820688426495, + -0.0347842313349247, + -0.01011733803898096, + -0.00003367880708537996, + -0.045560210943222046, + -0.015015061013400555, + -0.013519497588276863, + -0.026226835325360298, + 0.016659190878272057, + 0.022522591054439545, + -0.016381867229938507, + 0.012023934163153172, + -0.007007358595728874, + -0.07479798048734665, + 0.04132113233208656, + 0.010260951705276966, + 0.03470499813556671, + 0.011875368654727936, + -0.03244679421186447, + 0.008379117585718632, + 0.008408830501139164, + 0.00282275234349072, + -0.013460071757435799, + 0.03472480550408363, + -0.0040855626575648785, + 0.02721727453172207, + 0.016084736213088036, + -0.0263654962182045, + -0.048095736652612686, + -0.017223741859197617, + -0.020383242517709732, + -0.009453743696212769, + 0.016520529985427856, + 0.036705683916807175, + -0.017471350729465485, + -0.008780245669186115, + -0.037834785878658295, + 0.0012454775860533118, + 0.05296869948506355, + 0.041479602456092834, + -0.024226147681474686, + 0.03997413441538811, + -0.04342086240649223, + 0.04750147461891174, + 0.10054940730333328, + 0.025355247780680656, + 0.02133406512439251, + 0.07828433066606522, + -0.002993603004142642, + 0.03357589617371559, + 0.029673565179109573, + 0.021254830062389374, + -0.022522591054439545, + -0.004404979292303324, + -0.005239424295723438, + -0.016203587874770164, + 0.061407241970300674, + -0.03759707883000374, + -0.013232270255684853, + 0.011508905328810215, + -0.048491913825273514, + 0.015559802763164043, + 0.022007564082741737, + 0.04678835719823837, + -0.004684778396040201, + -0.019897926598787308, + -0.044450920075178146, + -0.005952540785074234, + -0.03325895592570305, + -0.010558083653450012, + -0.00813645962625742, + -0.02135387249290943, + 0.020284198224544525, + 0.0022718203254044056, + -0.026920143514871597, + 0.004588210489600897, + 0.036428362131118774, + -0.02640511468052864, + -0.04785803332924843, + -0.06006024405360222, + -0.012925233691930771, + -0.01059770118445158, + -0.017332689836621284, + -0.017639726400375366, + -0.007794757839292288, + 0.011390052735805511, + 0.017174219712615013, + -0.00027887060423381627, + 0.027336128056049347, + -0.04143998399376869, + -0.008096842095255852, + 0.0018471694784238935, + 0.04100419208407402, + 0.04365856945514679, + 0.00045869723544456065, + 0.03357589617371559, + 0.010429326444864273, + 0.03690377250313759, + -0.012905425392091274, + 0.03581428900361061, + 0.004759061150252819, + -0.036864154040813446, + 0.010161908343434334, + -0.02806905284523964, + -0.031515780836343765, + -0.04758070781826973, + -0.03149597346782684, + 0.02458270639181137, + -0.002512001898139715, + 0.026226835325360298, + -0.02329513430595398, + 0.03288258612155914, + 0.025018498301506042, + 0.0014324230141937733, + -0.03424939513206482, + 0.005100762937217951, + 0.010290665552020073, + 0.013479880057275295, + 0.03456633538007736, + -0.024760985746979713, + 0.009498314000666142, + 0.029118917882442474, + 0.008755484595894814, + 0.008938715793192387, + -0.03860732913017273, + -0.01893720217049122, + -0.0017159362323582172, + -0.03688396140933037, + 0.03032725490629673, + 0.05471187084913254, + -0.024028059095144272, + -0.018164658918976784, + -0.022918768227100372, + -0.06259576976299286, + 0.050472792237997055, + 0.006977645680308342, + 0.01867968775331974, + -0.060416802763938904, + 0.02594951167702675, + -0.014767451211810112, + -0.03484365716576576, + 0.06025833263993263, + -0.0195215605199337, + 0.002780658658593893, + -0.05292908102273941, + -0.014935825951397419, + -0.030406489968299866, + 0.042351190000772476, + -0.026325879618525505, + 0.01235077902674675, + 0.00827016867697239, + 0.049363501369953156, + 0.034051306545734406, + 0.007779901381582022, + -0.02682109922170639, + -0.017788290977478027, + 0.03638874366879463, + -0.04132113233208656, + 0.017203932628035545, + -0.0012801429256796837, + -0.024226147681474686, + -0.009196230210363865, + -0.051304761320352554, + 0.0012999516911804676, + -0.02949528582394123, + -0.022265078499913216, + -0.015143818221986294, + -0.03892426937818527, + -0.018857965245842934, + 0.03553696721792221, + 0.02034362591803074, + -0.026147600263357162, + 0.015777699649333954, + -0.02064075693488121, + -0.0004209367325529456, + -0.001941261230967939, + -0.0009861062280833721, + 0.010845310986042023, + 0.004924959968775511, + 0.01138014905154705, + -0.021789666265249252, + 0.022383930161595345, + 0.03157520666718483, + 0.01839246042072773, + 0.00035717719583772123, + 0.0016527957050129771, + 0.03926101699471474, + -0.04888808727264404, + -0.010865120217204094, + -0.018025996163487434, + -0.006710227113217115, + 0.031535591930150986, + -0.02287914976477623, + -0.033179719001054764, + 0.022938575595617294, + 0.01123158261179924, + -0.02066056616604328, + 0.005640552379190922, + 0.009849919937551022, + -0.016906799748539925, + -0.022522591054439545, + 0.02935662306845188, + -0.005586078390479088, + -0.02105674147605896, + 0.06560670584440231, + 0.010508562438189983, + 0.0019424993079155684, + -0.022978194057941437, + -0.027058804407715797, + 0.03369474783539772, + -0.0339522622525692, + -0.027138039469718933, + 0.014708025380969048, + 0.029871651902794838, + 0.011033494956791401, + -0.019541369751095772, + 0.008800053969025612, + 0.043737802654504776, + 0.04433206841349602, + -0.06691408902406693, + -0.023948824033141136, + 0.008017607033252716, + 0.040924955159425735, + 0.013499689288437366, + -0.04171730577945709, + -0.011073112487792969, + 0.0021740144584327936, + -0.01425242330878973, + 0.049878526479005814, + -0.020462477579712868, + 0.013252079486846924, + 0.026345688849687576, + -0.0482938252389431, + 0.0032956870272755623, + -0.03961757570505142, + -0.009280417114496231, + -0.015431045554578304, + 0.013727489858865738, + 0.04132113233208656, + 0.01657005026936531, + -0.054672256112098694, + 0.0014497556257992983, + -0.017312880605459213, + 0.007557052653282881, + 0.0058980667963624, + 0.03565581887960434, + 0.029693372547626495, + 0.03238736838102341, + -0.04674873873591423, + 0.054236460477113724, + 0.03141673654317856, + 0.05700969323515892, + -0.004645160865038633, + -0.040647633373737335, + 0.03708204999566078, + -0.012043743394315243, + 0.043737802654504776, + -0.07158896327018738, + 0.06025833263993263, + -0.019303664565086365, + -0.02680128999054432, + -0.002071256283670664, + -0.036567021161317825, + 0.04999738186597824, + 0.0665179118514061, + -0.0803048238158226, + -0.052849847823381424, + 0.016659190878272057, + -0.027276700362563133, + 0.00007656560774194077, + 0.029653755947947502, + 0.026741864159703255, + -0.036151036620140076, + -0.014183091931045055, + 0.00733420392498374, + -0.042192719876766205, + 0.017085079103708267, + -0.02416672185063362, + 0.02077941782772541, + -0.057207778096199036, + 0.01795666664838791, + -0.007007358595728874, + -0.020165346562862396, + -0.00010918046609731391, + -0.036864154040813446, + -0.012598388828337193, + 0.009433935396373272, + 0.012459727935492992, + -0.009711258113384247, + -0.008364261128008366, + -0.0032164519652724266, + -0.0013197604566812515, + 0.01669880747795105, + -0.00011065065336879343, + 0.06889496743679047, + 0.02654377557337284, + -0.0003386064781807363, + 0.0017419352661818266, + -0.01630263216793537, + 0.04571868106722832, + 0.028960447758436203, + -0.045401740819215775, + -0.07673924416303635, + -0.00038100965321063995, + 0.03426920250058174, + -0.04001375287771225, + -0.025375057011842728, + 0.046075239777565, + -0.047105297446250916, + 0.0227602981030941, + -0.010835407301783562, + -0.012667720206081867, + -0.008468257263302803, + 0.02216603420674801, + -0.03856771066784859, + -0.020016780123114586, + -0.03157520666718483, + -0.0004484833334572613, + -0.0060713933780789375, + 0.023413987830281258, + 0.053285639733076096, + 0.08438543975353241, + -0.03030744567513466, + -0.0127667635679245, + 0.01171689759939909, + -0.025929704308509827, + -0.01769915223121643, + 0.007438200060278177, + 0.01318274810910225, + 0.016768138855695724, + 0.0634673535823822, + -0.00691821938380599, + -0.022205650806427002, + 0.003830524394288659, + 0.022126415744423866, + -0.008597013540565968, + 0.010914642363786697, + 0.027157848700881004, + 0.007844280451536179, + -0.027454979717731476, + -0.0007168304873630404, + 0.060575272887945175, + 0.03638874366879463, + -0.013103513047099113, + -0.027138039469718933, + -0.021789666265249252, + 0.06719140708446503, + 0.032783545553684235, + 0.02864350751042366, + -0.07590727508068085, + 0.015906456857919693, + 0.016639381647109985, + -0.0006375953671522439, + -0.010231238789856434, + -0.0027063756715506315, + -0.030683811753988266, + -0.028465228155255318, + -0.026286261156201363, + -0.02416672185063362, + -0.032486412674188614, + -0.020700182765722275, + 0.015807412564754486, + -0.059030186384916306, + -0.03185253217816353, + -0.01896691508591175, + -0.003154549514874816, + 0.006338811945170164, + -0.004489166662096977, + 0.007438200060278177, + 0.01059770118445158, + -0.032526031136512756, + -0.012647910974919796, + 0.03296182304620743, + 0.006150628440082073, + 0.01965031772851944, + -0.06449741125106812, + -0.005175045691430569, + 0.005387990269809961, + 0.02864350751042366, + 0.008250360377132893, + -0.014361371286213398, + -0.0252562053501606, + 0.06465588510036469, + -0.009651832282543182, + 0.03359570354223251, + -0.011043399572372437, + -0.005957493092864752, + -0.008062176406383514, + 0.013727489858865738, + 0.03779516741633415, + 0.0152428625151515, + -0.0059822541661560535, + 0.0021566818468272686, + -0.007839327678084373, + 0.026920143514871597, + 0.02246316522359848, + -0.007987894117832184, + 0.02919815294444561, + 0.008116650395095348, + 0.00477144168689847, + -0.01515372283756733, + -0.017857622355222702, + 0.0003389159683138132, + 0.0037091956473886967, + 0.03325895592570305, + 0.014945730566978455, + 0.004273746162652969, + 0.0016441293992102146, + -0.006512138992547989, + 0.007675905246287584, + 0.01838255487382412, + 0.025909895077347755, + 0.008795102126896381, + -0.037280138581991196, + 0.01825379766523838, + 0.002072494477033615, + -0.011370244435966015, + -0.030802665278315544, + -0.026563584804534912, + -0.03888465091586113, + -0.04686759039759636, + -0.005799022503197193, + 0.02258201874792576, + 0.010439231060445309, + 0.005823783576488495, + 0.012558771297335625, + 0.009929154999554157, + -0.027038995176553726, + -0.002195061417296529, + -0.017758578062057495, + 0.02119540236890316, + 0.005883209872990847, + -0.006843936163932085, + -0.004028612282127142, + 0.008849576115608215, + 0.000351605995092541, + -0.002031638752669096, + -0.023235708475112915, + 0.022423548623919487, + 0.025652380660176277, + 0.025216586887836456, + 0.048650383949279785, + 0.0009508218499831855, + 0.04861076548695564, + -0.001403947826474905, + 0.025731615722179413, + -0.017619917169213295, + -0.00282275234349072, + -0.008448448032140732, + -0.039657194167375565, + 0.034467291086912155, + 0.005759404972195625, + -0.023810163140296936, + 0.035041745752096176, + 0.011934794485569, + 0.0035581535194069147, + 0.06287309527397156, + 0.02414691261947155, + -0.039657194167375565, + 0.011499001644551754, + 0.003501203376799822, + 0.05249328911304474, + 0.026781480759382248, + 0.03003012202680111, + -0.009280417114496231, + 0.03420977666974068, + 0.02371111884713173, + -0.027316318824887276, + 0.02484022080898285, + -0.021017124876379967, + -0.037537652999162674, + -0.004910103511065245, + -0.023909207433462143, + 0.03331838175654411, + -0.010102481581270695, + -0.025850467383861542, + -0.009003094397485256, + -0.025632571429014206, + 0.007814566604793072, + 0.024206338450312614, + 0.009042711928486824, + 0.008661392144858837, + -0.007220303174108267, + -0.027890773490071297, + -0.016510624438524246, + -0.02301781065762043, + 0.016817661002278328, + 0.002295343205332756, + -0.027316318824887276, + 0.02357245795428753, + -0.05471187084913254, + -0.0077848536893725395, + 0.027970008552074432, + -0.006938028149306774, + 0.01809532754123211, + -0.014599076472222805, + 0.032763734459877014, + -0.015421141870319843, + -0.007482769433408976, + 0.041043806821107864, + -0.001982116838917136, + -0.02204718068242073, + -0.04453015699982643, + -0.005729692056775093, + -0.005026479717344046, + 0.04112304374575615, + 0.052414052188396454, + 0.003459109691902995, + 0.007240111939609051, + 0.05740586668252945, + -0.002405529608950019, + 0.0015537517610937357, + -0.017342593520879745, + 0.008879289031028748, + 0.014272231608629227, + 0.03854789957404137, + -0.005457321181893349, + -0.011053303256630898, + -0.006992502138018608, + 0.01854102499783039, + 0.03836962208151817, + -0.02765306830406189, + -0.00488286605104804, + -0.005115619394928217, + -0.03086209110915661, + 0.006675561424344778, + 0.004362885374575853, + 0.0455205962061882, + -0.02709842100739479, + 0.028168097138404846, + -0.0063536688685417175, + -0.018035901710391045, + -0.013242174871265888, + 0.06584440916776657, + -0.0179467611014843, + 0.016877086833119392, + -0.0016874611610546708, + -0.023829972371459007, + -0.017203932628035545, + 0.018352841958403587, + 0.022403739392757416, + -0.007779901381582022, + -0.05443454906344414, + 0.02375073730945587, + 0.06275424361228943, + 0.01024114340543747, + -0.0032833064906299114, + 0.041202280670404434, + 0.03508136421442032, + 0.014084048569202423, + 0.02218584157526493, + -0.015797508880496025, + -0.018055710941553116, + 0.0003084290074184537, + -0.00953793153166771, + 0.007344108074903488, + -0.03327876329421997, + 0.02190851978957653, + 0.004892770666629076, + -0.02400825172662735, + 0.03155539929866791, + 0.04460939019918442, + 0.013133225962519646, + -0.017154410481452942, + 0.01123158261179924, + -0.04615447670221329, + 0.045401740819215775, + -0.0008164934697560966, + -0.004177178256213665, + -0.03708204999566078, + 0.015668751671910286, + -0.012132883071899414, + 0.014787260442972183, + -0.08787178248167038, + -0.005452368874102831, + 0.01570836827158928, + 0.016520529985427856, + -0.01742182858288288, + -0.00043765042209997773, + 0.003347685094922781, + 0.03718109428882599, + -0.0398750901222229, + 0.01598569191992283, + 0.009587453678250313, + 0.016926608979701996, + -0.02315647341310978, + -0.010538275353610516, + -0.02244335599243641, + 0.013390740379691124, + -0.015698464587330818, + -0.009012998081743717, + 0.043024688959121704, + 0.013212461955845356, + -0.03314010053873062, + 0.022918768227100372, + 0.006913267076015472, + -0.02248297445476055, + -0.003129788441583514, + 0.002797991270199418, + -0.0004899579798802733, + 0.012945042923092842, + 0.0013977575581520796, + -0.0011458145454525948, + 0.02569199725985527, + -0.015787603333592415, + 0.01965031772851944, + 0.038270577788352966, + 0.0004744823672808707, + -0.0011359101627022028, + 0.005724739748984575, + 0.003936996683478355, + 0.009562692604959011, + -0.02668243646621704, + -0.011370244435966015, + -0.023691309615969658, + -0.018848061561584473, + -0.01011733803898096, + -0.02749459818005562, + 0.03676510974764824, + -0.04128151386976242, + 0.02121521160006523, + -0.010340187698602676, + -0.04294545203447342, + 0.01612435281276703, + 0.0033823505509644747, + 0.0031743582803756, + 0.011083017103374004, + 0.0024426712188869715, + 0.028286948800086975, + -0.04294545203447342, + 0.02216603420674801, + 0.04239080473780632, + 0.002651901450008154, + 0.020680375397205353, + 0.008785197511315346, + 0.03428901359438896, + 0.006655752658843994, + 0.0029490333981812, + 0.03900350257754326, + -0.011499001644551754, + 0.009399269707500935, + 0.033754173666238785, + -0.038963884115219116, + 0.025454292073845863, + 0.009740971028804779, + 0.026860715821385384, + 0.015678655356168747, + -0.012043743394315243, + 0.04777879640460014, + 0.00772047508507967, + -0.023334752768278122, + -0.039795853197574615, + 0.02202737145125866, + -0.005576173774898052, + 0.04674873873591423, + -0.02654377557337284, + 0.009275465272367, + 0.023136664181947708, + 0.007834375835955143, + -0.0152428625151515, + 0.04437168315052986, + -0.009230894967913628, + 0.05728701502084732, + 0.0034269203897565603, + -0.009022902697324753, + -0.0008653964032419026, + 0.04437168315052986, + -0.026484349742531776, + 0.0046946825459599495, + -0.014113761484622955, + 0.018204275518655777, + 0.010538275353610516, + 0.03117903135716915, + 0.04979929327964783, + 0.010657127946615219, + 0.015460759401321411, + 0.009156612679362297, + -0.006482426077127457, + 0.013915673829615116, + 0.02735593542456627, + -0.02274048887193203, + 0.009572597220540047, + 0.01892729662358761, + -0.03438805416226387, + -0.007393630221486092, + 0.02230469509959221, + -0.0046327803283929825, + 0.011390052735805511, + -0.010676936246454716, + -0.005392942577600479, + 0.02668243646621704, + 0.00023151520872488618, + -0.03464556857943535, + 0.004201939329504967, + -0.02317628264427185, + -0.0027757063508033752, + -0.025236396118998528, + 0.01770905591547489, + -0.019610699266195297, + -0.020016780123114586, + -0.018441980704665184, + -0.0009941535536199808, + -0.0031966431997716427, + -0.048373058438301086, + -0.02596932090818882, + 0.013866151683032513, + -0.04250966012477875, + 0.02091808058321476, + -0.0019462134223431349, + -0.018709400668740273, + 0.000879014958627522, + 0.017451541498303413, + 0.0049769580364227295, + -0.0035309165250509977, + -0.015064583159983158, + 0.04647141695022583, + -0.017055366188287735, + -0.02569199725985527, + -0.03004993125796318, + -0.04393589124083519, + 0.02557314559817314, + -0.011706993915140629, + -0.02795019932091236, + 0.022502783685922623, + 0.03185253217816353, + 0.016758235171437263, + 0.023413987830281258, + -0.03171386942267418, + -0.005417703650891781, + -0.005853496957570314, + 0.022542400285601616, + 0.014549554325640202, + -0.014113761484622955, + -0.021175595000386238, + -0.038963884115219116, + -0.00088149105431512, + 0.002513239858672023, + -0.02721727453172207, + -0.030505534261465073, + 0.01327188778668642, + -0.01936309039592743, + 0.014084048569202423, + 0.01839246042072773, + -0.008096842095255852, + -0.032902397215366364, + 0.007388677913695574, + -0.04159845411777496, + 0.009671640582382679, + -0.01925414241850376, + -0.0006660704966634512, + 0.008329595439136028, + 0.02077941782772541, + 0.02287914976477623, + -0.05502881109714508, + 0.0235922671854496, + 0.011390052735805511, + 0.004558497108519077, + 0.022106606513261795, + -0.005338468123227358, + -0.0024451473727822304, + -0.048056118190288544, + 0.03230813145637512, + -0.004838296677917242, + 0.0057197874411940575, + 0.020521903410553932, + 0.025058116763830185, + 0.020422860980033875, + 0.01509429607540369, + -0.0395977683365345, + 0.03694339096546173, + 0.014371275901794434, + 0.01473773829638958, + -0.011786228977143764, + 0.019343281164765358, + 0.00410289503633976, + 0.01291533000767231, + -0.010706650093197823, + -0.005224567838013172, + 0.01004305575042963, + -0.0014608980854973197, + -0.0008233027765527368, + 0.009488409385085106, + 0.015064583159983158, + 0.003508631605654955, + -0.02050209604203701, + -0.023196090012788773, + 0.0036324365064501762, + -0.01151880994439125, + -0.007344108074903488, + -0.0016045118682086468, + 0.01836274564266205, + -0.0030975991394370794, + -0.021829284727573395, + 0.001665176241658628, + -0.015015061013400555, + -0.013301600702106953, + -0.0333976149559021, + -0.011320722289383411, + 0.002654377603903413, + 0.0014126141322776675, + -0.03949872404336929, + -0.0028499893378466368, + -0.01587674394249916, + -0.0018731685122475028, + -0.014787260442972183, + -0.018580643460154533, + 0.017491159960627556, + -0.021987754851579666, + 0.055821165442466736, + 0.046669505536556244, + 0.02315647341310978, + 0.002649425296112895, + 0.019273949787020683, + -0.01853112131357193, + -0.026623010635375977, + 0.04040992632508278, + 0.004932388197630644, + -0.036151036620140076, + -0.002326294546946883, + -0.012737050652503967, + -0.003488822840154171, + -0.005591030232608318, + 0.002478574635460973, + -0.012756859883666039, + 0.0005524794687516987, + 0.04266813024878502, + -0.0020229725632816553, + -0.01101368572562933, + -0.028009627014398575, + -0.025335440412163734, + -0.022978194057941437, + -0.024463852867484093, + -0.00015893457748461515, + 0.008106746710836887, + 0.03115922398865223, + -0.018986722454428673, + 0.010077720507979393, + -0.006086250301450491, + 0.01781800389289856, + -0.010231238789856434, + 0.005600934848189354, + 0.0786408856511116, + -0.013994908891618252, + 0.01004305575042963, + -0.032070428133010864, + 0.017471350729465485, + -0.021433109417557716, + 0.027613449841737747, + -0.009612214751541615, + 0.050472792237997055, + 0.036844346672296524, + 0.006903362460434437, + -0.0005038860253989697, + 0.013460071757435799, + -0.008161220699548721, + 0.033892836421728134, + 0.0373791828751564, + 0.0020576377864927053, + 0.009721162728965282, + -0.004917531739920378, + -0.015559802763164043, + 0.02949528582394123, + 0.05150284990668297, + -0.03522002324461937, + -0.010855215601623058, + -0.04869000241160393, + 0.008968428708612919, + 0.03197138383984566, + -0.01755058579146862, + 0.023810163140296936, + 0.0034071116242557764, + 0.02848503738641739, + -0.017342593520879745, + 0.007626383565366268, + -0.0028846547938883305, + -0.012479536235332489, + -0.022958384826779366, + 0.016649285331368446, + -0.00299855531193316, + 0.005675217602401972, + -0.00855244416743517, + 0.020977506414055824, + -0.02903968282043934, + 0.03490308299660683, + 0.03373436629772186, + 0.04678835719823837, + 0.00989448931068182, + 0.03438805416226387, + -0.0118654640391469, + 0.006868697237223387, + 0.020383242517709732, + 0.023829972371459007, + 0.01756049133837223, + 0.017471350729465485, + 0.002383244689553976, + 0.0032412130385637283, + 0.02103693224489689, + 0.0016020357143133879, + 0.028742551803588867, + -0.015807412564754486, + 0.03694339096546173, + -0.006299194414168596, + 0.02022477239370346, + 0.020819036290049553, + 0.05534575507044792, + 0.033358000218868256, + -0.0008684915374033153, + 0.03625008091330528, + 0.004367837682366371, + 0.032902397215366364, + -0.006720131263136864, + -0.01684737391769886, + -0.0030876947566866875, + 0.015698464587330818, + 0.008671296760439873, + 0.011568332090973854, + 0.03464556857943535, + 0.0019053578143939376, + -0.050868965685367584, + 0.0014683264307677746, + -0.010389708913862705, + 0.008517778478562832, + 0.014232614077627659, + 0.0042960308492183685, + -0.00022702728165313601, + -0.004840772598981857, + -0.01854102499783039, + 0.020006876438856125, + -0.03494270145893097, + 0.01724354922771454, + -0.009107090532779694, + -0.01599559560418129, + 0.03611142188310623, + -0.028405802324414253, + 0.011538619175553322, + -0.016461102291941643, + -0.0013284268788993359, + -0.013351122848689556, + -0.01769915223121643, + 0.01473773829638958, + -0.02557314559817314, + -0.013440262526273727, + -0.018590547144412994, + 0.0015054679242894053, + 0.008275121450424194, + 0.026603201404213905, + 0.005799022503197193, + -0.030109357088804245, + 0.026306070387363434, + 0.0006846412434242666, + -0.014787260442972183, + 0.032644882798194885, + 0.005447416566312313, + 0.07368869334459305, + 0.006819175090640783, + 0.025731615722179413, + -0.018570737913250923, + 0.005150285083800554, + -0.010038102976977825, + -0.00473677646368742, + 0.015114105306565762, + -0.01570836827158928, + 0.0077848536893725395, + -0.001777838682755828, + -0.024622322991490364, + 0.0005914780194871128, + -0.020462477579712868, + -0.009379461407661438, + -0.0007942086085677147, + 0.005071049556136131, + 0.024226147681474686, + 0.025038307532668114, + 0.008146364241838455, + 0.015777699649333954, + 0.009864776395261288, + -0.0004720062715932727, + 0.01939280331134796, + 0.006621087435632944, + -0.01522305328398943, + 0.0044371685944497585, + -0.007675905246287584, + -0.00096939253853634, + -0.007953228428959846, + 0.003741384716704488, + 0.0482938252389431, + -0.03819134458899498, + 0.019689934328198433, + 0.012142786756157875, + -0.002072494477033615, + 0.025216586887836456, + 0.025771232321858406, + 0.014906113035976887, + -0.02682109922170639, + -0.0025082877837121487, + -0.01144947949796915, + -0.017857622355222702, + -0.003907283302396536, + 0.025097735226154327, + 0.010904737748205662, + 0.015797508880496025, + 0.020026683807373047, + -0.006219959352165461, + -0.007878945209085941, + 0.005437512416392565, + 0.014767451211810112, + 0.0026791386771947145, + -0.034189969301223755, + -0.03652740642428398, + -0.008785197511315346, + -0.0008084461442194879, + -0.007185637950897217, + -0.001142719411291182, + 0.0002866084105335176, + -0.0022247745655477047, + 0.0059030186384916306, + -0.0005085287266410887, + 0.007250016555190086, + -0.010028199292719364, + 0.010607605800032616, + -0.011102825403213501, + 0.025315631181001663, + 0.03577467054128647, + 0.04817497357726097, + -0.020304007455706596, + -0.018719304352998734, + 0.00988953746855259, + 0.01473773829638958, + 0.018025996163487434, + 0.011934794485569, + 0.0169761311262846, + -0.011845654807984829, + 0.005318659357726574, + -0.011835751123726368, + -0.014648598618805408, + -0.023631883785128593, + -0.0009953916305676103, + -0.01458917185664177, + -0.00156241818331182, + -0.0033650179393589497, + 0.04080610349774361, + -0.012479536235332489, + 0.01004800759255886, + 0.02066056616604328, + 0.000783685187343508, + 0.029732991009950638, + -0.020719991996884346, + -0.0004534355248324573, + -0.002034114906564355, + 0.014074143953621387, + 0.010062864050269127, + -0.0011068159947171807, + 0.006437856238335371, + 0.0076709529384970665, + -0.033773984760046005, + 0.013707681559026241, + -0.010201525874435902, + -0.020819036290049553, + -0.03187233954668045, + 0.01381662953644991, + 0.011934794485569, + -0.007027167361229658, + -0.005085906479507685, + -0.021235020831227303, + 0.014024621807038784, + -0.019016437232494354, + 0.04944273456931114, + 0.005303802900016308, + -0.030406489968299866, + -0.00012875712127424777, + 0.028940638527274132, + 0.022998003289103508, + 0.017758578062057495, + 0.039815664291381836, + 0.0006716417265124619, + 0.007883897982537746, + -0.0006230482831597328, + 0.03030744567513466, + 0.003303115488961339, + -0.052176348865032196, + -0.018917392939329147, + -0.013143130578100681, + 0.0075818137265741825, + -0.0322883240878582, + 0.00014802426449023187, + -0.020115824416279793, + -0.013123322278261185, + -0.004915055353194475, + -0.004055849276483059, + 0.006888506002724171, + -0.0219283290207386, + -0.0005527890170924366, + -0.009379461407661438, + 0.016055023297667503, + 0.0027484693564474583, + -0.012162595987319946, + 0.004816011525690556, + 0.004684778396040201, + 0.006269481498748064, + 0.0687364935874939, + -0.023929016664624214, + -0.002305247588083148, + -0.0008499207906424999, + 0.0032610218040645123, + 0.0012603341601788998, + -0.015946073457598686, + 0.0024884790182113647, + -0.035160597413778305, + 0.02949528582394123, + 0.012439918704330921, + -0.006843936163932085, + -0.0004277460102457553, + -0.008795102126896381, + 0.003377398243173957, + -0.011885272338986397, + 0.0014807068509981036, + 0.02903968282043934, + 0.026424923911690712, + 0.025632571429014206, + 0.002971318084746599, + -0.04464900866150856, + -0.007705618627369404, + -0.001247953623533249, + -0.02331494353711605, + -0.001081436057575047, + 0.014559458941221237, + 0.00016063688963185996, + 0.03270430862903595, + -0.00762143125757575, + -0.05098782107234001, + -0.009731067344546318, + -0.03185253217816353, + -0.018451886251568794, + -0.010028199292719364, + 0.02107655070722103, + -0.004345552995800972, + -0.03690377250313759, + 0.007472865283489227, + -0.002953985473141074, + -0.0011123872827738523, + -0.005407799035310745, + 0.014708025380969048, + 0.015896553173661232, + 0.019145194441080093, + 0.004442120902240276, + -0.014420798048377037, + 0.017857622355222702, + -0.020383242517709732, + -0.0038924268446862698, + 0.02486002817749977, + -0.006967741064727306, + -0.0045981151051819324, + 0.013707681559026241, + -0.012162595987319946, + -0.018560834228992462, + -0.0024723843671381474, + -0.034467291086912155, + 0.027870964258909225, + -0.007928467355668545, + 0.004900198895484209, + 0.006913267076015472, + -0.00400385120883584, + 0.01586683839559555, + 0.012657815590500832, + 0.01222202181816101, + -0.01963050849735737, + 0.024325191974639893, + -0.0005292660789564252, + -0.03212985396385193, + -0.026028746739029884, + 0.03733956441283226, + -0.02682109922170639, + -0.026068365201354027, + -0.0052344719879329205, + 0.014965538866817951, + -0.011330626904964447, + 0.0012046218616887927, + -0.028584081679582596, + 0.006294242572039366, + -0.03018859215080738, + -0.007839327678084373, + -0.005823783576488495, + -0.02652396634221077, + -0.017481256276369095, + -0.018560834228992462, + 0.001296237576752901, + 0.014430701732635498, + -0.00561579130589962, + -0.008785197511315346, + -0.0010189145104959607, + -0.0011222916655242443, + -0.000416294060414657, + -0.002026686677709222, + 0.009929154999554157, + -0.030782856047153473, + 0.044450920075178146, + 0.023374369367957115, + 0.021532151848077774, + -0.005526651628315449, + -0.023968633264303207, + 0.020957697182893753, + -0.021670814603567123, + 0.007448104210197926, + 0.021512344479560852, + 0.00599711062386632, + 0.024483662098646164, + 0.028445418924093246, + -0.023116854950785637, + -0.023077238351106644, + -0.014797164127230644, + -0.00400385120883584, + -0.03218927979469299, + -0.00384290493093431, + 0.018214181065559387, + 0.0003757479425985366, + 0.04334162920713425, + -0.005487034097313881, + -0.013093608431518078, + -0.002396863419562578, + 0.03442767262458801, + -0.000008390685252379626, + -0.03401168808341026, + -0.016371963545680046, + -0.02089827135205269, + 0.009389365091919899, + -0.009582500904798508, + -0.023235708475112915, + 0.0020006876438856125, + 0.019293759018182755, + 0.017322784289717674, + 0.03298163041472435, + -0.01439108420163393, + -0.015777699649333954, + -0.021809475496411324, + -0.010161908343434334, + -0.03189214691519737, + -0.01256867591291666, + 0.007487721741199493, + -0.018630165606737137, + 0.032090235501527786, + 0.01757039502263069, + -0.018550930544734, + 0.01171689759939909, + -0.04140036553144455, + -0.01838255487382412, + -0.006883553694933653, + -0.027851155027747154, + -0.011706993915140629, + 0.012578580528497696, + 0.0027162800543010235, + -0.0005592887755483389, + -0.008715867064893246, + 0.010033151134848595, + 0.001670128433033824, + 0.0017060318496078253, + -0.019719649106264114, + -0.04647141695022583, + 0.005818831268697977, + -0.0322883240878582, + 0.005452368874102831, + -0.021135976538062096, + 0.032367561012506485, + -0.018323129042983055, + -0.014628790318965912, + -0.013014373369514942, + 0.009116994217038155, + 0.00014547078171744943, + -0.016193684190511703, + -0.003137216903269291, + 0.016104545444250107, + -0.013162939809262753, + 0.014549554325640202, + -0.00976573210209608, + 0.049363501369953156, + 0.013994908891618252, + -0.007735331542789936, + -0.026048555970191956, + -0.0252562053501606, + 0.04381703957915306, + -0.013232270255684853, + -0.025870276615023613, + -0.011310817673802376, + -0.006422999314963818, + 0.014698120765388012, + -0.013648254796862602, + 0.038528092205524445, + -0.0067448923364281654, + 0.029297197237610817, + 0.0036027233581990004, + 0.027474788948893547, + 0.0064626168459653854, + -0.02668243646621704, + 0.025632571429014206, + 0.025771232321858406, + 0.007462960667908192, + -0.01142967026680708, + -0.0024352427572011948, + -0.0016428913222625852, + 0.004476786125451326, + 0.009532978758215904, + 0.04861076548695564, + -0.03819134458899498, + 0.016451198607683182, + -0.010855215601623058, + 0.003949377220124006, + -0.01024114340543747, + 0.012588485144078732, + 0.0020737324375659227, + 0.0382111519575119, + 0.021235020831227303, + -0.011043399572372437, + -0.010993877425789833, + 0.01839246042072773, + -0.0009582501370459795, + 0.012370588257908821, + -0.008166172541677952, + -0.02640511468052864, + 0.03577467054128647, + -0.009008046239614487, + -0.004692206624895334, + -0.002637044992297888, + 0.007507530506700277, + -0.022126415744423866, + -0.017203932628035545, + -0.021987754851579666, + 0.025890085846185684, + -0.03003012202680111, + -0.005784166045486927, + 0.014351466670632362, + 0.03280335292220116, + 0.015124009922146797, + -0.0014646121999248862, + 0.005387990269809961, + -0.013460071757435799, + -0.017936857417225838, + 0.004716967698186636, + -0.012796477414667606, + 0.020719991996884346, + 0.045124419033527374, + 0.023513032123446465, + -0.01228144858032465, + 0.01700584404170513, + -0.011182060465216637, + 0.008661392144858837, + 0.004313363693654537, + 0.01613425835967064, + -0.043024688959121704, + 0.01727326400578022, + -0.03696319833397865, + 0.04108342528343201, + -0.012291353195905685, + 0.025216586887836456, + 0.02034362591803074, + 0.029653755947947502, + -0.005437512416392565, + -0.027692684903740883, + -0.009265560656785965, + 0.025870276615023613, + -0.021551961079239845, + 0.003337780712172389, + 0.006883553694933653, + -0.006477473769336939, + 0.02163119614124298, + -0.0014398512430489063, + 0.02777191996574402, + -0.04199463129043579, + 0.010369900614023209, + 0.0071509722620248795, + -0.03878560662269592, + -0.0023201042786240578, + 0.006011967081576586, + 0.01978897862136364, + -0.011558427475392818, + -0.020244581624865532, + 0.033615514636039734, + 0.009503265842795372, + 0.010904737748205662, + 0.009384413249790668, + 0.01466840784996748, + -0.06501244008541107, + -0.029673565179109573, + -0.00312483636662364, + 0.04544135928153992, + -0.00897338055074215, + -0.015282480046153069, + 0.00835435651242733, + -0.01390576921403408, + -0.0064428080804646015, + -0.020155441015958786, + 0.003810715628787875, + 0.03407111391425133, + -0.017610011622309685, + -0.017520872876048088, + -0.01585693471133709, + -0.010627415031194687, + -0.01921452395617962, + -0.00031755963573232293, + -0.021987754851579666, + -0.001489373273216188, + 0.02077941782772541, + 0.016471007838845253, + -0.0126974331215024, + 0.009220990352332592, + 0.00997867714613676, + -0.006224911659955978, + 0.028425611555576324, + 0.005392942577600479, + 0.005041336640715599, + -0.03133750334382057, + 0.008324642665684223, + -0.012330970726907253 + ] + }, + { + "HotelId": "37", + "HotelName": "Campus Commander Hotel", + "Description": "Easy access to campus and steps away from the best shopping corridor in the city. From meetings in town or gameday, enjoy our prime location between the union and proximity to the university stadium.", + "Description_fr": "AccĆØs facile au campus et Ć  quelques pas du meilleur couloir commercial de la ville. Que ce soit pour des rĆ©unions en ville ou un jour de match, profitez de notre emplacement privilĆ©giĆ© entre le syndicat et la proximitĆ© du stade universitaire.", + "Category": "Budget", + "Tags": [ + "free parking", + "coffee in lobby", + "24-hour front desk service" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2022-02-24T00:00:00Z", + "Rating": 2.8, + "Address": { + "StreetAddress": "2045 Lafayette St", + "City": "Santa Clara", + "StateProvince": "CA ", + "PostalCode": "95050", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -121.946564, + 37.362087 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "suite", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 138.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "tv", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 89.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 89.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "suite", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 144.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 269.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "tv", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + } + ], + "embedding": [ + -0.04524039104580879, + -0.031760502606630325, + 0.04814920946955681, + 0.033439576625823975, + 0.013018732890486717, + -0.019735027104616165, + 0.019640430808067322, + 0.01779581420123577, + -0.01722824014723301, + -0.025044210255146027, + 0.01635323092341423, + -0.035686224699020386, + -0.014946119859814644, + 0.013586306944489479, + -0.028165867552161217, + -0.018623527139425278, + -0.00304184271954, + 0.019853271543979645, + 0.03287200257182121, + 0.030081430450081825, + 0.04467281699180603, + -0.008265298791229725, + -0.013775497674942017, + -0.0471559539437294, + -0.015478220768272877, + 0.007786408066749573, + -0.0008077585371211171, + 0.012096424587070942, + -0.0069586955942213535, + 0.0006636478938162327, + 0.026250304654240608, + -0.028875336050987244, + -0.005347612779587507, + -0.02195802517235279, + -0.006373384967446327, + 0.04644648730754852, + -0.019285697489976883, + -0.009571901522576809, + -0.011079520918428898, + 0.014295774511992931, + -0.030317919328808784, + 0.08806858956813812, + 0.019037382677197456, + -0.03509500250220299, + -0.0013923303922638297, + -0.023081349208950996, + -0.055858757346868515, + 0.051412761211395264, + -0.0009851254289969802, + 0.04980463162064552, + -0.027480049058794975, + -0.07657521218061447, + -0.0057969423942267895, + -0.08868346363306046, + -0.05179114267230034, + -0.029348313808441162, + 0.05122356861829758, + -0.02906452678143978, + 0.0318787507712841, + 0.003553250804543495, + -0.010151300579309464, + 0.029844941571354866, + 0.003943458199501038, + 0.046612028032541275, + -0.015868427231907845, + -0.023376960307359695, + 0.03157131373882294, + 0.03542608767747879, + -0.039162617176771164, + -0.01222649309784174, + 0.02288033440709114, + -0.01121550239622593, + 0.0033078931737691164, + -0.06616968661546707, + 0.026770582422614098, + 0.00956007745116949, + -0.07156164199113846, + 0.044247135519981384, + -0.010210422798991203, + 0.0035857679322361946, + 0.0032931126188486814, + -0.01658971980214119, + -0.0035384702496230602, + 0.02814221940934658, + -0.054014142602682114, + -0.054345227777957916, + -0.013562657870352268, + 0.012238318100571632, + 0.00017819833010435104, + 0.0590750128030777, + 0.03755449131131172, + 0.012758594006299973, + -0.01871812343597412, + -0.010015319101512432, + -0.016104916110634804, + 0.059264201670885086, + 0.013858268968760967, + -0.02201714739203453, + 0.017488379031419754, + 0.012699471786618233, + 0.033959854394197464, + -0.07860901951789856, + -0.023081349208950996, + 0.015738358721137047, + 0.03362876921892166, + -0.03303754702210426, + 0.004664750304073095, + -0.01178898848593235, + 0.00710650160908699, + -0.001659858855418861, + -0.10859585553407669, + 0.015052540227770805, + -0.015915725380182266, + 0.04022682085633278, + 0.013515359722077847, + -0.016920804977416992, + 0.014638683758676052, + -0.04084169119596481, + -0.023849939927458763, + -0.0185407567769289, + 0.01919110119342804, + 0.031807802617549896, + 0.003375883912667632, + -0.042922794818878174, + 0.01663701795041561, + -0.02809492126107216, + -0.00999758206307888, + -0.020716456696391106, + -0.05935879796743393, + 0.0029531593900173903, + -0.02189890295267105, + -0.021662414073944092, + -0.006816802080720663, + -0.011522937566041946, + 0.0013383813202381134, + 0.020562738180160522, + 0.004428260959684849, + -0.035567980259656906, + -0.02316412143409252, + -0.00356803135946393, + -0.0009060493903234601, + 0.0046263206750154495, + 0.020491791889071465, + 0.008614120073616505, + -0.05316277965903282, + 0.011203677393496037, + -0.018564404919743538, + 0.04150386154651642, + -0.012723120860755444, + 0.041125476360321045, + -0.03126387670636177, + 0.009991670027375221, + -0.01722824014723301, + -0.079554982483387, + 0.011694393120706081, + -0.033439576625823975, + -0.04266265779733658, + 0.03062535636126995, + 0.015596465207636356, + 0.027172613888978958, + -0.00033237822935916483, + 0.013716375455260277, + -0.027243560180068016, + -0.026841528713703156, + 0.02185160480439663, + -0.02681787870824337, + -0.038689639419317245, + 0.016045793890953064, + -0.06654807180166245, + -0.0031393945682793856, + 0.003174867946654558, + -0.003074360080063343, + -0.0074257617816329, + 0.05803445726633072, + 0.06229126453399658, + 0.013361642137169838, + -0.03559162840247154, + 0.05075059086084366, + 0.01767756976187229, + -0.0098793376237154, + 0.008229825645685196, + -0.0646088570356369, + 0.031642258167266846, + -0.02705436944961548, + 0.02565908245742321, + 0.07246030122041702, + -0.028922634199261665, + 0.04415253922343254, + -0.02189890295267105, + 0.02998683601617813, + 0.004182903561741114, + 0.004097175784409046, + -0.0033256299793720245, + 0.005785117857158184, + 0.010092178359627724, + 0.021875254809856415, + -0.058460138738155365, + 0.017949532717466354, + 0.0004589369345922023, + -0.016223162412643433, + -0.012096424587070942, + 0.0226556695997715, + 0.018647177144885063, + 0.013160626403987408, + -0.03057805821299553, + -0.06560211628675461, + -0.01175942737609148, + 0.042213328182697296, + -0.0037956521846354008, + 0.016660666093230247, + 0.025635432451963425, + -0.016341406852006912, + 0.017582975327968597, + 0.028165867552161217, + 0.020822877064347267, + -0.02438203990459442, + -0.013101503252983093, + 0.03559162840247154, + 0.024949613958597183, + 0.030317919328808784, + -0.018883666023612022, + -0.004064658656716347, + 0.03277740627527237, + 0.00999758206307888, + 0.021946201100945473, + 0.058980416506528854, + -0.020255303010344505, + -0.04616269841790199, + 0.05708850175142288, + -0.04843299463391304, + -0.015963023528456688, + -0.017523853108286858, + -0.010683401487767696, + -0.027196262031793594, + 0.002973852213472128, + 0.027125315740704536, + 0.05283169448375702, + -0.016164040192961693, + -0.015206257812678814, + -0.013456237502396107, + -0.012888663448393345, + -0.0038488623686134815, + -0.005421515554189682, + 0.03275375813245773, + 0.026675986126065254, + -0.017831288278102875, + -0.00017422605014871806, + 0.008578646928071976, + 0.030152376741170883, + 0.06938593834638596, + -0.0002592143719084561, + 0.058460138738155365, + 0.0036951443180441856, + 0.013905567117035389, + 0.023909062147140503, + -0.0276928897947073, + 0.00471204798668623, + 0.02705436944961548, + 0.06205477565526962, + -0.000586419424507767, + 0.014981593005359173, + 0.023436082527041435, + -0.007413937710225582, + -0.012912312522530556, + 0.002786138793453574, + 0.004041010048240423, + -0.016282284632325172, + -0.04784177243709564, + -0.05642633140087128, + 0.00030762076494283974, + -0.038524094969034195, + -0.03277740627527237, + -0.019924217835068703, + -0.011919057928025723, + -0.02351885475218296, + -0.045334987342357635, + 0.0048598540015518665, + 0.0192975215613842, + 0.037294354289770126, + 0.029371963813900948, + -0.035000406205654144, + -0.012829541228711605, + 0.040486957877874374, + -0.009430008009076118, + 0.030932791531085968, + -0.009784742258489132, + 0.022525599226355553, + 0.025469889864325523, + -0.061298009008169174, + -0.008188439533114433, + -0.04450727254152298, + 0.0023781948257237673, + 0.013775497674942017, + -0.06252775341272354, + -0.011653007008135319, + 0.025730028748512268, + 0.004165166523307562, + -0.05798716098070145, + 0.02873344160616398, + 0.0058028544299304485, + 0.026486793532967567, + 0.02993953786790371, + -0.021000243723392487, + 0.005315095651894808, + 0.041645754128694534, + 0.005193894729018211, + 0.058696627616882324, + -0.01216737087816, + 0.0074612353928387165, + 0.02259654738008976, + -0.022986752912402153, + 0.06143990531563759, + 0.011800812557339668, + -0.008046546019613743, + -0.03178415447473526, + 0.0364193432033062, + 0.005341700743883848, + 0.007183360401540995, + 0.001072330866008997, + 0.008430841378867626, + 0.016199512407183647, + 0.015442746691405773, + -0.004023273009806871, + -0.03722340613603592, + 0.06484534591436386, + -0.03270646184682846, + -0.019380293786525726, + 0.003059579525142908, + -0.021816132590174675, + -0.028567899018526077, + 0.03202064335346222, + -0.03145306929945946, + -0.01739378273487091, + 0.03999032825231552, + -0.02561178430914879, + 0.0018889578059315681, + -0.019522186368703842, + -0.024760423228144646, + 0.01149928942322731, + 0.011422430165112019, + -0.018942788243293762, + -0.058460138738155365, + -0.051933035254478455, + -0.010068529285490513, + 0.0036537586711347103, + -0.0406997986137867, + -0.0114756403490901, + 0.020148882642388344, + 0.01716911792755127, + 0.013976513408124447, + -0.022088095545768738, + -0.02613206021487713, + 0.015608289279043674, + -0.00019824449555017054, + 0.004224289208650589, + -0.025162454694509506, + 0.028118569403886795, + -0.012675822712481022, + 0.042804550379514694, + -0.0008949639741331339, + 0.035165950655937195, + 0.01676708646118641, + 0.02826046384871006, + 0.007277956232428551, + 0.057419586926698685, + 0.017240066081285477, + -0.03575717285275459, + 0.015076188370585442, + 0.010718874633312225, + -0.0023855851031839848, + -0.0021757010836154222, + -0.004921932239085436, + 0.0069527835585176945, + 0.032446324825286865, + -0.02062186226248741, + 0.05075059086084366, + 0.0018387037562206388, + 0.05704120546579361, + 0.019273873418569565, + 0.013408939354121685, + 0.019983340054750443, + -0.01993604190647602, + -0.0008254952263087034, + -0.00013274805678520352, + 0.03353417292237282, + -0.010630191303789616, + -0.0067044696770608425, + 0.00017219372966792434, + -0.016093092039227486, + -0.020326249301433563, + 0.021863430738449097, + -0.0033936204854398966, + -0.024027306586503983, + -0.01687350682914257, + 0.004185859579592943, + 0.016033969819545746, + 0.07189273089170456, + 0.015963023528456688, + -0.017772166058421135, + -0.021473223343491554, + 0.04095993563532829, + -0.008815135806798935, + -0.007946038618683815, + -0.05680471286177635, + 0.007183360401540995, + -0.07004810869693756, + -0.005643224343657494, + -0.020598212257027626, + -0.05514929071068764, + -0.0050253961235284805, + 0.003706968855112791, + -0.05339926853775978, + 0.028851686045527458, + 0.007957862690091133, + -0.005427428055554628, + 0.0013605521526187658, + -0.0431356355547905, + -0.03871328756213188, + 0.008543173782527447, + 0.038807883858680725, + 0.0297030471265316, + 0.0026486795395612717, + -0.002350111724808812, + 0.036324746906757355, + -0.05363575741648674, + -0.038405850529670715, + 0.03682137280702591, + -0.019001910462975502, + -0.054297927767038345, + -0.008158878423273563, + -0.022643843665719032, + -0.026273954659700394, + -0.007289780769497156, + 0.029892239719629288, + 0.010009407065808773, + 0.02363709919154644, + -0.004975142423063517, + 0.005805810913443565, + -0.020491791889071465, + -0.0076208654791116714, + -0.05576416105031967, + -0.046209998428821564, + -0.011392869055271149, + -0.013763673603534698, + 0.020763754844665527, + 0.016625193879008293, + 0.01617586426436901, + 0.021863430738449097, + -0.03743624687194824, + 0.016270458698272705, + 0.014886997640132904, + 0.018990086391568184, + 0.018174197524785995, + 0.017121819779276848, + -0.010080353356897831, + 0.04727419838309288, + 0.046493783593177795, + -0.023128647357225418, + -0.010033056139945984, + 0.026770582422614098, + 0.007969687692821026, + -0.015691060572862625, + -0.005202763248234987, + 0.019498538225889206, + -0.028520602732896805, + -0.004951493348926306, + -0.012947785668075085, + 0.006544839590787888, + 0.04613905027508736, + -0.008537261746823788, + -0.018055953085422516, + -0.016920804977416992, + 0.061108820140361786, + 0.008631857112050056, + 0.00725430715829134, + 0.016554245725274086, + -0.016554245725274086, + 0.00932950060814619, + -0.011865847744047642, + -0.023093173280358315, + -0.0480782613158226, + -0.02629760280251503, + -0.03821666166186333, + 0.03235172852873802, + -0.033605121076107025, + -0.05212222784757614, + 0.03388890624046326, + 0.0034409184008836746, + -0.07194002717733383, + -0.0028083096258342266, + -0.01832791604101658, + 0.005323963705450296, + -0.004519900307059288, + -0.011168204247951508, + 0.0010420307517051697, + 0.018375214189291, + -0.00625514006242156, + -0.010825295001268387, + 0.031074685975909233, + -0.013385291211307049, + -0.015099837444722652, + 0.0053091831505298615, + 0.0358281210064888, + 0.023034051060676575, + 0.02345973253250122, + 0.03109833411872387, + -0.048811379820108414, + 0.00693504698574543, + 0.07203461974859238, + 0.028189517557621002, + -0.022584721446037292, + -0.014674156904220581, + -0.002728494582697749, + 0.051412761211395264, + 0.030554410070180893, + 0.021307680755853653, + 0.005250060930848122, + 0.020137058570981026, + 0.0002521935966797173, + 0.006361560430377722, + 0.026746932417154312, + 0.011256887577474117, + 0.006982344668358564, + 0.010239983908832073, + 0.005814678966999054, + -0.0020219830330461264, + -0.014437668025493622, + -0.08338610827922821, + 0.004877590574324131, + -0.0016302976291626692, + -0.030294271185994148, + -0.018588053062558174, + -0.01647147536277771, + 0.031524013727903366, + -0.0008897907682694495, + 0.04810190945863724, + 0.02202897146344185, + -0.0037720033433288336, + 0.04500390216708183, + -0.031642258167266846, + 0.008407192304730415, + 0.0012001828290522099, + 0.017582975327968597, + -0.00935906171798706, + -0.03821666166186333, + -0.04923705756664276, + -0.05160195007920265, + 0.00035935279447585344, + 0.007277956232428551, + 0.017074523493647575, + -0.001649512443691492, + -0.012628525495529175, + -0.010523770935833454, + -0.011180028319358826, + 0.02665233612060547, + 0.015974847599864006, + 0.0018534844275563955, + 0.003615329274907708, + 0.004165166523307562, + -0.0022717746905982494, + -0.01768939569592476, + 0.006420682650059462, + 0.015300853177905083, + -0.004800731316208839, + 0.003967106807976961, + 0.025186102837324142, + 0.02778748609125614, + 0.021295854821801186, + 0.008188439533114433, + 0.00985568854957819, + 0.021071190014481544, + 0.04263900965452194, + 0.005761468783020973, + -0.008832872845232487, + 0.03237537667155266, + 0.017831288278102875, + 0.03284835442900658, + -0.01705087348818779, + -0.02027895115315914, + 0.038051117211580276, + -0.0066689965315163136, + -0.03038886748254299, + 0.03282470628619194, + 0.00725430715829134, + -0.03613555431365967, + -0.03237537667155266, + -0.010180861689150333, + 0.007650426588952541, + -0.01919110119342804, + 0.011049959808588028, + 0.00921716820448637, + -0.017074523493647575, + 0.010163124650716782, + -0.010346404276788235, + -0.023270539939403534, + -0.009920723736286163, + -0.04223697632551193, + 0.006710382178425789, + -0.03249362111091614, + -0.007928301580250263, + 0.017180943861603737, + -0.017937708646059036, + -0.005731907673180103, + -0.021745184436440468, + -0.03613555431365967, + -0.025469889864325523, + -0.007319341879338026, + 0.0047563896514475346, + -0.015147135592997074, + -0.003813388990238309, + 0.06248045712709427, + -0.004244981799274683, + -0.013101503252983093, + 0.02317594550549984, + -0.016979927197098732, + 0.003644890384748578, + -0.01378732267767191, + -0.017843112349510193, + 0.014177530072629452, + -0.007473059929907322, + 0.013042381033301353, + 0.0003199994971510023, + 0.050135716795921326, + 0.012829541228711605, + 0.011800812557339668, + 0.010813469998538494, + 0.015691060572862625, + -0.04240252077579498, + -0.010878505185246468, + -0.0787036195397377, + 0.03341592848300934, + 0.03795652091503143, + 0.05992637202143669, + 0.00916395802050829, + 0.011859934777021408, + 0.012853190302848816, + 0.007963774725794792, + 0.04895327240228653, + -0.027834782376885414, + -0.0034852600656449795, + -0.02473677322268486, + 0.014804226346313953, + 0.018481634557247162, + -0.011865847744047642, + 0.04734514653682709, + 0.027030719444155693, + 0.01473327912390232, + -0.01158206071704626, + -0.03022332489490509, + 0.022111743688583374, + -0.04237887263298035, + -0.010482385754585266, + 0.011103169992566109, + -0.0009060493903234601, + -0.018682649359107018, + 0.0007619387470185757, + 0.0031098334584385157, + 0.01670796424150467, + 0.021697888150811195, + 0.06271694600582123, + 0.01193088199943304, + 0.05467631295323372, + -0.03502405434846878, + 0.0075853923335671425, + -0.02814221940934658, + -0.012462982907891273, + 0.007987423799932003, + 0.028449654579162598, + 0.018044129014015198, + -0.007656339090317488, + 0.03261186555027962, + 0.008980678394436836, + 0.0229512806981802, + -0.009146220982074738, + 0.041929543018341064, + 0.028165867552161217, + -0.007413937710225582, + -0.005861977115273476, + 0.009282202459871769, + -0.010919890366494656, + 0.007526270113885403, + 0.0070473793894052505, + -0.043253879994153976, + 0.021591467782855034, + -0.011339658871293068, + -0.0027417971286922693, + 0.010080353356897831, + 0.05566956475377083, + 0.018126899376511574, + -0.00611324654892087, + 0.013881918042898178, + -0.0014884041156619787, + 0.04252076521515846, + 0.02797667682170868, + -0.022856684401631355, + -0.05983177572488785, + -0.011014485731720924, + 0.009571901522576809, + 0.014579561538994312, + -0.05543307587504387, + 0.019001910462975502, + 0.022182689979672432, + 0.018351564183831215, + -0.04098358377814293, + -0.015643762424588203, + -0.04122007265686989, + 0.024145551025867462, + -0.05486550182104111, + 0.028757091611623764, + 0.015265380032360554, + -0.004966273903846741, + -0.016684316098690033, + -0.007183360401540995, + -0.003981887362897396, + 0.007703636772930622, + -0.04034506529569626, + -0.036159202456474304, + -0.012131897732615471, + 0.028757091611623764, + -0.008052458055317402, + 0.020610036328434944, + 0.013964689336717129, + -0.025848273187875748, + 0.022750264033675194, + -0.035118650645017624, + 0.010795733891427517, + 0.02998683601617813, + -0.01658971980214119, + -0.005261885467916727, + 0.04561877250671387, + 0.018245143815875053, + 0.018765421584248543, + -0.01465050783008337, + 0.025327997282147408, + 0.0017633228562772274, + 0.011812637560069561, + 0.0034882163163274527, + 0.0030078475829213858, + -0.061298009008169174, + -0.0237435195595026, + -0.007272044196724892, + 0.02191072702407837, + -0.021236732602119446, + -0.0022096962202340364, + 0.02219451405107975, + 0.011109082028269768, + -0.021177610382437706, + -0.002879256382584572, + -0.0594060942530632, + 0.018942788243293762, + -0.022762088105082512, + 0.007833706215023994, + -0.023246891796588898, + -0.0425444133579731, + 0.02721991017460823, + -0.046777572482824326, + 0.016211336478590965, + 0.0182096716016531, + -0.002747709397226572, + 0.06683185696601868, + 0.024713125079870224, + 0.0012600441696122289, + 0.021934377029538155, + 0.015572816133499146, + 0.026865176856517792, + -0.010334579274058342, + 0.05075059086084366, + -0.01141651812940836, + -0.005861977115273476, + 0.01479240134358406, + 0.04159845784306526, + 0.004629276692867279, + 0.010470560751855373, + -0.01739378273487091, + 0.013243396766483784, + 0.009571901522576809, + -0.041125476360321045, + -0.015525517985224724, + 0.0000434179455623962, + -0.013255221769213676, + -0.018978260457515717, + -0.010665664449334145, + 0.027480049058794975, + 0.006929134484380484, + -0.00018124682537745684, + -0.04124372452497482, + 0.028000324964523315, + 0.04067614674568176, + 0.011694393120706081, + -0.0005472508491948247, + 0.0018254013266414404, + -0.023660747334361076, + -0.007750934921205044, + -0.010003495030105114, + 0.010961276479065418, + 0.020148882642388344, + 0.02120126038789749, + -0.05415603518486023, + 0.007650426588952541, + 0.015158959664404392, + 0.021591467782855034, + 0.01366907823830843, + -0.00007939941133372486, + -0.011310097761452198, + 0.04535863548517227, + 0.053020887076854706, + -0.019865095615386963, + -0.031169280409812927, + 0.001403415808454156, + -0.012616700492799282, + 0.06867647171020508, + 0.0406997986137867, + 0.023104999214410782, + 0.000824756221845746, + 0.022454652935266495, + -0.006060036830604076, + 0.007798232603818178, + 0.016376879066228867, + -0.04895327240228653, + 0.013503535650670528, + -0.0030536672566086054, + 0.024476636201143265, + 0.019853271543979645, + 0.03209158778190613, + 0.012060951441526413, + 0.00011353330773999915, + -0.02306952513754368, + 0.020941121503710747, + 0.037838276475667953, + -0.04155115783214569, + -0.025115156546235085, + -0.008212088607251644, + 0.005454033147543669, + -0.013243396766483784, + 0.043253879994153976, + -0.009063449688255787, + 0.006060036830604076, + 0.045169442892074585, + 0.0005339483614079654, + 0.028804389759898186, + 0.011623445898294449, + 0.027078017592430115, + -0.05708850175142288, + -0.02658138982951641, + -0.027953026816248894, + 0.00044600391993299127, + 0.0026205964386463165, + 0.013609955087304115, + -0.012817716225981712, + 0.013042381033301353, + 0.04647013545036316, + 0.029348313808441162, + -0.00037450288073159754, + -0.015974847599864006, + -0.019451240077614784, + 0.0002760272764135152, + -0.021425925195217133, + -0.014165705069899559, + -0.021745184436440468, + -0.020042462274432182, + 0.0073370784521102905, + -0.013858268968760967, + 0.028591549023985863, + -0.028828037902712822, + 0.005885625723749399, + 0.039895735681056976, + 0.008614120073616505, + 0.01865900121629238, + 0.040368713438510895, + 0.009406358934938908, + -0.025919219478964806, + 0.03414904698729515, + 0.058507438749074936, + 0.01456773653626442, + 0.010393701493740082, + -0.011913144960999489, + 0.035804469138383865, + 0.024405689910054207, + 0.034882161766290665, + -0.0020471098832786083, + 0.048858676105737686, + 0.0013398593291640282, + -0.033084843307733536, + 0.004307060036808252, + -0.05122356861829758, + -0.0005424472037702799, + -0.04242616891860962, + 0.026746932417154312, + 0.0020323293283581734, + 0.004209508188068867, + 0.03802746906876564, + 0.03627745062112808, + 0.027882080525159836, + -0.011292360723018646, + -0.03327403590083122, + 0.01670796424150467, + -0.016436001285910606, + 0.04594985768198967, + -0.014615034684538841, + 0.03038886748254299, + -0.012001828290522099, + -0.010902153328061104, + 0.003136438550427556, + -0.016104916110634804, + -0.0237435195595026, + 0.027172613888978958, + -0.005229368340224028, + -0.00033182394690811634, + -0.002128403168171644, + -0.0345747247338295, + -0.002792051061987877, + 0.008625945076346397, + -0.030081430450081825, + -0.016140390187501907, + 0.03795652091503143, + 0.05079788714647293, + -0.026392199099063873, + -0.01421300321817398, + -0.01739378273487091, + -0.03599366173148155, + -0.024027306586503983, + 0.016400529071688652, + -0.05543307587504387, + 0.026368549093604088, + 0.016459651291370392, + 0.02490231581032276, + -0.02565908245742321, + 0.0011957486858591437, + 0.059784479439258575, + -0.026250304654240608, + -0.009495043195784092, + -0.0025718205142766237, + -0.02068098448216915, + -0.01739378273487091, + 0.05472360923886299, + 0.016045793890953064, + 0.010653840377926826, + 0.00725430715829134, + -0.016672492027282715, + 0.013645429164171219, + -0.005805810913443565, + 0.00990889873355627, + 0.024594880640506744, + -0.008543173782527447, + 0.039328161627054214, + -0.028757091611623764, + 0.003641934134066105, + -0.028307761996984482, + -0.005241192877292633, + -0.024713125079870224, + -0.0004715004179161042, + 0.000681384583003819, + -0.008478139527142048, + -0.005924055352807045, + 0.012344738468527794, + -0.004732741042971611, + -0.033676065504550934, + 0.031524013727903366, + 0.0006252184393815696, + -0.025682730600237846, + 0.018186021596193314, + 0.008631857112050056, + 0.006544839590787888, + -0.04876407980918884, + 0.06806160509586334, + 0.01757114939391613, + 0.030034132301807404, + 0.03963559493422508, + 0.0038163450080901384, + 0.008554997853934765, + -0.019463064149022102, + 0.02745640091598034, + 0.015478220768272877, + -0.004573110491037369, + -0.008318508975207806, + 0.008241649717092514, + -0.0001042030708049424, + 0.012995083816349506, + -0.014981593005359173, + -0.013716375455260277, + 0.0034084010403603315, + 0.06673726439476013, + 0.03466932103037834, + 0.0119367940351367, + -0.029324665665626526, + 0.006039343774318695, + -0.00016831382527016103, + 0.009376797825098038, + 0.04928435757756233, + -0.01977049931883812, + 0.04091263934969902, + 0.00676359236240387, + 0.013609955087304115, + -0.021414101123809814, + -0.016778910532593727, + -0.006858187727630138, + 0.010375965386629105, + 0.03341592848300934, + -0.0014300209004431963, + 0.017429256811738014, + -0.04734514653682709, + -0.008466314524412155, + -0.01987691968679428, + 0.027361804619431496, + -0.012498456053435802, + -0.017417432740330696, + -0.020846527069807053, + 0.02866249531507492, + 0.018623527139425278, + -0.01135739590972662, + -0.0038932040333747864, + 0.02183978073298931, + -0.005439252592623234, + -0.03377066180109978, + -0.02854425087571144, + -0.010393701493740082, + 0.012888663448393345, + -0.004611540120095015, + 0.02098841965198517, + 0.025919219478964806, + 0.02653409168124199, + -0.004268630873411894, + 0.018162373453378677, + -0.01999516412615776, + -0.027290858328342438, + -0.03965924307703972, + 0.01669614017009735, + 0.03535513952374458, + 0.011369219981133938, + -0.009489130228757858, + 0.026912475004792213, + 0.0006965346983633935, + -0.005915186833590269, + 0.04306469112634659, + -0.02733815647661686, + -0.03391255810856819, + 0.008200264535844326, + -0.022974928840994835, + -0.022005323320627213, + 0.00702373031526804, + -0.00622557895258069, + 0.007325253915041685, + 0.029348313808441162, + 0.02034989930689335, + -0.010754347778856754, + 0.008123405277729034, + 0.017180943861603737, + 0.0061960178427398205, + 0.011859934777021408, + 0.004632232710719109, + 0.024192849174141884, + -0.0034941283520311117, + 0.03220983222126961, + -0.019262047484517097, + 0.024086428806185722, + -0.008206176571547985, + -0.03098008967936039, + -0.002653113566339016, + 0.00915804598480463, + -0.01773669198155403, + 0.023849939927458763, + 0.008294859901070595, + -0.024831369519233704, + -0.02509150840342045, + 0.007065115962177515, + -0.008436753414571285, + -0.01424847636371851, + 0.002033807337284088, + -0.004543549381196499, + 0.012522105127573013, + 0.0038459061179310083, + 0.04687216505408287, + -0.009370885789394379, + 0.002085539512336254, + 0.005270753987133503, + -0.06200747936964035, + 0.00722474604845047, + 0.005436296109110117, + -0.0034616112243384123, + 0.012865014374256134, + -0.022088095545768738, + 0.03173685446381569, + -0.0034941283520311117, + 0.0098793376237154, + -0.016033969819545746, + 0.012285616248846054, + 0.0014950553886592388, + -0.003967106807976961, + 0.013468061573803425, + 0.0012378733372315764, + 0.007650426588952541, + 0.015915725380182266, + -0.01389374304562807, + 0.004064658656716347, + -0.012995083816349506, + -0.023838115856051445, + 0.008300771936774254, + 0.023849939927458763, + -0.018375214189291, + 0.023838115856051445, + -0.012261967174708843, + 0.030483461916446686, + -0.007703636772930622, + -0.022501951083540916, + -0.012971434742212296, + 0.006692645605653524, + -0.008312596939504147, + 0.019841447472572327, + -0.016483299434185028, + -0.014094758778810501, + 0.023719869554042816, + 0.028355060145258904, + 0.00725430715829134, + 0.032399024814367294, + 0.023778991773724556, + -0.004144473932683468, + 0.027716537937521935, + 0.008052458055317402, + 0.004327753093093634, + 0.0226556695997715, + 0.03429093956947327, + -0.01447314117103815, + -0.0003327477315906435, + -0.018694473430514336, + -0.02243100479245186, + 0.02029077708721161, + -0.053257375955581665, + 0.03038886748254299, + -0.01682620868086815, + 0.01907285675406456, + 0.02133132889866829, + -0.023495204746723175, + -0.04479106143116951, + -0.016199512407183647, + -0.004020316991955042, + -0.018339740112423897, + 0.027550995349884033, + 0.021544169634580612, + -0.002048587892204523, + 0.012533929198980331, + 0.0028807343915104866, + 0.00906936265528202, + 0.00956598948687315, + 0.020137058570981026, + -0.01566741243004799, + -0.02305770106613636, + 0.025966517627239227, + 0.061818286776542664, + -0.0012356562074273825, + 0.007360727526247501, + -0.02873344160616398, + -0.02121308445930481, + 0.020527265965938568, + -0.004301148001104593, + -0.01617586426436901, + 0.02490231581032276, + 0.01653059758245945, + -0.01705087348818779, + 0.009613287635147572, + -0.01676708646118641, + -0.012593051418662071, + -0.00927629042416811, + -0.0286151971668005, + 0.0343145877122879, + 0.007177448365837336, + 0.010943539440631866, + -0.03074360080063343, + 0.006609874311834574, + -0.023731695488095284, + -0.005264841485768557, + -0.001499489531852305, + 0.009341324679553509, + -0.026108412072062492, + 0.016104916110634804, + 0.011038134805858135, + 0.041125476360321045, + -0.020006990060210228, + -0.007260219659656286, + 0.0022244767751544714, + 0.015182608738541603, + -0.015064364299178123, + 0.0101099144667387, + -0.00456719845533371, + -0.028686143457889557, + -0.037128809839487076, + 0.024003656581044197, + -0.008247561752796173, + -0.005102255381643772, + 0.02953750640153885, + 0.018304266035556793, + -0.036608532071113586, + 0.02345973253250122, + -0.007017818279564381, + -0.000005256920303509105, + -0.022454652935266495, + 0.01779581420123577, + -0.011014485731720924, + 0.03618285432457924, + -0.00602751923725009, + -0.007532182149589062, + -0.02092929743230343, + -0.029395611956715584, + 0.00884469784796238, + 0.024594880640506744, + 0.00002614314689708408, + 0.007727285847067833, + -0.04015587270259857, + -0.01861170306801796, + -0.030034132301807404, + 0.023306014016270638, + 0.008135229349136353, + -0.024133726954460144, + 0.006391121540218592, + -0.03954099863767624, + 0.010293194092810154, + -0.034409184008836746, + 0.02150869555771351, + -0.022549249231815338, + 0.018990086391568184, + 0.008401280269026756, + -0.04386875405907631, + -0.0030329744331538677, + 0.022762088105082512, + 0.008229825645685196, + 0.03057805821299553, + -0.022348232567310333, + -0.02530434913933277, + -0.004472602624446154, + 0.0021357934456318617, + -0.00953642837703228, + -0.023388786241412163, + -0.03594636544585228, + 0.012120073661208153, + -0.042166031897068024, + 0.013479886576533318, + 0.0333922803401947, + 0.000026974554202752188, + 0.005554541014134884, + -0.0036655832082033157, + 0.01819784753024578, + -0.01222649309784174, + -0.01470963004976511, + 0.010163124650716782, + -0.014378545805811882, + -0.012131897732615471, + -0.024547582492232323, + -0.03802746906876564, + -0.00031168543500825763, + -0.0010302062146365643, + -0.004215420689433813, + 0.001153624034486711, + -0.0395173504948616, + -0.004916020203381777, + 0.019392117857933044, + -0.015419098548591137, + 0.01971137709915638, + -0.015501869842410088, + 0.0028275244403630495, + 0.01424847636371851, + 0.016968103125691414, + 0.015123486518859863, + 0.005270753987133503, + -0.0005003225523978472, + -0.010435087606310844, + 0.017476554960012436, + -0.030719952657818794, + 0.01623498648405075, + 0.013054206036031246, + 0.033723365515470505, + 0.016258634626865387, + -0.009571901522576809, + 0.023625275120139122, + 0.008543173782527447, + 0.02131950482726097, + 0.030838197097182274, + -0.021887078881263733, + 0.016613367944955826, + -0.007094677072018385, + 0.01245115790516138, + -0.012770419009029865, + 0.028851686045527458, + -0.042497117072343826, + 0.014827875420451164, + -0.013408939354121685, + 0.016554245725274086, + 0.043324828147888184, + 0.006603961810469627, + -0.02561178430914879, + 0.011079520918428898, + 0.015679236501455307, + -0.03353417292237282, + 0.04942625015974045, + 0.025682730600237846, + -0.013077855110168457, + -0.017381958663463593, + 0.01722824014723301, + -0.01216737087816, + -0.020479967817664146, + 0.014780577272176743, + -0.0057821618393063545, + -0.03982478752732277, + 0.030790898948907852, + -0.01669614017009735, + 0.04443632811307907, + -0.01912015490233898, + -0.029868589714169502, + 0.008998415432870388, + -0.04259170964360237, + -0.027125315740704536, + -0.010547420009970665, + 0.0017869718139991164, + 0.026628687977790833, + -0.013941040262579918, + 0.01132783479988575, + 0.0009082664619199932, + -0.02033807337284088, + -0.010517858900129795, + -0.012604876421391964, + 0.0067044696770608425, + -0.020267127081751823, + 0.01855258084833622, + -0.001350205740891397, + 0.013716375455260277, + 0.0044814711436629295, + -0.007354815024882555, + -0.005725995637476444, + -0.0073016053065657616, + -0.023767167702317238, + 0.012202844955027103, + -0.0033256299793720245, + 0.012581227347254753, + 0.041125476360321045, + 0.03909166902303696, + -0.01172986626625061, + -0.004513988271355629, + -0.002014592755585909, + 0.007201097439974546, + -0.03731800243258476, + -0.046493783593177795, + 0.007544006686657667, + -0.0011514070210978389, + -0.003304937155917287, + -0.013030556961894035, + -0.022147217765450478, + 0.007656339090317488, + 0.01611674204468727, + -0.0091876070946455, + -0.006438419222831726, + 0.01473327912390232, + -0.0046056280843913555, + 0.011570235714316368, + 0.03802746906876564, + -0.01715729385614395, + 0.014969768933951855, + 0.03691596910357475, + 0.014816050417721272, + 0.0278584323823452, + 0.017606623470783234, + -0.010263632982969284, + 0.00035787472734227777, + -0.02601381577551365, + -0.015348151326179504, + 0.0276928897947073, + -0.023424258455634117, + 0.008353982120752335, + -0.0029176860116422176, + 0.017039049416780472, + 0.00033902950235642493, + -0.030790898948907852, + -0.010435087606310844, + -0.005749644711613655, + -0.015986671671271324, + 0.02293945662677288, + 0.02930101566016674, + 0.010293194092810154, + -0.015407273545861244, + 0.006479804869741201, + -0.01981779746711254, + 0.013858268968760967, + 0.010967188514769077, + -0.0278584323823452, + -0.01843433640897274, + 0.013006907887756824, + -0.01427212543785572, + -0.015147135592997074, + -0.009406358934938908, + 0.0019096506293863058, + -0.04576066881418228, + -0.0023619362618774176, + 0.02057456411421299, + -0.00991481076925993, + -0.008495875634253025, + -0.01855258084833622, + 0.015903901308774948, + 0.01245115790516138, + -0.021307680755853653, + -0.012120073661208153, + -0.012841365300118923, + 0.01230926439166069, + 0.010068529285490513, + -0.012498456053435802, + -0.005530891939997673, + -0.008980678394436836, + 0.055054694414138794, + -0.024642178788781166, + 0.002685630926862359, + -0.002548171440139413, + 0.013799146749079227, + 0.021106664091348648, + -0.025327997282147408, + 0.014544088393449783, + 0.010015319101512432, + -0.0033965767361223698, + 0.02075193077325821, + 0.017949532717466354, + -0.006136895623058081, + 0.01225014217197895, + -0.018351564183831215, + 0.03202064335346222, + -0.00368331978097558, + -0.017523853108286858, + -0.06162909418344498, + -0.02289215847849846, + 0.0009370886255055666, + 0.0073370784521102905, + 0.033959854394197464, + 0.0005975048406980932, + -0.028402356430888176, + 0.00576442526653409, + -0.006586225237697363, + -0.0013509447453543544, + 0.016045793890953064, + -0.0019244311843067408, + 0.03317943960428238, + 0.019616782665252686, + 0.04034506529569626, + 0.03017602674663067, + 0.0006839712150394917, + 0.0425444133579731, + 0.027172613888978958, + -0.01155841164290905, + -0.01716911792755127, + -0.003387708216905594, + -0.0025747765321284533, + -0.01407110970467329, + 0.023104999214410782, + 0.026628687977790833, + 0.008584558963775635, + -0.001254132017493248, + 0.00898659136146307, + -0.015218081884086132, + 0.015478220768272877, + -0.007786408066749573, + 0.02873344160616398, + 0.012805892154574394, + 0.011008573696017265, + 0.003940501715987921, + 0.0006222623051144183, + -0.034078098833560944, + 0.0010760260047391057, + -0.015986671671271324, + 0.0043514021672308445, + -0.026155710220336914, + 0.024003656581044197, + 0.023365136235952377, + -0.004129693377763033, + 0.04519309476017952, + 0.00022558856289833784, + -0.001525355619378388, + 0.008489963598549366, + -0.00039168528746813536, + -0.04550052806735039, + 0.02710166573524475, + 0.010239983908832073, + 0.008229825645685196, + -0.01199000421911478, + 0.004555373918265104, + 0.012155546806752682, + 0.04732149466872215, + 0.007183360401540995, + 0.0067044696770608425, + -0.01433124765753746, + 0.038122065365314484, + 0.013479886576533318, + 0.023483380675315857, + -0.008253474719822407, + -0.006852275691926479, + 0.023376960307359695, + -0.005253016948699951, + 0.013515359722077847, + -0.0038104327395558357, + 0.022123567759990692, + 0.0094832181930542, + -0.0006396294920705259, + 0.0027950070798397064, + 0.028355060145258904, + 0.005099299363791943, + 0.015679236501455307, + 0.0027417971286922693, + -0.013692726381123066, + 0.000262170477071777, + -0.012983258813619614, + -0.016152214258909225, + 0.017358310520648956, + -0.03426729142665863, + 0.027007071301341057, + -0.0009481740416958928, + 0.02144957333803177, + -0.03833490610122681, + -0.02601381577551365, + -0.016613367944955826, + 0.024429338052868843, + 0.00705329142510891, + 0.018883666023612022, + 0.03646663948893547, + 0.05330467224121094, + -0.01150520145893097, + 0.028828037902712822, + -0.00967832189053297, + 0.016968103125691414, + -0.005391954444348812, + 0.021638765931129456, + -0.04483835771679878, + 0.006201930344104767, + 0.05311548337340355, + 0.004484427161514759, + -0.008271210826933384, + -0.009861601516604424, + 0.0019687728490680456, + -0.0019007822265848517, + 0.0004057268379256129, + -0.0056727854534983635, + 0.0010797211434692144, + -0.00687592476606369, + 0.013349817134439945, + 0.005303271114826202 + ] + }, + { + "HotelId": "38", + "HotelName": "Lakeside B & B", + "Description": "Nature is Home on the beach. Explore the shore by day, and then come home to our shared living space to relax around a stone fireplace, sip something warm, and explore the library by night. Save up to 30 percent. Valid Now through the end of the year. Restrictions and blackouts may apply.", + "Description_fr": "La nature est Ć  la maison sur la plage. Explorez le rivage le jour, puis rentrez chez vous dans notre espace de vie commun pour vous dĆ©tendre autour d'une cheminĆ©e en pierre, siroter quelque chose de chaud et explorer la bibliothĆØque la nuit. Ɖconomisez jusqu'Ć  30%. Valide maintenant jusqu'Ć  la fin de l'annĆ©e. Des restrictions et une panne peuvent s'appliquer.", + "Category": "Boutique", + "Tags": [ + "laundry service", + "concierge", + "free parking" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2017-06-02T00:00:00Z", + "Rating": 4.7, + "Address": { + "StreetAddress": "20 W Kinzie St", + "City": "Chicago", + "StateProvince": "IL", + "PostalCode": "60654", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -87.62864, + 41.88951 + ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 265.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 69.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 244.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 115.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 71.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 237.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 125.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + } + ], + "embedding": [ + -0.01376394834369421, + 0.03177111968398094, + 0.05097169429063797, + 0.030816392973065376, + 0.022966433316469193, + -0.009136185050010681, + -0.023960938677191734, + 0.03585521876811981, + 0.02169346809387207, + -0.00009043779573403299, + 0.0012099810410290956, + -0.013909809291362762, + -0.04397037997841835, + -0.00608968548476696, + 0.0035437527112662792, + 0.047232355922460556, + -0.0380033478140831, + 0.0017934239003807306, + 0.0438377782702446, + 0.022926654666662216, + 0.008234500885009766, + -0.015394936315715313, + -0.022542111575603485, + 0.031320277601480484, + -0.006126150488853455, + 0.02861522138118744, + -0.03593477979302406, + 0.037817709147930145, + 0.06805066019296646, + 0.022542111575603485, + -0.017702188342809677, + -0.022449292242527008, + 0.05325242504477501, + 0.009951679036021233, + 0.029357785359025, + -0.010037870146334171, + 0.005420051980763674, + -0.045375946909189224, + -0.0024630571715533733, + -0.05813213065266609, + -0.010574902407824993, + 0.006712908390909433, + -0.007167065516114235, + 0.015991639345884323, + -0.010482082143425941, + 0.03349492698907852, + 0.04696715250611305, + -0.0016185567947104573, + 0.004143770784139633, + 0.02272775210440159, + 0.015792738646268845, + -0.07197564095258713, + -0.0437316969037056, + -0.06486824154853821, + -0.035961300134658813, + -0.00964006781578064, + -0.0008759931079111993, + 0.0004133411275688559, + -0.016760723665356636, + 0.04964568838477135, + 0.02689141407608986, + 0.0023404015228152275, + 0.028853902593255043, + 0.05452539026737213, + -0.03269932419061661, + 0.035377856343984604, + -0.03299104422330856, + 0.02400071918964386, + -0.03402533009648323, + 0.019266875460743904, + 0.011987099424004555, + 0.045428987592458725, + -0.030789872631430626, + -0.0321689210832119, + -0.010177101008594036, + 0.018153030425310135, + -0.022462552413344383, + -0.012225780636072159, + 0.042564813047647476, + -0.013724167831242085, + -0.027978738769888878, + 0.02752789668738842, + -0.03874591365456581, + 0.04057580232620239, + 0.018577352166175842, + -0.04808099940419197, + 0.015673397108912468, + 0.022237131372094154, + -0.0934039056301117, + 0.0526159405708313, + 0.051289934664964676, + -0.02986166812479496, + -0.044925104826688766, + -0.040231041610240936, + -0.03344188630580902, + -0.01575295813381672, + -0.018179550766944885, + -0.01661486178636551, + 0.0013591567985713482, + 0.04044320061802864, + -0.007259886246174574, + -0.05929901450872421, + 0.00046451669186353683, + -0.015766218304634094, + 0.037075143307447433, + 0.01202687993645668, + -0.061102382838726044, + 0.03264628350734711, + 0.010064390487968922, + -0.02044702135026455, + -0.10220859199762344, + -0.021149804815649986, + 0.03447617217898369, + 0.00981907919049263, + -0.044209059327840805, + -0.01111193560063839, + 0.045985907316207886, + -0.011562777683138847, + 0.02366921678185463, + 0.0379503071308136, + -0.03389272838830948, + 0.015660138800740242, + -0.016243580728769302, + 0.009295306168496609, + 0.002705053426325321, + -0.015991639345884323, + 0.00034476170549169183, + 0.002149788197129965, + -0.03869287297129631, + -0.025817347690463066, + 0.0032802089117467403, + 0.015089955180883408, + 0.02030116133391857, + -0.05020260810852051, + 0.004899594467133284, + -0.030259471386671066, + -0.005976974498480558, + -0.0024531122762709856, + -0.032593242824077606, + 0.05030868947505951, + 0.05807908996939659, + 0.008207980543375015, + 0.023549877107143402, + 0.0024796323850750923, + -0.04932744428515434, + 0.0009497522260062397, + 0.029729068279266357, + 0.02752789668738842, + 0.015673397108912468, + 0.02514108456671238, + 0.022714493796229362, + -0.03741990774869919, + -0.03269932419061661, + 0.023218374699354172, + 0.03524525463581085, + -0.01080695353448391, + 0.002731573535129428, + 0.024212880060076714, + -0.06921754777431488, + 0.02744833566248417, + -0.021322185173630714, + -0.003089595353230834, + -0.018179550766944885, + 0.027713537216186523, + 0.043015655130147934, + 0.01813977025449276, + -0.03932935744524002, + -0.021202845498919487, + -0.06640641391277313, + 0.030100349336862564, + -0.003931609448045492, + -0.006974794901907444, + 0.004216700792312622, + 0.03917023539543152, + 0.0022591836750507355, + -0.0022989639546722174, + 0.04031059890985489, + 0.012716403231024742, + -0.0016351318918168545, + 0.0027862712740898132, + -0.025021744892001152, + 0.009573767893016338, + 0.0002548418997321278, + 0.005194630939513445, + -0.022290170192718506, + 0.001705575967207551, + -0.05982941761612892, + 0.05375630781054497, + 0.010183731094002724, + -0.0018746418645605445, + -0.04752407595515251, + 0.00086190429283306, + -0.012636843137443066, + -0.03447617217898369, + 0.021534347906708717, + -0.024676982313394547, + 0.0031326906755566597, + 0.03680994361639023, + -0.04031059890985489, + 0.02275427244603634, + -0.03582869842648506, + -0.04784231632947922, + 0.07393813133239746, + -0.009620177559554577, + 0.004107305314391851, + 0.03166503831744194, + -0.009441167116165161, + -0.008837834000587463, + 0.02514108456671238, + 0.00832069106400013, + 0.05505579337477684, + 0.037817709147930145, + 0.01841823197901249, + 0.01550101675093174, + 0.003533807583153248, + -0.05441930890083313, + -0.012384901754558086, + -0.03102855384349823, + 0.007922889664769173, + 0.10793693363666534, + -0.03930283710360527, + -0.017755229026079178, + 0.04519030451774597, + 0.01958511769771576, + 0.011211385950446129, + 0.02194540947675705, + 0.03039207123219967, + -0.00922237616032362, + 0.025008484721183777, + -0.012842373922467232, + 0.037287306040525436, + 0.050653450191020966, + -0.0018497791606932878, + -0.04407645761966705, + -0.008605782873928547, + 0.006209026090800762, + -0.029755588620901108, + -0.014413692057132721, + -0.018099989742040634, + 0.0023221690207719803, + -0.05155513808131218, + 0.059458136558532715, + -0.022992953658103943, + 0.010071019642055035, + 0.010687612928450108, + 0.0070543549954891205, + 0.02027464099228382, + -0.009328456595540047, + -0.010024609975516796, + 0.004501792602241039, + -0.0065736775286495686, + 0.04041668027639389, + 0.0024033868685364723, + -0.048797041177749634, + 0.046012427657842636, + -0.02450460195541382, + -0.06348919868469238, + 0.03935587406158447, + 0.0321689210832119, + -0.01493083406239748, + 0.05325242504477501, + -0.013492116704583168, + -0.0219719298183918, + -0.013883288949728012, + 0.0190281942486763, + -0.05797300860285759, + 0.048293158411979675, + 0.021786287426948547, + -0.0161374993622303, + -0.012060030363500118, + 0.012258931063115597, + -0.010090909898281097, + -0.025870388373732567, + -0.05343806743621826, + 0.0109859649091959, + -0.03792378678917885, + 0.019598377868533134, + -0.006729483604431152, + -0.0057084583677351475, + -0.0024796323850750923, + -0.015713177621364594, + -0.01580599881708622, + 0.01523581612855196, + -0.007803548593074083, + -0.0031558957416564226, + -0.0024779748637229204, + -0.028376542031764984, + 0.06317095458507538, + 0.02994122914969921, + 0.024067020043730736, + -0.002985172439366579, + 0.011887649074196815, + -0.03169155865907669, + -0.026904674246907234, + -0.019213834777474403, + 0.0012389874318614602, + 0.00010100440704263747, + -0.03052467107772827, + 0.0438377782702446, + -0.0161905400454998, + -0.017105484381318092, + -0.022449292242527008, + -0.00033958200947381556, + -0.007564867846667767, + 0.04107968509197235, + 0.05738956481218338, + 0.03614693880081177, + -0.02014203928411007, + 0.03285844251513481, + 0.005376956891268492, + 0.009461057372391224, + 0.009341716766357422, + 0.03174459934234619, + -0.06216318905353546, + -0.01401588972657919, + -0.020340941846370697, + -0.01955859735608101, + -0.004723898600786924, + -0.011158345267176628, + 0.000963012280408293, + 0.014108709990978241, + 0.01699940487742424, + 0.05744260549545288, + 0.0045415726490318775, + 0.010071019642055035, + 0.011191495694220066, + 0.029994269832968712, + -0.0320628397166729, + 0.018351931124925613, + -0.012239040806889534, + -0.03752598538994789, + -0.02413332089781761, + 0.03967411816120148, + 0.015421456657350063, + -0.018020428717136383, + -0.03980671614408493, + 0.001987352268770337, + 0.002043707761913538, + -0.06693681329488754, + -0.013200395740568638, + -0.03871939331293106, + -0.06752025336027145, + -0.030179910361766815, + 0.008963804692029953, + -0.0030978829599916935, + 0.006185820791870356, + 0.012902043759822845, + -0.009401386603713036, + 0.02760745771229267, + 0.03208936005830765, + -0.03394576907157898, + -0.016986144706606865, + -0.009938419796526432, + 0.023099035024642944, + -0.001163570792414248, + 0.030073828995227814, + 0.08030296117067337, + -0.03824203088879585, + -0.0060830553993582726, + 0.04145096614956856, + -0.024875883013010025, + -0.03633258119225502, + 0.020181819796562195, + -0.014466731809079647, + -0.010800323449075222, + -0.04145096614956856, + -0.0352717749774456, + -0.0351126529276371, + 0.03155895695090294, + -0.02366921678185463, + 0.0026752182748168707, + 0.02116306498646736, + -0.01783478818833828, + 0.024650461971759796, + -0.027103574946522713, + 0.04691411182284355, + 0.03848071023821831, + 0.023457055911421776, + 0.03670386224985123, + 0.01347222737967968, + -0.03614693880081177, + -0.002287361305207014, + 0.0019160795491188765, + -0.016853542998433113, + -0.008705233223736286, + -0.0029603096190840006, + -0.03879895433783531, + -0.0645499974489212, + -0.008977064862847328, + -0.014519772492349148, + 0.02630797028541565, + -0.08719819039106369, + -0.05075953155755997, + 0.01073402352631092, + 0.015288855880498886, + -0.030657272785902023, + 0.012199260294437408, + -0.0075781275518238544, + -0.011629077605903149, + -0.008121790364384651, + -0.01379046868532896, + -0.01905471459031105, + -0.032487161457538605, + -0.01780826784670353, + -0.014029149897396564, + -0.00016015673463698477, + 0.015142994932830334, + -0.022648192942142487, + -0.04145096614956856, + -0.03110811486840248, + -0.03110811486840248, + -0.021958669647574425, + 0.028429580852389336, + 0.011940689757466316, + -0.017675668001174927, + 0.025353245437145233, + -0.01140365656465292, + -0.02747485600411892, + 0.028853902593255043, + 0.0030581026803702116, + 0.0023950994946062565, + 0.0029520222451537848, + 0.026215150952339172, + -0.013021384365856647, + -0.04118576645851135, + 0.02597646974027157, + 0.027262695133686066, + -0.001224898616783321, + -0.013107575476169586, + -0.03052467107772827, + 0.011562777683138847, + 0.0380563884973526, + 0.028403060510754585, + 0.033123645931482315, + -0.015116475522518158, + 0.007969299331307411, + -0.035457417368888855, + -0.003245401196181774, + -0.0006319250096566975, + 0.022489072754979134, + -0.024146579205989838, + -0.016522042453289032, + -0.07335468381643295, + 0.02744833566248417, + 0.0033431940246373415, + 0.0026818483602255583, + 0.04789535701274872, + -0.013803728856146336, + -0.03824203088879585, + -0.0032619761768728495, + -0.04232612997293472, + -0.0641787201166153, + 0.007863218896090984, + 0.013750688172876835, + -0.015116475522518158, + 0.0528281033039093, + 0.027713537216186523, + -0.006722853519022465, + -0.008261021226644516, + 0.008884244598448277, + 0.05622268095612526, + 0.00008567245822632685, + 0.007531717419624329, + -0.015116475522518158, + 0.008214610628783703, + 0.03442313149571419, + -0.026705773547291756, + 0.041265323758125305, + 0.019492296501994133, + -0.017291126772761345, + -0.0028973245061933994, + -0.0176358874887228, + 0.008897503837943077, + -0.026228411123156548, + 0.008512962609529495, + -0.014506512321531773, + -0.013883288949728012, + 0.021454786881804466, + 0.018709953874349594, + -0.009746148250997066, + -0.023072514683008194, + 0.020287901163101196, + -0.0205796230584383, + 0.039461955428123474, + 0.008234500885009766, + -0.03224848210811615, + 0.0022144310642033815, + -0.0007711556972935796, + -0.05441930890083313, + -0.021958669647574425, + 0.04054928198456764, + 0.007657688111066818, + 0.013909809291362762, + -0.014201530255377293, + -0.0013450679834932089, + -0.014546291902661324, + -0.0191342756152153, + 0.004057580139487982, + 0.0469406321644783, + 0.02549910731613636, + 0.0087516438215971, + -0.01572643779218197, + 0.0027846137527376413, + 0.050653450191020966, + 0.03996583819389343, + 0.024902403354644775, + -0.020433761179447174, + -0.04919484630227089, + -0.033044084906578064, + 0.023655958473682404, + -0.03041859157383442, + 0.004130510613322258, + -0.014002629555761814, + 0.02755441702902317, + -0.010455561801791191, + -0.02514108456671238, + -0.007962669245898724, + 0.04354605823755264, + -0.03996583819389343, + 0.01265010330826044, + -0.0065305824391543865, + 0.03402533009648323, + 0.04264437034726143, + 0.004955949727445841, + 0.00204868009313941, + -0.019174056127667427, + -0.05380934849381447, + -0.0205796230584383, + 0.0026304656639695168, + -0.036040857434272766, + -0.04285653308033943, + -0.04548202455043793, + -0.009162705391645432, + 0.036518219858407974, + -0.023602917790412903, + 0.00433272635564208, + 0.03996583819389343, + -0.006835564039647579, + -0.015965119004249573, + 0.00862567313015461, + 0.016787244006991386, + 0.0024779748637229204, + 0.0025393026880919933, + -0.028243940323591232, + -0.00212492560967803, + -0.013856768608093262, + -0.0044388072565197945, + 0.02583060786128044, + -0.03052467107772827, + -0.025379765778779984, + 0.027660498395562172, + 0.015461237169802189, + 0.014095449820160866, + -0.03452921286225319, + -0.01905471459031105, + 0.020354202017188072, + 0.022661453112959862, + -0.012365011498332024, + 0.003981334622949362, + 0.029649507254362106, + -0.027063794434070587, + -0.013777208514511585, + -0.0026586432941257954, + -0.010588162578642368, + 0.014175010845065117, + 0.0039415545761585236, + 0.0010326276533305645, + 0.007883109152317047, + -0.011443437077105045, + 0.022157570347189903, + -0.0013599855592474341, + 0.030126869678497314, + -0.043625615537166595, + -0.022568631917238235, + 0.034237489104270935, + -0.019770758226513863, + 0.018882334232330322, + -0.01755632646381855, + 0.04107968509197235, + 0.0010268263285979629, + -0.007160435430705547, + -0.006981424521654844, + -0.00609631510451436, + 0.047736238688230515, + -0.04235265031456947, + 0.027395296841859818, + -0.008546112105250359, + 0.006202396005392075, + 0.011854498647153378, + -0.027952218428254128, + -0.03437009081244469, + -0.03869287297129631, + -0.035510458052158356, + -0.0219188891351223, + -0.03866635262966156, + 0.0190812349319458, + -0.007690838072448969, + 0.00489627942442894, + -0.03100203350186348, + -0.002100063022226095, + -0.00264538312330842, + -0.047205835580825806, + -0.005758183542639017, + -0.001025997567921877, + -0.03357448801398277, + -0.034900493919849396, + -0.03277888149023056, + -0.05388890951871872, + -0.005807908717542887, + -0.01644248142838478, + 0.003131033154204488, + 0.003376344218850136, + 0.007670948281884193, + -0.02280731312930584, + -0.03047163225710392, + -0.01644248142838478, + -0.03177111968398094, + 0.0016550220316275954, + -0.017383946105837822, + -0.02075200341641903, + -0.03275236114859581, + -0.006722853519022465, + 0.028986504301428795, + 0.05935205519199371, + 0.015646878629922867, + -0.024013979360461235, + -0.02597646974027157, + 0.00627201097086072, + 0.014572812244296074, + -0.02146804705262184, + 0.04269741103053093, + 0.046622391790151596, + -0.017874568700790405, + -0.0057847038842737675, + -0.02744833566248417, + 0.013518637046217918, + -0.0029818573966622353, + 0.007743878290057182, + -0.004760363604873419, + -0.005950454622507095, + 0.01672094315290451, + -0.0109859649091959, + 0.008015709929168224, + -0.008207980543375015, + 0.014267831109464169, + -0.007299666292965412, + -0.004359246697276831, + -0.05733652412891388, + 0.012835743837058544, + -0.0026586432941257954, + -0.006855454295873642, + -0.0028326816391199827, + 0.026228411123156548, + -0.03389272838830948, + -0.007312926463782787, + 0.01786130852997303, + -0.0038984594866633415, + -0.0008668767986819148, + 0.035483937710523605, + 0.016654642298817635, + -0.00689523434266448, + 0.00032176380045711994, + -0.01778174750506878, + -0.03580217808485031, + -0.01616401970386505, + 0.030604232102632523, + -0.004418917000293732, + -0.01523581612855196, + -0.03471485152840614, + 0.00041872801375575364, + 0.03394576907157898, + 0.03702210262417793, + 0.03447617217898369, + 0.0005067831370979548, + -0.009427906945347786, + 0.023311195895075798, + 0.0352187342941761, + -0.004955949727445841, + 0.005539392586797476, + 0.013458967208862305, + 0.0017122060526162386, + 0.016044680029153824, + -0.005645473022013903, + -0.040098439902067184, + 0.0050487699918448925, + -0.01344570703804493, + 0.044315140694379807, + -0.008433401584625244, + -0.0019160795491188765, + 0.014426951296627522, + -0.013127465732395649, + 0.024345481768250465, + -0.016376180574297905, + -0.03235455974936485, + 0.010143950581550598, + 0.010336221195757389, + -0.011834608390927315, + -0.011927429586648941, + 0.009434537030756474, + -0.042432211339473724, + -0.003305071499198675, + 0.01123790629208088, + -0.018550831824541092, + -0.028562182560563087, + -0.025644967332482338, + -0.002865831833332777, + 0.012424681335687637, + 0.01694636419415474, + -0.015315376222133636, + -0.035457417368888855, + 0.03391924872994423, + -0.028535662218928337, + -0.024783063679933548, + 0.013936329632997513, + 0.031320277601480484, + -0.017145264893770218, + -0.0002629222581163049, + 0.0320628397166729, + 0.017291126772761345, + -0.01661486178636551, + 0.0350596159696579, + 0.012941824272274971, + 0.0321158803999424, + 0.012139590457081795, + 0.01852431148290634, + 0.030789872631430626, + 0.006371461786329746, + -0.03747294470667839, + -0.050043489784002304, + 0.06720201671123505, + -0.008950544521212578, + -0.03219544142484665, + 0.009036734700202942, + -0.026321230456233025, + 0.007796918973326683, + 0.02597646974027157, + -0.07261212170124054, + -0.015302116051316261, + -0.00891739409416914, + -0.04564114660024643, + 0.015925338491797447, + -0.010800323449075222, + 0.01844475232064724, + -0.00859915278851986, + 0.04208745062351227, + -0.03842766955494881, + 0.005957084707915783, + -0.06969490647315979, + -0.035351336002349854, + 0.014281091280281544, + -0.011324096471071243, + 0.011271055787801743, + -0.010919664055109024, + -0.02864174172282219, + 0.01083347387611866, + -0.009905269369482994, + 0.005748238414525986, + 0.014692152850329876, + 0.009931789711117744, + -0.01436065137386322, + -0.023045994341373444, + 0.01518277544528246, + 0.02171998843550682, + 0.012093179859220982, + -0.004273056052625179, + 0.018961893394589424, + -0.048797041177749634, + -0.0028940094634890556, + 0.008168200962245464, + -0.007041094824671745, + 0.008705233223736286, + -0.001021025120280683, + -0.042432211339473724, + -0.038401149213314056, + 0.011410286650061607, + -0.038905031979084015, + -0.005062030162662268, + 0.005864263977855444, + 0.0002529771882109344, + -0.0647621601819992, + 0.034820932894945145, + -0.03614693880081177, + 0.008227870799601078, + 0.02255537174642086, + -0.03585521876811981, + -0.012272191233932972, + 0.051130812615156174, + -0.027793098241090775, + -0.008924024179577827, + -0.05463147163391113, + -0.004060895182192326, + -0.04200788959860802, + -0.003696243278682232, + -0.019266875460743904, + -0.00026416537002660334, + -0.0013309791684150696, + 0.009182595647871494, + -0.03691602498292923, + 0.044845543801784515, + 0.008592522703111172, + 0.018869074061512947, + -0.040045399218797684, + 0.01520929578691721, + -0.019399477168917656, + -0.017795007675886154, + 0.05781388655304909, + -0.030683793127536774, + 0.039514996111392975, + 0.044765982776880264, + -0.02663947269320488, + -0.021149804815649986, + -0.00010711647337302566, + 0.0016890008701011539, + 0.027766577899456024, + 0.02813786081969738, + 0.009931789711117744, + 0.04283001273870468, + 0.024849362671375275, + 0.00010457840835442767, + -0.003091252874583006, + 0.0013028014218434691, + -0.002666930668056011, + -0.007359336595982313, + 0.021070245653390884, + 0.02050006203353405, + 0.006762633565813303, + -0.022011710330843925, + -0.00424985121935606, + 0.008300801739096642, + -0.0292782261967659, + -0.02872130274772644, + -0.008638933300971985, + 0.003051472594961524, + -0.011337356641888618, + -0.011065525002777576, + -0.015421456657350063, + -0.015076695010066032, + 0.013777208514511585, + -0.008214610628783703, + 0.01686680316925049, + 0.04052276164293289, + 0.003795693861320615, + 0.001848121639341116, + -0.012868894264101982, + -0.01664138212800026, + -0.03704862296581268, + 0.012789333239197731, + -0.009507467038929462, + 0.0036630933173000813, + 0.0011942347045987844, + -0.01994313858449459, + -0.04198136925697327, + -0.012716403231024742, + 0.008658822625875473, + 0.016482261940836906, + -0.04763015732169151, + 0.009712998755276203, + 0.0011494819773361087, + 0.04765667766332626, + -0.02702401392161846, + -0.007346076425164938, + -0.010674352757632732, + 0.017065705731511116, + -0.006729483604431152, + -0.018988413736224174, + 0.010667722672224045, + -0.01404241006821394, + -0.01841823197901249, + 0.03638562187552452, + -0.005555967800319195, + -0.014002629555761814, + -0.00702120503410697, + 0.0031923609785735607, + -0.012968344613909721, + 0.006341626401990652, + 0.024716762825846672, + 0.005313971545547247, + -0.014838013797998428, + -0.020261380821466446, + 0.009235636331140995, + 0.004266426432877779, + 0.027421817183494568, + -0.014546291902661324, + -0.001424628309905529, + 0.032487161457538605, + -0.026546651497483253, + -0.01190090924501419, + 0.005522817373275757, + -0.014188271015882492, + 0.0012729663867503405, + -0.015938598662614822, + -0.009679848328232765, + -0.010846734046936035, + -0.02750137634575367, + -0.02572452835738659, + -0.02758093737065792, + -0.030869433656334877, + 0.046436749398708344, + 0.01953207701444626, + 0.019598377868533134, + -0.01760936714708805, + 0.024425040930509567, + -0.018908854573965073, + -0.02158738672733307, + -0.013883288949728012, + -0.003997909836471081, + 0.015315376222133636, + 0.048876602202653885, + -0.021348705515265465, + -0.03214240074157715, + -0.012245670892298222, + -0.030763352289795876, + -0.0027846137527376413, + 0.0004757048736792058, + 0.013147355057299137, + 0.027421817183494568, + -0.005115070380270481, + -0.0027630662079900503, + 0.0030249524861574173, + 0.006981424521654844, + -0.01498387474566698, + 0.03039207123219967, + 0.004511737264692783, + 0.033627528697252274, + 0.0036332581657916307, + -0.0075781275518238544, + -0.011045634746551514, + -0.04916832596063614, + 0.0039415545761585236, + -0.004889649339020252, + 0.030312510207295418, + 0.004160345532000065, + -0.023629438132047653, + 0.027793098241090775, + 0.05333198606967926, + 0.019492296501994133, + 0.019346436485648155, + 0.023960938677191734, + -0.010104170069098473, + -0.019200574606657028, + -0.008280911482870579, + 0.0012572200503200293, + 0.01319376565515995, + 0.01041578222066164, + 0.019425997510552406, + -0.00897043477743864, + 0.029039544984698296, + 0.010694243013858795, + 0.01217937096953392, + -0.01616401970386505, + 0.012020249851047993, + -0.004352616611868143, + 0.004044319968670607, + -0.011065525002777576, + 0.02108350396156311, + -0.026758812367916107, + 0.002932131988927722, + 0.01996965892612934, + 0.0146788926795125, + -0.0010649490868672729, + -0.006182505749166012, + 0.04980480670928955, + 0.016283361241221428, + -0.019784018397331238, + 0.008963804692029953, + 0.03264628350734711, + -0.018816033378243446, + -0.04439470171928406, + 0.01406893040984869, + 0.0352187342941761, + -0.026984233409166336, + 0.018351931124925613, + -0.04922136664390564, + 0.02016855962574482, + 0.02930474653840065, + 0.003553697606548667, + -0.018511051312088966, + -0.0063681467436254025, + -0.01872321218252182, + -0.023510096594691277, + 0.028482621535658836, + 0.06974794715642929, + -0.004462012089788914, + -0.05099821463227272, + 0.00849970243871212, + 0.012113070115447044, + 0.03413141146302223, + -0.0248891431838274, + 0.020075740292668343, + 0.0029619671404361725, + 0.02671903371810913, + -0.01969119720160961, + 0.002671903232112527, + 0.019174056127667427, + -0.013909809291362762, + 0.011668858118355274, + -0.004587982781231403, + 0.036518219858407974, + 0.009964939206838608, + 0.03155895695090294, + -0.0006605170201510191, + -0.04587982967495918, + 0.009573767893016338, + -0.01930665597319603, + 0.00497915456071496, + 0.016522042453289032, + 0.03519221395254135, + 0.01806020922958851, + -0.03039207123219967, + -0.015408196486532688, + 0.0025393026880919933, + -0.02085808292031288, + 0.04370517656207085, + -0.03325624391436577, + 0.0013342940947040915, + -0.011383766308426857, + -0.00749193737283349, + 0.008459921926259995, + -0.03752598538994789, + 0.0020735429134219885, + 0.026215150952339172, + -0.013207025825977325, + -0.020208340138196945, + -0.006540527567267418, + 0.006822303868830204, + -0.006358201615512371, + 0.02113654464483261, + -0.014214790426194668, + -0.00818146113306284, + 0.011098675429821014, + 0.021826067939400673, + 0.017675668001174927, + 0.009116295725107193, + 0.02539302594959736, + 0.016734203323721886, + 0.00208680285140872, + 0.02339075691998005, + -0.022144310176372528, + -0.00938812643289566, + -0.002552562626078725, + -0.05375630781054497, + -0.049407005310058594, + 0.019730977714061737, + -0.025936689227819443, + -0.008864354342222214, + 0.029702547937631607, + 0.033070605248212814, + -0.015447976998984814, + 0.029092583805322647, + 0.038374632596969604, + 0.012537392787635326, + -0.01408218964934349, + -0.009480946697294712, + 0.03879895433783531, + 0.009189225733280182, + 0.004995729774236679, + 0.006262066308408976, + -0.008314060978591442, + 0.000070392299676314, + -0.04847880080342293, + 0.005943824537098408, + 0.02380181849002838, + 0.014811493456363678, + -0.04375821724534035, + -0.005675308406352997, + 0.02103046514093876, + -0.033176686614751816, + -0.02293991483747959, + -0.011264425702393055, + -0.024783063679933548, + 0.023377496749162674, + 0.005376956891268492, + 0.02164042741060257, + -0.0033382216934114695, + 0.02232995070517063, + -0.020380720496177673, + 0.03471485152840614, + 0.056434839963912964, + -0.0117218978703022, + 0.02252885140478611, + -0.019518816843628883, + 0.003046500263735652, + 0.0264405719935894, + -0.033707085996866226, + -0.013604827225208282, + 0.0013981082011014223, + -0.021826067939400673, + -0.034820932894945145, + -0.005980289541184902, + 0.022900134325027466, + 0.000420592725276947, + -0.041344884783029556, + -0.02569800801575184, + 0.008559372276067734, + 0.042564813047647476, + -0.03468833118677139, + 0.04500466212630272, + -0.005546022672206163, + 0.024875883013010025, + 0.051183853298425674, + -0.007704098243266344, + 0.0012994864955544472, + 0.03612041845917702, + 0.006835564039647579, + -0.0292251855134964, + 0.015713177621364594, + -0.023682476952672005, + 0.030232951045036316, + -0.051289934664964676, + -0.0323280394077301, + 0.014997134916484356, + -0.0320097990334034, + 0.0109859649091959, + 0.010250031016767025, + 0.009686478413641453, + 0.009732888080179691, + 0.005277506075799465, + 0.0028343391604721546, + -0.0160048995167017, + -0.0076974681578576565, + 0.017874568700790405, + -0.011058894917368889, + -0.0066664982587099075, + 0.01966467872262001, + -0.04277697205543518, + 0.03338884562253952, + 0.019213834777474403, + -0.00936160609126091, + 0.005953769665211439, + 0.032407600432634354, + 0.013028014451265335, + 0.006122835446149111, + 0.024372002109885216, + -0.05372978746891022, + 0.013326366432011127, + -0.017821528017520905, + -0.013843508437275887, + -0.019545337185263634, + -0.006613458041101694, + 0.009905269369482994, + 0.015567317605018616, + -0.031850676983594894, + -0.01205340027809143, + -0.030285989865660667, + 0.027421817183494568, + 0.025737788528203964, + -0.012378271669149399, + 0.0879938006401062, + 0.011357246898114681, + -0.010283181443810463, + -0.010157210752367973, + 0.012822483666241169, + 0.005923934280872345, + 0.004475272260606289, + 0.012756183743476868, + -0.016230320557951927, + 0.023218374699354172, + -0.0016732545336708426, + -0.02019507996737957, + -0.009202485904097557, + -0.024676982313394547, + -0.0072333659045398235, + -0.0008407710702158511, + 0.034953534603118896, + 0.009925159625709057, + -0.0006439419812522829, + 0.010422411374747753, + -0.007511827163398266, + 0.030232951045036316, + 0.022794052958488464, + 0.013538527302443981, + 0.00991852954030037, + -0.006752688437700272, + -0.011476587504148483, + -0.005857634358108044, + 0.030683793127536774, + 0.023708997294306755, + 0.003046500263735652, + -0.01042904146015644, + -0.02100394479930401, + 0.015262335538864136, + 0.014493252150714397, + -0.013505376875400543, + 0.01969119720160961, + -0.003547067753970623, + -0.0021779658272862434, + 0.03940891474485397, + 0.018537571653723717, + -0.01095944456756115, + 0.00024738311185501516, + -0.019187316298484802, + 0.006046589929610491, + 0.010356111451983452, + -0.03845418989658356, + 0.00976603850722313, + 0.000431366526754573, + -0.0021298981737345457, + -0.017874568700790405, + 0.04463338106870651, + 0.0352717749774456, + -0.0014577785041183233, + -0.0018282316159456968, + -0.04288305342197418, + 0.02113654464483261, + -0.007279776036739349, + -0.017344165593385696, + -0.016296621412038803, + -0.01824585162103176, + -0.030179910361766815, + -0.01849779114127159, + 0.010999225080013275, + -0.015978379175066948, + -0.00759138772264123, + -0.015567317605018616, + 0.027421817183494568, + 0.005310656502842903, + 0.02171998843550682, + 0.010793693363666534, + 0.0065836226567626, + 0.014586072415113449, + 0.0024166470393538475, + 0.016323141753673553, + 0.0029603096190840006, + -0.028323501348495483, + -0.0076377978548407555, + -0.005794649012386799, + -0.042485252022743225, + -0.00248626247048378, + 0.036040857434272766, + 0.0033929194323718548, + -0.005894099362194538, + 0.02164042741060257, + -0.001742041204124689, + 0.005347121506929398, + 0.004415601957589388, + 0.005337176378816366, + 0.000943122198805213, + 0.007332816254347563, + -0.013989369384944439, + 0.00632505165413022, + 0.017463507130742073, + 0.034927014261484146, + 0.011450067162513733, + -0.007651058025658131, + -0.0064874873496592045, + -0.008678712882101536, + -0.014559552073478699, + 0.005045454949140549, + -0.028456101194024086, + -0.04139792546629906, + 0.030153390020132065, + 0.007803548593074083, + 0.0013069452252238989, + -0.0014544634614139795, + -0.018709953874349594, + 0.018511051312088966, + 0.01495735440403223, + -0.03744642436504364, + 0.0033813167829066515, + -0.028429580852389336, + -0.01202687993645668, + -0.03498005494475365, + -0.012046770192682743, + 0.022701233625411987, + -0.03863983228802681, + 0.01821933127939701, + 0.002748148748651147, + 0.006689703091979027, + 0.0004690748464781791, + 0.0026188630145043135, + -0.04001887887716293, + -0.0160048995167017, + 0.005668678320944309, + 0.010495342314243317, + 0.01882929354906082, + 0.004306206479668617, + 0.05606355890631676, + 0.027395296841859818, + 0.02641405165195465, + -0.008983694948256016, + 0.02171998843550682, + -0.040178000926971436, + -0.009202485904097557, + -0.01953207701444626, + -0.013332996517419815, + 0.036650821566581726, + 0.014838013797998428, + 0.022767532616853714, + 0.01922709494829178, + -0.02869478240609169, + -0.008930654264986515, + 0.005910674575716257, + 0.03519221395254135, + -0.0044089718721807, + 0.0018166290828958154, + 0.007538347505033016, + 0.002363606821745634, + -0.06035982072353363, + 0.0026818483602255583, + 0.004147085826843977, + 0.021322185173630714, + 0.011443437077105045, + -0.009898639284074306, + -0.013299846090376377, + -0.027262695133686066, + -0.03633258119225502, + -0.006772578693926334, + -0.00012700656952802092, + 0.016270101070404053, + -0.030126869678497314, + -0.017012665048241615, + 0.039568036794662476, + -0.028562182560563087, + 0.001264678779989481, + 0.011867758817970753, + -0.027262695133686066, + 0.010017979890108109, + 0.015275595709681511, + -0.025233905762434006, + -0.028243940323591232, + -0.016760723665356636, + -0.006030015181750059, + 0.010846734046936035, + 0.016707682982087135, + -0.0205265823751688, + -0.023125555366277695, + 0.006305161397904158, + 0.0017006034031510353, + 0.0005229438538663089, + 0.007989189587533474, + 0.00815494079142809, + 0.017158525064587593, + 0.02630797028541565, + -0.001403909525834024, + -0.023894639685750008, + 0.0062488061375916, + -0.009553877636790276, + 0.02438526041805744, + 0.004246536176651716, + -0.0161109808832407, + -0.018458012491464615, + 0.0021945408079773188, + -0.0025625077541917562, + -0.0032155660446733236, + 0.009911899454891682, + -0.022674713283777237, + -0.010435671545565128, + -0.03882547467947006, + 0.025485847145318985, + -0.045322906225919724, + 0.002706710947677493, + 0.006928384304046631, + -0.018630392849445343, + -0.001140365726314485, + 0.02156086638569832, + 0.0219188891351223, + 0.008811313658952713, + -0.01225230097770691, + -0.03471485152840614, + 0.007863218896090984, + -0.016840282827615738, + 0.03752598538994789, + -0.013432446867227554, + -0.02994122914969921, + 0.017211565747857094, + 0.010541751980781555, + 0.005734978709369898, + 0.0032984414137899876, + -0.025260426104068756, + -0.03633258119225502, + -0.04267089068889618, + 0.0065140072256326675, + 0.03161199763417244, + 0.07855263352394104, + -0.024703502655029297, + -0.041291844099760056, + -0.01341918669641018, + 0.021985189989209175, + 0.051183853298425674, + 0.015845779329538345, + -0.012802593410015106, + 0.013697648420929909, + -0.01961163803935051, + 0.010183731094002724, + 0.0022973064333200455, + 0.0003868209896609187, + 0.02085808292031288, + -0.01230534166097641, + -0.04139792546629906, + -0.006593567784875631, + 0.006039959844201803, + -0.05314634367823601, + 0.006484172306954861, + -0.013803728856146336, + -0.0010873253922909498, + 0.009779298678040504, + 0.04290957376360893, + -0.011390396393835545, + 0.021070245653390884, + 0.048372719436883926, + -0.0032586611341685057, + 0.002663615858182311, + -0.020407240837812424, + 0.005834429059177637, + -0.0052609313279390335, + -0.01438717171549797, + -0.020181819796562195, + 0.021216105669736862, + -0.013578307814896107, + -0.022356471046805382, + 0.029437346383929253, + 0.0031426355708390474, + -0.005804593674838543, + 0.005191315896809101, + 0.011191495694220066, + 0.007193585857748985, + -0.01219263020902872, + -0.03765858709812164, + -0.024186359718441963, + -0.020022699609398842, + 0.022979693487286568, + -0.025949949398636818, + -0.015142994932830334, + 0.003533807583153248, + 0.03330928459763527, + 0.006318421568721533, + 0.00038847848190926015, + -0.02872130274772644, + -0.006195765919983387, + -0.006328366696834564, + -0.05574531853199005, + -0.005996864754706621, + 0.004674173425883055, + 0.01783478818833828, + 0.01872321218252182, + 0.007167065516114235, + -0.003306729020550847, + -0.007969299331307411, + 0.01319376565515995, + -0.00325368857011199, + -0.0040144850499928, + 0.013359516859054565, + 0.018736472353339195, + 0.016535302624106407, + 0.013107575476169586, + -0.002544275252148509, + 0.008466552011668682, + 0.03166503831744194, + -0.01794086955487728, + -0.0036796682979911566, + 0.006258751265704632, + -0.007644427940249443, + -0.0005076118977740407, + 0.013518637046217918, + 0.025379765778779984, + 0.016707682982087135, + -0.013432446867227554, + 0.004700693301856518, + -0.005307341460138559, + 0.010727393440902233, + 0.01433413103222847, + 0.0032023058738559484, + 0.013458967208862305, + 0.024013979360461235, + 0.04261785373091698, + -0.016880063340067863, + 0.03391924872994423, + -0.022953175008296967, + 0.016150759533047676, + 0.041238803416490555, + -0.025631707161664963, + -0.03673038259148598, + -0.0039050893392413855, + -0.005071975290775299, + -0.03044511191546917, + -0.006228915881365538, + 0.0438908189535141, + -0.030232951045036316, + 0.012789333239197731, + -0.014546291902661324, + -0.0073527065105736256, + -0.012583802454173565, + -0.010687612928450108, + -0.0020337626338005066, + -0.00409736018627882, + 0.014214790426194668, + -0.02744833566248417, + 0.04402342066168785, + -0.04336041584610939, + 0.03582869842648506, + 0.005847689229995012, + 0.00844666175544262, + 0.0007152148173190653, + 0.000822124071419239, + 0.030259471386671066, + -0.014029149897396564, + -0.002182938391342759, + 0.002063597785308957, + -0.012384901754558086, + -0.0005888298037461936, + -0.04336041584610939, + -0.002509467536583543, + -0.001241473713889718, + 0.022011710330843925, + 0.0069946846924722195, + 0.04853184148669243, + -0.004733843728899956, + 0.0035967929288744926, + 0.026347750797867775, + -0.03235455974936485, + 0.030577711760997772, + -0.0009141158079728484, + -0.021322185173630714, + -0.018882334232330322, + 0.005370326805859804, + 0.010382631793618202, + 0.03765858709812164, + -0.0074455272406339645, + -0.017436986789107323, + 0.01808672957122326, + 0.007975929416716099, + -0.06529256701469421, + -0.022449292242527008, + 0.027050534263253212, + 0.021269146353006363, + -0.008559372276067734, + -0.005943824537098408, + 0.00922237616032362, + -0.008996955119073391, + -0.014798233285546303, + 0.006467597093433142, + 0.020075740292668343, + -0.03097551316022873, + -0.023510096594691277, + -0.030312510207295418, + -0.015845779329538345 + ] + }, + { + "HotelId": "39", + "HotelName": "White Mountain Lodge & Suites", + "Description": "Live amongst the trees in the heart of the forest. Hike along our extensive trail system. Visit the Natural Hot Springs, or enjoy our signature hot stone massage in the Cathedral of Firs. Relax in the meditation gardens, or join new friends around the communal firepit. Weekend evening entertainment on the patio features special guest musicians or poetry readings.", + "Description_fr": "Vivez parmi les arbres au cœur de la forĆŖt. Parcourez notre vaste rĆ©seau de sentiers. Visitez les sources chaudes naturelles ou profitez de notre massage signature aux pierres chaudes dans la cathĆ©drale des sapins. DĆ©tendez-vous dans les jardins de mĆ©ditation ou rejoignez de nouveaux amis autour du foyer commun. Les divertissements du week-end en soirĆ©e sur la terrasse comprennent des musiciens invitĆ©s spĆ©ciaux ou des lectures de poĆ©sie.", + "Category": "Resort and Spa", + "Tags": [ + "continental breakfast", + "pool", + "restaurant" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2022-05-14T00:00:00Z", + "Rating": 2.4, + "Address": { + "StreetAddress": "3000 E 1st Ave,", + "City": "Denver", + "StateProvince": "CO", + "PostalCode": "80206", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -104.952133, + 39.717941 + ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (Waterfront View)", + "Description_fr": "Suite, 2 lits doubles (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 147.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "tv", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 134.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "suite" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "tv" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 112.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 133.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 King Bed (Amenities)", + "Description_fr": "Suite, 1 trĆØs grand lit (Services)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + } + ], + "embedding": [ + -0.0029984493739902973, + -0.026534732431173325, + 0.04837086424231529, + 0.001627508900128305, + -0.02359192445874214, + -0.015183900482952595, + 0.011041712947189808, + 0.019425006583333015, + 0.04396901652216911, + 0.005168461240828037, + 0.037341516464948654, + 0.01878204010426998, + -0.014281274750828743, + 0.009761962108314037, + 0.02110661193728447, + 0.04777735471725464, + 0.006590406410396099, + -0.0028098872862756252, + 0.022565649822354317, + 0.04945896193385124, + 0.004825339652597904, + 0.022157615050673485, + -0.014429652132093906, + -0.006955166347324848, + 0.03036780096590519, + 0.027771206572651863, + -0.03484383597970009, + 0.03924568369984627, + 0.048197757452726364, + -0.028463631868362427, + -0.02153937704861164, + -0.0012998433085158467, + 0.009088084101676941, + 0.0037867017090320587, + 0.0010169998276978731, + 0.03887474164366722, + 0.0005977579276077449, + -0.012315280735492706, + 0.008970619179308414, + -0.019128253683447838, + 0.0045656803995370865, + 0.04250997677445412, + -0.008204004727303982, + 0.009069536812603474, + -0.00980523880571127, + 0.012321463786065578, + -0.005659959744662046, + 0.043573345988988876, + 0.03036780096590519, + -0.012030892074108124, + -0.018843863159418106, + -0.023060239851474762, + -0.04725803807377815, + -0.01660584658384323, + -0.04725803807377815, + 0.029477540403604507, + 0.011987615376710892, + 0.0008013897459022701, + -0.02434617280960083, + 0.06340638548135757, + 0.038404881954193115, + -0.006092725787311792, + 0.012432746589183807, + 0.03333533927798271, + -0.03704475983977318, + 0.06919308751821518, + -0.01607416197657585, + 0.017013883218169212, + -0.018584204837679863, + 0.046936552971601486, + 0.03115914575755596, + 0.05588862672448158, + -0.008772782981395721, + -0.027771206572651863, + 0.02014216221868992, + 0.023604288697242737, + 0.0011290552793070674, + -0.04938477277755737, + -0.010899518616497517, + -0.053465135395526886, + 0.014837687835097313, + 0.02386394888162613, + -0.026435814797878265, + 0.05168461427092552, + -0.02219470776617527, + -0.03904784843325615, + -0.011394107714295387, + 0.027523910626769066, + -0.05017611384391785, + 0.025619741529226303, + 0.08363509923219681, + 0.015975244343280792, + -0.03321169316768646, + -0.011357014067471027, + -0.00903244223445654, + -0.020290538668632507, + 0.03125806152820587, + -0.028636738657951355, + -0.023851582780480385, + 0.010479116812348366, + 0.031826842576265335, + -0.07290250808000565, + 0.015752678737044334, + 0.019078794866800308, + 0.037292055785655975, + 0.020636750385165215, + -0.014763499610126019, + 0.04018540680408478, + -0.017372459173202515, + 0.03380519896745682, + -0.09708794206380844, + -0.01740955375134945, + 0.015332277864217758, + -0.013205542229115963, + 0.011140630580484867, + 0.02584230713546276, + 0.035214778035879135, + -0.03808340057730675, + 0.03123333305120468, + 0.02127971686422825, + 0.007196278776973486, + 0.01902933418750763, + 0.023999961093068123, + 0.006782060023397207, + 0.010491481982171535, + -0.03439870849251747, + -0.01794123835861683, + 0.005823792424052954, + -0.05603700131177902, + 0.0013253455981612206, + 0.008846971206367016, + 0.0007546355482190847, + 0.03593193367123604, + -0.008989166468381882, + 0.023505371063947678, + -0.04876653477549553, + -0.0157155841588974, + -0.0025935042649507523, + -0.022503826767206192, + -0.004961351864039898, + 0.03338479995727539, + 0.0045842272229492664, + -0.00259041297249496, + -0.012123627588152885, + 0.012748046778142452, + -0.026658380404114723, + 0.031950488686561584, + 0.03702003136277199, + -0.018040155991911888, + 0.012216363102197647, + 0.012340011075139046, + 0.005205555818974972, + -0.03340952843427658, + -0.004816066473722458, + -0.006355476565659046, + -0.022887133061885834, + -0.0049489871598780155, + 0.005758877843618393, + -0.00888406578451395, + 0.0006008491036482155, + -0.03704475983977318, + -0.011882515624165535, + -0.018435828387737274, + 0.01098607201129198, + 0.052377037703990936, + -0.025693930685520172, + -0.03679746761918068, + 0.07270467281341553, + -0.06815444678068161, + 0.041619714349508286, + -0.011412655003368855, + -0.0058701601810753345, + -0.00837711151689291, + 0.0925871729850769, + 0.020871682092547417, + 0.0024729480501264334, + 0.005647595040500164, + 0.010355469770729542, + 0.013551754876971245, + 0.02050074003636837, + -0.022961322218179703, + -0.006936619058251381, + 0.013687767088413239, + 0.04320240020751953, + 0.011233366094529629, + -0.010132904164493084, + -0.03217305243015289, + 0.01948682963848114, + 0.03909730911254883, + -0.0019196259090676904, + -0.04003702849149704, + 0.03998756781220436, + 0.017372459173202515, + 0.0076352269388735294, + 0.03331061080098152, + -0.019152982160449028, + -0.00651003560051322, + -0.015703219920396805, + -0.03212359547615051, + 0.04555170238018036, + -0.02697986364364624, + -0.028636738657951355, + 0.06033993139863014, + -0.03256872668862343, + -0.04226268082857132, + 0.00919936690479517, + -0.015455924905836582, + -0.003582683391869068, + 0.017644483596086502, + -0.021601200103759766, + 0.018571840599179268, + -0.0014659945154562593, + 0.03669854998588562, + 0.036228690296411514, + -0.01961047761142254, + 0.04137242212891579, + -0.037316784262657166, + -0.013823779299855232, + -0.015319912694394588, + 0.04777735471725464, + -0.019400278106331825, + -0.004160734824836254, + 0.012710953131318092, + 0.09060881286859512, + 0.06038939207792282, + 0.0872950628399849, + -0.025520823895931244, + -0.01675422303378582, + 0.029897941276431084, + -0.00704790186136961, + 0.02146518975496292, + 0.03452235460281372, + -0.04335077852010727, + -0.008395658805966377, + -0.021267352625727654, + 0.025075692683458328, + 0.021823765709996223, + 0.03378047049045563, + 0.022788215428590775, + 0.027251888066530228, + -0.03538788482546806, + -0.03902311995625496, + 0.012037074193358421, + 0.026411084458231926, + 0.01522099506109953, + 0.015727950260043144, + -0.01743428409099579, + -0.03704475983977318, + 0.04221322387456894, + 0.053761888295412064, + -0.022911863401532173, + 0.017063342034816742, + -0.038454342633485794, + 0.009823786094784737, + 0.019573383033275604, + 0.004052543547004461, + -0.0377124585211277, + 0.01031219307333231, + 0.03447289392352104, + -0.053514596074819565, + 0.07013280689716339, + 0.00444821547716856, + -0.011196272447705269, + -0.04557643085718155, + 0.003145280759781599, + -0.045996833592653275, + 0.03904784843325615, + 0.01287169475108385, + -0.002086549997329712, + 0.013687767088413239, + -0.04100148007273674, + -0.021848496049642563, + -0.0023245711345225573, + -0.044710900634527206, + 0.01303243637084961, + -0.025186976417899132, + 0.026262708008289337, + -0.02166302502155304, + 0.040506888180971146, + -0.0077403271570801735, + 0.009069536812603474, + 0.02472948096692562, + 0.026460543274879456, + -0.06568150222301483, + -0.03808340057730675, + -0.009063354693353176, + 0.03437397629022598, + 0.0006924254703335464, + -0.037242598831653595, + 0.02209579013288021, + 0.000505408737808466, + 0.04335077852010727, + -0.0030896393582224846, + 0.0022982959635555744, + -0.00836474634706974, + 0.01933845318853855, + -0.010825330391526222, + 0.0018098888685926795, + 0.043573345988988876, + -0.00392889603972435, + -0.021143706515431404, + -0.026336897164583206, + 0.0005270470282994211, + 0.03338479995727539, + 0.03758880868554115, + 0.08403077721595764, + 0.003740333952009678, + -0.028834573924541473, + 0.04663980007171631, + -0.02275112271308899, + 0.023876313120126724, + 0.01086860615760088, + 0.012636763975024223, + 0.035190049558877945, + -0.03313750401139259, + 0.006528582889586687, + -0.03976500406861305, + 0.05336621776223183, + 0.006948983762413263, + -0.007969074882566929, + 0.0282905250787735, + -0.014157627709209919, + 0.015752678737044334, + -0.0004115140181966126, + 0.02108188159763813, + -0.008624406531453133, + 0.019301358610391617, + -0.027845393866300583, + -0.019647572189569473, + -0.007567220833152533, + 0.058905620127916336, + -0.04325186088681221, + -0.005171552766114473, + 0.037366244941949844, + -0.004825339652597904, + 0.006092725787311792, + -0.003357026958838105, + -0.04129823297262192, + 0.0281668771058321, + 0.043573345988988876, + -0.04107566550374031, + -0.015394101850688457, + -0.04767843708395958, + 0.037366244941949844, + -0.04174336418509483, + 0.045848455280065536, + -0.017038611695170403, + 0.023443548008799553, + 0.005996898747980595, + 0.016210174188017845, + 0.015418831259012222, + 0.009224096313118935, + 0.025693930685520172, + -0.017731036990880966, + 0.02323334664106369, + -0.02819160744547844, + 0.06320855021476746, + -0.020364727824926376, + -0.02323334664106369, + 0.02093350514769554, + -0.03983919322490692, + -0.017149895429611206, + 0.023023145273327827, + -0.013910332694649696, + 0.02072330377995968, + -0.0037588810082525015, + -0.04347442463040352, + 0.0010564124677330256, + -0.02697986364364624, + -0.02826579660177231, + 0.002333844779059291, + -0.0029165330342948437, + 0.03232143074274063, + 0.014429652132093906, + -0.022392544895410538, + 0.08175566047430038, + 0.08165674656629562, + 0.012018527835607529, + 0.035190049558877945, + -0.009638315066695213, + -0.044018473476171494, + 0.004760425072163343, + -0.02697986364364624, + -0.01241419930011034, + -0.015171536244452, + -0.0035424979869276285, + -0.02127971686422825, + -0.015554843470454216, + -0.04540332406759262, + 0.022281261160969734, + 0.042757272720336914, + -0.06182369962334633, + -0.026831485331058502, + 0.009465208277106285, + -0.018460556864738464, + -0.0333600677549839, + 0.03019469603896141, + -0.0013562574749812484, + 0.015295183286070824, + -0.008754235692322254, + -0.022738756611943245, + 0.017446648329496384, + -0.009081901982426643, + 0.031084956601262093, + -0.009854697622358799, + 0.02526116371154785, + 0.025570282712578773, + -0.03489329665899277, + -0.04077891260385513, + -0.0018933508545160294, + -0.03459654375910759, + -0.06775877624750137, + 0.023245710879564285, + 0.022479098290205002, + -0.002148373518139124, + -0.04797518998384476, + -0.015962880104780197, + -0.06306017190217972, + 0.008704776875674725, + -0.005440485663712025, + -0.017879413440823555, + 0.005938166286796331, + -0.006247284822165966, + 0.00046792812645435333, + -0.04458725452423096, + 0.008859336376190186, + 0.01303243637084961, + -0.042905647307634354, + -0.01209889817982912, + -0.0002911509945988655, + -0.0059814429841935635, + -0.015901055186986923, + 0.03390411660075188, + 0.07245738059282303, + -0.00970632117241621, + 0.0023910317104309797, + 0.023047875612974167, + -0.01842346228659153, + -0.04893964156508446, + 0.030714014545083046, + 0.026460543274879456, + 0.020562563091516495, + -0.07329817861318588, + 0.05336621776223183, + 0.021428095176815987, + 0.020686211064457893, + 0.04968152567744255, + 0.0077217803336679935, + -0.02161356620490551, + 0.014639852568507195, + 0.000326506415149197, + -0.06399989128112793, + -0.002559501212090254, + -0.053465135395526886, + 0.03444816544651985, + 0.06449448317289352, + 0.018794404342770576, + -0.004630594979971647, + -0.017013883218169212, + -0.0626150444149971, + 0.024593468755483627, + 0.019227171316742897, + -0.03786083310842514, + 0.023369358852505684, + 0.0038577988743782043, + -0.03684692457318306, + 0.026188518851995468, + 0.037316784262657166, + 0.003777428064495325, + 0.0006607408286072314, + -0.014306004159152508, + -0.03966608643531799, + -0.05618537962436676, + -0.015863962471485138, + -0.020537832751870155, + -0.0514867790043354, + -0.01409580372273922, + 0.020006150007247925, + 0.05007719621062279, + 0.03014523722231388, + 0.0033848476596176624, + -0.01721171848475933, + -0.0068191541358828545, + 0.03382992744445801, + 0.0257433895021677, + -0.05386080965399742, + -0.002403396414592862, + 0.028562549501657486, + -0.04072945564985275, + 0.04233686998486519, + -0.006800606846809387, + -0.02338172309100628, + -0.014009250327944756, + -0.012321463786065578, + 0.032049406319856644, + -0.01796596683561802, + -0.05816373601555824, + 0.002870165277272463, + -0.03709422051906586, + 0.001601233845576644, + -0.01574031449854374, + 0.033088043332099915, + -0.013193177990615368, + 0.014318369328975677, + 0.03914676606655121, + 0.015777409076690674, + -0.035041674971580505, + 0.017854684963822365, + 0.04322713240981102, + 0.011820691637694836, + 0.035165321081876755, + 0.00974341481924057, + -0.023629019036889076, + 0.03642652556300163, + 0.04837086424231529, + -0.02608960121870041, + -0.022998416796326637, + 0.02589176595211029, + -0.03991338238120079, + -0.028735656291246414, + -0.009335379116237164, + 0.04978044331073761, + -0.011635220609605312, + -0.007981440052390099, + 0.031035497784614563, + -0.020945869386196136, + -0.01893041655421257, + -0.016816046088933945, + -0.00405563460662961, + -0.03232143074274063, + -0.020513104274868965, + 0.0032704737968742847, + 0.0036383247934281826, + -0.008030898869037628, + 0.021700119599699974, + 0.06533528864383698, + -0.009421931579709053, + -0.004850069526582956, + -0.01852237991988659, + 0.006417300086468458, + -0.00945284403860569, + 0.014058709144592285, + -0.02173721231520176, + 0.00018131731485482305, + -0.00965686235576868, + 0.016914963722229004, + -0.03687165677547455, + 0.01088097132742405, + -0.011938156560063362, + 0.0029567184392362833, + 0.036055583506822586, + -0.0012774321949109435, + -0.027326075360178947, + -0.03274183347821236, + 0.008092722855508327, + -0.006726418621838093, + -0.0006506944773718715, + -0.009384837932884693, + -0.0027001500129699707, + 0.053316760808229446, + -0.013959791511297226, + -0.01081914734095335, + 0.02913132682442665, + -0.019548654556274414, + 0.005440485663712025, + -0.0008701685583218932, + 0.00022217891819309443, + 0.035165321081876755, + -0.013823779299855232, + -0.020846951752901077, + 0.03326115012168884, + -0.004058726131916046, + -0.03996283933520317, + -0.027251888066530228, + 0.005663050804287195, + -0.0005336158210411668, + -0.026312166824936867, + -0.0008964436710812151, + -0.01302007120102644, + -0.003656871849671006, + 0.014936606399714947, + -0.05974642559885979, + -0.005882524885237217, + 0.032964397221803665, + -0.04315294325351715, + -0.00893352460116148, + -0.011888697743415833, + 0.025693930685520172, + 0.014491475187242031, + -0.015406466089189053, + -0.03870163485407829, + 0.018262721598148346, + -0.01454093400388956, + -0.042608894407749176, + -0.03499221429228783, + 0.03382992744445801, + -0.04312821477651596, + 0.0027727929409593344, + -0.00837711151689291, + -0.010151451453566551, + 0.004939713515341282, + -0.041594985872507095, + -0.015950514003634453, + 0.01394742727279663, + -0.008092722855508327, + -0.01557957287877798, + -0.02589176595211029, + -0.011536302976310253, + -0.0028732565697282553, + 0.004151461645960808, + -0.0009497666032984853, + -0.009279737249016762, + 0.013329190202057362, + 0.003160736756399274, + -0.018559474498033524, + -0.0035579539835453033, + 0.0034095770679414272, + 0.043573345988988876, + -0.055542413145303726, + -0.03237089142203331, + -0.006194734945893288, + 0.023752665147185326, + -0.017496107146143913, + 0.024160701781511307, + 0.01098607201129198, + 0.028958221897482872, + -0.018967511132359505, + -0.03929514437913895, + -0.023146793246269226, + -0.0007349292282015085, + -0.00503554055467248, + 0.048989102244377136, + 0.01303243637084961, + -0.04114985466003418, + -0.06983605027198792, + -0.007901068776845932, + 0.0007619771058671176, + -0.012389469891786575, + -0.022862404584884644, + -0.00939102005213499, + 0.0691436231136322, + -0.01020091027021408, + 0.023542465642094612, + -0.025322988629341125, + 0.04315294325351715, + -0.0016367824282497168, + 0.005551768466830254, + -0.029625916853547096, + -0.0026352351997047663, + -0.050101928412914276, + 0.0036228687968105078, + 0.0016893326537683606, + 0.002919624326750636, + 0.026782026514410973, + -0.002281294437125325, + 0.018435828387737274, + -0.021069517359137535, + 0.005771242547780275, + 0.0003815681557171047, + 0.007171549368649721, + -0.0005579589051194489, + -0.007443573325872421, + 0.0230849701911211, + 0.022986052557826042, + 0.027474451810121536, + 0.03922095522284508, + 0.007851609960198402, + -0.008964436128735542, + -0.041520796716213226, + 0.05064597725868225, + 0.08551454544067383, + 0.031851571053266525, + 0.004890254698693752, + 0.02581757679581642, + 0.027350805699825287, + -0.0038856195751577616, + 0.014231815934181213, + -0.036748006939888, + 0.019709395244717598, + 0.004009266849607229, + 0.0016553296009078622, + 0.008785148151218891, + -0.025619741529226303, + -0.04446360468864441, + 0.015455924905836582, + 0.008420388214290142, + 0.05168461427092552, + -0.00778978643938899, + 0.005236467346549034, + -0.0009520850144326687, + -0.005901072174310684, + -0.022812945768237114, + 0.03981446474790573, + -0.03479437902569771, + -0.002681602956727147, + -0.03345898538827896, + -0.020822223275899887, + -0.014788229018449783, + -0.0045842272229492664, + -0.07285305112600327, + -0.005823792424052954, + 0.0019845408387482166, + -0.015183900482952595, + -0.027919583022594452, + -0.010856241919100285, + -0.007369385100901127, + 0.012408017180860043, + 0.000579597195610404, + -0.0005618229042738676, + -0.01668003387749195, + -0.0250262338668108, + -0.03212359547615051, + -0.01675422303378582, + 0.03588247671723366, + -0.02148991823196411, + 0.014392557553946972, + -0.013143719173967838, + 0.02310969866812229, + 0.01010817475616932, + 0.015245724469423294, + 0.010207093320786953, + 0.036748006939888, + 0.019400278106331825, + -0.020921140909194946, + 0.019931960850954056, + 0.002290568081662059, + 0.008599677123129368, + -0.03251926600933075, + -0.013897967524826527, + 0.06340638548135757, + -0.011666132137179375, + -0.018003061413764954, + 0.013143719173967838, + 0.03447289392352104, + -0.014812958426773548, + -0.00994743313640356, + 0.011208636686205864, + -0.013391013257205486, + -0.04958260804414749, + -0.04629358649253845, + 0.018126709386706352, + 0.0029258066788315773, + -0.013959791511297226, + -0.03041725978255272, + -0.010596582666039467, + -0.05811427906155586, + -0.013823779299855232, + -0.016667669638991356, + -0.025273527950048447, + 0.022998416796326637, + 0.0026877853088080883, + 0.009514667093753815, + -0.0031901029869914055, + -0.015604302287101746, + 0.03370628133416176, + -0.03437397629022598, + 0.024234890937805176, + 0.03501694276928902, + -0.003894893219694495, + -0.02386394888162613, + -0.007684686221182346, + 0.010349287651479244, + 0.04011121764779091, + -0.0006561040063388646, + -0.005264288280159235, + 0.054652150720357895, + -0.012086533010005951, + 0.04174336418509483, + -0.014071074314415455, + -0.03593193367123604, + 0.010101992636919022, + -0.04567534849047661, + -0.01941264234483242, + -0.02004324458539486, + 0.0281668771058321, + -0.02915605716407299, + -0.010176180861890316, + 0.006503853481262922, + 0.009897974319756031, + -0.015418831259012222, + 0.04340023919939995, + -0.02712824009358883, + -0.007394114509224892, + -0.008927342481911182, + -0.03667381778359413, + -0.01569085568189621, + 0.0257433895021677, + -0.01946210116147995, + -0.007610497530549765, + -0.032989125698804855, + -0.01731063611805439, + -0.022899499163031578, + 0.01194433867931366, + -0.011659950017929077, + 0.0049706255085766315, + -0.048098839819431305, + 0.027301346883177757, + -0.020908774808049202, + 0.038207046687603, + -0.009273555129766464, + 0.018893323838710785, + -0.030565638095140457, + 0.03120860457420349, + -0.023122064769268036, + 0.021193165332078934, + 0.03044199012219906, + -0.03125806152820587, + -0.013675402849912643, + 0.023220982402563095, + -0.04681290686130524, + -0.039443522691726685, + -0.0010517757618799806, + -0.034101951867341995, + -0.0316784642636776, + 0.025273527950048447, + 0.020488373935222626, + 0.013737225905060768, + 0.02064911648631096, + 0.011418837122619152, + -0.023072605952620506, + -0.009638315066695213, + 0.018089614808559418, + -0.0017928873421624303, + 0.010621312074363232, + -0.025088056921958923, + -0.006067996378988028, + 0.03558572381734848, + 0.03227197006344795, + -0.02118079923093319, + -0.03269237279891968, + -0.04221322387456894, + 0.029947400093078613, + 0.02037709206342697, + -0.0018964420305565, + -0.016037067398428917, + -0.026435814797878265, + 0.03234615921974182, + 0.020921140909194946, + 0.007214826066046953, + 0.006361658684909344, + 0.035190049558877945, + 0.03543734550476074, + 0.024581102654337883, + -0.007486850023269653, + -0.008649135939776897, + 0.013799049891531467, + 0.007344655692577362, + 0.007653774227946997, + -0.0023987595923244953, + -0.00571869220584631, + -0.004995354916900396, + -0.03499221429228783, + 0.022466732189059258, + 0.024642927572131157, + 0.010578035376966, + -0.011981433257460594, + 0.010052533820271492, + -0.03778664767742157, + 0.001254248316399753, + -0.020797492936253548, + 0.0060649048537015915, + 0.019115887582302094, + 0.004015449434518814, + -0.018077250570058823, + -0.03279129043221474, + 0.005375570617616177, + 0.0040710908360779285, + 0.006973713636398315, + 0.009446661919355392, + 0.0111220832914114, + -0.016642939299345016, + -0.003403394715860486, + 0.0017836138140410185, + 0.020253444090485573, + 0.0046089570969343185, + 0.019931960850954056, + 0.0015409557381644845, + 0.022380178794264793, + -0.026633650064468384, + -0.01806488446891308, + 0.02001851424574852, + 0.02586703561246395, + -0.028834573924541473, + -0.013737225905060768, + -0.010930430144071579, + -0.021143706515431404, + -0.022924227640032768, + 0.02930443361401558, + 0.01672949269413948, + 0.026683108881115913, + -0.01466458197683096, + 0.004964443389326334, + -0.007084995973855257, + -0.05519619956612587, + -0.044809818267822266, + 0.009527032263576984, + -0.011010801419615746, + 0.03212359547615051, + 0.009638315066695213, + -0.0003000381402671337, + -0.01634618639945984, + 0.012859329581260681, + -0.03452235460281372, + -0.009483755566179752, + 0.02016689069569111, + 0.00004779261871590279, + -0.0323956198990345, + 0.04562589153647423, + 0.005873251706361771, + -0.006738783325999975, + -0.005332294385880232, + -0.051288943737745285, + -0.03148062899708748, + 0.022911863401532173, + -0.0072457375936210155, + -0.01460275799036026, + -0.034151412546634674, + 0.0011599671561270952, + -0.021700119599699974, + -0.004120549652725458, + -0.022491462528705597, + 0.03029361367225647, + -0.0031220968812704086, + -0.0052271937020123005, + 0.007709415629506111, + 0.031727924942970276, + -0.0039659906178712845, + -0.03501694276928902, + 0.028315255418419838, + -0.01133846677839756, + 0.024432726204395294, + -0.005635230336338282, + -0.002060274826362729, + 0.006030901800841093, + 0.04639250412583351, + 0.014219450764358044, + 0.001938172965310514, + 0.0016259633703157306, + -0.012933517806231976, + -0.006961348466575146, + 0.005622865632176399, + -0.024865493178367615, + 0.027721747756004333, + 0.0018825316801667213, + 0.04307875409722328, + -0.009026260115206242, + -0.00970632117241621, + -0.038281235843896866, + 0.020785128697752953, + -0.02320861630141735, + 0.02391340769827366, + 0.011802144348621368, + 0.017854684963822365, + -0.023295169696211815, + -0.007307561580091715, + -0.01958574913442135, + -0.0036908749025315046, + 0.04072945564985275, + -0.005455941427499056, + -0.0034652184695005417, + -0.01506025344133377, + 0.013625944033265114, + -0.029502270743250847, + 0.00872950628399849, + -0.006942801643162966, + 0.0032055589836090803, + 0.012822235934436321, + -0.005752695258706808, + 0.0023060240782797337, + 0.011004618369042873, + -0.04199065640568733, + 0.0184976514428854, + -0.024865493178367615, + -0.0008925796719267964, + 0.0024528552312403917, + 0.00010857787128770724, + 0.007901068776845932, + 0.017706308513879776, + 0.003981446381658316, + -0.006695506628602743, + 0.03234615921974182, + 0.052426498383283615, + 0.003972172737121582, + -0.008952071890234947, + 0.0157155841588974, + -0.011363196186721325, + -0.011078807525336742, + 0.000047043973609106615, + -0.021069517359137535, + -0.016185445711016655, + 0.00868004746735096, + -0.017421917989850044, + -0.02604014240205288, + 0.017347730696201324, + -0.009118995629251003, + 0.002392577240243554, + 0.0005757331964559853, + 0.03778664767742157, + 0.04523022100329399, + 0.009372472763061523, + -0.019833043217658997, + -0.01114681363105774, + -0.01984540745615959, + -0.004513130057603121, + 0.01675422303378582, + -0.024531643837690353, + 0.011598126031458378, + 0.01832454465329647, + -0.007826880551874638, + 0.007598132826387882, + -0.024259619414806366, + 0.010788235813379288, + -0.00970632117241621, + -0.011078807525336742, + -0.006361658684909344, + 0.006979895755648613, + 0.004936622455716133, + 0.005820701364427805, + -0.019808312878012657, + 0.030788203701376915, + 0.02591649442911148, + 0.00482843117788434, + -0.008191640488803387, + -0.027672288939356804, + 0.041817549616098404, + -0.043672263622283936, + 0.01880677044391632, + -0.0067573306150734425, + -0.004117458593100309, + 0.015047888271510601, + -0.005468306131660938, + 0.04562589153647423, + -0.0035177685786038637, + -0.01731063611805439, + -0.015567207708954811, + -0.012673858553171158, + -0.011802144348621368, + -0.016432739794254303, + -0.0032271970994770527, + 0.02072330377995968, + -0.04772789776325226, + -0.002724879654124379, + 0.010126722045242786, + -0.006148367188870907, + -0.015258089639246464, + -0.011598126031458378, + -0.003820704761892557, + -0.002519315807148814, + 0.023567194119095802, + 0.011462113820016384, + -0.01895514689385891, + 0.0016182353720068932, + -0.004021631553769112, + -0.015505383722484112, + 0.0257433895021677, + -0.01885622926056385, + -0.006843883544206619, + 0.004689327906817198, + -0.018646027892827988, + 0.0011568759800866246, + -0.013935062102973461, + 0.017471378669142723, + 0.024457456544041634, + -0.03237089142203331, + -0.024717114865779877, + 0.007752691861242056, + -0.027375534176826477, + -0.022281261160969734, + 0.004231832455843687, + 0.01246365811675787, + -0.00039528528577648103, + 0.020154526457190514, + -0.013007706962525845, + -0.0007843882194720209, + 0.013650673441588879, + -0.049088019877672195, + 0.009972162544727325, + 0.019041700288653374, + -0.004902619402855635, + 0.005956713575869799, + 0.0001802547340048477, + -0.006899524945765734, + -0.012797505594789982, + -0.003123642411082983, + -0.011573396623134613, + -0.03469546139240265, + 0.03160427510738373, + -0.0425594337284565, + -0.011029347777366638, + 0.02202160283923149, + -0.02153937704861164, + 0.007653774227946997, + -0.004012358374893665, + 0.005452850367873907, + -0.021984508261084557, + -0.005255014635622501, + 0.026411084458231926, + 0.035115860402584076, + 0.013885603286325932, + 0.016914963722229004, + 0.004457488656044006, + 0.009421931579709053, + 0.035066403448581696, + 0.013564120046794415, + -0.027276616543531418, + 0.01261821761727333, + -0.016160715371370316, + 0.031901028007268906, + 0.020562563091516495, + -0.025619741529226303, + 0.04312821477651596, + -0.0014744952786713839, + -0.003055636305361986, + 0.010083445347845554, + -0.01612362079322338, + 0.0070788138546049595, + 0.012426563538610935, + -0.0013933517038822174, + -0.04631831496953964, + 0.004958260804414749, + 0.02113134041428566, + -0.024049419909715652, + 0.013737225905060768, + 0.01409580372273922, + -0.02202160283923149, + -0.031901028007268906, + 0.012544028460979462, + -0.0003089253150392324, + -0.004868616349995136, + 0.020179256796836853, + 0.012710953131318092, + -0.01852237991988659, + 0.008043263107538223, + -0.03590720519423485, + -0.016519293189048767, + -0.006222555413842201, + 0.0314311683177948, + -0.005230285227298737, + 0.005313747096806765, + 0.004775880835950375, + 0.012166904285550117, + -0.019882502034306526, + -0.0013616670621559024, + 0.020414186641573906, + 0.011610491201281548, + -0.008210187777876854, + 0.000906490022316575, + 0.07161657512187958, + 0.01460275799036026, + -0.03600612282752991, + -0.006105090491473675, + -0.012630581855773926, + 0.012630581855773926, + 0.006979895755648613, + -0.006380205973982811, + 0.019239535555243492, + 0.0281668771058321, + -0.02601541392505169, + 0.00889643095433712, + -0.006961348466575146, + -0.0034157594200223684, + 0.01766921393573284, + -0.023023145273327827, + -0.01414526253938675, + -0.017100434750318527, + -0.010707864537835121, + -0.020203985273838043, + 0.00434002373367548, + -0.02720242738723755, + 0.000764295517001301, + 0.014157627709209919, + -0.05959804728627205, + -0.011091171763837337, + 0.006392570678144693, + 0.038157589733600616, + 0.02796904183924198, + 0.008970619179308414, + -0.006374023389071226, + -0.004812974948436022, + -0.0009304466657340527, + 0.008148363791406155, + 0.0029474450275301933, + 0.0008207096252590418, + 0.01996905542910099, + -0.021551741287112236, + 0.04122404381632805, + -0.03044199012219906, + 0.015270453877747059, + -0.0019211715552955866, + 0.01639564521610737, + -0.0038639812264591455, + 0.013737225905060768, + 0.023146793246269226, + -0.06241720914840698, + -0.03885001316666603, + 0.0009443570161238313, + 0.00980523880571127, + -0.019400278106331825, + 0.025397175922989845, + 0.031727924942970276, + 0.0033106592018157244, + -0.016816046088933945, + -0.017928872257471085, + 0.04886545240879059, + -0.00894588977098465, + -0.0031684646382927895, + -0.016519293189048767, + 0.004398756194859743, + -0.01938791200518608, + 0.02004324458539486, + -0.03358263522386551, + 0.011517755687236786, + -0.06088398024439812, + 0.007214826066046953, + 0.017557930201292038, + 0.009069536812603474, + 0.005072634667158127, + -0.0016584207769483328, + 0.012154539115726948, + 0.014071074314415455, + -0.004510038997977972, + 0.007684686221182346, + 0.0014358554035425186, + 0.0005826883716508746, + -0.0022828401997685432, + -0.008840789087116718, + -0.0771065205335617, + 0.01951155997812748, + 0.03914676606655121, + 0.02690567448735237, + -0.0024744935799390078, + -0.018621299415826797, + 0.0011476024519652128, + -0.0010726412292569876, + -0.001311435247771442, + 0.003672327846288681, + -0.0005803700187243521, + 0.015369372442364693, + 0.0222441665828228, + 0.025421906262636185, + -0.01515917107462883, + -0.036154501140117645, + 0.007969074882566929, + -0.00899534858763218, + 0.02604014240205288, + -0.01905406452715397, + -0.027276616543531418, + -0.002196287037804723, + -0.02925497479736805, + -0.005295199807733297, + 0.02313442900776863, + -0.048074111342430115, + -0.014268910512328148, + -0.0037867017090320587, + -0.01779286190867424, + 0.00429056491702795, + 0.00020807539112865925, + 0.03899839147925377, + 0.01061512902379036, + 0.01958574913442135, + -0.0036105040926486254, + 0.017100434750318527, + 0.009749597869813442, + 0.01240183413028717, + -0.012278187088668346, + -0.017496107146143913, + -0.00551158282905817, + 0.03499221429228783, + -0.0038083400577306747, + -0.0008122088620439172, + -0.05227812007069588, + 0.005734148435294628, + -0.015913421288132668, + 0.04681290686130524, + 0.005938166286796331, + -0.001922717085108161, + -0.003418850712478161, + 0.021947413682937622, + 0.015381736680865288, + -0.008129816502332687, + 0.025669200345873833, + -0.004404938779771328, + 0.031802110373973846, + -0.008642952889204025, + 0.007672321051359177, + 0.03251926600933075, + 0.0249025858938694, + -0.002639872021973133, + 0.056877803057432175, + -0.013193177990615368, + -0.01021327544003725, + 0.016185445711016655, + -0.006769695319235325, + -0.028710925951600075, + -0.009731050580739975, + 0.024791304022073746, + -0.011369378305971622, + -0.03974027559161186, + 0.01711280085146427, + 0.01358884945511818, + -0.00730137899518013, + -0.00008515248919138685, + 0.019140617921948433, + -0.005684689152985811, + -0.013106624595820904, + -0.030738744884729385, + -0.018584204837679863, + -0.011647584848105907, + 0.011561032384634018, + 0.017063342034816742, + 0.005585771519690752, + -0.013737225905060768, + 0.004593500867486, + 0.014800594188272953, + -0.0032148323953151703, + 0.013687767088413239, + -0.002075730822980404, + 0.024568738415837288, + -0.014812958426773548, + -0.019981419667601585, + -0.013180812820792198, + -0.032964397221803665, + 0.007591950241476297, + 0.012358557432889938, + -0.0034126683603972197, + -0.02920551598072052, + -0.01905406452715397, + -0.013180812820792198, + 0.0047326041385531425, + 0.013440472073853016, + 0.010429657995700836, + 0.0151097122579813, + -0.003990720026195049, + -0.02712824009358883, + -0.014862417243421078, + 0.003007723018527031, + -0.02260274440050125, + -0.024037055671215057, + 0.03279129043221474, + -0.009904156439006329, + 0.005962895695120096, + 0.027622830122709274, + 0.003672327846288681, + -0.022404909133911133, + 0.05944966897368431, + -0.04624412953853607, + -0.03234615921974182, + -0.03499221429228783, + -0.03642652556300163, + -0.039542440325021744, + 0.00009635803144192323, + 0.00816072802990675, + -0.05395972728729248, + 0.00007529933645855635, + 0.00006549448153236881, + -0.014936606399714947, + -0.0039659906178712845, + -0.02333226427435875, + -0.000611281837336719, + -0.018101979047060013, + 0.003724877955392003, + 0.03486856818199158, + 0.00948993768543005, + 0.01682841219007969, + 0.015023158863186836, + -0.018621299415826797, + -0.015493019483983517, + 0.002438944997265935, + -0.025248799473047256, + -0.028661467134952545, + -0.03667381778359413, + -0.018188532441854477, + 0.011412655003368855, + 0.00950230285525322, + 0.01984540745615959, + -0.031752653419971466, + -0.02826579660177231, + 0.019771220162510872, + 0.06132911145687103, + 0.03897365927696228, + 0.029749564826488495, + -0.006423482671380043, + 0.00312827923335135, + 0.0054652150720357895, + 0.00755485612899065, + 0.00999689195305109, + 0.02589176595211029, + 0.01292115356773138, + -0.05420701950788498, + -0.0006460576551035047, + 0.024160701781511307, + -0.004330750089138746, + -0.0043492973782122135, + 0.009168454445898533, + -0.007684686221182346, + -0.010095810517668724, + 0.00914990808814764, + -0.015591937117278576, + -0.008463664911687374, + 0.008309105411171913, + -0.013564120046794415, + -0.00551158282905817, + -0.006973713636398315, + 0.026510002091526985, + 0.018361639231443405, + -0.006435847375541925, + -0.030565638095140457, + 0.008667683228850365, + 0.021267352625727654, + -0.03971554711461067, + -0.02144045941531658, + 0.013366283848881721, + -0.014528569765388966, + -0.020154526457190514, + -0.009712503291666508, + -0.006213281769305468, + 0.029774293303489685, + 0.024816034361720085, + -0.002587321912869811, + -0.05949912965297699, + -0.014404921792447567, + -0.005440485663712025, + -0.010998436249792576, + 0.026287438347935677, + 0.01010817475616932, + 0.018608933314681053, + -0.03274183347821236, + -0.0036074130330234766, + 0.012896424159407616, + -0.015901055186986923, + -0.012673858553171158, + 0.010837694630026817, + -0.018707850947976112, + 0.029576458036899567, + 0.001870166976004839, + -0.00948993768543005, + -0.03422560170292854, + 0.021020058542490005, + 0.013304460793733597, + -0.013217907398939133, + -0.013193177990615368, + 0.004510038997977972, + 0.05267379432916641, + 0.017978332936763763, + -0.007227190770208836, + 0.02685621567070484, + -0.004074181895703077, + 0.017755767330527306, + 0.009799056686460972, + 0.011177725158631802, + -0.008358564227819443, + 0.010744959115982056, + 0.028785115107893944, + -0.002939716912806034, + 0.07072631269693375, + 0.007122090086340904, + -0.015196265652775764, + 0.00566923338919878, + -0.02613906003534794, + 0.026658380404114723, + 0.0015888691414147615, + 0.004429668188095093, + 0.02333226427435875, + 0.007697050925344229, + 0.04243578761816025, + -0.01677895151078701, + 0.02702932246029377, + -0.009601220488548279, + -0.007653774227946997, + 0.006992260459810495, + -0.0014003068208694458, + -0.03026888333261013, + -0.010707864537835121, + 0.01027509942650795, + -0.053316760808229446, + -0.017199354246258736, + 0.03479437902569771, + -0.015381736680865288, + 0.015146806836128235, + -0.03242034837603569, + 0.042905647307634354, + -0.042757272720336914, + -0.00872950628399849, + 0.00811126921325922, + 0.030738744884729385, + -0.01854711025953293, + -0.013885603286325932, + 0.01297061238437891, + -0.03897365927696228, + -0.008605859242379665, + -0.0025254981592297554, + 0.011443566530942917, + 0.007610497530549765, + 0.0025533188600093126, + 0.01398452091962099, + 0.03447289392352104, + 0.02717769891023636, + -0.02161356620490551, + -0.019672300666570663, + 0.0010131358867511153, + -0.021724848076701164, + -0.00022642929980065674, + -0.00021193937573116273, + 0.020290538668632507, + 0.002519315807148814, + -0.03442343696951866, + 0.002012361539527774, + 0.0111839072778821, + 0.0177681315690279, + 0.008296740241348743, + 0.027227157726883888, + 0.003867072518914938, + 0.01470167562365532, + 0.0011020074598491192, + 0.0008887156727723777, + 0.014565663412213326, + 0.009823786094784737, + -0.025137517601251602, + -0.01941264234483242, + 0.007771239150315523, + -0.0249025858938694, + -0.039591897279024124, + 0.0019304450834169984, + 0.023060239851474762, + 0.018040155991911888, + -0.020290538668632507, + 0.012995341792702675, + 0.015567207708954811, + 0.03489329665899277, + -0.017595024779438972, + -0.01561666652560234, + -0.012933517806231976, + -0.005761968903243542, + -0.02908186800777912, + -0.001043274998664856, + 0.0008106632740236819 + ] + }, + { + "HotelId": "4", + "HotelName": "Sublime Palace Hotel", + "Description": "Sublime Cliff Hotel is located in the heart of the historic center of Sublime in an extremely vibrant and lively area within short walking distance to the sites and landmarks of the city and is surrounded by the extraordinary beauty of churches, buildings, shops and monuments. Sublime Cliff is part of a lovingly restored 19th century resort, updated for every modern convenience.", + "Description_fr": "Le sublime Cliff Hotel est situĆ© au coeur du centre historique de sublime dans un quartier extrĆŖmement animĆ© et vivant, Ć  courte distance de marche des sites et monuments de la ville et est entourĆ© par l'extraordinaire beautĆ© des Ć©glises, des bĆ¢timents, des commerces et Monuments. Sublime Cliff fait partie d'un complexe du 19ĆØme siĆØcle restaurĆ© avec amour, mis Ć  jour pour tout le confort moderne.", + "Category": "Boutique", + "Tags": [ + "concierge", + "view", + "air conditioning" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2020-02-06T00:00:00Z", + "Rating": 4.6, + "Address": { + "StreetAddress": "7400 San Pedro Ave", + "City": "San Antonio", + "StateProvince": "TX", + "PostalCode": "78216", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -98.495422, + 29.518398 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 266.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "coffee maker", + "tv" + ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "suite", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Mountain View)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Double Beds (Waterfront View)", + "Description_fr": "Suite, 2 lits doubles (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "suite", + "coffee maker" + ] + } + ], + "embedding": [ + -0.06969107687473297, + -0.0019510476849973202, + 0.0011201804736629128, + -0.004140524659305811, + -0.032798536121845245, + -0.012700710445642471, + 0.0011507110903039575, + -0.033822037279605865, + 0.0063154627569019794, + -0.02000478096306324, + -0.0001879082847153768, + -0.0012045030016452074, + -0.05312897637486458, + -0.008699753321707249, + -0.0030559629667550325, + 0.047732338309288025, + -0.012956584803760052, + 0.00963020883500576, + 0.03733450546860695, + 0.061968300491571426, + -0.015887517482042313, + -0.03170525282621384, + -0.020667729899287224, + 0.0018492791568860412, + 0.013770733028650284, + 0.010019836947321892, + -0.052291568368673325, + -0.046313393861055374, + 0.04121915251016617, + 0.030449138954281807, + -0.010874692350625992, + -0.03026304766535759, + 0.061177413910627365, + 0.026006216183304787, + 0.02148187905550003, + 0.0054053617641329765, + 0.0062805707566440105, + -0.008897474966943264, + 0.025285113602876663, + -0.010932845994830132, + -0.0002520587877370417, + 0.000900651328265667, + 0.02000478096306324, + -0.00655389204621315, + -0.03431052714586258, + 0.0036985583137720823, + -0.00475985836237669, + 0.061642639338970184, + 0.007228471804410219, + 0.04184721037745476, + 0.01122361235320568, + -0.01347996573895216, + -0.024866407737135887, + -0.028123000636696815, + -0.03772994875907898, + -0.00432952307164669, + 0.0173762459307909, + -0.019760536029934883, + 0.050523702055215836, + 0.01003146730363369, + 0.021098066121339798, + -0.02056305482983589, + 0.017713535577058792, + 0.04201003909111023, + -0.07629730552434921, + 0.023179959505796432, + -0.04312658682465553, + 0.03221700340509415, + 0.0009907891508191824, + -0.01036875694990158, + 0.005175655707716942, + -0.012375051155686378, + -0.00817637238651514, + -0.013003108091652393, + 0.010583925060927868, + -0.0027361190877854824, + 0.02565729431807995, + 0.028564967215061188, + 0.0020179240964353085, + -0.04768581688404083, + -0.03061196766793728, + 0.021342311054468155, + -0.009682546369731426, + 0.05578077211976051, + -0.01493380218744278, + 0.017201784998178482, + -0.0279369093477726, + 0.03852083534002304, + -0.04314984753727913, + 0.02352887950837612, + 0.03300788998603821, + -0.025889908894896507, + -0.0478719063103199, + -0.00484418123960495, + -0.0398932546377182, + -0.01613176241517067, + 0.01864399015903473, + 0.021446986123919487, + -0.034519877284765244, + 0.019644230604171753, + 0.015038478188216686, + -0.08909106254577637, + 0.0047220587730407715, + -0.06359659880399704, + 0.04449900612235069, + 0.008065881207585335, + 0.05340811237692833, + -0.007955390028655529, + 0.017306461930274963, + -0.03265896812081337, + -0.08997499197721481, + 0.015806103125214577, + -0.04145176708698273, + 0.023319527506828308, + -0.0008606708142906427, + 0.022412333637475967, + 0.030193263664841652, + -0.012851908802986145, + -0.01680634170770645, + 0.01749255321919918, + -0.006658568046987057, + -0.0005902573466300964, + -0.025517726317048073, + -0.0023290449753403664, + 0.02668079547584057, + -0.058386046439409256, + 0.05033761262893677, + -0.05047718062996864, + -0.04091675579547882, + -0.048755839467048645, + 0.011723732575774193, + -0.04515032470226288, + -0.04889540746808052, + -0.04068414121866226, + 0.009019597433507442, + 0.0049982876516878605, + -0.012840278446674347, + -0.012351789511740208, + -0.020249025896191597, + -0.024494227021932602, + -0.006263124756515026, + 0.008490401320159435, + -0.03977694734930992, + 0.005815343465656042, + -0.008414802141487598, + 0.046755362302064896, + -0.040381744503974915, + -0.01082816906273365, + -0.031030671671032906, + 0.05638556927442551, + 0.01530598383396864, + 0.057083409279584885, + -0.009793038479983807, + -0.007368040271103382, + -0.07448291778564453, + -0.024191828444600105, + 0.013735841028392315, + -0.03628774359822273, + -0.027169283479452133, + 0.051081977784633636, + -0.03112371824681759, + -0.020551424473524094, + -0.04394073411822319, + -0.04577838256955147, + 0.011142197996377945, + -0.0029149409383535385, + -0.03465944528579712, + 0.03552011772990227, + -0.05289636179804802, + -0.008600892499089241, + 0.02633187547326088, + -0.004349876660853624, + 0.0216563381254673, + 0.04068414121866226, + 0.014410421252250671, + -0.010711862705647945, + 0.028634751215577126, + -0.029774557799100876, + -0.00018572753469925374, + 0.026936670765280724, + 0.010729308240115643, + -0.006036326289176941, + 0.06848148256540298, + 0.010269896127283573, + 0.05061674863100052, + -0.01271234080195427, + -0.025005975738167763, + 0.016259700059890747, + -0.008513662964105606, + 0.03424074128270149, + -0.01261929515749216, + -0.043731383979320526, + -0.06289875507354736, + 0.018888235092163086, + -0.0033961604349315166, + 0.027890386059880257, + -0.037590380758047104, + 0.04908149689435959, + -0.00831594131886959, + -0.009066120721399784, + -0.03426400199532509, + -0.016573728993535042, + 0.04512706398963928, + -0.010921214707195759, + -0.003515375079587102, + -0.021214373409748077, + 0.04466183856129646, + 0.030960887670516968, + -0.008385725319385529, + 0.008071696385741234, + 0.006332908757030964, + 0.0156781654804945, + -0.008821875788271427, + 0.04110284894704819, + 0.001500358572229743, + 0.018958019092679024, + -0.006059587933123112, + -0.006670198868960142, + 0.004739504773169756, + 0.021702861413359642, + -0.02609926089644432, + -0.027029715478420258, + 0.023866169154644012, + 0.011025890707969666, + 0.014852386899292469, + 0.030984150245785713, + 0.02149350941181183, + -0.016271330416202545, + 0.019853582605719566, + -0.014433681964874268, + 0.029216285794973373, + -0.02091197483241558, + -0.04629013314843178, + -0.024657055735588074, + -0.02598295360803604, + -0.0020906159188598394, + 0.010607186704874039, + 0.0029600097332149744, + 0.018725406378507614, + -0.01039783377200365, + 0.002062993124127388, + -0.021807538345456123, + 0.01648068241775036, + 0.024145305156707764, + 0.03710189089179039, + -0.006809767335653305, + 0.012177329510450363, + -0.00020753506396431476, + 0.0024148214142769575, + 0.04996543005108833, + -0.019690752029418945, + 0.03426400199532509, + 0.013817256316542625, + -0.04856974631547928, + 0.020842190831899643, + -0.002814626321196556, + -0.018190395087003708, + -0.038893017917871475, + 0.008089142851531506, + -0.012409943155944347, + 0.02354050986468792, + -0.0427544042468071, + -0.03600860759615898, + 0.007397116627544165, + 0.00478602759540081, + -0.030007172375917435, + -0.007263363804668188, + 0.018620729446411133, + -0.02928606979548931, + -0.012514619156718254, + -0.027727557346224785, + -0.029541945084929466, + 0.010560663416981697, + -0.022714732214808464, + 0.04547598585486412, + -0.014154545962810516, + 0.019934996962547302, + -0.022784516215324402, + -0.011752809397876263, + 0.035543378442525864, + -0.01756233721971512, + -0.017853103578090668, + -0.009857007302343845, + -0.007932128384709358, + -0.02975129708647728, + -0.007844897918403149, + 0.04098654165863991, + -0.0013135407352820039, + 0.003654943313449621, + 0.020423486828804016, + 0.04094001650810242, + 0.0012132260017096996, + 0.005210547707974911, + -0.003320561023429036, + -0.10644404590129852, + -0.015934040769934654, + 0.005608898587524891, + -0.002039731713011861, + 0.002641619648784399, + 0.03665992617607117, + -0.012956584803760052, + 0.017643751576542854, + 0.042079824954271317, + 0.03065849095582962, + 0.009403410367667675, + 0.03344985470175743, + 0.00008850226004142314, + -0.031379591673612595, + -0.0016428345115855336, + -0.00719357980415225, + 0.012421573512256145, + 0.01302636880427599, + 0.0009740700479596853, + -0.04056783393025398, + -0.023296264931559563, + -0.02238907292485237, + -0.032519400119781494, + 0.01782984286546707, + 0.0054460689425468445, + -0.02626209147274494, + 0.0849040150642395, + 0.0064201392233371735, + 0.008246157318353653, + 0.01261929515749216, + 0.020830560475587845, + 0.015701428055763245, + 0.016038717702031136, + 0.006245678756386042, + -0.0035066520795226097, + -0.00283497991040349, + 0.029774557799100876, + -0.051035452634096146, + 0.03289158269762993, + -0.012305266223847866, + 0.031309809535741806, + 0.010281527414917946, + -0.02285430021584034, + 0.029541945084929466, + 0.0473136343061924, + 0.018085718154907227, + -0.04042826592922211, + -0.04538293927907944, + 0.004969210829585791, + -0.0007218294776976109, + 0.030728274956345558, + -0.01966749131679535, + -0.0518728643655777, + 0.008217080496251583, + 0.06713232398033142, + 0.02495945431292057, + -0.057083409279584885, + -0.06452704966068268, + -0.04405704140663147, + -0.021679600700736046, + 0.02684362605214119, + 0.04782538488507271, + 0.021121326833963394, + 0.009891899302601814, + -0.04554576799273491, + 0.024773363023996353, + -0.011642317287623882, + -0.00198012450709939, + -0.008449694141745567, + 0.011898192577064037, + 0.028471920639276505, + 0.00673998286947608, + -0.03984673321247101, + 0.011438780464231968, + -0.018027564510703087, + 0.010386203415691853, + -0.06787668913602829, + -0.028355615213513374, + 0.006937704514712095, + -0.011584163643419743, + -0.025331635028123856, + 0.02263331599533558, + 0.047964952886104584, + -0.016945911571383476, + -0.018609099090099335, + -0.03517119586467743, + 0.026517966762185097, + -0.049221064895391464, + 0.017794949933886528, + -0.011758624576032162, + 0.04645296186208725, + -0.024657055735588074, + 0.01669003628194332, + -0.013898670673370361, + -0.03686927631497383, + 0.03549685701727867, + 0.009374333545565605, + -0.01261929515749216, + 0.02519206702709198, + 0.0028960409108549356, + 0.0199466273188591, + 0.015934040769934654, + 0.04433617740869522, + 0.01891149766743183, + -0.000990062253549695, + -0.0035415440797805786, + 0.05010499805212021, + -0.03338007256388664, + -0.010095436125993729, + -0.07587859779596329, + 0.02593643218278885, + -0.04838365688920021, + -0.037125151604413986, + -0.04475488141179085, + -0.044545531272888184, + -0.01971401460468769, + -0.0398932546377182, + -0.028076477348804474, + 0.012875170446932316, + -0.004457460716366768, + 0.00157741189468652, + 0.008356648497283459, + -0.021912213414907455, + -0.024517487734556198, + 0.054059430956840515, + 0.018597468733787537, + 0.04382442682981491, + -0.009705808013677597, + 0.04498749598860741, + 0.010560663416981697, + 0.028634751215577126, + 0.05945607274770737, + 0.0018361946567893028, + -0.050291091203689575, + -0.005193101707845926, + -0.009304549545049667, + 0.036055129021406174, + -0.035078153014183044, + 0.04112610965967178, + 0.005047718062996864, + -0.009368518367409706, + 0.04438270255923271, + -0.030123479664325714, + 0.006966781336814165, + -0.01448020525276661, + -0.035240981727838516, + -0.030518922954797745, + -0.04240548238158226, + -0.05866518244147301, + -0.012235482223331928, + -0.02798343263566494, + 0.03654361888766289, + 0.028774319216609, + 0.019993150606751442, + -0.03498510643839836, + -0.0173878762871027, + -0.018946388736367226, + 0.013666057027876377, + 0.00824034120887518, + -0.007932128384709358, + 0.004928503651171923, + 0.012875170446932316, + 0.024819886311888695, + -0.03010021708905697, + 0.013782364316284657, + -0.004626105539500713, + 0.03498510643839836, + -0.025610772892832756, + -0.012817016802728176, + 0.03156568482518196, + 0.009048674255609512, + -0.01988847367465496, + 0.008629969321191311, + 0.03768342360854149, + 0.008676492609083652, + -0.05592034384608269, + 0.0015221661888062954, + -0.045289892703294754, + 0.02935585379600525, + 0.010496694594621658, + -0.0042539238929748535, + -0.0667136162519455, + 0.0050389948301017284, + 0.02159818448126316, + 0.04468509927392006, + 0.05703688785433769, + -0.036613401025533676, + -0.02240070328116417, + 0.007158687803894281, + -0.018190395087003708, + -0.015992194414138794, + -0.039241936057806015, + -0.004565044771879911, + 0.04754624888300896, + -0.07801865041255951, + 0.0005775362951681018, + 0.030960887670516968, + -0.009990760125219822, + -0.02308691293001175, + -0.009920976124703884, + -0.0031577313784509897, + 0.0667136162519455, + -0.044824667274951935, + 0.01299147680401802, + -0.015922410413622856, + 0.007757667917758226, + 0.022842667996883392, + 0.019120849668979645, + -0.041916996240615845, + 0.021528400480747223, + 0.01584099605679512, + 0.015759579837322235, + -0.024424443021416664, + 0.009473194368183613, + 0.015829363837838173, + -0.02609926089644432, + 0.01670166663825512, + -0.00216621533036232, + 0.046825144439935684, + 0.0022956067696213722, + -0.00026387121761217713, + -0.004166693426668644, + -0.007088903803378344, + 0.01216569822281599, + 0.015166415832936764, + -0.022761253640055656, + 0.009711623191833496, + -0.011258505284786224, + -0.017760058864951134, + -0.008153111673891544, + 0.0025471204426139593, + 0.07048196345567703, + -0.049267590045928955, + -0.03824169933795929, + 0.017632121220231056, + -0.021516770124435425, + -0.03766016289591789, + -0.06913280487060547, + -0.022040151059627533, + 0.045220110565423965, + -0.005323946941643953, + 0.011403888463973999, + 0.0071645029820501804, + 0.005629252642393112, + 0.016317853704094887, + -0.01618991605937481, + 0.013072892092168331, + 0.04182394966483116, + -0.0009384510340169072, + -0.004102724604308605, + -0.024703579023480415, + -0.015934040769934654, + -0.01617828570306301, + -0.01709710992872715, + 0.015224569477140903, + 0.030751535668969154, + 0.033031150698661804, + 0.025447942316532135, + 0.002882956527173519, + -0.02131904847919941, + -0.0012437566183507442, + 0.00417250907048583, + 0.0032595000229775906, + 0.0444757454097271, + -0.016027087345719337, + 0.020714253187179565, + -0.00011857848585350439, + -0.025145545601844788, + -0.010240819305181503, + 0.009711623191833496, + 0.005102963652461767, + 0.0233660489320755, + 0.017341354861855507, + 0.05215200036764145, + 0.0051494864746928215, + 0.023040389642119408, + 0.013782364316284657, + 0.02171449176967144, + -0.0109677379950881, + 0.00175187224522233, + -0.010322234593331814, + -0.014212699607014656, + -0.0008875667699612677, + -0.026192307472229004, + -0.005207640118896961, + -0.008542739786207676, + -0.0069784121587872505, + -0.007827452383935452, + 0.010752569884061813, + -0.015573489479720592, + -0.006838843692094088, + -0.009362703189253807, + 0.010560663416981697, + -0.008449694141745567, + 0.002263622358441353, + 0.02770429663360119, + 0.0004779485461767763, + 0.014096392318606377, + 0.020586315542459488, + -0.008583446964621544, + 0.019574446603655815, + 0.022935714572668076, + -0.00954879354685545, + 0.0031286547891795635, + -0.0569903664290905, + -0.005309408530592918, + -0.0131077840924263, + 0.007647176738828421, + 0.0052599781192839146, + -0.015131523832678795, + -0.024819886311888695, + 0.02770429663360119, + -0.008699753321707249, + 0.011595794931054115, + 0.0009958775481209159, + -0.007298255804926157, + 0.017911257222294807, + -0.0025892816483974457, + 0.021132957190275192, + -0.004166693426668644, + -0.03198438882827759, + -0.0010533040622249246, + 0.01658535934984684, + -0.03224026411771774, + -0.008903291076421738, + -0.031356330960989, + -0.0113980732858181, + 0.005690313410013914, + 0.02131904847919941, + 0.011805146932601929, + 0.005024456884711981, + 0.04652274772524834, + 0.026029476895928383, + -0.05652513727545738, + -0.01953955367207527, + 0.008606708608567715, + 0.01892312802374363, + 0.040660880506038666, + 0.014654665254056454, + -0.031263284385204315, + -0.027146022766828537, + -0.004027125425636768, + 0.04005608707666397, + -0.014491835609078407, + -0.012258743867278099, + -0.004454553127288818, + -0.005838604643940926, + 0.027843864634633064, + 0.006803951691836119, + -0.006239863578230143, + 0.014991954900324345, + 0.01595730148255825, + 0.023179959505796432, + -0.028867363929748535, + 0.0484301783144474, + -0.01049087941646576, + -0.01874866709113121, + 0.005489684175699949, + 0.014922170899808407, + -0.005675774998962879, + -0.014666295610368252, + 0.03356616199016571, + -0.020958498120307922, + 0.00435859989374876, + 0.01943487673997879, + 0.007054011337459087, + -0.021854059770703316, + 0.012630925513803959, + -0.004399307072162628, + 0.018306700512766838, + -0.03321724012494087, + -0.024261612445116043, + 0.01259603351354599, + -0.005815343465656042, + -0.032519400119781494, + 0.02074914611876011, + 0.05908389016985893, + 0.01308452244848013, + 0.01841137744486332, + 0.029890865087509155, + -0.007629730738699436, + 0.06294527649879456, + 0.013817256316542625, + -0.07062152773141861, + 0.003000717144459486, + 0.012421573512256145, + -0.0033525454346090555, + 0.013782364316284657, + -0.0319146029651165, + -0.006670198868960142, + -0.006449216045439243, + -0.015375767834484577, + -0.008414802141487598, + 0.027797341346740723, + -0.005015733651816845, + -0.02205178141593933, + 0.014352267608046532, + -0.00588512746617198, + 0.03282179683446884, + -0.0021007927134633064, + -0.008519478142261505, + -0.01772516593337059, + -0.027727557346224785, + -0.01851605251431465, + 0.02263331599533558, + -0.029565205797553062, + 0.008763722144067287, + -0.036776233464479446, + 0.017248308286070824, + -0.034729231148958206, + 0.005289054941385984, + -0.011572533287107944, + 0.0012917331187054515, + -0.031495898962020874, + 0.018934758380055428, + -0.013398551382124424, + 0.02661101147532463, + -0.012700710445642471, + -0.00021589462994597852, + -0.01635274477303028, + -0.004934318829327822, + 0.03235657140612602, + -0.04124241694808006, + 0.036566879600286484, + 0.012270374223589897, + -0.03356616199016571, + 0.015503705479204655, + 0.03235657140612602, + 0.004565044771879911, + 0.011810962110757828, + -0.0014502012636512518, + 0.007373855449259281, + -0.01629459299147129, + -0.03738102689385414, + 0.01584099605679512, + 0.07457596063613892, + -0.004634828772395849, + -0.006396877579391003, + -0.003625866724178195, + 0.00420449348166585, + 0.009967498481273651, + -0.0035996974911540747, + -0.04477814584970474, + 0.04021891579031944, + -0.004477814305573702, + -0.01744602993130684, + 0.005896758288145065, + -0.02124926447868347, + -0.012188959866762161, + 0.0033380070235580206, + 0.05596686527132988, + -0.02388942986726761, + -0.0014930893667042255, + -0.02440118044614792, + -0.03879997134208679, + 0.02649470418691635, + -0.004719151183962822, + 0.007565761916339397, + -0.00060188805218786, + -0.008356648497283459, + 0.02530837431550026, + -0.034054651856422424, + 0.015980564057826996, + 0.017306461930274963, + -0.002422090619802475, + 0.026890147477388382, + 0.016108501702547073, + -0.010653709061443806, + 0.009130089543759823, + 0.03919541463255882, + 0.025122283026576042, + 0.0012808294268324971, + -0.035589899867773056, + 0.025773601606488228, + -0.01493380218744278, + -0.016166655346751213, + -0.03498510643839836, + -0.00957787036895752, + -0.025610772892832756, + 0.0135381193831563, + 0.023982476443052292, + -0.02063283883035183, + -0.005684498231858015, + -0.006170079577714205, + -0.03203091025352478, + -0.008792798966169357, + 0.042545054107904434, + 0.0063154627569019794, + 0.03431052714586258, + -0.028983671218156815, + -0.015934040769934654, + 0.040777187794446945, + 0.0014807317638769746, + -0.016503944993019104, + 0.03258918598294258, + 0.02747168205678463, + 0.012886800803244114, + -0.003811957547441125, + -0.0262155681848526, + -0.04126567766070366, + 0.0009915160480886698, + 0.002272345358505845, + 0.021912213414907455, + -0.06983064115047455, + 0.0330544114112854, + 0.005960727110505104, + 0.03368246927857399, + 0.0018609098624438047, + 0.013200829736888409, + -0.06001434475183487, + -0.014433681964874268, + 0.04221939295530319, + -0.023912692442536354, + 0.024145305156707764, + 0.0644340068101883, + 0.009269657544791698, + 0.018620729446411133, + -0.0003505561617203057, + 0.006466662045568228, + -0.0033670838456600904, + 0.031216762959957123, + -0.022668208926916122, + 0.009665100835263729, + 0.017527444288134575, + -0.01943487673997879, + 0.0001642834540689364, + -0.004899426829069853, + -0.012363419868052006, + 0.019004542380571365, + -0.0006520453607663512, + 0.012386681511998177, + -0.017352985218167305, + 0.014608142897486687, + 0.028518443927168846, + -0.016143392771482468, + -0.047499723732471466, + -0.03572947159409523, + -0.02228439599275589, + 0.003023978555575013, + 0.02000478096306324, + -0.014259221963584423, + 0.0064317695796489716, + -0.026401659473776817, + 0.042079824954271317, + -0.0024133676197379827, + 0.022156458348035812, + 0.010200112126767635, + 0.03077479638159275, + -0.004047479014843702, + 0.0026634272653609514, + 0.007798375561833382, + -0.02091197483241558, + 0.019574446603655815, + -0.006809767335653305, + -0.010188481770455837, + 0.02723906934261322, + 0.028355615213513374, + 0.01302636880427599, + 0.047616031020879745, + -0.0013135407352820039, + -0.01527109183371067, + 0.022528640925884247, + 0.006809767335653305, + 0.022214611992239952, + 0.019865212962031364, + -0.017248308286070824, + -0.040451530367136, + -0.0016108501004055142, + -0.005373377352952957, + -0.03454313799738884, + -0.028076477348804474, + 0.036729708313941956, + 0.0055710989981889725, + -0.0014407513663172722, + -0.014468573965132236, + -0.013014738447964191, + -0.028634751215577126, + 0.017678644508123398, + -0.008030989207327366, + -0.01794615015387535, + 0.022028520703315735, + 0.003346730023622513, + 0.012910062447190285, + 0.02388942986726761, + 0.007484347093850374, + -0.026192307472229004, + -0.003704373724758625, + -0.02063283883035183, + 0.00963602401316166, + 0.013898670673370361, + 0.0022316379472613335, + 0.006152633111923933, + -0.027843864634633064, + 0.021342311054468155, + 0.010246635414659977, + -0.0007229198818095028, + 0.020086195319890976, + -0.010310604237020016, + 0.0063154627569019794, + 0.020423486828804016, + -0.044196609407663345, + 0.031356330960989, + 0.012444835156202316, + 0.04456879198551178, + -0.01601545512676239, + 0.009851192124187946, + -0.027890386059880257, + -0.016841234639286995, + -0.0101186977699399, + -0.04000956192612648, + 0.021051542833447456, + 0.027285590767860413, + -0.011084044352173805, + 0.0048674424178898335, + 0.016155023127794266, + -0.012293635867536068, + 0.03207743540406227, + -0.018364854156970978, + -0.012665817514061928, + 0.003919541370123625, + -0.0023086913861334324, + 0.014073130674660206, + -0.0014000439550727606, + 0.014340637251734734, + -0.016655143350362778, + 0.020714253187179565, + -0.040544573217630386, + 0.01014777459204197, + 0.0027462958823889494, + 0.037357766181230545, + 0.03242635354399681, + -0.021342311054468155, + -0.03226352483034134, + 0.032845061272382736, + 0.03326376527547836, + -0.01624806970357895, + 0.02098175883293152, + 0.02126089483499527, + -0.013724210672080517, + 0.02301712892949581, + 0.042428746819496155, + 0.024703579023480415, + 0.02700645476579666, + 0.006943520158529282, + 0.03026304766535759, + 0.02456401102244854, + 0.018562575802206993, + -0.024633795022964478, + 0.002422090619802475, + 0.03065849095582962, + 0.022075043991208076, + -0.06480618566274643, + 0.0461505651473999, + 0.027727557346224785, + 0.013526489026844501, + -0.023005498573184013, + 0.031937867403030396, + 0.026471443474292755, + -0.007362224627286196, + 0.006007249932736158, + -0.036055129021406174, + 0.027425158768892288, + -0.028913887217640877, + -0.025610772892832756, + -0.029495421797037125, + -0.011979607865214348, + -0.025564249604940414, + -0.0055914525873959064, + 0.007042380981147289, + -0.006263124756515026, + -0.010339680127799511, + 0.017620490863919258, + 0.01361953467130661, + 0.022784516215324402, + -0.02814626134932041, + 0.03859061747789383, + -0.022807776927947998, + -0.006728352513164282, + -0.00191324797924608, + -0.011520194821059704, + -0.019353462383151054, + 0.017701905220746994, + 0.027262330055236816, + 0.031240025535225868, + 0.0023319527972489595, + -0.03026304766535759, + 0.03258918598294258, + 0.06731841713190079, + 0.008624154143035412, + -0.027681034058332443, + 0.006594599224627018, + 0.017364615574479103, + 0.017981041222810745, + 0.012665817514061928, + 0.015038478188216686, + 0.013340397737920284, + -0.009304549545049667, + -0.050244566053152084, + 0.023493986576795578, + -0.015503705479204655, + -0.028634751215577126, + 0.007391301449388266, + -0.0199582576751709, + 0.04456879198551178, + 0.03317071869969368, + -0.02998390980064869, + 0.00007528143760282546, + 0.008478770963847637, + 0.00837409496307373, + -0.01234015915542841, + -0.019120849668979645, + 0.021586554124951363, + -0.0008374094613827765, + -0.007559946272522211, + -0.02348235622048378, + -0.015422291122376919, + 0.04375464469194412, + 0.03214721754193306, + -0.0190975870937109, + 0.017922887578606606, + -0.04007934778928757, + -0.012072652578353882, + -0.003588066902011633, + 0.00817637238651514, + -0.0626661404967308, + -0.002419182797893882, + -0.0135381193831563, + -0.001650103717111051, + -0.011118936352431774, + -0.028169523924589157, + -0.01450346689671278, + 0.005480960942804813, + 0.023412572219967842, + 0.0393349826335907, + 0.01788799650967121, + 0.019120849668979645, + 0.0185276847332716, + -0.04177742823958397, + 0.007507608272135258, + 0.012270374223589897, + -0.03324050456285477, + 0.027146022766828537, + 0.04747646301984787, + -0.009066120721399784, + 0.0036723893135786057, + 0.034682709723711014, + 0.008478770963847637, + 0.0002440626994939521, + 0.04703449830412865, + -0.005812435876578093, + -0.03549685701727867, + 0.032845061272382736, + 0.019446508958935738, + -0.01687612570822239, + 0.030402615666389465, + 0.0450340211391449, + -0.004091094247996807, + 0.02210993506014347, + -0.016713296994566917, + 0.011805146932601929, + 0.0023421295918524265, + -0.01527109183371067, + -0.01259603351354599, + -0.012956584803760052, + 0.007559946272522211, + -0.019620968028903008, + 0.010775831528007984, + 0.004896519239991903, + 0.026657534763216972, + -0.038497574627399445, + -0.002836433704942465, + 0.021005019545555115, + -0.0013368020299822092, + 0.005585637409240007, + -0.04252178966999054, + 0.0032100696116685867, + 0.001811479451134801, + 0.03237983211874962, + 0.01350322738289833, + -0.002878594910725951, + 0.0165272057056427, + -0.023110175505280495, + -0.010112882591784, + -0.0017446030396968126, + 0.015399029478430748, + 0.015131523832678795, + 0.02199362963438034, + 0.058106910437345505, + -0.016666773706674576, + 0.0135381193831563, + -0.0016922649228945374, + 0.01693427935242653, + 0.022016890347003937, + -0.01532924547791481, + 0.0060188802890479565, + 0.00786234438419342, + -0.009380148723721504, + 0.023552140220999718, + -0.017132000997662544, + -0.017655381932854652, + 0.042545054107904434, + -0.007432009093463421, + -0.010839800350368023, + -0.019562814384698868, + 0.0012103182962164283, + 0.02998390980064869, + 0.04091675579547882, + 0.007769298739731312, + 0.026076000183820724, + -0.042265914380550385, + -0.048523224890232086, + -0.008304310031235218, + -0.001543973688967526, + 0.004530152305960655, + -0.006013065110892057, + -0.03377551585435867, + 0.05489684268832207, + -0.04068414121866226, + 0.02495945431292057, + 0.012584403157234192, + 0.0023290449753403664, + 0.0034979290794581175, + -0.010642078705132008, + -0.005286147352308035, + 0.018830081447958946, + -0.02034207060933113, + -0.008502031676471233, + -0.022958975285291672, + 0.010194296948611736, + -0.012910062447190285, + 0.001873994362540543, + 0.008141480386257172, + -0.005542022176086903, + -0.011392258107662201, + 0.04033522307872772, + 0.006455031223595142, + 0.008141480386257172, + -0.003936987370252609, + -0.01261929515749216, + -0.02381964586675167, + -0.0032100696116685867, + -0.03140285611152649, + 0.0404747910797596, + 0.0010736577678471804, + -0.012898432090878487, + 0.005489684175699949, + -0.014747710898518562, + -0.0006167898536659777, + -0.01048506423830986, + -0.008973075076937675, + 0.010770016349852085, + 0.024122044444084167, + 0.0020470009185373783, + 0.04566207528114319, + 0.011834223754703999, + -0.011363181285560131, + -0.042824190109968185, + -0.008257787674665451, + 0.009444117546081543, + -0.011613240465521812, + -0.007746037561446428, + 0.010549033060669899, + -0.023331157863140106, + -0.033193979412317276, + -0.004483629949390888, + -0.02649470418691635, + -0.013119414448738098, + -0.020016411319375038, + -0.018946388736367226, + 0.023156696930527687, + 0.01927204802632332, + -0.0009668008424341679, + -0.029076717793941498, + -0.018620729446411133, + -0.0005568191409111023, + 0.020656099542975426, + -0.017120370641350746, + -0.011299212463200092, + 0.01316593773663044, + -0.002967278938740492, + 0.02582012489438057, + -0.012049391865730286, + -0.011241058818995953, + -0.006298016756772995, + -0.0012568411184474826, + -0.023459095507860184, + 0.030914366245269775, + -0.0004623197892215103, + -0.011159643530845642, + 0.013386920094490051, + 0.01436389796435833, + -0.013247352093458176, + -0.01521293818950653, + 0.002656158059835434, + -0.00417541665956378, + 0.016713296994566917, + -0.0034543140791356564, + 0.033705729991197586, + 0.024238351732492447, + -0.030053693801164627, + -0.02896041050553322, + 0.007821637205779552, + 0.038148652762174606, + -0.016061978414654732, + -0.00012448469351511449, + 0.03682275488972664, + 0.004230662249028683, + -0.016143392771482468, + -0.022086674347519875, + 0.0033409148454666138, + -0.01698080264031887, + 0.018143871799111366, + -0.019574446603655815, + -0.035706207156181335, + -0.0033554532565176487, + -0.0012779217213392258, + 0.00420449348166585, + 0.03540381044149399, + -0.042824190109968185, + -0.02285430021584034, + -0.0007763483445160091, + -0.07369203120470047, + 0.017992671579122543, + -0.0006066130008548498, + 0.0075308699160814285, + -0.018492791801691055, + -0.008920736610889435, + 0.03100741095840931, + -0.011171274818480015, + 0.020900344476103783, + 0.0358923003077507, + -0.010333864949643612, + -0.035031627863645554, + -0.009071935899555683, + 0.013305505737662315, + 0.031193502247333527, + 0.0064201392233371735, + 0.006327093578875065, + 0.007030750159174204, + 0.025796864181756973, + -0.011566718108952045, + 0.030472399666905403, + 0.013956824317574501, + 0.026797102764248848, + -0.038381267338991165, + 0.005007010884582996, + 0.007484347093850374, + 0.03886975347995758, + 0.016503944993019104, + -0.005896758288145065, + 0.014201068319380283, + 0.017934519797563553, + -0.002237453358247876, + 0.013421813026070595, + -0.006693460047245026, + -0.01795778051018715, + -0.005082610063254833, + -0.015689795836806297, + 0.003913726191967726, + 0.020900344476103783, + 0.008083327673375607, + -0.07224982976913452, + -0.016143392771482468, + -0.013491597026586533, + -0.001423305249772966, + -0.009676731191575527, + -0.009467379190027714, + -0.011438780464231968, + 0.006588784046471119, + -0.02217971906065941, + -0.014003346674144268, + -0.0003709098673425615, + 0.01699243299663067, + 0.05857213959097862, + -0.048476703464984894, + 0.0044167535379529, + -0.02217971906065941, + 0.03349637985229492, + -0.007658807095140219, + 0.02782060205936432, + 0.004059109836816788, + 0.008333386853337288, + 0.015468813478946686, + -0.00143202836625278, + 0.032170478254556656, + 0.014666295610368252, + 0.027564728632569313, + -0.054803796112537384, + 0.004114355426281691, + -0.02735537476837635, + 0.005190194118767977, + 0.009955868124961853, + 0.015131523832678795, + 0.014782602898776531, + -0.0012539334129542112, + -0.009211503900587559, + -0.02154003269970417, + 0.0279369093477726, + -0.01601545512676239, + -0.05396638810634613, + 0.0062747555784881115, + 0.013491597026586533, + 0.0026372582651674747, + -0.031240025535225868, + -0.01145622693002224, + 0.0014523820718750358, + -0.03261244669556618, + 0.018097348511219025, + -0.008955628611147404, + 0.021563293412327766, + 0.0005615440895780921, + -0.015631642192602158, + 0.00033656301093287766, + 0.008257787674665451, + 0.013980085961520672, + 0.0025020514149218798, + 0.0018667252734303474, + 0.04010260850191116, + -0.015154784545302391, + -0.0017591413343325257, + -0.013689318671822548, + 0.021109696477651596, + -0.005050625652074814, + -0.013177568092942238, + 0.0019117941847071052, + -0.02826256863772869, + -0.02376149222254753, + -0.011776070110499859, + -0.010746754705905914, + -0.029611729085445404, + -0.008094958029687405, + -0.008891659788787365, + -0.02354050986468792, + -0.02928606979548931, + -0.014410421252250671, + 0.025634033605456352, + 0.013840517029166222, + 0.01646905206143856, + -0.006199155934154987, + -0.00824034120887518, + -0.01675982028245926, + -0.02495945431292057, + 0.031775034964084625, + 0.02199362963438034, + 0.003980602603405714, + -0.0076820687390863895, + 0.024145305156707764, + -0.021400462836027145, + -0.014398789964616299, + 0.017190154641866684, + 0.07615773379802704, + 0.02558751031756401, + 0.017027325928211212, + -0.0008795706671662629, + -0.009781407192349434, + 0.03882323205471039, + 0.002525312826037407, + -0.004803473595529795, + -0.03184482082724571, + 0.011787701398134232, + 0.015364137478172779, + 0.006210786756128073, + -0.0033874374348670244, + 0.00917079672217369, + 0.04538293927907944, + -0.026936670765280724, + 0.042033303529024124, + -0.015015216544270515, + 0.02558751031756401, + -0.014549989253282547, + 0.023052021861076355, + 0.03540381044149399, + -0.004283000249415636, + -0.0011252689873799682, + -0.025843385607004166, + -0.029960649088025093, + 0.02233091928064823, + -0.003974787425249815, + 0.014910540543496609, + 0.059363026171922684, + 0.009804668836295605, + -0.002251991769298911, + -0.03731124475598335, + 0.019423246383666992, + -0.012386681511998177, + 0.036101650446653366, + -0.014398789964616299, + 0.01903943344950676, + -0.008612523786723614, + 0.01607360877096653, + -0.016852864995598793, + -0.0404747910797596, + -0.013724210672080517, + 0.013514857739210129, + -0.018678883090615273, + -0.013654426671564579, + 0.0026634272653609514, + -0.04314984753727913, + 0.013235721737146378, + 0.018667252734303474, + 0.018876604735851288, + -0.014003346674144268, + 0.03172851353883743, + 0.025610772892832756, + 0.01436389796435833, + 0.02951868250966072, + 0.01955118402838707, + -0.0067167216911911964, + -0.027657773345708847, + 0.001174699398688972, + -0.022144827991724014, + 0.010467617772519588, + -0.03289158269762993, + -0.04233570024371147, + -0.008141480386257172, + -0.01749255321919918, + 0.02005130425095558, + -0.0033176534343510866, + -0.01595730148255825, + -0.0037072813138365746, + 0.04261483624577522, + 0.009258026257157326, + -0.0021240541245788336, + 0.012002868577837944, + -0.037427548319101334, + -0.013898670673370361, + -0.006175894755870104, + -0.009304549545049667, + 0.02409878373146057, + 0.007414562627673149, + -0.006600414868444204, + 0.029541945084929466, + 0.016829604282975197, + -0.009763961657881737, + 0.005693220999091864, + -0.031100455671548843, + -0.041288938373327255, + 0.006780690513551235, + 0.006658568046987057, + 0.04649948701262474, + 0.016899388283491135, + -0.02097012847661972, + -0.03540381044149399, + 0.03749733418226242, + 0.009141719900071621, + -0.0022505379747599363, + -0.01902780309319496, + -0.018667252734303474, + 0.024703579023480415, + 0.018329963088035583, + 0.0007916135946288705, + 0.004346969071775675, + -0.001066388562321663, + 0.03226352483034134, + -0.011124751530587673, + -0.000451416039140895, + 0.035427071154117584, + 0.015387398190796375, + 0.0182485468685627, + -0.025168806314468384, + 0.0016646420117467642, + -0.019190633669495583, + -0.022296026349067688, + -0.002257807180285454, + -0.03300788998603821, + 0.02177264541387558, + 0.014410421252250671, + -0.0037247275467962027, + 0.019690752029418945, + 0.02148187905550003, + 0.04936063662171364, + 0.0018071179511025548, + -0.019016172736883163, + -0.021912213414907455, + 0.002044093096628785, + -0.01145622693002224, + 0.0010300426511093974, + -0.05624600127339363, + 0.025401420891284943, + -0.008275233209133148, + -0.01493380218744278, + -0.02416856773197651, + 0.04326615482568741, + -0.02212156541645527, + 0.012537880800664425, + -0.03198438882827759, + -0.023168327286839485, + -0.01518967654556036, + 0.009321995079517365, + 0.008554370142519474, + 0.021784275770187378, + -0.015119892545044422, + -0.030309569090604782, + 0.06708580255508423, + -0.03528750315308571, + -0.0009290011366829276, + 0.008996335789561272, + -0.006088664755225182, + -0.0019088864792138338, + -0.020388593897223473, + 0.033077672123909, + 0.03272875398397446, + 0.0236451867967844, + 0.025261851027607918, + -0.0007011123234406114, + 0.030798058956861496, + -0.005530391354113817, + 0.04303354024887085, + 0.02586664818227291, + 0.014270852319896221, + -0.02274962328374386, + 0.014549989253282547, + 0.02416856773197651, + 0.03679949417710304, + 0.0012975485296919942, + -0.04035848379135132, + 0.0148174948990345, + -0.011979607865214348, + 0.039986301213502884, + 0.03296136483550072, + 0.009194058366119862, + 0.010746754705905914, + -0.009502271190285683, + -0.009153350256383419, + -0.026238828897476196, + -0.0035473594907671213, + -0.020016411319375038, + -0.019074326381087303, + 0.024005737155675888, + 0.02507576160132885, + 0.03796256333589554, + 0.002644527470692992, + 0.016783080995082855, + 0.03461292386054993, + 0.04917454347014427, + 0.005544929765164852, + -0.0008664861670695245, + -0.01584099605679512, + 0.021679600700736046, + -0.03726471960544586, + -0.01869051344692707, + -0.01518967654556036 + ] + }, + { + "HotelId": "40", + "HotelName": "Trails End Motel", + "Description": "Only 8 miles from Downtown. On-site bar/restaurant, Free hot breakfast buffet, Free wireless internet, All non-smoking hotel. Only 15 miles from airport.", + "Description_fr": "A seulement 8 km du centre-ville. Bar/restaurant sur place, buffet de petit dĆ©jeuner chaud gratuit, Internet sans fil gratuit, tout hĆ“tel non-fumeurs. A seulement 15 km de l'aĆ©roport.", + "Category": "Budget", + "Tags": [ + "bar", + "free wifi", + "restaurant" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2017-01-18T00:00:00Z", + "Rating": 3.2, + "Address": { + "StreetAddress": "7014 E Camelback Rd", + "City": "Scottsdale", + "StateProvince": "AZ", + "PostalCode": "85251", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -111.929405, + 33.503067 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 259.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "tv" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 266.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 155.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 113.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "tv" + ] + } + ], + "embedding": [ + -0.02979792281985283, + -0.04425632208585739, + 0.012535953894257545, + -0.01851356215775013, + -0.04597851634025574, + -0.009251774288713932, + -0.021387219429016113, + 0.01702166348695755, + 0.021327141672372818, + 0.013527215458452702, + 0.0013204304268583655, + -0.01242581382393837, + 0.0015031630173325539, + 0.03424357995390892, + -0.03380301967263222, + 0.019214453175663948, + -0.06552338600158691, + 0.04950299859046936, + 0.00861095916479826, + 0.034303657710552216, + 0.00608274107798934, + 0.016360821202397346, + 0.014158017933368683, + -0.048421625047922134, + 0.06227926164865494, + 0.051425445824861526, + -0.004605861846357584, + -0.037587836384773254, + 0.01960495114326477, + -0.034704167395830154, + -0.027675220742821693, + -0.02045603282749653, + 0.0015870197676122189, + -0.01759238913655281, + 0.02308938466012478, + 0.023990532383322716, + -0.01920444145798683, + 0.0143883116543293, + 0.04157290980219841, + -0.018553612753748894, + -0.0014693699777126312, + 0.010763698257505894, + 0.0023905423004180193, + -0.08102311193943024, + -0.051946111023426056, + 0.05126524344086647, + -0.0225687213242054, + 0.022829053923487663, + 0.009266793727874756, + 0.0025983068626374006, + -0.07133077830076218, + -0.04333515092730522, + -0.0058174035511910915, + -0.09411977976560593, + 0.004853677004575729, + 0.07233205437660217, + 0.02455124445259571, + -0.008460767567157745, + 0.02218823879957199, + 0.006222919560968876, + 0.06211905553936958, + -0.004182823467999697, + 0.02547241747379303, + 0.05438921973109245, + 0.010122883133590221, + 0.034804295748472214, + 0.03732750564813614, + -0.006468231789767742, + -0.017962859943509102, + -0.04942289739847183, + 0.015099216252565384, + 0.04509739205241203, + 0.010057800449430943, + -0.020405970513820648, + -0.001852357410825789, + 0.0034093388821929693, + -0.01325687114149332, + -0.04938284680247307, + -0.009036500006914139, + -0.019875293597579002, + -0.0035294918343424797, + -0.01898415945470333, + -0.000870482821483165, + 0.05438921973109245, + 0.06292007863521576, + -0.02102676033973694, + -0.05623156204819679, + 0.01351720280945301, + -0.004971326794475317, + 0.046258870512247086, + 0.03105952776968479, + 0.0004399348981678486, + 0.02557254582643509, + -0.032441288232803345, + 0.028396138921380043, + -0.02050609700381756, + 0.0470198392868042, + -0.005401874892413616, + -0.033042050898075104, + -0.007719824556261301, + -0.02084653079509735, + -0.11470597982406616, + 0.017902784049510956, + -0.01749226078391075, + -0.008160385303199291, + -0.07745857536792755, + -0.009572181850671768, + 0.03752775862812996, + 0.05086473375558853, + -0.0046409061178565025, + -0.06083742529153824, + -0.036246128380298615, + -0.016370834782719612, + 0.03586564585566521, + -0.0009086563950404525, + -0.0007296786061488092, + -0.00848579965531826, + 0.0112843606621027, + -0.007053977344185114, + -0.021066810935735703, + 0.017862733453512192, + 0.024270888417959213, + -0.017181865870952606, + -0.02290915511548519, + 0.012315673753619194, + -0.02246859483420849, + -0.02753504179418087, + 0.00850081816315651, + 0.006428180728107691, + -0.03744765743613243, + -0.02651374228298664, + -0.01583014614880085, + 0.04726014658808708, + -0.030158381909132004, + 0.015910249203443527, + -0.0017121790442615747, + -0.004888721741735935, + -0.03550518676638603, + -0.0455780066549778, + -0.01180502399802208, + 0.046659380197525024, + 0.01938466913998127, + 0.020786454901099205, + -0.005957582034170628, + -0.04505734145641327, + 0.04850172623991966, + 0.03436373174190521, + -0.005537046585232019, + 0.03644638508558273, + 0.0652029812335968, + -0.00017991647473536432, + -0.008185417391359806, + -0.0014606089098379016, + -0.059355538338422775, + -0.04850172623991966, + -0.00693382415920496, + -0.0393100269138813, + -0.010823775082826614, + -0.03374294191598892, + 0.05250682309269905, + -0.039049696177244186, + 0.028316035866737366, + -0.021407244727015495, + 0.02525213733315468, + 0.013136718422174454, + -0.008656016550958157, + 0.008841251954436302, + 0.003990077879279852, + -0.06940833479166031, + -0.030278533697128296, + 0.034303657710552216, + 0.026954304426908493, + 0.017061714082956314, + 0.04942289739847183, + -0.003404332557693124, + 0.07249225676059723, + 0.02599308080971241, + 0.012505915947258472, + 0.018904058262705803, + 0.010633532889187336, + 0.01868377812206745, + -0.0426943339407444, + 0.041813213378190994, + 0.010147915221750736, + 0.01113416999578476, + 0.004705989267677069, + 0.005251683760434389, + 0.03720735386013985, + -0.03508464992046356, + 0.009572181850671768, + 0.004643409512937069, + 0.011684871278703213, + 0.0038473964668810368, + 0.008936372585594654, + -0.050984885543584824, + 0.011014017276465893, + 0.0006408155313692987, + -0.06083742529153824, + -0.015059164725244045, + 0.0024869150947779417, + 0.0023429817520081997, + -0.009782449342310429, + 0.010943927802145481, + 0.020365918055176735, + -0.040591660887002945, + -0.07409429550170898, + 0.022628799080848694, + 0.01794283464550972, + 0.016881484538316727, + -0.005466957576572895, + 0.003446886781603098, + 0.00943200383335352, + 0.05519023910164833, + -0.029557617381215096, + -0.012305661104619503, + -0.01873384229838848, + -0.0038423901423811913, + -0.009221736341714859, + 0.026553794741630554, + 0.013356998562812805, + -0.011714909225702286, + -0.05118514224886894, + -0.030819222331047058, + -0.0018623701762408018, + 0.03999089449644089, + 0.022949205711483955, + -0.025452392175793648, + -0.009136627428233624, + 0.02393045462667942, + -0.017151828855276108, + 0.005346804857254028, + -0.0225687213242054, + -0.012245584279298782, + -0.023750225082039833, + -0.01418805681169033, + 0.049342796206474304, + -0.022969231009483337, + -0.028075730428099632, + -0.006688512396067381, + 0.007409429643303156, + -0.04766065627336502, + -0.008891315199434757, + 0.010373201221227646, + 0.04445657879114151, + 0.03920990228652954, + -0.06279992312192917, + 0.009201711043715477, + -0.009757418185472488, + 0.03890951722860336, + -0.03226105868816376, + -0.0309393759816885, + 0.02495175413787365, + -0.011514654383063316, + -0.061638444662094116, + 0.016270706430077553, + 0.006247951649129391, + -0.041933365166187286, + 0.0012221804354339838, + 0.05887492746114731, + -0.024911703541874886, + 0.026113232597708702, + 0.0266138706356287, + 0.01963498815894127, + -0.007990168407559395, + 0.015099216252565384, + -0.0017009146977216005, + -0.0034093388821929693, + 0.01970507763326168, + -0.024110684171319008, + -0.009667303413152695, + -0.06011650711297989, + -0.009892589412629604, + -0.0073793912306427956, + -0.013196795247495174, + 0.006848716177046299, + -0.030879298225045204, + -0.07237210124731064, + -0.01567995548248291, + 0.044296372681856155, + -0.021186964586377144, + -0.03314217925071716, + 0.00005006371429772116, + 0.05014381557703018, + -0.013487164862453938, + 0.003922491800040007, + -0.024811577051877975, + 0.012305661104619503, + 0.016881484538316727, + -0.04353540390729904, + 0.004037638660520315, + -0.044416528195142746, + 0.06800654530525208, + 0.011674857698380947, + -0.05138539522886276, + 0.024831602349877357, + 0.0013980291550979018, + 0.04882213473320007, + -0.025031857192516327, + 0.0058274162001907825, + -0.05146549642086029, + 0.060877475887537, + 0.03951028361916542, + 0.005056435242295265, + -0.015870196744799614, + -0.0017422172240912914, + 0.03364281728863716, + -0.012235571630299091, + 0.03868923708796501, + 0.028436189517378807, + -0.03702712431550026, + -0.009552156552672386, + 0.016731293871998787, + 0.015079190954566002, + -0.02465137280523777, + -0.01175495982170105, + 0.022448569536209106, + 0.010273073799908161, + 0.007149098441004753, + -0.009967685677111149, + -0.05370835214853287, + 0.05579100176692009, + -0.0035770523827522993, + -0.003471918636932969, + -0.047300197184085846, + -0.00023874134058132768, + -0.03228108212351799, + 0.008876296691596508, + 0.004941288381814957, + 0.019104313105344772, + -0.026573820039629936, + 0.04201347008347511, + -0.0067235566675662994, + 0.05691242963075638, + 0.018303293734788895, + -0.002170261926949024, + 0.03488439694046974, + -0.042854540050029755, + -0.011374475434422493, + -0.011314399540424347, + 0.052226465195417404, + 0.010953940451145172, + -0.006878754124045372, + -0.04405606910586357, + -0.02507190778851509, + 0.0112843606621027, + -0.04133260250091553, + -0.01928454264998436, + 0.03590569645166397, + 0.01873384229838848, + 0.027575094252824783, + -0.02465137280523777, + 0.042333874851465225, + -0.03854905813932419, + 0.0003773552307393402, + -0.02639359049499035, + -0.031319860368967056, + 0.026473691686987877, + 0.012866374105215073, + 0.006207900587469339, + 0.0165510643273592, + -0.0321008525788784, + 0.03941015526652336, + -0.0029011922888457775, + 0.0048086196184158325, + 0.04629892110824585, + 0.004936282057315111, + 0.013937737792730331, + 0.0037798103876411915, + -0.03021845780313015, + 0.011274348013103008, + 0.05458947271108627, + 0.040171124041080475, + -0.0141379926353693, + -0.018874019384384155, + 0.0039024665020406246, + 0.02246859483420849, + 0.014658655039966106, + 0.03898962214589119, + 0.03444383665919304, + -0.05959584563970566, + 0.004635899793356657, + 0.001824822393245995, + 0.048541776835918427, + -0.004603358451277018, + 0.051305294036865234, + -0.055831052362918854, + -0.024070633575320244, + -0.06712542474269867, + -0.006418168079108, + 0.04974330589175224, + 0.040591660887002945, + -0.014878936111927032, + 0.008440742269158363, + -0.06067722290754318, + -0.006257964298129082, + -0.012395775876939297, + 0.004598352126777172, + 0.040070995688438416, + -0.03292189911007881, + 0.004773575346916914, + 0.007799926679581404, + -0.04445657879114151, + -0.03446386009454727, + -0.006092754192650318, + 0.0081503726541996, + -0.03898962214589119, + -0.012786272913217545, + -0.00850081816315651, + -0.003572046058252454, + -0.011054067872464657, + 0.011124157346785069, + -0.05094483494758606, + 0.02723466046154499, + 0.005266702733933926, + -0.031500089913606644, + -0.0015394592192023993, + 0.010633532889187336, + 0.000058903089666273445, + -0.003171536372974515, + 0.021206989884376526, + 0.010623520240187645, + 0.0063580917194485664, + 0.0067335693165659904, + 0.03386309742927551, + -0.05146549642086029, + 0.00033699136110953987, + -0.0003003822930622846, + -0.014868923462927341, + -0.05334789305925369, + 0.022748950868844986, + -0.01216548215597868, + -0.03123975731432438, + -0.007449480704963207, + 0.07781903445720673, + -0.04341525211930275, + 0.03710722550749779, + -0.030138356611132622, + 0.03484434634447098, + -0.007033951580524445, + 0.009351901710033417, + 0.013837610371410847, + -0.028496265411376953, + -0.029117055237293243, + 0.0030363642144948244, + -0.04850172623991966, + -0.017041688784956932, + 0.026353539898991585, + 0.06207900494337082, + 0.023269614204764366, + -0.022428544238209724, + -0.02218823879957199, + -0.032941922545433044, + -0.008170397952198982, + 0.015509738586843014, + 0.0032015745528042316, + -0.022969231009483337, + 0.025091933086514473, + -0.056471869349479675, + 0.02971781976521015, + 0.011034042574465275, + 0.05226651579141617, + 0.0018986663781106472, + -0.03135991096496582, + 0.0065082828514277935, + 0.012706170789897442, + -0.03135991096496582, + 0.006057709455490112, + 0.062439464032649994, + 0.018874019384384155, + 0.0009111596154980361, + -0.04373566061258316, + -0.02342981845140457, + 0.02005552314221859, + -0.018283268436789513, + 0.009492079727351665, + -0.014848897233605385, + 0.008851264603435993, + 0.022128161042928696, + -0.026113232597708702, + -0.01139450166374445, + -0.048221368342638016, + 0.022448569536209106, + -0.012035316787660122, + -0.008661022409796715, + -0.003965046256780624, + -0.029537592083215714, + 0.01677134446799755, + 0.0196850523352623, + -0.05382850393652916, + -0.05627161264419556, + -0.005136536899954081, + 0.013567266054451466, + 0.02330966480076313, + -0.004708492197096348, + -0.03318222984671593, + -0.0031790458597242832, + -0.040070995688438416, + -0.0026809119153767824, + 0.04850172623991966, + -0.03382304683327675, + -0.02363007329404354, + -0.03258146345615387, + -0.027274711057543755, + -0.03320225328207016, + 0.024891678243875504, + 0.009056526236236095, + -0.005822409875690937, + 0.02845621481537819, + -0.0022766473703086376, + -0.0026533768977969885, + 0.037507735192775726, + -0.015669941902160645, + -0.001846099505200982, + 0.02166757546365261, + -0.024110684171319008, + 0.02435098960995674, + 0.008170397952198982, + 0.021006735041737556, + -0.028896775096654892, + 0.0053317854180932045, + 0.004017612896859646, + 0.0021327142603695393, + -0.020345892757177353, + -0.02112688682973385, + 0.0026508737355470657, + 0.02052612230181694, + 0.024791551753878593, + -0.06328053772449493, + -0.0012979017337784171, + 0.01561987865716219, + 0.00014182111772242934, + -0.003509466303512454, + 0.0054519386030733585, + 0.03746768459677696, + 0.05046422407031059, + 0.010443290695548058, + 0.026854176074266434, + 0.0398106649518013, + 0.04866192862391472, + 0.001709675882011652, + 0.016591114923357964, + -0.02092663198709488, + -0.01417804416269064, + -0.009411978535354137, + -0.018894046545028687, + -0.008966411463916302, + -0.016330784186720848, + -0.008135353215038776, + -0.020466046407818794, + -0.006478244438767433, + -0.010333150625228882, + 0.010363188572227955, + -0.006848716177046299, + 0.0007490783464163542, + -0.014097942039370537, + -0.004050154238939285, + 0.03700709715485573, + -0.00976743083447218, + -0.0038924538530409336, + 0.012355724349617958, + 0.03983069211244583, + -0.006293009035289288, + 0.005151556339114904, + 0.022608773782849312, + 0.014578553847968578, + 0.00418032007291913, + 0.02525213733315468, + 0.001252844464033842, + 0.006918805185705423, + -0.014478426426649094, + 0.015489713288843632, + 0.020446021109819412, + -0.028856724500656128, + -0.02919715829193592, + 0.016360821202397346, + 0.006247951649129391, + -0.005982613656669855, + -0.039249952882528305, + -0.021327141672372818, + 0.02433096431195736, + 0.024731473997235298, + -0.004938785452395678, + 0.06316038221120834, + 0.04117240011692047, + -0.006413161754608154, + -0.02298925817012787, + 0.032421261072158813, + 0.01593027450144291, + 0.02855634316802025, + 0.016581101343035698, + 0.02865646965801716, + 0.01824321784079075, + 0.008886309340596199, + -0.04726014658808708, + -0.01181503664702177, + 0.0005616522976197302, + -0.028516290709376335, + 0.012936463579535484, + -0.03061896748840809, + 0.03178044408559799, + 0.001786023029126227, + -0.037908244878053665, + -0.026333512738347054, + -0.013487164862453938, + 0.0049663204699754715, + -0.014148005284368992, + -0.027074456214904785, + 0.04673948511481285, + 0.022628799080848694, + -0.010082831606268883, + -0.009201711043715477, + -0.012295648455619812, + 0.012245584279298782, + 0.01739213429391384, + -0.008385672233998775, + 0.048341523855924606, + -0.04301474243402481, + -0.026033131405711174, + -0.01459857914596796, + -0.006423174403607845, + 0.029377387836575508, + -0.07581648975610733, + 0.02711450681090355, + 0.011074093170464039, + -0.010042781010270119, + 0.017161840572953224, + 0.02435098960995674, + -0.03989076614379883, + 0.00032416253816336393, + -0.025292187929153442, + -0.02206808514893055, + 0.06195885315537453, + 0.04013107344508171, + 0.01406790316104889, + -0.00608274107798934, + 0.019735116511583328, + -0.005111505277454853, + -0.006252957973629236, + -0.03144001215696335, + -0.028596393764019012, + -0.016290731728076935, + -0.0010081580840051174, + -0.0027610138058662415, + -0.010803749784827232, + -0.01093391515314579, + 0.0036846892908215523, + 0.04529764875769615, + -0.015539776533842087, + -0.015820134431123734, + 0.001287889084778726, + 0.004550791811197996, + 0.009552156552672386, + 0.010683596134185791, + -0.004335517529398203, + -0.04217367246747017, + -0.01712178997695446, + 0.0019474785076454282, + 0.022228289395570755, + 0.03400327265262604, + 0.05022391676902771, + 0.007084015291184187, + 0.005431912839412689, + -0.044296372681856155, + 0.013847623020410538, + -0.0035870650317519903, + 0.017362095415592194, + 0.02052612230181694, + 0.0021439786069095135, + -0.03468414023518562, + -0.02047605812549591, + 0.03638630732893944, + -0.005083970259875059, + 0.01310668047517538, + 0.00005518742182175629, + -0.00523165799677372, + -0.007424448616802692, + 0.017772618681192398, + 0.0010982727399095893, + 0.015740031376481056, + -0.008961404673755169, + -0.00533679174259305, + -0.022628799080848694, + -0.003732249839231372, + 0.029938101768493652, + 0.03814854845404625, + 0.0035845618695020676, + 0.01831330731511116, + -0.012475877068936825, + 0.0008398187928833067, + -0.03386309742927551, + 0.04165301099419594, + -0.03184052184224129, + 0.05330784246325493, + 0.004933779127895832, + -0.05334789305925369, + -0.021527396515011787, + 0.0037422627210617065, + 0.015279445797204971, + 0.01901419833302498, + -0.05414891242980957, + -0.0066484613344073296, + 0.016320770606398582, + 0.004931275732815266, + -0.010913889855146408, + -0.014168030582368374, + -0.0184634979814291, + -0.011704896576702595, + -0.03218095377087593, + 0.0100628063082695, + -0.033682867884635925, + 0.004605861846357584, + -0.031920623034238815, + -0.022929180413484573, + 0.0028336062096059322, + 0.025652647018432617, + -0.022708900272846222, + -0.032341159880161285, + 0.0086359903216362, + 0.005937556270509958, + -0.013907699845731258, + -0.015039139427244663, + 0.025332238525152206, + -0.003985071554780006, + 0.010077825747430325, + -0.006568359211087227, + -0.011694883927702904, + 0.014458400197327137, + -0.009887583553791046, + 0.010097851045429707, + 0.02711450681090355, + -0.0017797650070860982, + 0.042654283344745636, + 0.004583333153277636, + 0.0054719639010727406, + 0.002385535975918174, + -0.01072364766150713, + -0.004508237354457378, + -0.002026328817009926, + 0.005141543224453926, + -0.03606589883565903, + -0.007514563389122486, + 0.007794920355081558, + -0.020546147599816322, + -0.015790095552802086, + 0.01262606866657734, + -0.026974329724907875, + 0.017862733453512192, + 0.019224466755986214, + -0.020606225356459618, + 0.007599671836942434, + -0.015569815412163734, + 0.0027610138058662415, + 0.006978881545364857, + -0.01784270815551281, + 0.017762605100870132, + -0.0393100269138813, + 0.008751137182116508, + 0.012565991841256618, + 0.028696520254015923, + 0.017251955345273018, + -0.01330693531781435, + 0.006818677764385939, + 0.03478426858782768, + 0.03632622957229614, + 0.017482249066233635, + 0.008390678092837334, + 0.024290913715958595, + -0.014628617092967033, + -0.019194427877664566, + 0.01620061695575714, + 0.007324321195483208, + -0.010653558187186718, + 0.017432184889912605, + -0.024090658873319626, + 0.020746402442455292, + -0.029517564922571182, + -0.0072191874496638775, + -0.02939741313457489, + 0.03184052184224129, + -0.004067676607519388, + 0.02989804930984974, + -0.021327141672372818, + 0.02497178129851818, + 0.027254685759544373, + 0.0007484524976462126, + 0.005381849128752947, + -0.011064080521464348, + 0.026053156703710556, + 0.00956717599183321, + 0.010503367520868778, + -0.0028311030473560095, + 0.007058983668684959, + 0.04653922840952873, + -0.04397596791386604, + 0.027995629236102104, + -0.010228016413748264, + 0.02248862013220787, + -0.0021427269093692303, + 0.03606589883565903, + 0.05414891242980957, + 0.009522118605673313, + -0.018543599173426628, + 0.01747223548591137, + -0.004828645382076502, + 0.05683232843875885, + -0.0031890585087239742, + -0.028035679832100868, + -0.0032491351012140512, + 0.005119014531373978, + -0.047900959849357605, + 0.006643455009907484, + -0.004215364810079336, + 0.02651374228298664, + 0.009632258675992489, + 0.02208811044692993, + 0.018523573875427246, + -0.00037266177241690457, + 0.047180045396089554, + -0.02072637714445591, + -0.001678386004641652, + -0.059035129845142365, + -0.020035497844219208, + 0.011734934523701668, + -0.010483341291546822, + -0.02363007329404354, + 0.009742398746311665, + -0.015720006078481674, + 0.008345620706677437, + -0.02487165294587612, + -0.043575458228588104, + -0.031399961560964584, + 0.04063171148300171, + -0.015409611165523529, + -0.0008767407853156328, + 0.03422355651855469, + -0.016140541061758995, + 0.04509739205241203, + 0.002668395871296525, + 0.010393227450549603, + -0.00938193965703249, + -0.010643545538187027, + -0.005011377856135368, + -0.02218823879957199, + -0.005088976584374905, + -0.0676460936665535, + 0.026353539898991585, + 0.008045238442718983, + -0.0033367464784532785, + 0.013186782598495483, + -0.0304387379437685, + 0.0266138706356287, + -0.01742217317223549, + 0.01742217317223549, + 0.012646093964576721, + 0.01160476915538311, + 0.01181503664702177, + -0.016831420361995697, + 0.014238120056688786, + 0.04713999480009079, + -0.026593845337629318, + -0.039029672741889954, + -0.02711450681090355, + 0.0013542234664782882, + -0.0035294918343424797, + 0.014408336952328682, + 0.0013229335891082883, + 0.018643727526068687, + 0.0021464817691594362, + 0.0031790458597242832, + -0.020446021109819412, + -0.03292189911007881, + -0.01873384229838848, + 0.014638629741966724, + 0.012515928596258163, + -0.005361823830753565, + 0.005507008638232946, + 0.023049334064126015, + 0.00675359508022666, + 0.021287091076374054, + -0.024691423401236534, + 0.002986300503835082, + 0.005061441566795111, + 0.007524576038122177, + 0.01762242801487446, + -0.001789777772501111, + 0.03967048600316048, + -0.02487165294587612, + 0.022829053923487663, + -0.006177862174808979, + 0.018753867596387863, + 0.03874931484460831, + 0.07849990576505661, + 0.014158017933368683, + 0.032341159880161285, + -0.04033132642507553, + 0.013947750441730022, + -0.017231930047273636, + 0.041092295199632645, + -0.037607863545417786, + 0.0039400141686201096, + 0.009942653588950634, + -0.001678386004641652, + -0.03073912113904953, + -0.00590251199901104, + 0.01824321784079075, + 0.03506462648510933, + -0.017862733453512192, + 0.01811305247247219, + 0.0029262241441756487, + -0.014288184233009815, + 0.00331421778537333, + -0.012916438281536102, + 0.007284270599484444, + -0.0004953178577125072, + -0.00506394449621439, + 0.008646002970635891, + -0.026353539898991585, + -0.009997723624110222, + 0.009296831674873829, + 0.0369870699942112, + 0.039249952882528305, + 0.020395956933498383, + -0.053267791867256165, + -0.000655834679491818, + 0.01201529148966074, + 0.006788639817386866, + -0.01975514180958271, + 0.020245766267180443, + -0.023870378732681274, + -0.009291824884712696, + -0.020125612616539, + 0.017772618681192398, + 0.012145456857979298, + 0.00048593091196380556, + 0.03288184851408005, + -0.040191151201725006, + 0.011094119399785995, + 0.010142908431589603, + 0.029637718573212624, + -0.025452392175793648, + 0.004828645382076502, + 0.00016208126908168197, + -0.008595939725637436, + -0.01479883398860693, + -0.0026183321606367826, + -0.003897460177540779, + 0.0042654285207390785, + -0.007514563389122486, + 0.01603040099143982, + -0.03586564585566521, + -0.005121517926454544, + 0.018323319032788277, + -0.01072364766150713, + 0.026954304426908493, + 0.001846099505200982, + -0.00652330182492733, + 0.02218823879957199, + -0.0349845215678215, + -0.02030584216117859, + 0.01888403296470642, + 0.004961314145475626, + 0.028095755726099014, + 0.010007736273109913, + -0.0227890033274889, + 0.0008247997029684484, + -0.003509466303512454, + -0.0035019568167626858, + 0.05054432526230812, + 0.00009441703878110275, + 0.004756052978336811, + 0.01660112664103508, + 0.023449843749403954, + 0.00938193965703249, + 0.015369560569524765, + 0.0024368513841181993, + 0.01997542195022106, + 0.01824321784079075, + 0.01819315366446972, + -0.004027626011520624, + 0.008175404742360115, + 0.010693609714508057, + 0.03576551750302315, + 0.05743309110403061, + 0.0031139629427343607, + -0.01876387931406498, + 0.011795011349022388, + 0.013186782598495483, + 0.05362825095653534, + 0.04910248890519142, + -0.025232112035155296, + 0.010248042643070221, + -0.020095575600862503, + 0.019825231283903122, + 0.0422537736594677, + -0.02435098960995674, + 0.007174130063503981, + 0.02979792281985283, + 0.045217547565698624, + 0.013907699845731258, + 0.056471869349479675, + -0.020866556093096733, + -0.013236845843493938, + -0.025111958384513855, + 0.009557163342833519, + 0.02000546082854271, + -0.02154742181301117, + 0.003582058707252145, + -0.0053017474710941315, + -0.016561076045036316, + 0.007033951580524445, + -0.025912977755069733, + 0.007084015291184187, + 0.02124704048037529, + -0.019895320758223534, + -0.017061714082956314, + -0.0038524027913808823, + 0.0028311030473560095, + 0.018153103068470955, + 0.007043964695185423, + -0.00486368965357542, + 0.020586200058460236, + 0.001461860490962863, + -0.0004343027248978615, + 0.015519751235842705, + 0.03700709715485573, + -0.0077048055827617645, + 0.03105952776968479, + 0.012205533683300018, + 0.002312943572178483, + 0.02517203614115715, + 0.008050245232880116, + 0.005226651672273874, + 0.012796285562217236, + 0.03412342816591263, + 0.02371017448604107, + 0.008651009760797024, + -0.0014668668154627085, + -0.011925176717340946, + 0.013186782598495483, + 0.035004548728466034, + -0.0030013197101652622, + -0.006583378184586763, + -0.0005416268249973655, + -0.013797559775412083, + -0.03918987512588501, + 0.02268887497484684, + 0.007389404345303774, + 0.028015654534101486, + 0.01737210899591446, + -0.004893728066235781, + 0.0029112049378454685, + -0.05226651579141617, + -0.001583264907822013, + -0.02280902862548828, + -0.00590251199901104, + 0.04982340708374977, + -0.016160566359758377, + -0.007184142712503672, + -0.00022653830819763243, + -0.0048461672849953175, + 0.014248132705688477, + -0.012305661104619503, + -0.0020726376678794622, + -0.04938284680247307, + -0.019444746896624565, + -0.003659657435491681, + -0.014318222180008888, + -0.020446021109819412, + -0.006903786212205887, + -0.0027309756260365248, + 0.010273073799908161, + 0.028756598010659218, + 0.004570817109197378, + 0.0172719806432724, + 0.015860185027122498, + -0.017231930047273636, + 0.014398324303328991, + -0.00618787482380867, + -0.017752593383193016, + 0.017832694575190544, + 0.008315582759678364, + -0.005381849128752947, + -0.01913435198366642, + 0.002826096722856164, + -0.03957035765051842, + 0.05370835214853287, + 0.02198798395693302, + -0.01759238913655281, + 0.011264335364103317, + 0.022208264097571373, + -0.016320770606398582, + -0.003992581274360418, + -0.019574912264943123, + 0.012666119262576103, + -0.01757236383855343, + -0.028396138921380043, + 0.01309666782617569, + 0.03536500781774521, + 0.0009343140409328043, + 0.02020571567118168, + -0.007854996249079704, + 0.01695157401263714, + 0.03380301967263222, + -0.025232112035155296, + -0.007058983668684959, + -0.006468231789767742, + -0.01886400766670704, + 0.009857545606791973, + -0.04782085865736008, + -0.0014505961444228888, + 0.01744219847023487, + 0.01500910148024559, + 0.0029011922888457775, + -0.008806207217276096, + -0.002851128578186035, + 0.02651374228298664, + 0.016861459240317345, + 0.009041506797075272, + -0.005361823830753565, + 0.00985253881663084, + 0.019735116511583328, + -0.004580829758197069, + -0.011444564908742905, + 0.020185690373182297, + -0.014688693918287754, + -0.025412341579794884, + -0.012475877068936825, + -0.02453121915459633, + -0.02320953831076622, + -0.018022937700152397, + 0.006758601404726505, + -0.01734207011759281, + -0.03246131166815758, + 0.0026909245643764734, + 0.04085199162364006, + -0.05070452764630318, + 0.028296010568737984, + -0.0017697522416710854, + 0.00991762150079012, + -0.006973875220865011, + 0.008035225793719292, + 0.026333512738347054, + 0.006808665115386248, + -0.0033192243427038193, + -0.004796103574335575, + 0.017802657559514046, + 0.005251683760434389, + 0.05675222724676132, + -0.0345439612865448, + -0.0019524848321452737, + -0.01767249032855034, + -0.009947660379111767, + 0.02320953831076622, + -0.02027580328285694, + -0.027695246040821075, + -0.010152921080589294, + 0.043054793030023575, + -0.022248314693570137, + -0.018853994086384773, + -0.0039099762216210365, + 0.013737482950091362, + -0.026874201372265816, + 0.024711448699235916, + 0.009346894919872284, + 0.04001092165708542, + 0.008756143972277641, + 0.012145456857979298, + 0.04365555942058563, + -0.0032491351012140512, + 0.03123975731432438, + 0.007674767170101404, + -0.03362279012799263, + -0.007254232186824083, + 0.0021715136244893074, + 0.01853358745574951, + 0.016841433942317963, + -0.007094028405845165, + -0.013687419705092907, + -0.007104041054844856, + -0.021387219429016113, + 0.005306753795593977, + 0.024671398103237152, + -0.05334789305925369, + -0.002337975427508354, + -0.017762605100870132, + -0.0012916438281536102, + -0.007284270599484444, + -0.008000181056559086, + -0.004510740749537945, + -0.012836336158216, + -0.016511013731360435, + -0.0009950163075700402, + 0.012465864419937134, + -0.01980520598590374, + -0.03746768459677696, + 0.019094301387667656, + -0.010283086448907852, + 0.021086836233735085, + -0.003844893304631114, + 0.003839886747300625, + -0.027575094252824783, + 0.013557253405451775, + 0.015349534340202808, + 0.01784270815551281, + -0.02208811044692993, + -0.021407244727015495, + -0.008230474777519703, + 0.007294283248484135, + -0.027274711057543755, + 0.007754869293421507, + 0.001184632652439177, + -0.004708492197096348, + -0.007289276923984289, + 0.010363188572227955, + 0.006242945324629545, + -0.014858909882605076, + -0.029537592083215714, + -0.008265519514679909, + -0.02639359049499035, + -0.00998771097511053, + 0.00354451104067266, + 0.02455124445259571, + -0.005867467261850834, + -0.008951392024755478, + 0.014558527618646622, + -0.019895320758223534, + -0.03730747848749161, + -0.02817585878074169, + 0.011584743857383728, + -0.01754232496023178, + -0.021887855604290962, + 0.0061127794906497, + -0.04029127582907677, + -0.0054719639010727406, + -0.0013179272646084428, + 0.0364263579249382, + -0.0027259693015366793, + 0.0036045874003320932, + -0.01960495114326477, + -0.018032949417829514, + -0.024150734767317772, + -0.0028986891265958548, + 0.016020389273762703, + -0.02082650549709797, + -0.023069359362125397, + -0.005431912839412689, + -0.0032015745528042316, + 0.012005278840661049, + 0.0036546511109918356, + -0.008405697531998158, + -0.009301838465034962, + -0.038208626210689545, + 0.013216820545494556, + -0.005912524648010731, + -0.02845621481537819, + 0.007664754521101713, + -0.020395956933498383, + -0.004175313748419285, + -0.0001832019042922184, + 0.029978152364492416, + -0.0002484411816112697, + -0.0009987710509449244, + -0.027454940602183342, + 0.03308210149407387, + 0.005431912839412689, + -0.003624612931162119, + 0.034924447536468506, + 0.029537592083215714, + 0.0032841796055436134, + 0.03664663806557655, + -0.05094483494758606, + 0.006403149105608463, + -0.0036471416242420673, + 0.00536683015525341, + 0.04525759816169739, + -0.006868741475045681, + -0.004811123013496399, + 0.01154469233006239, + -0.014398324303328991, + 0.008881302550435066, + 0.005111505277454853, + 0.01243582647293806, + 0.015559801831841469, + -0.021887855604290962, + 0.04241397976875305, + 0.008791187778115273, + -0.026974329724907875, + -0.009166666306555271, + -0.01573001965880394, + 0.017412159591913223, + 0.020085562020540237, + 0.03222100809216499, + -0.03630620613694191, + -0.01903422363102436, + 0.009462041780352592, + 0.029157107695937157, + -0.047900959849357605, + -0.033983249217271805, + 0.039249952882528305, + -0.022869104519486427, + -0.018032949417829514, + -0.021367192268371582, + -0.010202985256910324, + 0.03384307026863098, + -0.011304386891424656, + 0.011324412189424038, + 0.027294736355543137, + -0.013296922668814659, + -0.0309393759816885, + 0.004585836082696915, + -0.022829053923487663, + 0.010293100029230118, + 0.0028285998851060867, + -0.0016220643883571029, + 0.01769251562654972, + -0.03041871264576912, + -0.032941922545433044, + -0.01051338016986847, + 0.006668486632406712, + -0.020486071705818176, + 0.04902238771319389, + -0.010773710906505585, + 0.019094301387667656, + -0.017632439732551575, + -0.021227015182375908, + -0.0042554158717393875, + -0.014728744514286518, + 0.015499725937843323, + 0.010603494942188263, + -0.0036896956153213978, + 0.007149098441004753, + 0.03208082914352417, + 0.002961268648505211, + 0.03240123391151428, + -0.010333150625228882, + 0.02290915511548519, + -0.03416347876191139, + -0.023049334064126015, + -0.01324685849249363, + -0.028416164219379425, + 0.012235571630299091, + -0.02186783030629158, + -0.0004627764574252069, + -0.0014693699777126312, + 0.06147824227809906, + 0.02330966480076313, + 0.005171581637114286, + -0.027715271338820457, + 0.035525210201740265, + 0.03967048600316048, + 0.006298015359789133, + 0.019735116511583328, + 0.02515200898051262, + -0.011724921874701977, + 0.019624976441264153, + 0.023970507085323334, + 0.009942653588950634, + -0.022548696026206017, + 0.004698479548096657, + 0.00959220714867115, + -0.02218823879957199, + -0.0005760455969721079, + -0.012055342085659504, + 0.0042654285207390785, + -0.006773620378226042, + 0.039850715547800064, + 0.00492626940831542, + -0.017412159591913223, + -0.019114326685667038, + 0.0034769249614328146, + 0.02027580328285694, + -0.03524485602974892, + -0.0007972646271809936, + 0.015860185027122498, + 0.015960311517119408, + -0.017462223768234253, + -0.010963953100144863, + -0.032661568373441696, + 0.011614781804382801, + 0.00005980267087579705, + 0.005351811181753874, + 0.006623429246246815, + 0.00767977349460125, + -0.006453212816268206, + -0.011654832400381565, + 0.010233023203909397, + 0.0222883652895689, + -0.0017609911737963557, + -0.027595119550824165, + 0.0031139629427343607, + 0.02288912981748581, + -0.025552518665790558, + 0.015890222042798996, + 0.012876386754214764, + 0.010202985256910324, + 0.001879892428405583, + 0.03566538915038109, + -0.04689968749880791, + -0.020626250654459, + -0.03190059959888458, + -0.002285408554598689, + -0.011474602855741978, + -0.02813580632209778, + 0.003316720947623253, + -0.031119603663682938, + -0.013947750441730022, + -0.028856724500656128, + 0.008651009760797024, + 0.00847578700631857, + 0.010563443414866924, + 0.03314217925071716, + 0.025552518665790558, + 0.01816311478614807, + -0.0009243013337254524, + 0.006868741475045681, + -0.03828872740268707, + 0.05118514224886894, + 0.014638629741966724, + -0.004555798135697842, + 0.013877661898732185, + -0.04083196446299553, + -0.000767226389143616, + -0.030198432505130768, + 0.01011287048459053, + 0.006328053306788206, + 0.04437647759914398, + -0.002851128578186035, + -0.008916347287595272, + 0.019895320758223534, + 0.03344256058335304, + -0.02619333565235138, + -0.003809848567470908, + 0.012505915947258472, + 0.02433096431195736, + 0.013807572424411774, + -0.007284270599484444, + -0.029157107695937157, + -0.028035679832100868, + 0.003058892907574773, + 0.043455302715301514, + -0.01570999249815941, + -0.006833696737885475, + 0.006538321264088154, + 0.009396959096193314, + 0.00005538298501051031, + 0.02793555147945881, + -0.009612233377993107, + 0.01181503664702177, + -0.016531039029359818, + -0.007659748196601868, + -0.0006940082530491054, + -0.02731476165354252, + -0.02517203614115715, + 0.010563443414866924, + 0.02939741313457489, + 0.031399961560964584, + 0.026033131405711174, + 0.01935463212430477, + -0.013527215458452702, + -0.04365555942058563, + 0.03442380949854851, + -0.0009749908349476755, + 0.010172946378588676, + 0.03250136226415634, + 0.06640450656414032, + -0.012726196087896824, + 0.04850172623991966, + -0.03426360711455345, + 0.0005613393732346594, + -0.008145365864038467, + 0.022128161042928696, + -0.02022574096918106, + -0.05238667130470276, + 0.01700163632631302, + 0.0294975396245718, + -0.04201347008347511, + 0.04365555942058563, + 0.0021539912559092045, + 0.010853813029825687, + 0.012035316787660122, + 0.0009324366692453623, + 0.019624976441264153, + -0.02330966480076313, + -0.04277443885803223, + 0.01216548215597868, + 0.01866375282406807, + 0.009091570042073727, + 0.02310940995812416, + 0.021287091076374054, + -0.016991624608635902, + -0.01697159931063652, + 0.04205352067947388, + 0.005276715382933617, + -0.034303657710552216, + -0.013166756369173527, + 0.04405606910586357, + 0.012756234034895897, + 0.012135444208979607, + -0.01180502399802208, + 0.032421261072158813, + 0.014358272776007652, + 0.00002207888064731378, + 0.011524667032063007, + 0.017332058399915695, + -0.03133988380432129, + 0.04189331457018852, + -0.03600582480430603, + 0.033782992511987686, + -0.028095755726099014, + -0.025412341579794884, + -0.01717185415327549, + 0.018743854016065598, + -0.01175495982170105, + -0.029117055237293243, + 0.0076947929337620735, + 0.04157290980219841, + -0.03496449813246727, + 0.04517749696969986, + -0.013877661898732185, + -0.015369560569524765, + 0.0015532267279922962, + 0.026874201372265816, + -0.017191879451274872, + 0.005547059699892998, + 0.027354814112186432, + -0.022228289395570755, + 0.011915164068341255, + 0.02258874848484993, + 0.012495903298258781, + -0.01134443748742342, + 0.03176042065024376, + -0.005927543621510267, + -0.00020792086434084922, + -0.03514472767710686, + -0.015910249203443527, + 0.026934277266263962 + ] + }, + { + "HotelId": "41", + "HotelName": "Windy Ocean Motel", + "Description": "Oceanfront hotel overlooking the beach features rooms with a private balcony and 2 indoor and outdoor pools. Inspired by the natural beauty of the island, each room includes an original painting of local scenes by the owner. Rooms include a mini fridge, Keurig coffee maker, and flatscreen TV. Various shops and art entertainment are on the boardwalk, just steps away.", + "Description_fr": "Cet hĆ“tel en bord de mer donnant sur la plage propose des chambres dotĆ©es d'un balcon privĆ© et de 2 piscines intĆ©rieure et extĆ©rieure. InspirĆ© par la beautĆ© naturelle de l'Ć®le, chaque chambre comprend une peinture originale de scĆØnes locales par le propriĆ©taire. Les chambres comprennent un mini-rĆ©frigĆ©rateur, une cafetiĆØre Keurig et une tĆ©lĆ©vision Ć  Ć©cran plat. Divers magasins et divertissements artistiques se trouvent sur la promenade, Ć  quelques pas.", + "Category": "Suite", + "Tags": [ + "pool", + "air conditioning", + "bar" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2021-05-10T00:00:00Z", + "Rating": 3.5, + "Address": { + "StreetAddress": "1450 Ala Moana Blvd 2238 Ala Moana Ctr", + "City": "Honolulu", + "StateProvince": "HI", + "PostalCode": "96814", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -157.846817, + 21.295841 + ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 241.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 63.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 74.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 246.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 169.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 250.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 122.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 122.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 132.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "tv" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "tv", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "coffee maker", + "suite" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "bathroom shower", + "suite" + ] + } + ], + "embedding": [ + -0.001751667819917202, + 0.015341920778155327, + 0.04158662259578705, + 0.03916143998503685, + -0.03701040893793106, + -0.039414502680301666, + 0.015858590602874756, + -0.008076915517449379, + 0.01212591677904129, + -0.008424876257777214, + 0.019918136298656464, + -0.025812387466430664, + -0.019496366381645203, + -0.039899539202451706, + -0.013180344365537167, + 0.003608778351917863, + -0.022754546254873276, + 0.04076417163014412, + 0.01953854225575924, + 0.027900153771042824, + 0.0035560568794608116, + -0.07073099911212921, + -0.023661354556679726, + -0.04196621850132942, + -0.012452789582312107, + 0.02488449029624462, + -0.013950076885521412, + -0.04110158607363701, + -0.0034031649120151997, + 0.03631448745727539, + 0.02279672399163246, + -0.01699737273156643, + 0.05065470188856125, + 0.009732366539537907, + 0.009779815562069416, + -0.03127432242035866, + -0.010681351646780968, + -0.036968231201171875, + 0.005179875530302525, + 0.007570790126919746, + 0.030156629160046577, + 0.026634840294718742, + 0.01087114866822958, + -0.0111136669293046, + 0.010607541538774967, + 0.02884913794696331, + 0.014466746710240841, + 0.032096777111291885, + -0.03774850815534592, + -0.007391537073999643, + 0.002749420003965497, + 0.011704145930707455, + -0.057318683713674545, + -0.08713789284229279, + -0.024610338732600212, + 0.015109946951270103, + -0.05238396301865578, + -0.011661969125270844, + 0.027478381991386414, + 0.0408274345099926, + 0.015173212625086308, + -0.015594983473420143, + 0.017292611300945282, + 0.10459921509027481, + -0.10055021196603775, + 0.06997181475162506, + -0.0444546677172184, + 0.010143592953681946, + -0.009099709801375866, + 0.028026685118675232, + 0.030557310208678246, + 0.022902166470885277, + -0.03513352572917938, + -0.013169800862669945, + 0.0027889609336853027, + -0.018009623512625694, + 0.005936427041888237, + -0.036272309720516205, + 0.0031896433793008327, + -0.0260021835565567, + -0.04441248998045921, + 0.04015260189771652, + -0.005264229606837034, + 0.03711584955453873, + 0.03517570346593857, + 0.030409691855311394, + -0.0073335436172783375, + 0.04555127024650574, + -0.03776959702372551, + 0.07866029441356659, + -0.017007917165756226, + -0.007228101138025522, + -0.0124738784506917, + -0.024441631510853767, + -0.052299607545137405, + -0.013633748516440392, + 0.04270431771874428, + -0.028722606599330902, + -0.07870247215032578, + 0.031189966946840286, + 0.008915184997022152, + -0.059258829802274704, + -0.03169609233736992, + -0.0003538922464940697, + 0.03190697729587555, + -0.018557924777269363, + -0.020751135423779488, + 0.03441651538014412, + -0.011524893343448639, + -0.0009101027972064912, + -0.09456106275320053, + -0.022142978385090828, + -0.042619962245225906, + 0.03249745815992355, + -0.0176932942122221, + 0.004164989106357098, + 0.04040566459298134, + -0.018136154860258102, + -0.022269509732723236, + -0.034669578075408936, + 0.008335250429809093, + 0.055505067110061646, + 0.01693410612642765, + -0.002145760226994753, + 0.005295862443745136, + -0.01986541599035263, + -0.043104998767375946, + 0.0003561988123692572, + -0.002267019357532263, + 0.003503335639834404, + -0.008630489930510521, + -0.005620099138468504, + -0.01456164475530386, + -0.01212591677904129, + -0.006663982290774584, + 0.021552499383687973, + 0.030704930424690247, + 0.012895649299025536, + -0.00976927112787962, + 0.005936427041888237, + 0.06997181475162506, + 0.002194527303799987, + -0.0012738803634420037, + -0.033699505031108856, + -0.011630335822701454, + -0.010111960582435131, + 0.06237993389368057, + -0.003909290302544832, + 0.02431510016322136, + 0.033404264599084854, + -0.011166388168931007, + -0.026149803772568703, + 0.013960621319711208, + 0.03574509546160698, + 0.011524893343448639, + 0.006822146475315094, + 0.05516764894127846, + -0.043737657368183136, + -0.04660569876432419, + 0.07903989404439926, + -0.028870226815342903, + -0.03580836206674576, + 0.015805868431925774, + -0.014160962775349617, + 0.04757577180862427, + 0.020150110125541687, + 0.006284388247877359, + 0.04571998119354248, + -0.04327370598912239, + 0.006120951846241951, + 0.0006659369100816548, + 0.011714690364897251, + 0.010438833385705948, + 0.057529568672180176, + 0.031126702204346657, + 0.01763002946972847, + -0.004639481194317341, + -0.030747108161449432, + 0.009626924060285091, + 0.033615149557590485, + -0.0018043891759589314, + -0.013264698907732964, + -0.006980310659855604, + 0.03641992807388306, + 0.0010010472033172846, + 0.04424378275871277, + -0.05094993859529495, + -0.018726633861660957, + -0.006922317203134298, + 0.015447364188730717, + 0.01264258660376072, + -0.02661375142633915, + -0.06828472763299942, + -0.01932765729725361, + 0.01609056442975998, + 0.0037880311720073223, + -0.012568776495754719, + 0.030219893902540207, + -0.007655144203454256, + -0.023471558466553688, + -0.04067981615662575, + -0.03804374858736992, + 0.03399474546313286, + -0.012526599690318108, + -0.031949155032634735, + 0.0025886197108775377, + 0.04270431771874428, + 0.030262071639299393, + 0.06583845615386963, + -0.001742441556416452, + 0.018768811598420143, + 0.004573579411953688, + 0.045677803456783295, + -0.014972871169447899, + 0.004842458758503199, + -0.06748336553573608, + 0.00899426732212305, + 0.016259273514151573, + 0.01842084899544716, + 0.031822625547647476, + -0.043442416936159134, + 0.03861313685774803, + 0.013581027276813984, + 0.00236323568969965, + 0.0016132742166519165, + 0.02319740690290928, + 0.02237495221197605, + -0.02264910377562046, + -0.002145760226994753, + -0.004096451215445995, + -0.001087378477677703, + -0.005124518182128668, + -0.007565517909824848, + -0.027351850643754005, + -0.022185156121850014, + -0.0124738784506917, + -0.045677803456783295, + -0.011124211363494396, + 0.023534823209047318, + 0.005525200627744198, + -0.03804374858736992, + -0.0151204913854599, + -0.009716549888253212, + 0.03422671929001808, + 0.03310902416706085, + -0.007064664736390114, + 0.009110254235565662, + 0.01223136018961668, + 0.025053199380636215, + -0.035428766161203384, + -0.04673222824931145, + -0.006036597769707441, + 0.004220346454530954, + -0.012336802668869495, + 0.045256029814481735, + 0.014498379081487656, + -0.03526005893945694, + -0.011683057062327862, + -0.009126070886850357, + 0.03652537241578102, + 0.06857997179031372, + -0.0005891614127904177, + -0.03937232494354248, + -0.009052260778844357, + 0.02688790298998356, + 0.003690496552735567, + -0.045256029814481735, + 0.0009595290757715702, + -0.05537853762507439, + 0.028111038729548454, + -0.017956901341676712, + -0.0338682122528553, + -0.05567377433180809, + 0.020550793036818504, + 0.044623374938964844, + -0.034732844680547714, + 0.01690247468650341, + -0.040721993893384933, + -0.007739498279988766, + -0.012832383625209332, + 0.013391230255365372, + -0.010201586410403252, + -0.013180344365537167, + -0.051329534500837326, + 0.004220346454530954, + 0.003732673591002822, + -0.0074495309963822365, + -0.03935123607516289, + -0.00715956324711442, + 0.04875672981142998, + 0.023091964423656464, + 0.011282375082373619, + 0.015774236992001534, + -0.05120300129055977, + -0.05795133858919144, + 0.027773622423410416, + 0.00031402171589434147, + -0.023366114124655724, + 0.03907708451151848, + -0.019559631124138832, + 0.0111136669293046, + 0.0024686786346137524, + 0.002458134200423956, + 0.011493260972201824, + -0.02598109468817711, + 0.03399474546313286, + 0.04605739563703537, + 0.01866336725652218, + 0.037537623196840286, + -0.017956901341676712, + 0.0025227179285138845, + 0.0020271369721740484, + 0.03294031694531441, + -0.030367514118552208, + 0.031885888427495956, + -0.020603515207767487, + 0.02849063277244568, + 0.0005456662620417774, + -0.03211786225438118, + -0.02906002476811409, + 0.0025952099822461605, + 0.03059948794543743, + -0.0059469714760780334, + -0.014624910429120064, + -0.013380685821175575, + 0.002215615939348936, + 0.04181859642267227, + 0.020635148510336876, + 0.0001636834058444947, + -0.016459614038467407, + -0.025517147034406662, + -0.01913786120712757, + 0.05769827589392662, + 0.005493567790836096, + -0.04639481380581856, + -0.0007315091206692159, + -0.0341634526848793, + -0.007612966932356358, + 0.01223136018961668, + -0.013296331278979778, + -0.030430780723690987, + -0.04555127024650574, + 0.0097534554079175, + 0.0068432348780334, + 0.02210080251097679, + -0.03180153667926788, + -0.016491247341036797, + 0.04164988920092583, + 0.02017119899392128, + 0.03519679233431816, + -0.03245528042316437, + -0.031864799559116364, + 0.002568849129602313, + -0.044285956770181656, + 0.004829278215765953, + 0.015405186451971531, + 0.050485990941524506, + 0.005219416692852974, + -0.013644292950630188, + 0.017788192257285118, + -0.039604298770427704, + 0.008029465563595295, + -0.012906193733215332, + 0.03970974311232567, + 0.045804332941770554, + -0.014825251884758472, + -0.04934721067547798, + -0.006885412149131298, + 0.034374337643384933, + -0.009268417954444885, + 0.0033741681836545467, + 0.024062037467956543, + -0.05575812980532646, + 0.027478381991386414, + -0.004507678095251322, + 0.06478402763605118, + 0.015183757059276104, + -0.01032811775803566, + 0.03422671929001808, + 0.01723989099264145, + 0.010902781039476395, + 0.013475584797561169, + 0.030810372903943062, + -0.023429380729794502, + -0.008598856627941132, + -0.0014709264505654573, + -0.008646305650472641, + -0.02458925172686577, + -0.023661354556679726, + 0.024062037467956543, + 0.03576618432998657, + -0.038570959120988846, + -0.03795939311385155, + -0.006901228334754705, + 0.016037844121456146, + 0.05078123137354851, + 0.015921857208013535, + -0.006052414420992136, + -0.03192806616425514, + 0.02159467712044716, + 0.014761986210942268, + -0.03994171693921089, + 0.014825251884758472, + -0.00289967586286366, + -0.053354036062955856, + -0.031738270074129105, + -0.031232144683599472, + -0.05318532511591911, + -0.002715151058509946, + 0.02271237038075924, + -0.05976495519280434, + -0.042683228850364685, + 0.0021444421727210283, + 0.0011097850510850549, + -0.05204654484987259, + 0.019696706905961037, + -0.011535437777638435, + 0.03903491050004959, + -0.01142999529838562, + 0.009758727625012398, + 0.05740303546190262, + 0.0020007763523608446, + -0.02897566929459572, + 0.00028832003590650856, + -0.01959126442670822, + 0.05044381693005562, + 0.007792219985276461, + -0.0638139545917511, + -0.029313087463378906, + -0.010923869907855988, + 0.015521174296736717, + -0.021784473210573196, + -0.017250435426831245, + 0.007612966932356358, + -0.0381070114672184, + 0.009937980212271214, + -0.02619198150932789, + -0.024336189031600952, + -0.001103194896131754, + -0.024062037467956543, + -0.030156629160046577, + -0.05158259719610214, + -0.033551886677742004, + -0.018621191382408142, + -0.020245010033249855, + 0.0317593589425087, + 0.02439945377409458, + 0.018315406516194344, + -0.055083297193050385, + -0.020888209342956543, + -0.04757577180862427, + -0.01609056442975998, + -0.003911926411092281, + 0.002025818917900324, + 0.0408274345099926, + 0.009895802475512028, + 0.04390636458992958, + 0.02049807272851467, + -0.03783285990357399, + 0.006031325552612543, + 0.03983627259731293, + -0.021489234641194344, + -0.015394642949104309, + 0.021847739815711975, + 0.002686154330149293, + 0.001735851401463151, + -0.05609554797410965, + 0.045677803456783295, + -0.029713768512010574, + -0.011229653842747211, + -0.02486340142786503, + -0.10957611352205276, + 0.01766166277229786, + -0.003637775080278516, + -0.011240198276937008, + -0.04947374016046524, + -0.00016986169794108719, + 0.02718314342200756, + -0.004589396063238382, + 0.04441248998045921, + 0.006569083780050278, + 0.03956212103366852, + -0.0302409827709198, + -0.03534441068768501, + 0.0034058010205626488, + -0.028870226815342903, + -0.030789285898208618, + 0.0052695018239319324, + -0.06571192294359207, + 0.020118478685617447, + -0.006215850356966257, + 0.0015552806435152888, + 0.0012771753827109933, + -0.006258027628064156, + 0.015099402517080307, + 0.01495178323239088, + -0.03526005893945694, + -0.001774074393324554, + 0.03576618432998657, + 0.01404497493058443, + 0.02724640816450119, + -0.01756676286458969, + -0.009758727625012398, + 0.03108452446758747, + 0.052088722586631775, + 0.020129023119807243, + -0.014540555886924267, + 0.014783074147999287, + -0.008894096128642559, + 0.005467207171022892, + 0.00018683138478081673, + 0.0033873484935611486, + 0.0044997697696089745, + 0.004895179998129606, + -0.03127432242035866, + -0.01884262077510357, + -0.00004365989298094064, + 0.0059469714760780334, + -0.006363470572978258, + -0.02815321646630764, + 0.00459730438888073, + 0.002323694759979844, + 0.04034239798784256, + -0.02621307037770748, + 0.031337589025497437, + 0.01636471599340439, + -0.038718581199645996, + -0.08047391474246979, + -0.014477290213108063, + 0.0077342260628938675, + -0.02418856881558895, + -0.013422862626612186, + 0.008746476843953133, + 0.045129500329494476, + -0.008050554431974888, + -0.003500699531286955, + -0.009310595691204071, + -0.010301757603883743, + 0.0017793464940041304, + -0.01159870345145464, + 0.019000785425305367, + -0.008008377626538277, + -0.02389332838356495, + -0.0275205597281456, + -0.04437031224370003, + 0.021120185032486916, + -0.007349360268563032, + 0.015204845927655697, + -0.02724640816450119, + 0.015531717799603939, + 0.02452598512172699, + 0.01636471599340439, + -0.01083951536566019, + -0.0007927977130748332, + -0.019696706905961037, + 0.0483771376311779, + 0.029228731989860535, + 0.013749735429883003, + 0.013886811211705208, + 0.04070090502500534, + 0.02836410142481327, + 0.0008626535418443382, + 0.004135992377996445, + 0.011893942952156067, + 0.042619962245225906, + 0.053143151104450226, + 0.024125302210450172, + 0.033277735114097595, + 0.03713693842291832, + 0.037390001118183136, + -0.03190697729587555, + 0.041143763810396194, + -0.03342535346746445, + 0.019770517945289612, + 0.0007196468068286777, + 0.0015658249612897635, + 0.03817027807235718, + -0.017345333471894264, + 0.02277563512325287, + 0.030789285898208618, + -0.014972871169447899, + 0.003669407917186618, + 0.03555529937148094, + 0.03844442963600159, + -0.0032950860913842916, + 0.004515585955232382, + -0.009220968931913376, + -0.007291366811841726, + 0.016501791775226593, + 0.012737484648823738, + 0.004104359541088343, + -0.04148118197917938, + -0.009827264584600925, + -0.04479208216071129, + -0.003927742596715689, + 0.025264084339141846, + -0.0013279197737574577, + 0.007829125039279461, + -0.026508308947086334, + 0.00663762167096138, + -0.030051186680793762, + 0.004365330096334219, + -0.022142978385090828, + -0.007428442128002644, + -0.018979696556925774, + 0.00964801199734211, + -0.031527385115623474, + -0.032645076513290405, + -0.019158948212862015, + -0.042198192328214645, + -0.043737657368183136, + -0.030957993119955063, + 0.02739402838051319, + 0.001994186080992222, + -0.04820843040943146, + -0.01996031403541565, + -0.04652134329080582, + 0.013813001103699207, + -0.0047475602477788925, + -0.020698413252830505, + -0.0396253876388073, + -0.021520866081118584, + 0.032370924949645996, + 0.023998770862817764, + -0.015162668190896511, + 0.009410765953361988, + -0.0008277256274595857, + -0.03827572241425514, + -0.005477751139551401, + -0.015542262233793736, + 0.03315120190382004, + 0.017461320385336876, + 0.013043269515037537, + -0.006105135660618544, + 0.006400375161319971, + 0.022691281512379646, + -0.005216780584305525, + 0.03310902416706085, + 0.005214144475758076, + -0.02515864185988903, + 0.012168094515800476, + -0.0350913479924202, + 0.020245010033249855, + -0.02125726081430912, + 0.00021006174210924655, + 0.015015048906207085, + 0.030620576813817024, + -0.010892236605286598, + -0.012210271321237087, + 0.013770824298262596, + -0.04538256302475929, + 0.013570482842624187, + 0.01968616247177124, + 0.005132426042109728, + -0.028806962072849274, + -0.016533425077795982, + 0.004041093867272139, + 0.021204538643360138, + 0.01578478142619133, + 0.034100186079740524, + -0.007913478650152683, + 0.0483771376311779, + -0.02250148355960846, + -0.021911004558205605, + 0.0038802935741841793, + -0.004995350725948811, + 0.0025583049282431602, + -0.02025555446743965, + -0.04236689954996109, + 0.003669407917186618, + 0.03637775033712387, + 0.018378673121333122, + -0.020181743428111076, + 0.02897566929459572, + 0.04884108528494835, + 0.03770633041858673, + 0.03178044781088829, + -0.019612353295087814, + -0.0041017234325408936, + 0.013718103058636189, + -0.0015855954261496663, + -0.009178792126476765, + -0.03485937416553497, + -0.004723835736513138, + -0.01753513142466545, + -0.04816625267267227, + 0.03534441068768501, + -0.007312455214560032, + 0.02370353229343891, + -0.015373554080724716, + -0.008155996911227703, + -0.0028443182818591595, + 0.00005383347161114216, + 0.014508923515677452, + 0.0003802529536187649, + -0.018726633861660957, + -0.0028970397543162107, + -0.026360688731074333, + 0.008098003454506397, + -0.08064261823892593, + 0.012832383625209332, + -0.0027995051350444555, + 0.008098003454506397, + -0.008250895887613297, + -0.007428442128002644, + 0.001560552860610187, + 0.003229184541851282, + 0.007201740518212318, + 0.021425968036055565, + -0.02884913794696331, + 0.00008517797687090933, + -0.014466746710240841, + 0.007391537073999643, + 0.014867428690195084, + -0.016280362382531166, + 0.001923012314364314, + -0.018579013645648956, + 0.02135215885937214, + -0.020097389817237854, + 0.01543681975454092, + 0.03378386050462723, + 0.003334627253934741, + 0.019823238253593445, + 0.03003009781241417, + 0.03500699624419212, + -0.009605835191905499, + -0.0192011259496212, + -0.06474184989929199, + -0.021236171945929527, + 0.06090373545885086, + -0.0046236650086939335, + -0.033615149557590485, + 0.018093977123498917, + -0.00715956324711442, + 0.020888209342956543, + 0.016069475561380386, + -0.012705852277576923, + -0.015837501734495163, + 0.004826642107218504, + -0.022142978385090828, + -0.005804623942822218, + -0.012864015996456146, + 0.010407200083136559, + -0.05748739093542099, + 0.00792402308434248, + -0.05234178528189659, + 0.0011288964888080955, + -0.03272943198680878, + -0.015310288406908512, + 0.0032819057814776897, + -0.00013633418711833656, + 0.004626301117241383, + 0.001576369279064238, + 0.003938287030905485, + -0.02319740690290928, + -0.009347500279545784, + 0.010412472300231457, + -0.01139836199581623, + 0.014698720537126064, + -0.018937518820166588, + -0.008277256041765213, + 0.03833898529410362, + -0.01741914264857769, + -0.0023540095426142216, + 0.022754546254873276, + -0.00785021297633648, + 0.022817812860012054, + 0.009985429234802723, + 0.012748029083013535, + 0.01132455188781023, + -0.0029234003741294146, + -0.011050401255488396, + 0.014350758865475655, + -0.00819290243089199, + 0.006242211442440748, + -0.00387765746563673, + 0.01292728167027235, + -0.021151816472411156, + 0.020308274775743484, + -0.024019859731197357, + 0.04947374016046524, + -0.040447842329740524, + 0.02912328951060772, + 0.030198805034160614, + 0.00010354808182455599, + -0.03844442963600159, + 0.03547094389796257, + 0.008256168104708195, + 0.015594983473420143, + 0.006084047257900238, + -0.010133049450814724, + -0.03346753120422363, + 0.029777035117149353, + -0.04698529094457626, + 0.03593489155173302, + 0.026086539030075073, + -0.0055779218673706055, + -0.003811755683273077, + 0.030494045466184616, + 0.015299743972718716, + -0.023429380729794502, + -0.006284388247877359, + 0.002190573373809457, + -0.024167479947209358, + -0.01850520446896553, + 0.0176932942122221, + 0.029629414901137352, + 0.011978297494351864, + 0.026234157383441925, + -0.009563658386468887, + -0.017050093039870262, + 0.005757174454629421, + -0.008229807019233704, + -0.007692049257457256, + 0.05681255832314491, + 0.002626842586323619, + 0.0384022518992424, + -0.013549393974244595, + -0.006142040714621544, + 0.007976744323968887, + 0.026360688731074333, + -0.06575410068035126, + -0.009062805213034153, + 0.02899675816297531, + -0.0278158001601696, + -0.026234157383441925, + -0.0012679491192102432, + -0.0007736862171441317, + 0.03523897007107735, + -0.0356818288564682, + 0.0015341921243816614, + -0.005788807291537523, + 0.007249189540743828, + 0.0302409827709198, + -0.025137552991509438, + -0.023429380729794502, + 0.003534968476742506, + 0.00331881083548069, + -0.0034479780588299036, + -0.003730037482455373, + 0.011524893343448639, + 0.003007754683494568, + -0.027562737464904785, + 0.03304576128721237, + -0.03479611128568649, + -0.029945742338895798, + 0.0032344565261155367, + 0.010517914779484272, + -0.011018767952919006, + 0.008161269128322601, + 0.008704300038516521, + -0.018515748903155327, + 0.03973083198070526, + -0.008561952039599419, + 0.007655144203454256, + 0.014298037625849247, + 0.016681043431162834, + 0.009558386169373989, + 0.029186556115746498, + -0.00759715074673295, + 0.0136864697560668, + 0.028132127597928047, + -0.022037535905838013, + -0.0016646775184199214, + -0.009864170104265213, + -0.00655326759442687, + -0.03806483373045921, + -0.0002919446269515902, + 0.012737484648823738, + 0.011345640756189823, + -0.016185462474822998, + -0.012294625863432884, + -0.03435324877500534, + 0.00520096393302083, + -0.005541016813367605, + 0.02383006364107132, + 0.021520866081118584, + 0.0006880139699205756, + 0.0024462719447910786, + -0.018336495384573936, + 0.03192806616425514, + 0.053143151104450226, + -0.00775531493127346, + -0.016607234254479408, + 0.001630408689379692, + -0.007829125039279461, + 0.0052088722586631775, + 0.009489848278462887, + 0.01264258660376072, + -0.01844193786382675, + -0.020571881905198097, + 0.007375720888376236, + 0.024968845769762993, + -0.01730315573513508, + 0.012832383625209332, + 0.023914417251944542, + -0.011092578060925007, + -0.024167479947209358, + 0.027014434337615967, + 0.013633748516440392, + -0.03534441068768501, + 0.010881692171096802, + 0.007338815834373236, + 0.014888517558574677, + -0.017914723604917526, + 0.004987442400306463, + -0.041417915374040604, + -0.001244883518666029, + 0.013918443582952023, + -0.015447364188730717, + 0.003334627253934741, + -0.015942944213747978, + 0.009205152280628681, + 0.006363470572978258, + 0.014909605495631695, + 0.06474184989929199, + 0.0000016861573612914071, + -0.03310902416706085, + -0.011862310580909252, + -0.01052318699657917, + -0.007228101138025522, + 0.03365732729434967, + -0.02515864185988903, + 0.015457908622920513, + -0.020708957687020302, + -0.03218112885951996, + -0.030283160507678986, + -0.008946818299591541, + -0.022269509732723236, + -0.009431854821741581, + -0.003637775080278516, + 0.006611261051148176, + 0.016196006909012794, + 0.007750042714178562, + 0.04070090502500534, + -0.0069328611716628075, + 0.049515917897224426, + -0.03441651538014412, + 0.0032950860913842916, + 0.004639481194317341, + 0.017651118338108063, + -0.0002117092808475718, + 0.001087378477677703, + 0.004431231878697872, + 0.008525046519935131, + -0.055505067110061646, + 0.027162054553627968, + 0.011029312387108803, + 0.03846551850438118, + -0.034521959722042084, + 0.012347347103059292, + 0.03262398764491081, + 0.021520866081118584, + -0.04719617962837219, + -0.016185462474822998, + -0.030494045466184616, + 0.03363623842597008, + -0.005403941497206688, + -0.008250895887613297, + 0.02648722007870674, + -0.015457908622920513, + 0.021763384342193604, + -0.001411614939570427, + 0.029249820858240128, + 0.0001795822026906535, + 0.013633748516440392, + 0.024209657683968544, + 0.024547073990106583, + 0.016217095777392387, + 0.02195318229496479, + -0.046268280595541, + 0.0019717796240001917, + -0.014097697101533413, + 0.04605739563703537, + -0.009553113952279091, + 0.0220797136425972, + -0.02165794186294079, + 0.029102200642228127, + -0.0004135333001613617, + 0.0033398992381989956, + -0.007507524453103542, + 0.0010478374315425754, + -0.016333082690835, + -0.02954506129026413, + 0.015131035819649696, + -0.015173212625086308, + 0.03694714233279228, + 0.017092270776629448, + 0.03045186772942543, + -0.027499470859766006, + -0.027267497032880783, + 0.0004250661295372993, + 0.0061631291173398495, + 0.040721993893384933, + -0.02549605816602707, + 0.00940549373626709, + -0.013064357452094555, + 0.056896910071372986, + -0.002292061923071742, + 0.013222522102296352, + -0.0016040479531511664, + -0.048461493104696274, + -0.019095683470368385, + -0.024757958948612213, + -0.008509230799973011, + 0.001938828732818365, + 0.001526283915154636, + -0.014962327666580677, + 0.03066275455057621, + -0.005688636563718319, + -0.002550396602600813, + 0.034036923199892044, + 0.030198805034160614, + -0.033889301121234894, + -0.012853472493588924, + -0.045888688415288925, + -0.014213684014976025, + 0.027478381991386414, + -0.03593489155173302, + 0.024757958948612213, + 0.020972564816474915, + -0.03262398764491081, + -0.003919834736734629, + 0.000598717131651938, + 0.006616532802581787, + -0.010828970931470394, + 0.04266213998198509, + 0.003645683405920863, + 0.03566073998808861, + -0.015331377275288105, + 0.02340829186141491, + -0.009168247692286968, + 0.011714690364897251, + 0.015447364188730717, + 0.02703552320599556, + 0.0278158001601696, + -0.03391038998961449, + -0.04521385580301285, + 0.013011636212468147, + -0.003229184541851282, + 0.002839046297594905, + 0.006157856900244951, + 0.02787906490266323, + -0.02522190846502781, + 0.008229807019233704, + 0.01902187429368496, + 0.005688636563718319, + 0.013022180646657944, + 0.004781829193234444, + 0.032919228076934814, + -0.00047119733062572777, + 0.010739345103502274, + -0.006084047257900238, + 0.007866029627621174, + -0.009226241149008274, + -0.007544429507106543, + -0.0021760750096291304, + -0.008092731237411499, + 0.0016673136269673705, + -0.0017912088660523295, + -0.028680430725216866, + 0.002701970748603344, + 0.0013852542033419013, + -0.02146814577281475, + -0.013148711994290352, + 0.009885258972644806, + 0.008456509560346603, + 0.0030051185749471188, + -0.06263300031423569, + 0.0000872374075697735, + 0.0045920321717858315, + 0.04618392884731293, + 0.01787254773080349, + -0.001542100333608687, + 0.03656754642724991, + -0.02188991568982601, + 0.0011420769151300192, + 0.01959126442670822, + 0.008124364539980888, + 0.01741914264857769, + -0.009637468494474888, + 0.025074288249015808, + -0.033193379640579224, + 0.0032054597977548838, + -0.006990854628384113, + -0.006584900431334972, + 0.026255246251821518, + 0.003144830232486129, + 0.017798736691474915, + 0.042261458933353424, + -0.027963418513536453, + -0.009800904430449009, + -0.022480396553874016, + 0.028237570077180862, + 0.0002494380169082433, + -0.015015048906207085, + 0.02787906490266323, + -0.004729107487946749, + -0.0013252836652100086, + 0.03412127494812012, + 0.0004899793420918286, + 0.0249477569013834, + -0.004913632292300463, + 0.028891315683722496, + -0.019696706905961037, + 0.02906002476811409, + 0.0013813001569360495, + 0.00002442482582409866, + -0.03751653432846069, + -0.021004198119044304, + 0.003334627253934741, + 0.02237495221197605, + 0.01732424460351467, + 0.003271361580118537, + -0.001605366007424891, + 0.006848507095128298, + 0.00029491021996364, + -0.006927588954567909, + 0.001258722972124815, + 0.01135618519037962, + -0.000842224049847573, + 0.035217881202697754, + -0.020877666771411896, + 0.03764306381344795, + 0.0193487461656332, + -0.00037695784703828394, + 0.023513734340667725, + 0.017166081815958023, + 0.01630144938826561, + 0.01288510486483574, + -0.015647705644369125, + -0.027963418513536453, + 0.003988372161984444, + -0.030156629160046577, + -0.008113820105791092, + -0.0013694377848878503, + 0.024019859731197357, + 0.014445657841861248, + -0.005936427041888237, + 0.0011045128339901567, + 0.02446272037923336, + 0.02981921099126339, + -0.014551100321114063, + 0.007966199889779091, + 0.014814707450568676, + 0.05601119250059128, + 0.015805868431925774, + 0.036609724164009094, + 0.014677631668746471, + 0.005757174454629421, + 0.005161422770470381, + 0.02577020972967148, + -0.008688483387231827, + 0.005899522453546524, + 0.02188991568982601, + -0.00036311850999481976, + 0.024209657683968544, + -0.007154291030019522, + -0.08144398778676987, + 0.030430780723690987, + -0.04283084720373154, + 0.01923275925219059, + -0.0061631291173398495, + 0.02676137164235115, + 0.0006165106315165758, + 0.011609247885644436, + 0.010955502279102802, + 0.01348612830042839, + 0.03059948794543743, + 0.05280573293566704, + 0.015405186451971531, + 0.00436269398778677, + -0.0012725623091682792, + -0.0034506141673773527, + -0.03262398764491081, + 0.01264258660376072, + 0.03169609233736992, + 0.00860412884503603, + -0.004030549433082342, + -0.037390001118183136, + 0.02536952681839466, + 0.03707367181777954, + 0.006737792398780584, + 0.0012007293989881873, + -0.003382076509296894, + 0.00595751591026783, + 0.015584439970552921, + 0.0018478842684999108, + -0.003798575373366475, + -0.0027230591513216496, + -0.02425183355808258, + 0.014719808474183083, + -0.0016804939368739724, + -0.03163282573223114, + 0.00840905960649252, + 0.012104828841984272, + -0.017007917165756226, + 0.021636852994561195, + 0.06132550910115242, + 0.0124000683426857, + 0.018768811598420143, + 0.002933944808319211, + -0.03298249468207359, + -0.029102200642228127, + -0.02277563512325287, + -0.04285193607211113, + 0.0021563044283539057, + -0.02718314342200756, + -0.04382200911641121, + -0.0056411875411868095, + -0.006015509366989136, + 0.013813001103699207, + -0.004584123846143484, + -0.01031230203807354, + 0.02787906490266323, + -0.02425183355808258, + 0.01551062986254692, + 0.004114903509616852, + 0.01844193786382675, + -0.047828834503889084, + 0.014867428690195084, + -0.001945418887771666, + 0.028828049078583717, + 0.010486282408237457, + 0.02307087555527687, + -0.01587967947125435, + -0.01351776160299778, + 0.0011216473067179322, + -0.005403941497206688, + 0.024441631510853767, + -0.010781521908938885, + -0.0075127966701984406, + 0.014350758865475655, + 0.01892697438597679, + -0.015742603689432144, + 0.01079733856022358, + -0.016343627125024796, + -0.007033031899482012, + -0.005243141204118729, + 0.006073502823710442, + -0.021573588252067566, + 0.01300109177827835, + 0.008978450670838356, + -0.008293072693049908, + -0.00002778169437078759, + -0.02558041363954544, + -0.0096743730828166, + 0.014477290213108063, + -0.02277563512325287, + -0.04127029702067375, + 0.025474969297647476, + 0.05820440128445625, + -0.021847739815711975, + 0.006368742324411869, + 0.017577307298779488, + -0.0076656886376440525, + 0.010976591147482395, + -0.018283773213624954, + 0.0012870606733486056, + -0.029207643121480942, + -0.02340829186141491, + -0.01978106051683426, + 0.005430302117019892, + 0.027288585901260376, + -0.017999079078435898, + 0.0646996796131134, + 0.007064664736390114, + 0.024441631510853767, + -0.019949769601225853, + 0.0022485668305307627, + -0.0604819655418396, + -0.00887300819158554, + 0.020582426339387894, + 0.026719193905591965, + 0.02948179468512535, + -0.02897566929459572, + -0.0005282023339532316, + 0.03970974311232567, + 0.01820996403694153, + -0.01288510486483574, + -0.009083893150091171, + -0.060945913195610046, + -0.008857191540300846, + -0.003582417732104659, + 0.002269655466079712, + 0.02543279342353344, + 0.004729107487946749, + 0.03616686537861824, + 0.013739190995693207, + 0.003685224335640669, + 0.017102815210819244, + 0.010075055062770844, + -0.011683057062327862, + -0.011345640756189823, + 0.005403941497206688, + 0.021847739815711975, + 0.007834397256374359, + -0.05483023449778557, + 0.0023961865808814764, + 0.002162894466891885, + -0.026993345469236374, + -0.028596075251698494, + -0.006168401334434748, + -0.0032001875806599855, + 0.004829278215765953, + 0.011545982211828232, + 0.005356492009013891, + 0.01835758425295353, + -0.02808994986116886, + -0.0027836887165904045, + -0.023534823209047318, + 0.06845343858003616, + -0.0035718732979148626, + 0.0020139566622674465, + 0.03838116303086281, + -0.03641992807388306, + 0.008303617127239704, + -0.003437433857470751, + -0.002854862716048956, + -0.048883263021707535, + -0.020888209342956543, + 0.005688636563718319, + -0.0017398054478690028, + -0.016491247341036797, + 0.019675618037581444, + 0.0008672666735947132, + -0.022606927901506424, + -0.009389677084982395, + 0.01605893112719059, + 0.010317574255168438, + 0.03401583433151245, + 0.021784473210573196, + 0.0005397351342253387, + 0.017893636599183083, + 0.00843542069196701, + -0.01219972688704729, + -0.025053199380636215, + 0.010639173910021782, + -0.009901074692606926, + -0.004207165911793709, + -0.004976897966116667, + -0.0273729395121336, + -0.024968845769762993, + 0.002593891927972436, + 0.02439945377409458, + 0.005206236150115728, + 0.015394642949104309, + -0.02361917681992054, + -0.00277841673232615, + 0.009658556431531906, + 0.038360074162483215, + -0.006026053801178932, + -0.0021563044283539057, + 0.022311687469482422, + 0.027857976034283638, + 0.038423340767621994, + 0.01957017555832863, + -0.034669578075408936, + -0.024926668033003807, + 0.024821225553750992, + -0.03184371441602707, + 0.010770977474749088, + 0.025074288249015808, + -0.006173673551529646, + -0.00703830411657691, + 0.03150629624724388, + 0.02020283229649067, + -0.002791597042232752, + -0.020550793036818504, + -0.00392510648816824, + 0.0010280668502673507, + -0.03161173686385155, + 0.03783285990357399, + 0.03135867789387703, + 0.020223921164870262, + -0.011936119757592678, + -0.00911552645266056, + -0.0055568334646523, + 0.024209657683968544, + -0.0016514972085133195, + -0.001292332774028182, + 0.0124738784506917, + -0.00015157395682763308, + -0.0007479845662601292, + -0.03372059389948845, + -0.024083126336336136, + 0.011830677278339863, + -0.010776249691843987, + -0.007222828920930624, + -0.01609056442975998, + -0.014477290213108063, + -0.04314717650413513, + -0.03713693842291832, + 0.01817833073437214, + 0.017883092164993286, + -0.004821369890123606, + 0.028448455035686493, + -0.029038935899734497, + -0.005224688444286585, + -0.0016791758826002479, + 0.0016159102087840438, + 0.0018874253146350384, + -0.03460631147027016, + 0.026297423988580704, + -0.0136864697560668, + -0.010966046713292599, + -0.004663206171244383, + 0.00819290243089199, + 0.0009667782578617334, + 0.02543279342353344, + 0.03804374858736992, + -0.02577020972967148, + -0.000763141957577318, + -0.00007945276593090966, + -0.00019177401554770768, + -0.001891379477456212, + -0.013391230255365372, + -0.018452482298016548, + -0.010734072886407375, + -0.010923869907855988, + -0.027900153771042824, + 0.01654396951198578, + -0.028806962072849274, + -0.027773622423410416, + 0.019243303686380386, + 0.017092270776629448, + -0.015616072341799736, + -0.030810372903943062, + -0.004708019085228443, + 0.01198884192854166, + -0.06166292354464531, + 0.03329882398247719, + 0.004246707074344158, + 0.016491247341036797, + 0.01184122171252966, + -0.021309981122612953, + -0.028532810509204865, + 0.0094529427587986, + -0.010723528452217579, + -0.024083126336336136, + -0.0011447129072621465, + 0.026381777599453926, + 0.029144378378987312, + 0.014382392168045044, + 0.013633748516440392, + 0.003798575373366475, + -0.0010307029588147998, + 0.0477866567671299, + -0.0003171520365867764, + -0.04466555267572403, + 0.02897566929459572, + 0.00655326759442687, + 0.035513121634721756, + 0.03283487632870674, + 0.014856884256005287, + 0.008182357996702194, + -0.03985736146569252, + 0.048124074935913086, + -0.010913325473666191, + -0.008962634019553661, + -0.0008633125689812005, + -0.009199880994856358, + 0.02787906490266323, + 0.002904948079958558, + 0.06398266553878784, + 0.003368896199390292, + 0.0035244242753833532, + -0.028722606599330902, + 0.02842736802995205, + 0.008467053063213825, + 0.028321925550699234, + -0.02488449029624462, + 0.0008969224290922284, + -0.0138340899720788, + 0.006859051529318094, + -0.0031105612870305777, + -0.01059699710458517, + 0.005251049529761076, + 0.002889131661504507, + 0.02104637399315834, + -0.04055328294634819, + -0.022459307685494423, + 0.018621191382408142, + 0.006447824649512768, + -0.005583194084465504, + -0.004987442400306463, + 0.0010201586410403252, + 0.05061252415180206, + -0.04304173216223717, + 0.014867428690195084, + -0.005736086051911116, + -0.003055203938856721, + 0.015067770145833492, + 0.03226548433303833, + 0.00018716089834924787, + -0.0020047305151820183, + 0.019253848120570183, + 0.013138167560100555, + -0.0040094610303640366, + -0.007808036170899868, + 0.00728082237765193, + 0.01609056442975998, + -0.002402776852250099, + 0.009178792126476765, + -0.028279747813940048, + 0.010349206626415253, + 0.0029866660479456186, + -0.02174229733645916, + -0.003289814107120037, + -0.01957017555832863, + 0.0007934567402116954, + 0.015457908622920513, + 0.021278347820043564, + -0.04266213998198509, + 0.02165794186294079, + 0.0320545993745327, + 0.0066270772367715836, + -0.009305323474109173, + -0.002442317781969905, + 0.021099096164107323, + 0.01011723279953003, + -0.046563521027565, + -0.04605739563703537, + 0.00752334063872695, + 0.018800443038344383, + -0.019306568428874016, + -0.02271237038075924, + 0.010053967125713825, + -0.010006518103182316, + -0.02349264547228813, + 0.019095683470368385, + -0.002422547433525324, + -0.021573588252067566, + -0.024694694206118584, + -0.00543557433411479, + -0.012969459407031536 + ] + }, + { + "HotelId": "42", + "HotelName": "Rock Bottom Resort & Campground", + "Description": "Rock Bottom is nestled on 20 unspoiled acres on a private cove of Rock Bottom Lake. We feature both lodging and campground accommodations to suit just about every taste. Even though we are out of the traffic of the city, getting there is only a short drive away.", + "Description_fr": "Rock Bottom est nichĆ© sur 20 hectares intacts sur une crique privĆ©e de Rock Bottom Lake. Nous disposons Ć  la fois d'hĆ©bergement et de logements de camping pour convenir Ć  peu prĆØs tous les goĆ»ts. MĆŖme si nous sommes hors du trafic de la ville, y arriver est Ć  seulement une courte distance en voiture.", + "Category": "Resort and Spa", + "Tags": [ + "view", + "coffee in lobby", + "24-hour front desk service" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-01-14T00:00:00Z", + "Rating": 3.4, + "Address": { + "StreetAddress": "1649 Shoreline Dr", + "City": "Boise", + "StateProvince": "ID", + "PostalCode": "83702", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -116.220711, + 43.616871 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "tv" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "suite", + "suite" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 264.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "jacuzzi tub", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "tv", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + } + ], + "embedding": [ + 0.003728162730112672, + 0.008636240847408772, + 0.048407427966594696, + 0.07007833570241928, + 0.011348193511366844, + -0.033803656697273254, + 0.013961304910480976, + 0.01740838773548603, + -0.005056339781731367, + 0.0050038304179906845, + 0.014196052215993404, + -0.0030239198822528124, + -0.012120389379560947, + 0.008259409107267857, + -0.00061466806801036, + 0.038745708763599396, + -0.013306482695043087, + -0.02987472154200077, + -0.007925820536911488, + 0.024648498743772507, + -0.013640071265399456, + -0.05028541013598442, + -0.042402829974889755, + -0.026835357770323753, + 0.01601225696504116, + 0.02804616093635559, + 0.005989152938127518, + -0.0123674925416708, + -0.036077000200748444, + 0.004114260897040367, + -0.014171342365443707, + -0.03135733678936958, + -0.020015321671962738, + -0.002339754020795226, + 0.0023644643370062113, + -0.011138156056404114, + 0.08317478746175766, + -0.03106081485748291, + 0.03417430818080902, + 0.004525069147348404, + 0.00956287607550621, + 0.056141745299100876, + 0.05199041590094566, + -0.0011142789153382182, + -0.014813809655606747, + 0.04339124262332916, + -0.03523685038089752, + 0.03009711392223835, + 0.042724065482616425, + 0.017260126769542694, + -0.022486349567770958, + 0.039289336651563644, + -0.0268847793340683, + -0.05381897836923599, + -0.02395661175251007, + 0.004188391380012035, + 0.042822904884815216, + -0.003536658128723502, + 0.03118436597287655, + 0.024524947628378868, + 0.040475428104400635, + 0.013133510947227478, + 0.02183152735233307, + 0.004753638990223408, + -0.023190593346953392, + 0.04052485153079033, + -0.05619116500020027, + -0.01058835256844759, + 0.0007281809230335057, + 0.015876350924372673, + 0.01097136177122593, + 0.015036202035844326, + -0.020991377532482147, + -0.02839210443198681, + 0.03718896210193634, + 0.006844745948910713, + 0.024537302553653717, + -0.009309595450758934, + 0.008222343400120735, + -0.014430800452828407, + 0.03345771133899689, + -0.004914255812764168, + -0.007864044979214668, + -0.025599844753742218, + 0.013467099517583847, + -0.02871333807706833, + 0.022177470847964287, + -0.0015451643848791718, + 0.0034687048755586147, + 0.025822237133979797, + -0.011558230966329575, + -0.015332724899053574, + 0.005581433419138193, + 0.03054189868271351, + -0.023165881633758545, + -0.0376090370118618, + 0.047789670526981354, + -0.004015419632196426, + -0.015468631871044636, + 0.0001554044574731961, + -0.004277966450899839, + -0.06370308995246887, + 0.007215400226414204, + -0.05278114601969719, + 0.06409845501184464, + 0.021090218797326088, + 0.012972894124686718, + 0.0440831296145916, + 0.01806320995092392, + -0.0451209619641304, + -0.09686427563428879, + -0.007425437681376934, + -0.01860683597624302, + 0.016494108363986015, + -0.01360300648957491, + -0.00972349289804697, + 0.011243174783885479, + -0.0031660038512200117, + -0.02804616093635559, + 0.008642418310046196, + 0.013405323959887028, + -0.0006177568575367332, + -0.00647409213706851, + -0.003956732805818319, + 0.02408016286790371, + 0.0016540440265089273, + -0.016049323603510857, + 0.018100276589393616, + 0.0008880255045369267, + -0.03943759948015213, + 0.042946457862854004, + 0.030665449798107147, + -0.01622229442000389, + -0.004203835502266884, + -0.02353653684258461, + 0.009167511947453022, + -0.02720601297914982, + 0.003589167259633541, + -0.01209567952901125, + -0.02267167717218399, + 0.026168180629611015, + -0.011687959544360638, + 0.00789493229240179, + -0.046381186693906784, + -0.023511826992034912, + 0.01225629635155201, + -0.012861697934567928, + 0.002738207345828414, + 0.004759816452860832, + 0.020077098160982132, + -0.00919222179800272, + -0.01644468680024147, + -0.06933703273534775, + -0.011978305876255035, + 0.005850157700479031, + -0.028836891055107117, + 0.029726460576057434, + 0.016049323603510857, + -0.041982755064964294, + 0.054757967591285706, + -0.012701081112027168, + -0.012633128091692924, + 0.047147203236818314, + 0.015172108076512814, + 0.03298821672797203, + 0.02804616093635559, + -0.015592182986438274, + 0.004667153116315603, + -0.07823272794485092, + 0.00491734454408288, + 0.03632410243153572, + 0.024574367329478264, + -0.011471744626760483, + 0.013121156021952629, + -0.028663918375968933, + -0.0004050168499816209, + -0.011385259218513966, + 0.02311646193265915, + 0.01198448333889246, + 0.006208456587046385, + 0.013430033810436726, + -0.06187452748417854, + 0.0008517322712577879, + 0.011212287470698357, + 0.0033605974167585373, + 0.022399863228201866, + 0.035854607820510864, + -0.005062517244368792, + 0.005596877075731754, + -0.04277348518371582, + -0.08846278488636017, + 0.011904174461960793, + -0.0020571304485201836, + -0.01847092993557453, + 0.002256356878206134, + -0.009420792572200298, + -0.04054956138134003, + -0.013924239203333855, + 0.03397662565112114, + 0.023672442883253098, + -0.03538511320948601, + -0.007468680385500193, + 0.06780499219894409, + -0.014035436324775219, + -0.04897576570510864, + 0.013899529352784157, + 0.0182856023311615, + 0.046381186693906784, + 0.039832960814237595, + 0.010495688766241074, + 0.02215276099741459, + 0.05564753711223602, + 0.020287135615944862, + 0.028985152021050453, + 0.028540367260575294, + -0.02762608602643013, + -0.012089502066373825, + 0.041636813431978226, + -0.00018774016643874347, + 0.02957819774746895, + -0.0569324716925621, + -0.012923473492264748, + -0.012923473492264748, + 0.031851544976234436, + 0.015308015048503876, + 0.05278114601969719, + 0.014035436324775219, + -0.018965136259794235, + 0.07862809300422668, + -0.011064025573432446, + 0.027477825060486794, + 0.05406608060002327, + -0.026489414274692535, + -0.03073958121240139, + -0.009105736389756203, + 0.027280142530798912, + 0.006863278802484274, + -0.020484818145632744, + 0.027897899970412254, + -0.0088709881529212, + -0.036175843328237534, + -0.04761669784784317, + -0.06958413124084473, + 0.009748203679919243, + 0.05208925902843475, + -0.0494205504655838, + -0.002959055360406637, + -0.001427018316462636, + -0.0025281698908656836, + -0.004271788522601128, + -0.03580518811941147, + -0.03372952342033386, + -0.0017992168432101607, + -0.0419333353638649, + 0.026143470779061317, + -0.0004976803902536631, + 0.019101042300462723, + -0.04472559690475464, + 0.05525217205286026, + -0.07566285878419876, + 0.008932764641940594, + -0.011471744626760483, + -0.07175863534212112, + -0.014850875362753868, + 0.012972894124686718, + -0.03130791708827019, + 0.04796264320611954, + 0.000733972352463752, + 0.0033389758318662643, + -0.014220762997865677, + -0.05095258727669716, + -0.03340829163789749, + -0.03835034742951393, + 0.007048605941236019, + 0.008160567842423916, + -0.009964418597519398, + -0.007036250550299883, + -0.08584349602460861, + -0.014171342365443707, + 0.03889397159218788, + 0.03639823570847511, + -0.004901900887489319, + 0.03859744966030121, + -0.001506554544903338, + 0.009000717662274837, + -0.03634881228208542, + 0.005507302470505238, + 0.02408016286790371, + 0.03266698122024536, + -0.0038146486040204763, + 0.017803752794861794, + -0.011317305266857147, + -0.009439324960112572, + 0.01187328714877367, + 0.001647866447456181, + -0.04581284895539284, + 0.03958585858345032, + -0.06904050707817078, + 0.044231392443180084, + -0.011082557961344719, + -0.008864810690283775, + 0.04578813910484314, + -0.013986015692353249, + -0.009223110042512417, + 0.006087993737310171, + 0.005952087230980396, + 0.03256814181804657, + -0.07823272794485092, + -0.01764313504099846, + -0.012348959222435951, + -0.015060911886394024, + 0.007678717840462923, + -0.0019289457704871893, + 0.00914280116558075, + -0.021683266386389732, + -0.002557513304054737, + -0.013504165224730968, + 0.011101090349256992, + -0.010730437003076077, + 0.011589118279516697, + 0.05095258727669716, + 0.00028648474835790694, + 0.00892040878534317, + 0.005223134066909552, + 0.017037734389305115, + 0.03372952342033386, + 0.029504068195819855, + -0.040129486471414566, + -0.029701750725507736, + -0.014245472848415375, + 0.05243520066142082, + -0.0001678561238804832, + 0.0013413046253845096, + 0.006060194689780474, + -0.0015891795046627522, + -0.011138156056404114, + 0.008932764641940594, + -0.05989770591259003, + 0.01933578960597515, + 0.0032061580568552017, + -0.026514124125242233, + 0.049272287636995316, + 0.025921078398823738, + 0.03770788013935089, + 0.006523512303829193, + -0.02720601297914982, + -0.028021451085805893, + 0.003434728132560849, + 0.006931231822818518, + 0.02300526574254036, + -0.034643806517124176, + -0.027230722829699516, + -0.014962071552872658, + 0.03751019760966301, + 0.013096445240080357, + 0.008364427834749222, + 0.019372854381799698, + 0.004441672004759312, + 0.0048524802550673485, + 0.0451209619641304, + -0.022844647988677025, + 0.007709605619311333, + -0.004478737246245146, + -0.03469322621822357, + 0.04586226865649223, + 0.01333119347691536, + -0.06567990779876709, + -0.05307766795158386, + -0.00817292369902134, + -0.008741259574890137, + 0.017173640429973602, + 0.03368010371923447, + -0.02955348789691925, + 0.014158987440168858, + 0.0078084468841552734, + 0.05495565012097359, + 0.031851544976234436, + 0.04549161344766617, + 0.014146632514894009, + 0.005766760092228651, + 0.006186835002154112, + -0.037782009690999985, + 0.02804616093635559, + 0.016049323603510857, + 0.044354941695928574, + -0.005816180724650621, + -0.022931134328246117, + -0.01729719154536724, + -0.04559045657515526, + 0.03209864720702171, + -0.0015219984343275428, + -0.026711806654930115, + 0.01084781065583229, + -0.060787275433540344, + 0.01069954875856638, + 0.022918779402971268, + 0.02096666768193245, + -0.03061603009700775, + -0.022819938138127327, + 0.03157972916960716, + -0.006869456265121698, + -0.004818503744900227, + -0.042921748012304306, + 0.000911963579710573, + 0.012101856991648674, + 0.005612321197986603, + 0.01321999728679657, + -0.013269416987895966, + -0.07655242830514908, + -0.004027774557471275, + -0.01750722900032997, + -0.022412218153476715, + 0.020707210525870323, + -0.029850011691451073, + 0.02237515337765217, + -0.0024077072739601135, + 0.01569102518260479, + -0.0344214141368866, + -0.024846181273460388, + 0.056685369461774826, + 0.01997825689613819, + -0.02395661175251007, + 0.006013863254338503, + 0.03150559961795807, + -0.011681782081723213, + 0.07650300860404968, + 0.035310983657836914, + 0.02903457172214985, + -0.053275350481271744, + -0.050903163850307465, + -0.012874052859842777, + -0.029108703136444092, + 0.028861600905656815, + 0.022288667038083076, + -0.05624058470129967, + 0.0017621514853090048, + -0.04672712832689285, + -0.024846181273460388, + -0.02858978696167469, + -0.014492576010525227, + 0.018433865159749985, + -0.013998370617628098, + -0.044651467353105545, + 0.030764291062951088, + 0.02752724662423134, + 0.015876350924372673, + 0.04351479187607765, + -0.023388274013996124, + -0.033902496099472046, + -0.023820703849196434, + -0.0698312371969223, + -0.005828536115586758, + -0.0013559763319790363, + -0.015159753151237965, + 0.04203217849135399, + 0.04667770862579346, + 0.05287998914718628, + -0.017457809299230576, + -0.010674838908016682, + -0.030368927866220474, + -0.010569820180535316, + -0.00008634117693873122, + 0.012620772235095501, + -0.02438904158771038, + 0.02374657429754734, + 0.0016833874396979809, + -0.02244928479194641, + 0.022053919732570648, + -0.005081050097942352, + -0.034668516367673874, + -0.00502854073420167, + -0.025772815570235252, + 0.011545876041054726, + -0.0035397468600422144, + -0.01284934300929308, + -0.013071735389530659, + -0.014171342365443707, + -0.012713436037302017, + -0.020657788962125778, + 0.041859205812215805, + -0.04769083112478256, + -0.004302676767110825, + -0.03849860653281212, + -0.03844918683171272, + 0.013677136972546577, + 0.0028447704389691353, + 0.009717315435409546, + 0.06933703273534775, + -0.09291063249111176, + 0.03414959833025932, + -0.009556698612868786, + 0.011162866838276386, + -0.0006992235430516303, + -0.012213053181767464, + -0.002358286874368787, + 0.004765994381159544, + -0.01957053691148758, + -0.002262534573674202, + 0.004157503601163626, + 0.0036416766233742237, + -0.01947169564664364, + 0.008728904649615288, + -0.028515657410025597, + 0.017902594059705734, + 0.019718799740076065, + 0.008018484339118004, + -0.05302824825048447, + 0.014257828705012798, + 0.04665299877524376, + 0.03587931767106056, + 0.04353950172662735, + 0.04017890617251396, + -0.012453977949917316, + 0.015752799808979034, + -0.032197486609220505, + 0.005062517244368792, + -0.00972349289804697, + 0.003975265193730593, + -0.04022832587361336, + -0.015505697578191757, + -0.044107839465141296, + 0.004191480111330748, + 0.0012849342310801148, + 0.013911884278059006, + -0.010965184308588505, + 0.014418445527553558, + -0.014443155378103256, + -0.012429268099367619, + 0.03558279573917389, + 0.004840124864131212, + -0.00816674530506134, + 0.01892806962132454, + -0.0166670810431242, + 0.028935730457305908, + -0.005204601678997278, + 0.015666313469409943, + -0.012812277302145958, + -0.007388371974229813, + 0.04101905599236488, + -0.04786380007863045, + -0.02011416293680668, + -0.008364427834749222, + -0.0088709881529212, + -0.011644716374576092, + -0.03496503829956055, + -0.008315007202327251, + -0.015406856313347816, + -0.0033791300375014544, + -0.0001326246710959822, + -0.019286369904875755, + 0.010866343043744564, + 0.0322716198861599, + -0.024586722254753113, + -0.036274682730436325, + 0.008815390057861805, + -0.022745806723833084, + -0.014356669038534164, + 0.028639208525419235, + 0.021127285435795784, + -0.0019737330731004477, + -0.04425610229372978, + 0.013158220797777176, + -0.01979292929172516, + 0.022498704493045807, + 0.010359782725572586, + 0.01360300648957491, + 0.009043960832059383, + 0.016271715983748436, + -0.00610343785956502, + 0.016407622024416924, + 0.00575131643563509, + 0.06306061893701553, + 0.0018594481516629457, + -0.02836739458143711, + 0.012701081112027168, + 0.008426203392446041, + 0.013726557604968548, + -0.022090984508395195, + 0.03086313232779503, + -0.030690161511301994, + 0.007697250694036484, + 0.0015652414876967669, + 0.009408436715602875, + 0.031233787536621094, + -0.025290966033935547, + 0.020040033385157585, + -0.02987472154200077, + -0.0008694927673786879, + 0.014134276658296585, + 0.0429711677134037, + 0.0036231440026313066, + 0.007616942282766104, + -0.04245224967598915, + -0.01129259541630745, + 0.011057848110795021, + 0.018853940069675446, + 0.013417678885161877, + 0.013825398869812489, + -0.02482147142291069, + 0.009260175749659538, + -0.023820703849196434, + 0.003592256223782897, + -0.002353653544560075, + -0.010514222085475922, + 0.018199117854237556, + -0.04106847569346428, + 0.0010934296296909451, + -0.018409155309200287, + -0.0006239344365894794, + 0.013355903327465057, + -0.003987620584666729, + -0.008240876719355583, + 0.012429268099367619, + 0.015233884565532207, + -0.011076380498707294, + -0.021868592128157616, + -0.00038339535240083933, + -0.034569673240184784, + -0.012120389379560947, + 0.0014687168877571821, + 0.0010857076849788427, + -0.009544343687593937, + 0.0052663772366940975, + -0.002239368623122573, + 0.02698362059891224, + -0.00607255008071661, + -0.004679508041590452, + -0.01901455596089363, + -0.029602909460663795, + -0.0007100342772901058, + 0.014183697290718555, + 0.051842156797647476, + 0.009618474170565605, + -0.01257752999663353, + 0.0014602227602154016, + -0.028194423764944077, + 0.0078084468841552734, + 0.006248610559850931, + 0.013343548402190208, + -0.01954582706093788, + 0.019076332449913025, + 0.03684302046895027, + 0.02493266761302948, + -0.04578813910484314, + 0.03405075892806053, + -0.025921078398823738, + 0.03768317028880119, + -0.00575131643563509, + 0.013145865872502327, + -0.0013606094289571047, + 0.02997356280684471, + 0.006338185165077448, + 0.026958908885717392, + -0.024549657478928566, + -0.008209988474845886, + 0.040895503014326096, + 0.010606884956359863, + 0.013924239203333855, + 0.044453784823417664, + 0.028985152021050453, + -0.02849094569683075, + 0.036694757640361786, + -0.003935111220926046, + 0.0034439945593476295, + -0.047764960676431656, + 0.028762759640812874, + 0.007709605619311333, + -0.006387605797499418, + -0.02935580536723137, + 0.023820703849196434, + 0.052830565720796585, + 0.014233117923140526, + -0.018038500100374222, + -0.005204601678997278, + 0.044849149882793427, + 0.029627619311213493, + 0.001328949467279017, + -0.013615361414849758, + 0.009927352890372276, + -0.0037961159832775593, + 0.05495565012097359, + -0.007011540234088898, + -0.025241544470191002, + -0.003684919560328126, + -0.049272287636995316, + -0.02299291081726551, + 0.036077000200748444, + 0.01764313504099846, + 0.006087993737310171, + -0.03726309537887573, + -0.01300995983183384, + -0.0011436224449425936, + 0.010878697969019413, + 0.012070968747138977, + 0.004741284064948559, + -0.04008006677031517, + 0.010020016692578793, + -0.04719662293791771, + 0.0397341214120388, + -0.01807556487619877, + 0.007023895625025034, + -0.01976821944117546, + 0.03217277675867081, + -0.04074724391102791, + -0.025117993354797363, + -0.03244458884000778, + 0.024562012404203415, + -0.03041834756731987, + -0.006013863254338503, + -0.03501445800065994, + 0.01084781065583229, + -0.025290966033935547, + -0.016704145818948746, + 0.025290966033935547, + -0.00459611089900136, + -0.011595296673476696, + -0.009433147497475147, + -0.0049544102512300014, + -0.01097136177122593, + 0.016642369329929352, + -0.02301762066781521, + 0.018433865159749985, + 0.023894835263490677, + 0.0004521207883954048, + -0.011175221763551235, + 0.002577590523287654, + 0.057970304042100906, + -0.04393486678600311, + -0.02504386380314827, + 0.030121823772788048, + 0.004525069147348404, + -0.020052388310432434, + -0.0018486373592168093, + 0.04524451121687889, + -0.033927205950021744, + -0.024846181273460388, + -0.034347280859947205, + 0.031431470066308975, + 0.011879464611411095, + -0.01976821944117546, + -0.00011447806900832802, + -0.014430800452828407, + -0.01118139922618866, + -0.006338185165077448, + 0.027700217440724373, + -0.0386715792119503, + 0.011323483660817146, + -0.028219133615493774, + -0.03889397159218788, + -0.032518722116947174, + -0.01784081757068634, + 0.009148979559540749, + -0.0016741211293265224, + -0.03093726374208927, + 0.021324966102838516, + -0.020274780690670013, + 0.007153624668717384, + 0.00018725755217019469, + 0.012534286826848984, + 0.04418196901679039, + -0.025772815570235252, + 0.0440831296145916, + -0.015295660123229027, + 0.0002619675069581717, + 0.009278708137571812, + -0.0034687048755586147, + -0.04608466103672981, + -0.030245376750826836, + -0.006267143413424492, + -0.02440139651298523, + -0.025525713339447975, + -0.009105736389756203, + -0.024314910173416138, + 0.0177419763058424, + 0.03590402752161026, + 0.012064791284501553, + -0.007993773557245731, + 0.023808348923921585, + -0.012911118566989899, + -0.038622159510850906, + 0.020361267030239105, + -0.03933875635266304, + 0.027354273945093155, + 0.06894166767597198, + -0.04255109280347824, + -0.022486349567770958, + 0.03086313232779503, + 0.0072709983214735985, + -0.0023351209238171577, + 0.045516327023506165, + 0.011780623346567154, + -0.006974474992603064, + 0.038745708763599396, + -0.026736516505479813, + 0.017803752794861794, + -0.03501445800065994, + -0.010575997643172741, + -0.03172799199819565, + 0.0461835041642189, + -0.010681016370654106, + -0.017914948984980583, + -0.02159678004682064, + 0.012713436037302017, + -0.012169810011982918, + -0.007962886244058609, + 0.013578295707702637, + -0.042279280722141266, + 0.009976773522794247, + -0.006758260075002909, + -0.0354345329105854, + -0.002176048466935754, + 0.012213053181767464, + 0.003589167259633541, + -0.008901876397430897, + 0.025019152089953423, + 0.03827621415257454, + 0.02643999457359314, + -0.00213743862695992, + 0.031332626938819885, + 0.012713436037302017, + 0.020040033385157585, + -0.01750722900032997, + 0.04109318554401398, + 0.041562680155038834, + -0.028120292350649834, + -0.00785169005393982, + -0.006968297529965639, + 0.01360300648957491, + 0.03553337603807449, + 0.017358968034386635, + -0.033704813569784164, + -0.013689491897821426, + -0.022745806723833084, + 0.013800688087940216, + -0.03410017862915993, + -0.01580222137272358, + 0.045837558805942535, + 0.007085671182721853, + 0.005856335163116455, + -0.007153624668717384, + -0.005096494220197201, + 0.019706442952156067, + -0.00035405191010795534, + 0.006291853729635477, + -0.02029949054121971, + -0.01718599535524845, + -0.006406138651072979, + 0.03051718883216381, + -0.03031950630247593, + 0.013108800165355206, + 0.016382912173867226, + -0.013504165224730968, + 0.04662828892469406, + 0.01912575215101242, + -0.0026795202866196632, + -0.02299291081726551, + -0.013565940782427788, + -0.015209173783659935, + 0.0461835041642189, + -0.010372137650847435, + 0.002778361551463604, + 0.0076848953031003475, + -0.034989748150110245, + -0.010069436393678188, + -0.004747461527585983, + -0.021349677816033363, + 0.04801206290721893, + 0.013924239203333855, + -0.03812795504927635, + -0.028070872649550438, + 0.0022362798918038607, + -0.008450914174318314, + -0.031209075823426247, + 0.026316441595554352, + 0.034124888479709625, + 0.008234699256718159, + -0.012812277302145958, + -0.00462699867784977, + -0.009223110042512417, + -0.03125849738717079, + 0.014640837907791138, + -0.0017096421215683222, + -0.010514222085475922, + -0.0043150316923856735, + 0.02429020032286644, + 0.014887940138578415, + -0.018112631514668465, + 0.025204479694366455, + -0.023054685443639755, + -0.005556723102927208, + -0.037139542400836945, + -0.021473228931427002, + 0.01837208867073059, + 0.0005092633073218167, + -0.041340287774801254, + -0.0019860882312059402, + -0.029108703136444092, + 0.055301595479249954, + -0.0016416888684034348, + -0.009408436715602875, + 0.01976821944117546, + -0.0024092518724501133, + -0.04554103687405586, + 0.02106550894677639, + 0.02967703901231289, + 0.006801503244787455, + -0.0505325123667717, + 0.033778946846723557, + -0.03086313232779503, + -0.01933578960597515, + -0.008994540199637413, + -0.02493266761302948, + 0.020596014335751534, + 0.033136479556560516, + 0.03279053419828415, + 0.023190593346953392, + 0.004358274862170219, + -0.02718130126595497, + -0.03484148532152176, + 0.01176209095865488, + -0.04482443630695343, + 0.03432257100939751, + -0.004580667242407799, + 0.03634881228208542, + 0.021547358483076096, + 0.030171245336532593, + 0.00860535353422165, + -0.041439130902290344, + -0.012824632227420807, + -0.013121156021952629, + 0.021670911461114883, + 0.004580667242407799, + 0.011725025251507759, + 0.00008682379848323762, + 0.04010477662086487, + 0.02127554640173912, + 0.015604537911713123, + 0.01945934072136879, + -0.0005451704491861165, + 0.039487019181251526, + 0.031110236421227455, + -0.001885702833533287, + 0.012058613821864128, + 0.0026439994107931852, + 0.009235464967787266, + -0.039388176053762436, + -0.0033420645631849766, + 0.025649264454841614, + -0.016074033454060555, + -0.044107839465141296, + 0.017124220728874207, + -0.007907288148999214, + 0.019829995930194855, + 0.008185278624296188, + -0.04225457087159157, + -0.009680249728262424, + -0.005031629465520382, + -0.018137341365218163, + 0.0030656184535473585, + -0.005569078028202057, + -0.029429936781525612, + 0.043144140392541885, + 0.0075119235552847385, + 0.0030625297222286463, + 0.0013397601433098316, + 0.011799155734479427, + 0.018977491185069084, + 0.002313499338924885, + 0.03699127957224846, + 0.05021127685904503, + 0.005380662158131599, + 0.031209075823426247, + -0.006032395642250776, + 0.0019860882312059402, + -0.031110236421227455, + 0.009643184952437878, + -0.006189923733472824, + 0.011959772557020187, + -0.007728138472884893, + -0.0343719907104969, + 0.04754256829619408, + 0.08282884210348129, + -0.056685369461774826, + -0.007518101017922163, + 0.03674417734146118, + 0.017779042944312096, + 0.0006965208449400961, + -0.009760558605194092, + 0.017136575654149055, + 0.006369073409587145, + 0.013899529352784157, + 0.009982950985431671, + -0.0075242784805595875, + -0.013973659835755825, + -0.012453977949917316, + 0.015863995999097824, + 0.011304950341582298, + 0.010186810977756977, + 0.03753490746021271, + 0.047147203236818314, + -0.0008756703464314342, + -0.003589167259633541, + -0.026637675240635872, + -0.001765240216627717, + 0.0008702649502083659, + 0.018433865159749985, + -0.0031490155961364508, + 0.028342684730887413, + -0.012824632227420807, + -0.02170797623693943, + -0.008574465289711952, + 0.012750501744449139, + 0.013071735389530659, + -0.019644668325781822, + 0.009816156700253487, + -0.014307249337434769, + 0.005698807071894407, + 0.01990412548184395, + -0.03106081485748291, + 0.018569771200418472, + 0.04870394989848137, + -0.008506512269377708, + -0.017272481694817543, + 0.004092639312148094, + -0.015295660123229027, + -0.02191801369190216, + 0.03785613924264908, + -0.008784502744674683, + 0.03637352213263512, + 0.015962837263941765, + 0.0036602094769477844, + -0.006603820715099573, + 0.015542762354016304, + 0.0014826164115220308, + -0.0068941665813326836, + -0.005071783903986216, + 0.03214806690812111, + 0.002857125597074628, + -0.008302652277052402, + -0.004525069147348404, + -0.03125849738717079, + 0.0068138581700623035, + 0.04657886549830437, + 0.008123503066599369, + -0.04032716900110245, + 0.010891053825616837, + 0.02395661175251007, + -0.013627716340124607, + 0.020904893055558205, + 0.029948852956295013, + -0.0387209989130497, + -0.025229189544916153, + 0.02730485238134861, + -0.010026194155216217, + -0.012429268099367619, + 0.003274111310020089, + -0.02148558385670185, + -0.035508666187524796, + 0.022832293063402176, + -0.008197633549571037, + 0.009383726865053177, + -0.010396848432719707, + 0.05105142667889595, + -0.018668612465262413, + 0.014616127125918865, + -0.012132744304835796, + -0.02846623584628105, + -0.02299291081726551, + -0.024870891124010086, + 0.04269935563206673, + 0.03911636397242546, + 0.032617561519145966, + 0.014504930935800076, + 0.018433865159749985, + -0.021769750863313675, + -0.023499470204114914, + 0.03157972916960716, + -0.026909489184617996, + 0.033482421189546585, + -0.005779115483164787, + 0.0021389832254499197, + 0.012997603975236416, + -0.029948852956295013, + 0.00009020215657074004, + -0.03491561859846115, + -0.021201414987444878, + 0.010946651920676231, + -0.018446220085024834, + 0.02601991966366768, + 0.013738912530243397, + 0.00607255008071661, + 0.003891868283972144, + -0.014875585213303566, + 0.04591168835759163, + -0.007518101017922163, + -0.0016602216055616736, + 0.026168180629611015, + -0.024648498743772507, + -0.004262522328644991, + 0.016419976949691772, + -0.013640071265399456, + -0.0023243101313710213, + 0.007783736567944288, + -0.005260199774056673, + -0.005454793106764555, + -0.02977588027715683, + -0.04806148260831833, + 0.019063977524638176, + 0.04235341027379036, + 0.03419901803135872, + -0.0018177495803683996, + 0.001728174858726561, + 0.0006177568575367332, + 0.022486349567770958, + 0.00475672772154212, + -0.014319604262709618, + 0.005822358187288046, + 0.02601991966366768, + -0.006943587213754654, + 0.014591417275369167, + 0.010446268133819103, + -0.009797623381018639, + 0.006721194833517075, + 0.016098743304610252, + -0.008852455765008926, + -0.034544963389635086, + 0.027354273945093155, + -0.027774348855018616, + 0.006001507863402367, + -0.008370605297386646, + -0.024141937494277954, + -0.03968470171093941, + -0.028886310756206512, + -0.006467914208769798, + -0.006081816274672747, + -0.029850011691451073, + 0.019051620736718178, + 0.03145617991685867, + 0.007944352924823761, + -0.002121994737535715, + 0.005637031514197588, + 0.05223752185702324, + 0.02084311656653881, + 0.008209988474845886, + 0.003567545907571912, + -0.011582940816879272, + -0.001882613985799253, + 0.051002006977796555, + 0.0037034524139016867, + -0.018520351499319077, + -0.008790680207312107, + -0.03686773031949997, + 0.010390670038759708, + 0.017791397869586945, + 0.02730485238134861, + -0.011298772878944874, + -0.011681782081723213, + -0.04151326045393944, + -0.017680201679468155, + -0.008104969747364521, + -0.0012996060540899634, + -0.01160147413611412, + -0.03711483255028725, + 0.009476390667259693, + 0.045714009553194046, + -0.023240013048052788, + 0.015184463933110237, + 0.02429020032286644, + -0.0012532742694020271, + 0.04739430546760559, + -0.012348959222435951, + -0.0354345329105854, + -0.01742074266076088, + -0.023289432749152184, + 0.005050162319093943, + 0.03382836654782295, + 0.03933875635266304, + 0.00864859577268362, + 0.005569078028202057, + -0.042279280722141266, + 0.009167511947453022, + 0.020175939425826073, + -0.019706442952156067, + -0.010897231288254261, + -0.05747609958052635, + 0.012583707459270954, + -0.014035436324775219, + 0.019286369904875755, + 0.014727323316037655, + -0.01761842519044876, + -0.023289432749152184, + -0.012676370330154896, + 0.02331414446234703, + -0.02050952799618244, + -0.02226395718753338, + -0.0026038452051579952, + 0.02215276099741459, + -0.007579876575618982, + 0.025426872074604034, + 0.01709950901567936, + 0.007240110542625189, + 0.013565940782427788, + -0.04101905599236488, + 0.010087969712913036, + -0.010606884956359863, + 0.015332724899053574, + -0.009124268777668476, + 0.008642418310046196, + 0.00507796136662364, + -0.025105638429522514, + -0.015851641073822975, + -0.009482568129897118, + -0.030171245336532593, + 0.005423905327916145, + 0.03022066503763199, + 0.0017065532738342881, + 0.023252367973327637, + -0.012614594772458076, + -0.006001507863402367, + -0.012886407785117626, + 0.00908102560788393, + 0.018779808655381203, + -0.01591341756284237, + 0.006230078171938658, + 0.0005193018587306142, + -0.01203390397131443, + -0.02212805114686489, + -0.02945464663207531, + 0.015826931223273277, + 0.04452791437506676, + -0.015048556961119175, + 0.01859448105096817, + -0.013714202679693699, + 0.014887940138578415, + 0.002160604577511549, + 0.010310362093150616, + -0.0013405324425548315, + 0.02363537810742855, + 0.01580222137272358, + 0.01848328486084938, + 0.006702661979943514, + -0.011236997321248055, + 0.02461143396794796, + -0.010551286861300468, + 0.014294893480837345, + -0.01129259541630745, + 0.0007119647925719619, + 0.014492576010525227, + -0.029108703136444092, + -0.029059283435344696, + -0.00909338053315878, + -0.029701750725507736, + 0.013034669682383537, + -0.012225408107042313, + -0.038103241473436356, + 0.002803071867674589, + 0.017037734389305115, + -0.002798438537865877, + 0.01990412548184395, + 0.020064743235707283, + 0.009420792572200298, + -0.0008185278275050223, + -0.01934814453125, + -0.012762856669723988, + -0.0035953449551016092, + 0.012052436359226704, + -0.024994442239403725, + 0.018668612465262413, + -0.007505746092647314, + 0.008185278624296188, + -0.04200746491551399, + 0.013751267455518246, + 0.01015592273324728, + 0.0204106867313385, + 0.0008887976873666048, + 0.03118436597287655, + -0.012262473814189434, + 0.03620055317878723, + 0.002143616322427988, + -0.005071783903986216, + -0.0009961329633370042, + -0.023375919088721275, + 0.027675507590174675, + -0.041636813431978226, + 0.020385976880788803, + 0.02138674259185791, + -0.008926586247980595, + 0.027230722829699516, + 0.014566706493496895, + 0.013121156021952629, + -0.013121156021952629, + 0.0214979387819767, + -0.02965232916176319, + -0.0068571013398468494, + 0.016061678528785706, + 0.012120389379560947, + 0.029182834550738335, + -0.044651467353105545, + 0.003471793606877327, + 0.0062393443658947945, + 0.023598311468958855, + 0.0037405178882181644, + 0.02300526574254036, + 0.03600287064909935, + -0.028342684730887413, + -0.008908053860068321, + -0.03363068401813507, + 0.023907190188765526, + -0.0008393771131522954, + 0.000894203083589673, + 0.014257828705012798, + 0.04321826994419098, + -0.012886407785117626, + 0.018755098804831505, + 0.04667770862579346, + -0.050903163850307465, + -0.002322765765711665, + -0.03157972916960716, + -0.010149745270609856, + -0.05129852890968323, + -0.002852492267265916, + -0.004976031370460987, + -0.0056802742183208466, + -0.014344314113259315, + 0.003536658128723502, + -0.018322668969631195, + 0.0025683240965008736, + -0.019854705780744553, + -0.0010239320108667016, + 0.0031227609142661095, + -0.00004659720798372291, + 0.0537201352417469, + 0.04032716900110245, + 0.014430800452828407, + 0.00024343481345567852, + 0.01901455596089363, + -0.013874819502234459, + -0.01376362331211567, + 0.027378983795642853, + 0.024809114634990692, + 0.007987596094608307, + 0.010600707493722439, + -0.006955942139029503, + 0.02718130126595497, + 0.024327265098690987, + -0.014455510303378105, + -0.004951321054250002, + 0.003073340281844139, + -0.03471793606877327, + 0.03355655446648598, + -0.014616127125918865, + 0.011725025251507759, + -0.0070177181623876095, + 0.0012247029226273298, + 0.04171094298362732, + 0.03195038437843323, + -0.021213769912719727, + -0.025080928578972816, + 0.013195286504924297, + 0.006375250872224569, + 0.01590106077492237, + -0.009519632905721664, + 0.01945934072136879, + 0.013405323959887028, + 0.043144140392541885, + -0.02212805114686489, + 0.05861277133226395, + -0.004240900743752718, + -0.009779090993106365, + -0.0068138581700623035, + -0.002515814732760191, + -0.0034285506699234247, + 0.024673208594322205, + 0.021745041012763977, + -0.01751958392560482, + -0.03632410243153572, + -0.009661717340350151, + 0.017680201679468155, + 0.020472463220357895, + 0.0007401499315164983, + 0.013615361414849758, + -0.011675604619085789, + -0.014714968390762806, + -0.002483382588252425, + -0.008506512269377708, + -0.02301762066781521, + -0.0050038304179906845, + 0.010390670038759708, + -0.0056802742183208466, + -0.0236477330327034, + 0.010736614465713501, + -0.014208408072590828, + -0.009871754795312881, + 0.01818676106631756, + 0.014702613465487957, + -0.021114928647875786, + -0.02794731967151165, + -0.02814500220119953, + 0.008030839264392853, + 0.04502211883664131, + -0.021040799096226692, + 0.017371322959661484, + -0.02063307911157608, + -0.0070671383291482925, + -0.03674417734146118, + 0.020830761641263962, + -0.009056315757334232, + -0.010619240812957287, + -0.031209075823426247, + -0.009680249728262424, + 0.010440090671181679, + 0.012651660479605198, + -0.0032216019462794065, + 0.038325633853673935, + 0.02526625618338585, + 0.018730388954281807, + 0.01654352806508541, + -0.013998370617628098, + 0.0030424525029957294, + -0.03489090874791145, + 0.023721862584352493, + -0.0354592427611351, + 0.0017111864872276783, + -0.006739727221429348, + 0.00930341798812151, + -0.0019490228733047843, + -0.02301762066781521, + 0.00502854073420167, + 0.0091304462403059, + -0.007555166259407997, + -0.041859205812215805, + -0.02494502253830433, + 0.017173640429973602, + 0.012762856669723988, + 0.001967555610463023, + 0.008790680207312107, + -0.016469398513436317, + -0.02526625618338585, + -0.004466382320970297, + -0.03943759948015213, + 0.002086473861709237, + 0.0027258521877229214, + -0.01814969629049301, + 0.0017111864872276783, + -0.015518052503466606, + -0.03407546877861023, + 0.015518052503466606, + 0.03709012269973755, + 0.013961304910480976, + -0.017148930579423904, + 0.018359733745455742, + -0.010415380820631981, + -0.030171245336532593, + -0.006776792928576469, + 0.04568929597735405, + -0.02366008795797825, + -0.0056432089768350124, + -0.021868592128157616, + -0.01796436868607998, + 0.00821616593748331, + 0.004172947723418474, + -0.0012463245075196028, + -0.0333094485104084, + 0.03946230933070183, + 0.036818310618400574, + -0.015406856313347816, + -0.015382145531475544, + -0.0011142789153382182, + -0.02720601297914982, + 0.005516568664461374, + 0.007715783081948757, + -0.031752701848745346, + -0.017692556604743004, + -0.013096445240080357, + -0.022807583212852478, + 0.011539698578417301, + -0.003255578689277172, + 0.013924239203333855, + 0.03405075892806053, + -0.024327265098690987, + -0.01924930326640606, + -0.014850875362753868, + 0.00945167988538742, + -0.019928837195038795, + -0.05243520066142082, + 0.015641603618860245, + -0.016531173139810562, + 0.03632410243153572, + -0.022745806723833084, + 0.0182856023311615, + -0.011657072231173515, + 0.008654773235321045, + 0.012472511269152164, + -0.0033667748793959618, + 0.06360424309968948, + 0.021547358483076096, + 0.009389904327690601, + 0.006603820715099573, + 0.014826164580881596, + -0.009062493219971657, + -0.007931997999548912, + 0.061627425253391266, + -0.0030254642479121685, + 0.02849094569683075, + -0.03706541284918785, + -0.010773679241538048, + 0.014134276658296585, + 0.01784081757068634, + 0.00543008279055357, + -0.07660184800624847, + 0.03555808588862419, + 0.014813809655606747, + 0.000812350248452276, + 0.03387778624892235, + 0.018335023894906044, + 0.04793793335556984, + -0.007376017048954964, + -0.0333094485104084, + 0.0009235464967787266, + 0.009544343687593937, + -0.03318589925765991, + 0.013911884278059006, + -0.028565077111124992, + -0.007023895625025034, + -0.003851714078336954, + 0.024426106363534927, + -0.007487213239073753, + 0.005337419454008341, + 0.002336665289476514, + -0.04393486678600311, + -0.006081816274672747, + -0.014158987440168858, + -0.0023150439374148846, + -0.009674072265625, + 0.026069339364767075, + 0.0078084468841552734 + ] + }, + { + "HotelId": "43", + "HotelName": "Johnson's Family Resort", + "Description": "Family oriented resort located in the heart of the northland. Operated since 1962 by the Smith family, we have grown into one of the largest family resorts in the state. The home of excellent Smallmouth Bass fishing with 10 small cabins, we're a home not only to fishermen but their families as well. Rebuilt in the early 2000's, all of our cabins have all the comforts of home. Sporting a huge beach with multiple water toys for those sunny summer days and a Lodge full of games for when you just can't swim anymore, there's always something for the family to do. A full marina offers watercraft rentals, boat launch, powered dock slips, canoes (free to use), & fish cleaning facility. Rent pontoons, 14' fishing boats, 16' fishing rigs or jet ski's for a fun day or week on the water. Pets are accepted in the lakeside cottages.", + "Description_fr": "Resort familial situĆ© au cœur de la Northland. OpĆ©rĆ© depuis 1962 par la famille Smith, nous sommes devenus l'une des plus grandes stations familiales de l'Ɖtat. La maison de la pĆŖche Ć  l'achigan Ć  petite bouche excellente avec 10 petites cabanes, nous sommes une maison non seulement pour les pĆŖcheurs, mais aussi leurs familles. Reconstruites au dĆ©but des annĆ©es 2000, toutes nos cabines ont Ć©tĆ© construites avec tout le confort de la maison. Arborant une immense plage avec des jouets d'eau multiples pour ces jours ensoleillĆ©s d'Ć©tĆ© et un Lodge plein de jeux pour quand vous ne pouvez pas nager plus, il ya toujours quelque chose pour la famille Ć  faire. UNE marina complĆØte offre la location de motomarines, le lancement de bateaux, des bordereaux d'amarrage, des canoĆ«s (libres d'utilisation), et des installations de nettoyage de poissons. Louez des pontons, 14 'bateaux de pĆŖche, 16 'plates-formes de pĆŖche ou jet ski pour une journĆ©e ou une semaine de plaisir sur l'eau.", + "Category": "Resort and Spa", + "Tags": [ + "24-hour front desk service", + "pool", + "coffee in lobby" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2002-02-21T00:00:00Z", + "Rating": 4.8, + "Address": { + "StreetAddress": "4000 Great Plains Dr", + "City": "Fargo", + "StateProvince": "ND", + "PostalCode": "58104", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -96.845932, + 46.814121 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 67.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 65.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 72.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 141.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "suite", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (Cityside)", + "Description_fr": "Suite, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 265.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "tv" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 88.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 69.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "bathroom shower", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 233.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "tv", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 138.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 76.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "coffee maker", + "suite" + ] + } + ], + "embedding": [ + -0.006379331927746534, + 0.04617645964026451, + 0.01611931063234806, + -0.001246239640749991, + -0.032663121819496155, + -0.002862445078790188, + -0.06400556862354279, + -0.018076740205287933, + 0.01660277135670185, + -0.021543512120842934, + 0.03537522256374359, + -0.0077471742406487465, + -0.010553608648478985, + 0.006597479339689016, + -0.023890066891908646, + 0.03834674134850502, + 0.04101167619228363, + -0.01707444153726101, + -0.03223862126469612, + 0.03070569410920143, + 0.05358167365193367, + -0.043228521943092346, + -0.029432186856865883, + -0.08886256068944931, + 0.05749652907252312, + 0.04655379429459572, + -0.03490355238318443, + 0.020647339522838593, + 0.050232816487550735, + -0.02071809023618698, + -0.007422901224344969, + -0.013996796682476997, + 0.03398379683494568, + 0.0060668508522212505, + 0.023913651704788208, + -0.004855249542742968, + 0.044832199811935425, + -0.03681381791830063, + -0.016319770365953445, + -0.006674125324934721, + 0.0031542908400297165, + 0.0386769101023674, + -0.0010303034214302897, + -0.023972610011696815, + -0.02837092988193035, + 0.04068150743842125, + -0.008065550588071346, + 0.03462055325508118, + 0.0014872333267703652, + 0.018737077713012695, + -0.012900165282189846, + 0.04551612213253975, + -0.054006174206733704, + -0.05612868815660477, + -0.038535408675670624, + 0.015824517235159874, + 0.04117675870656967, + -0.009315475821495056, + 0.015824517235159874, + 0.0407758429646492, + 0.03888916224241257, + 0.026059748604893684, + 0.01410292275249958, + 0.03457338362932205, + -0.024066943675279617, + 0.04405394569039345, + -0.038299575448036194, + 0.012664330191910267, + -0.028960516676306725, + 0.026649335399270058, + 0.015529722906649113, + -0.002834439743310213, + -0.02343018911778927, + -0.08145734667778015, + -0.009197558276355267, + -0.003982660826295614, + -0.03337062895298004, + -0.051128990948200226, + -0.005559805780649185, + 0.01393783837556839, + -0.006031475495547056, + 0.029361436143517494, + -0.05792103335261345, + 0.005828068125993013, + 0.0005147831980139017, + 0.022015180438756943, + -0.013454376719892025, + 0.0155061399564147, + -0.001450384152121842, + 0.03664873167872429, + 0.02256939187645912, + 0.04301627352833748, + -0.02312360517680645, + -0.0085077416151762, + 0.017994197085499763, + -0.05499668046832085, + -0.0012698231730610132, + -0.03131886571645737, + -0.010877881199121475, + 0.016142893582582474, + -0.019279496744275093, + -0.04544537141919136, + 0.030469859018921852, + -0.039360832422971725, + 0.0676845982670784, + -0.03997400403022766, + -0.019362039864063263, + 0.04412469640374184, + 0.009486455470323563, + -0.003422552952542901, + -0.11103103309869766, + -0.02933785319328308, + -0.02827659621834755, + 0.04219084978103638, + -0.05494951456785202, + 0.0550910159945488, + 0.0010465170489624143, + -0.011172674596309662, + 0.0019441633485257626, + 0.04388885945081711, + 0.0077176946215331554, + 0.017463568598031998, + 0.024456070736050606, + -0.023960817605257034, + 0.03329987823963165, + 0.03124811500310898, + -0.020163876935839653, + 0.002706204541027546, + 0.011903762817382812, + -0.003982660826295614, + 0.011650240048766136, + 0.0030452171340584755, + -0.02400798536837101, + 0.003823472186923027, + -0.05061015486717224, + -0.014621758833527565, + -0.037992991507053375, + -0.009498247876763344, + -0.04730846732854843, + -0.022982103750109673, + 0.04622362554073334, + 0.007393421605229378, + 0.04157767817378044, + -0.03888916224241257, + -0.0057366820983588696, + 0.026767252013087273, + 0.05037431791424751, + -0.00838392786681652, + 0.00011036332580260932, + 0.02126050926744938, + 0.003525730688124895, + -0.009156286716461182, + -0.043700192123651505, + -0.0013110942672938108, + -0.03487997129559517, + -0.02287597768008709, + -0.02305285446345806, + -0.009309579618275166, + -0.030399108305573463, + 0.053534504026174545, + -0.011945033445954323, + -0.00950414314866066, + -0.009156286716461182, + 0.07428797334432602, + 0.000006402547114703339, + 0.029668021947145462, + -0.017098024487495422, + 0.002511640777811408, + -0.07999517023563385, + -0.0372147336602211, + 0.0470726303756237, + 0.007251921109855175, + -0.043134190142154694, + 0.04667171090841293, + -0.014421300031244755, + -0.022899560630321503, + -0.03367721289396286, + -0.04259176924824715, + -0.020894965156912804, + 0.016390521079301834, + -0.040799424052238464, + -0.055562686175107956, + -0.04355869069695473, + 0.005500847473740578, + -0.02157888561487198, + 0.032521624118089676, + -0.045964207500219345, + 0.04054000601172447, + 0.029597271233797073, + 0.019939834251999855, + -0.044336948543787, + -0.030021773651242256, + -0.0010008240351453424, + -0.022180264815688133, + 0.0399504192173481, + -0.030399108305573463, + -0.0070868367329239845, + 0.014350549317896366, + 0.014350549317896366, + -0.02547016181051731, + -0.02262835204601288, + -0.050798822194337845, + 0.06098688766360283, + 0.0058457558043301105, + -0.038464661687612534, + -0.0005427885917015374, + 0.024361737072467804, + 0.055562686175107956, + 0.024715488776564598, + -0.017911655828356743, + 0.03440830111503601, + 0.035894058644771576, + 0.06433574110269547, + -0.00459288340061903, + 0.01878424361348152, + -0.037592072039842606, + -0.026154082268476486, + 0.013595878146588802, + -0.04320494085550308, + 0.0464358776807785, + -0.028465263545513153, + 0.007564402185380459, + 0.000767200137488544, + -0.006927648093551397, + 0.021685011684894562, + 0.062166061252355576, + -0.016237227246165276, + -0.02118975855410099, + 0.01470430102199316, + -0.03671948239207268, + 0.00995222944766283, + 0.0012993024429306388, + -0.01900828629732132, + -0.04549253731966019, + -0.057968199253082275, + 0.02497490867972374, + 0.0008099452243186533, + 0.018513033166527748, + 0.018253615126013756, + 0.01828899048268795, + -0.03690814971923828, + -0.02450323849916458, + -0.051836494356393814, + 0.04150692746043205, + 0.016178268939256668, + 0.000561213179025799, + -0.003068800549954176, + 0.010364940389990807, + 0.04528028517961502, + -0.002149044768884778, + -0.009445184841752052, + -0.0158716831356287, + 0.043299272656440735, + -0.03773357346653938, + -0.002166732447221875, + 0.015730183571577072, + -0.029385019093751907, + 0.009739978238940239, + 0.04924231022596359, + 0.0023067593574523926, + -0.007487755734473467, + -0.01091915275901556, + -0.0192441213876009, + -0.03464413434267044, + -0.02643708325922489, + -0.012829414568841457, + 0.033630046993494034, + 0.028819015249609947, + 0.026649335399270058, + 0.0018085583578795195, + -0.02738042362034321, + -0.037662822753190994, + -0.07508980482816696, + -0.01690935716032982, + 0.004884728696197271, + -0.033464960753917694, + -0.01220445241779089, + -0.05018565058708191, + 0.029385019093751907, + 0.013029874302446842, + -0.01131417602300644, + -0.01741640269756317, + 0.02893693372607231, + 0.01510522048920393, + 0.0008880654931999743, + 0.00648545753210783, + 0.019515331834554672, + -0.010093730874359608, + -0.019833708181977272, + -0.018253615126013756, + -0.021732179448008537, + 0.017593277618288994, + -0.04428977891802788, + -0.033158376812934875, + 0.021956222131848335, + 0.004675425589084625, + -0.05150632560253143, + 0.012581788003444672, + 0.03353571146726608, + -0.005589285399764776, + -0.011897866614162922, + 0.031059445813298225, + -0.01325391698628664, + -0.04063434153795242, + 0.00234803045168519, + 0.018630951642990112, + 0.016638146713376045, + 0.0011791741708293557, + 0.04801597073674202, + 0.023559898138046265, + -0.024856990203261375, + 0.006402915343642235, + -0.015046262182295322, + -0.04867630824446678, + 0.0010811552638188004, + 0.006279102060943842, + 0.008731784299015999, + -0.006597479339689016, + -0.013760962523519993, + 0.01034725271165371, + 0.03775715455412865, + 0.07575014233589172, + 0.03207353502511978, + -0.027121005579829216, + 0.018984703347086906, + 0.02530507743358612, + 0.008731784299015999, + -0.035634640604257584, + -0.0207062978297472, + 0.009887374937534332, + -0.013065249659121037, + 0.008719992823898792, + -0.018972910940647125, + 0.06188305839896202, + -0.0003465666377451271, + -0.0006430184002965689, + -0.01668531447649002, + -0.037497736513614655, + 0.01007604319602251, + 0.05891153961420059, + -0.02440890483558178, + 0.038629744201898575, + -0.03938441723585129, + 0.01837153360247612, + 0.004920104052871466, + -0.018324365839362144, + -0.04952531307935715, + 0.03587047755718231, + 0.0031366031616926193, + 0.026649335399270058, + 0.008207052014768124, + 0.011408509686589241, + 0.027356840670108795, + -0.025800330564379692, + 0.009403913281857967, + -0.0426861047744751, + 0.05419484153389931, + -0.003404865274205804, + 0.003611220745369792, + 0.03577614203095436, + -0.05617585405707359, + 0.038464661687612534, + 0.005173626355826855, + 0.002401093253865838, + 0.006190664134919643, + 0.019456373527646065, + -0.01748715154826641, + -0.00006812494393670931, + -0.001759917358867824, + 0.016260812059044838, + 0.01957429014146328, + 0.0365779809653759, + 0.01253462117165327, + 0.04744996502995491, + 0.006827418226748705, + 0.03405454754829407, + 0.06358107179403305, + -0.001838037627749145, + -0.014008589088916779, + 0.04181351512670517, + 0.004654789809137583, + -0.023147188127040863, + 0.01683860644698143, + -0.0510818213224411, + 0.02077704854309559, + -0.021083632484078407, + -0.03730906918644905, + -0.027003087103366852, + -0.026767252013087273, + 0.04655379429459572, + 0.0262719988822937, + -0.04221443459391594, + 0.002172628417611122, + -0.0040652030147612095, + -0.004018035717308521, + -0.0003334851935505867, + -0.04891214147210121, + 0.019715791568160057, + 0.015730183571577072, + -0.005724890157580376, + 0.03978533670306206, + 0.03164903447031975, + -0.01732206717133522, + -0.022133098915219307, + -0.016567396000027657, + -0.019597873091697693, + -0.03247445449233055, + 0.006703604944050312, + -0.03332345932722092, + -0.030163275077939034, + -0.034361135214567184, + -0.005789745133370161, + 0.03825240954756737, + 0.011042965576052666, + 0.0262719988822937, + -0.033394210040569305, + 0.027663424611091614, + -0.011467467993497849, + 0.006031475495547056, + 0.0029022423550486565, + -0.0223925169557333, + -0.009445184841752052, + 0.012045263312757015, + -0.004354100674390793, + -0.0384882427752018, + 0.024479655548930168, + 0.016980107873678207, + -0.017770154401659966, + -0.027663424611091614, + -0.006550312042236328, + -0.044360529631376266, + -0.030234023928642273, + 0.017298484221100807, + 0.044360529631376266, + -0.07876883447170258, + 0.008513636887073517, + -0.02893693372607231, + 0.015317471697926521, + -0.02095392346382141, + -0.02950293757021427, + 0.04124750941991806, + 0.04457278177142143, + -0.0006861319416202605, + -0.0007620412507094443, + 0.00008129853085847571, + 0.024456070736050606, + 0.008649242110550404, + 0.027521925047039986, + -0.03424321487545967, + -0.013855296187102795, + -0.030068939551711082, + 0.012746872380375862, + 0.027922842651605606, + -0.036931734532117844, + 0.016815023496747017, + 0.05405334010720253, + 0.05051581934094429, + -0.050562985241413116, + -0.008083238266408443, + -0.021956222131848335, + 0.041860681027173996, + 0.019220538437366486, + 0.0039266496896743774, + -0.04388885945081711, + 0.0022065294906497, + -0.04091734066605568, + 0.010111418552696705, + 0.0010759964352473617, + 0.01410292275249958, + -0.030752861872315407, + 0.030469859018921852, + -0.04872347414493561, + -0.01175636611878872, + -0.03584689274430275, + -0.019527124240994453, + 0.003752721706405282, + 0.0014548060717061162, + -0.021071841940283775, + 0.04428977891802788, + 0.04502086713910103, + 0.007918153889477253, + 0.007021981757134199, + -0.012711497023701668, + -0.007411109283566475, + 0.023890066891908646, + -0.029102018103003502, + -0.04127109423279762, + 0.06334523111581802, + -0.06518474221229553, + 0.044926535338163376, + -0.010895568877458572, + -0.011738678440451622, + -0.005916506052017212, + -0.010871984995901585, + 0.01067742146551609, + 0.01676785573363304, + 0.005403565242886543, + 0.00676845945417881, + -0.03608272969722748, + 0.027451174333691597, + 0.0011843329994007945, + 0.023831108585000038, + -0.03546955808997154, + 0.0483461394906044, + 0.009486455470323563, + 0.0006761826807633042, + 0.0071340035647153854, + -0.010311877354979515, + 0.02650783397257328, + -0.005064552649855614, + 0.04615287482738495, + 0.043865278363227844, + -0.02570599503815174, + 0.019963417202234268, + -0.004038671497255564, + 0.00002473501990607474, + 0.012286994606256485, + -0.03028119169175625, + -0.021496344357728958, + -0.010883777402341366, + 0.00674487603828311, + -0.008378032594919205, + -0.024927740916609764, + -0.007735382299870253, + 0.002421728800982237, + -0.018159281462430954, + -0.012239827774465084, + -0.04938381165266037, + 0.029455769807100296, + 0.02265193499624729, + -0.021897263824939728, + 0.025753162801265717, + -0.015046262182295322, + -0.017439985647797585, + -0.016142893582582474, + 0.04061075672507286, + 0.0468839630484581, + -0.009810728952288628, + 0.030092524364590645, + -0.002420254983007908, + -0.0064736660569906235, + -0.0033046354074031115, + -0.043700192123651505, + 0.005677723325788975, + -0.01877245120704174, + 0.00576026551425457, + -0.0035109908785670996, + 0.013760962523519993, + -0.010494649410247803, + 0.01006425078958273, + -0.01731027662754059, + 0.04530386999249458, + 0.01884320192039013, + -0.014279798604547977, + 0.014279798604547977, + -0.019208746030926704, + -0.008991202339529991, + 0.030328359454870224, + 0.0033488546032458544, + 0.010152689181268215, + -0.030917946249246597, + -0.00866103358566761, + -0.012758663855493069, + 0.0035493141040205956, + 0.013878879137337208, + -0.0005965884192846715, + 0.02797001041471958, + -0.01917337067425251, + -0.010105522349476814, + 0.0351158045232296, + -0.024125901982188225, + 0.035634640604257584, + -0.003643648000434041, + -0.004749123938381672, + 0.02601258084177971, + -0.0009013312519527972, + -0.028135094791650772, + -0.013690211810171604, + 0.019715791568160057, + 0.000568951538298279, + 0.011679720133543015, + -0.038299575448036194, + 0.006892272736877203, + -0.005441888701170683, + 0.01196861732751131, + 0.03837032616138458, + -0.03280462324619293, + -0.0007546714623458683, + 0.02279343642294407, + 0.019208746030926704, + 0.007222441490739584, + 0.0241730697453022, + -0.030752861872315407, + -0.020045960322022438, + -0.009775353595614433, + -0.006827418226748705, + -0.009115016087889671, + -0.0024910052306950092, + -0.03568181023001671, + 0.009574893862009048, + 0.0014540690463036299, + -0.012145493179559708, + 0.03054060973227024, + 0.003422552952542901, + -0.012617163360118866, + -0.03615348041057587, + 0.006302685476839542, + -0.0103531489148736, + -0.01998700201511383, + 0.02150813676416874, + -0.04228518530726433, + 0.014633551239967346, + 0.01805315539240837, + 0.007434692699462175, + -0.03487997129559517, + -0.029290685430169106, + -0.004023931920528412, + -0.008442887105047703, + -0.010718693025410175, + 0.004504445008933544, + -0.018972910940647125, + -0.04018625244498253, + -0.00922114122658968, + 0.049572478979825974, + 0.012021680362522602, + 0.022946728393435478, + 0.035398807376623154, + -0.016897564753890038, + -0.027427589520812035, + -0.012145493179559708, + -0.011320071294903755, + 0.04881780967116356, + 0.02142559364438057, + -0.021130800247192383, + -0.06065671890974045, + -0.0241730697453022, + 0.040091920644044876, + 0.034196048974990845, + 0.027333255857229233, + 0.02867751568555832, + 0.03627139702439308, + -0.007570297922939062, + 0.03971458598971367, + -0.02272268570959568, + 0.00491715595126152, + 0.014892969280481339, + 0.011544114910066128, + 0.0003441714507061988, + 0.010317773558199406, + -0.003469719784334302, + 0.00917987059801817, + 0.0026870430447161198, + 0.0021136696450412273, + -0.012664330191910267, + -0.01140261348336935, + 0.004645945969969034, + 0.022781644016504288, + 0.005966620985418558, + 0.04018625244498253, + -0.0007981534581631422, + -0.017593277618288994, + 0.040893759578466415, + 0.01990445889532566, + -0.0007974164909683168, + 0.017711196094751358, + 0.02537582628428936, + 0.000467616249807179, + -0.02980952151119709, + -0.012475661933422089, + 0.01989266835153103, + 0.06801476329565048, + 0.0578266978263855, + 0.013890671543776989, + 0.01886678673326969, + 0.004925999790430069, + -0.02254580892622471, + 0.003681971225887537, + 0.005061605013906956, + 0.023158980533480644, + -0.01192145049571991, + 0.007251921109855175, + 0.009592581540346146, + -0.014786843210458755, + 0.0027607413940131664, + -0.0009278626530431211, + 0.011137299239635468, + 0.016166476532816887, + 0.01111961156129837, + -0.008148092776536942, + 0.006562103983014822, + -0.01660277135670185, + 0.007257816847413778, + 0.01725131832063198, + 0.009728186763823032, + 0.011485155671834946, + -0.0008777477196417749, + -0.026885170489549637, + -0.03044627606868744, + 0.03223862126469612, + -0.13291651010513306, + 0.022215640172362328, + 0.0023347646929323673, + -0.011933241970837116, + -0.020022377371788025, + -0.036931734532117844, + -0.049572478979825974, + -0.03973816707730293, + -0.01900828629732132, + 0.017923446372151375, + -0.021331259980797768, + 0.02069450542330742, + -0.025823913514614105, + -0.003410761244595051, + 0.03325270861387253, + 0.03188486769795418, + 0.007865091785788536, + -0.041860681027173996, + 0.0009698707144707441, + -0.014739676378667355, + 0.03190845251083374, + 0.01281762309372425, + -0.007741278037428856, + 0.03325270861387253, + 0.029267102479934692, + -0.0030570088420063257, + 0.0380401574075222, + 0.028182262554764748, + -0.002368665998801589, + -0.006078642792999744, + 0.043370023369789124, + -0.04985548183321953, + 0.010170376859605312, + -0.00212693540379405, + 0.06480740755796432, + -0.012511037290096283, + -0.0015417701797559857, + -0.00018489081412553787, + 0.01732206717133522, + -0.022758061066269875, + -0.014999095350503922, + -0.009975813329219818, + -0.012723288498818874, + 0.04702546447515488, + -0.008590283803641796, + -0.013996796682476997, + -0.024691905826330185, + -0.01225161924958229, + -0.005329866893589497, + -0.023701399564743042, + -0.016225436702370644, + -0.0010693635558709502, + 0.008065550588071346, + 0.0043953717686235905, + 0.03124811500310898, + -0.029031267389655113, + -0.017098024487495422, + -0.008036071434617043, + -0.014633551239967346, + 0.039195746183395386, + 0.016697105020284653, + -0.007358046714216471, + 0.05117615684866905, + 0.003628908423706889, + 0.0021903158631175756, + 0.019196955487132072, + -0.009468767791986465, + -0.02723892219364643, + -0.01571839116513729, + -0.02584749646484852, + -0.006703604944050312, + 0.002134305192157626, + -0.0084605747833848, + 0.010317773558199406, + 0.0296444371342659, + 0.03131886571645737, + -0.013466168195009232, + 0.0009882953017950058, + 0.014739676378667355, + 0.029526520520448685, + -0.00922703742980957, + 0.03643647953867912, + -0.03952591493725777, + 0.06702426075935364, + -0.007116315886378288, + -0.04200218245387077, + 0.014079338870942593, + 0.05358167365193367, + 0.012404912151396275, + -0.0009035421535372734, + 0.020482255145907402, + 0.008761263452470303, + -0.020682714879512787, + 0.027899259701371193, + -0.020812423899769783, + 0.018501242622733116, + -0.04221443459391594, + 0.011261112987995148, + -0.034927137196063995, + 0.04645945876836777, + -0.0009131229599006474, + -0.026036163792014122, + -0.033724378794431686, + 0.00007881120836827904, + 0.0015992549015209079, + 0.02103646658360958, + -0.027026670053601265, + -0.03591764345765114, + 0.007812028750777245, + 0.029833106324076653, + -0.04176634922623634, + -0.027215339243412018, + 0.01563584804534912, + 0.0009860843420028687, + -0.005203105974942446, + 0.015411806292831898, + 0.0087789511308074, + 0.010807130485773087, + 0.008378032594919205, + 0.018630951642990112, + -0.03695531561970711, + 0.013336459174752235, + 0.002763689262792468, + 0.026389917358756065, + 0.026861585676670074, + 0.006621062755584717, + -0.027168171480298042, + 0.03690814971923828, + 0.030469859018921852, + 0.0027327360585331917, + 0.004245026968419552, + -0.005907662212848663, + -0.008289594203233719, + 0.006874585058540106, + 0.01353691890835762, + -0.0035168868489563465, + 0.010465170256793499, + 0.04061075672507286, + -0.04035133868455887, + 0.02530507743358612, + -0.032097119837999344, + 0.018878577277064323, + 0.05405334010720253, + -0.017911655828356743, + -0.00007913363515399396, + -0.005105823744088411, + -0.004707852844148874, + -0.004469070117920637, + 0.02197980508208275, + -0.026154082268476486, + 0.03763923794031143, + 0.0016611615428701043, + -0.03443188592791557, + 0.006385227665305138, + 0.010907360352575779, + -0.027569090947508812, + -0.004849353805184364, + 0.029526520520448685, + -0.017298484221100807, + 0.03393663093447685, + 0.010995798744261265, + -0.02780492603778839, + 0.009698707610368729, + -0.01789986342191696, + -0.005150042939931154, + -0.02399619296193123, + 0.011213946156203747, + -0.02176755480468273, + 0.007965321652591228, + 0.011715094558894634, + -0.04714338108897209, + -0.002129883272573352, + 0.011815324425697327, + 0.015400013886392117, + 0.019692208617925644, + -0.0012167602544650435, + 0.011850699782371521, + 0.00775306997820735, + 0.008254218846559525, + -0.013737378641963005, + -0.012794039212167263, + -0.02399619296193123, + 0.0024512081872671843, + -0.022781644016504288, + -0.015541515313088894, + 0.03905424848198891, + -0.008908660151064396, + 0.012664330191910267, + -0.005462524015456438, + -0.024951323866844177, + 0.010736380703747272, + -0.015576890669763088, + 0.013784545473754406, + 0.010364940389990807, + -0.011184467002749443, + -0.053204335272312164, + -0.016013184562325478, + -0.000534313265234232, + 0.01611931063234806, + 0.023713191971182823, + 0.033630046993494034, + -0.012947332113981247, + 0.006974814925342798, + -0.004586987197399139, + 0.02029358595609665, + 0.03181411698460579, + -0.010606671683490276, + -0.019527124240994453, + 0.015482556074857712, + 0.01685039885342121, + -0.01602497696876526, + 0.029620854184031487, + -0.048770640045404434, + -0.028087927028536797, + 0.000732930435333401, + -0.016532020643353462, + 0.021449176594614983, + -0.01075406838208437, + 0.006597479339689016, + 0.012416703626513481, + 0.0020547108724713326, + -0.005435992497950792, + 0.037827905267477036, + 0.0005578967393375933, + 0.027427589520812035, + 0.005368190351873636, + 0.039761751890182495, + 0.000379915174562484, + -0.0525439977645874, + 0.012169077061116695, + 0.010759963653981686, + -0.010017083957791328, + -0.009964020922780037, + -0.017534319311380386, + 0.006809730548411608, + 0.018147489055991173, + 0.00587818305939436, + 0.0006887114141136408, + 0.011856595985591412, + 0.01787628047168255, + 0.01515238732099533, + 0.025352243334054947, + -0.00018304835248272866, + 0.03341779485344887, + -0.027899259701371193, + 0.027663424611091614, + -0.05914737284183502, + 0.030328359454870224, + -0.03662514686584473, + 0.01725131832063198, + -0.0241730697453022, + 0.003189665963873267, + 0.02069450542330742, + -0.005102876108139753, + -0.05018565058708191, + -0.031460367143154144, + -0.02335944026708603, + -0.013949629850685596, + -0.0449737012386322, + -0.01652023009955883, + 0.006738980300724506, + 0.03360646218061447, + 0.023819318041205406, + 0.009716394357383251, + 0.009362642653286457, + -0.007924050092697144, + -0.003048165002837777, + 0.020894965156912804, + 0.012192660011351109, + 0.028488846495747566, + 0.010871984995901585, + -0.04252101853489876, + 0.013961421325802803, + -0.021460969001054764, + 0.01788807101547718, + -0.03631856292486191, + -0.0032250413205474615, + -0.008719992823898792, + 0.06928826868534088, + 0.0076410481706261635, + -0.028559597209095955, + 0.02055300585925579, + 0.07636331766843796, + -0.03160186484456062, + -0.009716394357383251, + 0.005029177758842707, + -0.004469070117920637, + 0.04280402138829231, + 0.0019058402394875884, + 0.008678721264004707, + -0.006149393040686846, + 0.05617585405707359, + -0.015517931431531906, + -0.022097723558545113, + 0.010294189676642418, + -0.024314571171998978, + 0.011379030533134937, + -0.010907360352575779, + 0.018630951642990112, + 0.041129592806100845, + 0.028300179168581963, + -0.008230634965002537, + 0.01773477904498577, + -0.022192057222127914, + -0.012033471837639809, + 0.01700369082391262, + -0.002858023392036557, + 0.0262719988822937, + 0.041601262986660004, + -0.021449176594614983, + -0.024125901982188225, + -0.008607971481978893, + -0.006638750433921814, + 0.01910261996090412, + 0.007222441490739584, + 0.03587047755718231, + -0.008920452557504177, + 0.010948631912469864, + -0.03280462324619293, + -0.020081335678696632, + -0.010270606726408005, + 0.011349551379680634, + -0.012758663855493069, + 0.016142893582582474, + -0.028135094791650772, + 0.021708596497774124, + -0.06235472857952118, + 0.027993593364953995, + -0.007652840111404657, + -0.003696710802614689, + 0.02931426838040352, + 0.01268791314214468, + 0.015765558928251266, + -0.0005818487261421978, + 0.02601258084177971, + 0.0019721686840057373, + 0.008006592281162739, + -0.010759963653981686, + -0.010164480656385422, + 0.013513335026800632, + -0.0054861074313521385, + -0.011614864692091942, + -0.014916553162038326, + 0.016048559918999672, + -0.0018793087219819427, + -0.025823913514614105, + -0.00933905877172947, + -0.003823472186923027, + -0.003882430726662278, + 0.009126807563006878, + 0.014857593923807144, + -0.035092223435640335, + -0.02683800272643566, + -0.010453378781676292, + -0.02874826453626156, + 0.019786542281508446, + 0.013124207966029644, + -0.005126459524035454, + -0.028819015249609947, + -0.026389917358756065, + -0.01179763674736023, + -0.010524129495024681, + -0.0025868131779134274, + 0.03061136044561863, + 0.00702787796035409, + -0.019079037010669708, + 0.0051205637864768505, + -0.056836191564798355, + -0.027003087103366852, + -0.009869687259197235, + 0.041860681027173996, + 0.023418398573994637, + 0.01571839116513729, + 0.0066505419090390205, + -0.0276398416608572, + 0.01268791314214468, + -0.00922703742980957, + 0.021897263824939728, + 0.012334161438047886, + 0.011538218706846237, + 0.01981012523174286, + 0.029620854184031487, + 0.003590585198253393, + -0.05358167365193367, + 0.0018660430796444416, + -0.00983431190252304, + -0.004124161321669817, + -0.013218541629612446, + 0.006450082641094923, + -0.0017127504106611013, + -0.006491353735327721, + -0.006497249472886324, + 0.001051675877533853, + 0.007682319264858961, + 0.003340010764077306, + -0.01253462117165327, + 0.015647640451788902, + 0.057166360318660736, + 0.013289292342960835, + -0.027498340234160423, + -0.01080123521387577, + -0.0012948806397616863, + -0.00531807541847229, + 0.023548107594251633, + 0.015930643305182457, + -0.03313479200005531, + 0.0018527773208916187, + -0.02457398921251297, + 0.028135094791650772, + -0.0013523653615266085, + 0.016414104029536247, + -0.011255216784775257, + 0.022746268659830093, + 0.041601262986660004, + -0.017852695658802986, + 0.0076705277897417545, + -0.028488846495747566, + -0.010129105299711227, + 0.0023126553278416395, + 0.01611931063234806, + 0.009362642653286457, + -0.007010190282016993, + -0.003248624736443162, + 0.02054121345281601, + 0.0036849190946668386, + -0.011709199286997318, + -0.01966862380504608, + 0.03407813236117363, + -0.01731027662754059, + 0.0077471742406487465, + -0.0017776050372049212, + 0.0040681506507098675, + -0.017098024487495422, + -0.0053416588343679905, + -0.0297387707978487, + -0.0027091526426374912, + 0.009445184841752052, + -0.006208351813256741, + 0.0014555430971086025, + 0.013336459174752235, + 0.02206234820187092, + 0.003210301510989666, + 0.04398319497704506, + -0.002613344695419073, + 0.03143678233027458, + -0.008708201348781586, + 0.005692462902516127, + 0.03261595591902733, + 0.05518534779548645, + 0.013230334036052227, + -0.015046262182295322, + -0.029927439987659454, + 0.001902892254292965, + 0.014150089584290981, + -0.0018852046923711896, + -0.006573895923793316, + -0.0007797288708388805, + 0.009857895784080029, + -0.011208049952983856, + -0.004206703510135412, + 0.014739676378667355, + 0.005008541978895664, + 0.007216545753180981, + -0.012876581400632858, + -0.009480560198426247, + 0.011113716289401054, + -0.01498730294406414, + 0.012746872380375862, + 0.03643647953867912, + -0.016378728672862053, + 0.01510522048920393, + 0.013784545473754406, + -0.027993593364953995, + -0.04004475474357605, + -0.017522526904940605, + 0.010612566955387592, + 0.02262835204601288, + 0.03334704414010048, + 0.018571993336081505, + 0.013430792838335037, + -0.010241127572953701, + -0.010199856013059616, + 0.05042148381471634, + -0.024114111438393593, + 0.04480861499905586, + -0.0311066135764122, + -0.005406513344496489, + 0.006827418226748705, + 0.007953529246151447, + -0.0038588473107665777, + -0.012452078983187675, + -0.01716877520084381, + 0.010813026688992977, + -0.012381328269839287, + -0.0426861047744751, + -0.032993290573358536, + 0.017192358151078224, + -0.038393910974264145, + -0.020104918628931046, + 0.007694111205637455, + 0.013595878146588802, + -0.005612868815660477, + 0.011302383616566658, + -0.03910141438245773, + 0.009769457392394543, + 0.0004871463170275092, + -0.033488545566797256, + -0.0042096516117453575, + -0.03655439615249634, + 0.0038352638948708773, + -0.009698707610368729, + -0.04341719299554825, + -0.022451475262641907, + -0.050232816487550735, + -0.019196955487132072, + 0.043299272656440735, + 0.018182864412665367, + 0.031955618411302567, + -0.004421902820467949, + 0.014751468785107136, + 0.015494348481297493, + -0.0029214038513600826, + 0.011750469915568829, + -0.01715698279440403, + -0.013183166272938251, + 0.0060019963420927525, + -0.007977113127708435, + -0.006709500681608915, + 0.014268007129430771, + -0.020930340513586998, + 0.025894664227962494, + -0.0024364686105400324, + 0.028323762118816376, + -0.008631554432213306, + -0.0019397414289414883, + -0.0006758141680620611, + 0.013737378641963005, + 0.033229127526283264, + -0.005718994420021772, + 0.024550404399633408, + 0.03681381791830063, + 0.0010767333442345262, + -0.00719296233728528, + 0.01482221856713295, + 0.010164480656385422, + -0.019845500588417053, + -0.016072142869234085, + -0.028960516676306725, + -0.015659432858228683, + -0.03933724761009216, + -0.035257305949926376, + 0.02005775272846222, + -0.01522313803434372, + -0.00048456687363795936, + -0.04320494085550308, + -0.02473907358944416, + 0.027168171480298042, + 0.03171978518366814, + -0.019149787724018097, + 0.01433875784277916, + -0.0022625403944402933, + -0.046600960195064545, + -0.011656136251986027, + 0.003227989189326763, + 0.0057366820983588696, + -0.030564192682504654, + 0.024149486795067787, + -0.018253615126013756, + 0.02327689714729786, + -0.015458973124623299, + -0.02176755480468273, + -0.028158677741885185, + -0.002349504502490163, + -0.02023462764918804, + 0.0018925744807347655, + 0.03615348041057587, + 0.011791741475462914, + 0.019562499597668648, + 0.029927439987659454, + 0.03200278431177139, + -0.006904064677655697, + -0.030021773651242256, + -0.010111418552696705, + 0.01196861732751131, + 0.0015933590475469828, + -0.0025764955207705498, + 0.017994197085499763, + -0.004472017753869295, + -0.030729277059435844, + 0.022121306508779526, + -0.00026826211251318455, + 0.016862189397215843, + 0.011154986917972565, + 0.014397716149687767, + 0.008419303223490715, + 0.011567697860300541, + 0.021708596497774124, + 0.005851651541888714, + -0.05169499292969704, + 0.013760962523519993, + 0.02401977777481079, + -0.02109542489051819, + 0.016402311623096466, + 0.022781644016504288, + 0.03490355238318443, + 0.0169211495667696, + 0.030823612585663795, + -0.004766811616718769, + -0.020199252292513847, + 0.01950353942811489, + -0.02279343642294407, + -0.007953529246151447, + 0.0384882427752018, + -0.03247445449233055, + -0.0004727751365862787, + 0.019468164071440697, + -0.028087927028536797, + 0.019550707191228867, + -0.01642589643597603, + 0.019963417202234268, + -0.060468047857284546, + -0.031130196526646614, + -0.018831411376595497, + -0.015576890669763088, + -0.04355869069695473, + 0.006444186437875032, + 0.0029214038513600826, + -0.015930643305182457, + -0.008519533090293407, + 0.0011121085844933987, + 0.007163482718169689, + 0.003611220745369792, + 0.02464473992586136, + 0.020836006850004196, + -0.00295088323764503, + 0.01225161924958229, + 0.004324621055275202, + -0.01756969466805458, + -0.009008890017867088, + 0.023654233664274216, + -0.029597271233797073, + 0.0063970196060836315, + 0.008767159655690193, + -0.018548408523201942, + -0.016885774210095406, + 0.022463267669081688, + -0.002603026805445552, + -0.03054060973227024, + 0.01643768697977066, + -0.037167567759752274, + -0.009610269218683243, + -0.023135395720601082, + 0.0006953442352823913, + 0.0012219191994518042, + 0.005630556493997574, + 0.02570599503815174, + 0.047662217170000076, + 0.02022283710539341, + -0.0380401574075222, + -0.02867751568555832, + 0.012404912151396275, + 0.004675425589084625, + 0.00935085117816925, + -0.013572294265031815, + 0.02488057315349579, + 0.044336948543787, + -0.028536014258861542, + 0.024691905826330185, + -0.038464661687612534, + -0.043063439428806305, + -0.0009477612329646945, + 0.00917987059801817, + -0.025399411097168922, + 0.03214428573846817, + 0.03615348041057587, + -0.02183830551803112, + -0.015447180718183517, + -0.016166476532816887, + -0.00917987059801817, + 0.009474663995206356, + 0.017510736361145973, + 0.005913558416068554, + -0.01398500520735979, + -0.03747415542602539, + -0.016131101176142693, + -0.03414888307452202, + 0.019928041845560074, + 0.011897866614162922, + -0.008560803718864918, + 0.0052620647475123405, + -0.0019706948660314083, + -0.01095452718436718, + -0.005424201022833586, + 0.019208746030926704, + -0.0045398203656077385, + -0.00894993171095848, + -0.02014029398560524, + 0.02488057315349579, + -0.006709500681608915, + 0.021083632484078407, + 0.009244725108146667, + -0.008071446791291237, + -0.00025886556250043213, + -0.014350549317896366, + 0.05711919441819191, + -0.017215942963957787, + -0.006933543831110001, + -0.01325391698628664, + -0.0019191058818250895, + -0.041129592806100845, + -0.002129883272573352, + 0.008814326487481594, + 0.04254460334777832, + 0.001322885975241661, + 0.006674125324934721, + 0.017546111717820168, + 0.012829414568841457, + 0.0037173463497310877, + 0.013619461096823215, + -0.00359648116864264, + -0.028559597209095955, + -0.011709199286997318, + -0.01078944280743599, + -0.018513033166527748, + -0.010594879277050495, + 0.0169211495667696, + 0.034196048974990845, + -0.011591281741857529, + -0.032356537878513336, + -0.0009779775282368064, + 0.02787567675113678, + -0.03617706149816513, + 0.023972610011696815, + -0.016708897426724434, + 0.01466892659664154, + 0.021366635337471962, + -0.005267960485070944, + 0.011013486422598362, + -0.0310122799128294, + -0.008961723186075687, + -0.0022360088769346476, + 0.02570599503815174, + 0.0338422991335392, + 0.00419196393340826, + -0.0027990646194666624, + 0.0027474756352603436, + -0.008000696077942848, + 0.0065385205671191216, + 0.026319166645407677, + -0.00509698037058115, + -0.015683015808463097, + -0.011768157593905926, + -0.010966319590806961, + -0.009863791987299919, + -0.0074170054867863655, + 0.030917946249246597, + -0.021956222131848335, + 0.005769109353423119, + 0.014161881059408188, + -0.005329866893589497, + 0.006479561794549227, + 0.015647640451788902, + -0.028465263545513153, + -0.014468466863036156, + 0.05537401884794235, + 0.04405394569039345, + 0.024196652695536613, + 0.01708623394370079, + 0.020081335678696632, + -0.024691905826330185, + 0.00008355554018635303, + 0.0015933590475469828, + -0.04848764091730118, + 0.006786147132515907, + 0.0010295663960278034, + -0.04549253731966019, + -0.024031568318605423, + 0.012994498945772648, + -0.00026734088896773756, + 0.05013848468661308, + -0.021543512120842934, + -0.006049163173884153, + -0.013501543551683426, + 0.012003992684185505, + 0.011054757051169872, + -0.03271029144525528, + -0.0034844595938920975, + -0.018477657809853554, + 0.018017780035734177, + -0.016815023496747017, + 0.02860676497220993, + 0.015234929509460926, + -0.030752861872315407, + 0.02262835204601288, + -0.014751468785107136, + 0.025965414941310883, + -0.013018081896007061, + -0.011172674596309662, + 0.0017997145187109709, + -0.002283175941556692, + -0.0015741974348202348, + -0.007458276581019163, + 0.04728488251566887, + 0.0014356444589793682, + 0.023489149287343025, + -0.02933785319328308, + -0.021637845784425735, + -0.010836610570549965, + 0.018642742186784744, + -0.005884078796952963, + -0.008407511748373508, + 0.012664330191910267, + 0.01940920576453209, + 0.009415705688297749, + -0.04002116993069649, + 0.016319770365953445, + 0.03054060973227024, + -0.006632854230701923, + -0.03223862126469612, + 0.02450323849916458, + 0.017546111717820168, + -0.005076344590634108, + 0.004206703510135412, + -0.03445546701550484, + 0.014456674456596375, + 0.022899560630321503, + 0.03304046019911766, + -0.020894965156912804, + -0.008254218846559525, + 0.012145493179559708, + -0.02134305238723755, + 0.0056394003331661224, + -0.01722773350775242, + -0.011608969420194626, + -0.015317471697926521, + 0.023724982514977455, + 0.012782247737050056 + ] + }, + { + "HotelId": "44", + "HotelName": "Friendly Motor Inn", + "Description": "Close to historic sites, local attractions, and urban parks. Free Shuttle to the airport and casinos. Free breakfast and WiFi.", + "Description_fr": "ƀ proximitĆ© des sites historiques, des attractions locales et des parcs urbains. Navette gratuite pour l'aĆ©roport et les casinos. Petit dĆ©jeuner gratuit et WiFi.", + "Category": "Budget", + "Tags": [ + "24-hour front desk service", + "continental breakfast", + "free wifi" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-07-12T00:00:00Z", + "Rating": 2.7, + "Address": { + "StreetAddress": "3401 Nicholasville Rd", + "City": "Lexington", + "StateProvince": "KY", + "PostalCode": "40503", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -84.527771, + 37.989769 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 King Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 159.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 104.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 127.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 109.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 234.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 159.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Suite, 1 King Bed (Cityside)", + "Description_fr": "Suite, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 76.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 66.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "bathroom shower" + ] + } + ], + "embedding": [ + -0.028792476281523705, + -0.043324101716279984, + 0.007638129405677319, + 0.03224486485123634, + -0.014452650211751461, + -0.03411773219704628, + 0.005282945465296507, + 0.047611381858587265, + 0.010904360562562943, + 0.02127845212817192, + -0.04436207562685013, + 0.03594546765089035, + -0.004084199201315641, + 0.029988402500748634, + -0.023963643237948418, + 0.01932661049067974, + -0.07459869235754013, + 0.05632133409380913, + 0.02409903146326542, + 0.010616661980748177, + 0.03197408840060234, + 0.011169495061039925, + -0.023895950987935066, + -0.036532144993543625, + 0.023399528115987778, + 0.02448263019323349, + -0.02831861935555935, + -0.014836248941719532, + 0.03770550712943077, + -0.01712655834853649, + -0.013922381214797497, + -0.03689318150281906, + 0.01507317740470171, + 0.002575189108029008, + 0.027619116008281708, + -0.010108957067131996, + -0.011959257535636425, + 0.01142898853868246, + 0.043459489941596985, + 0.002317106118425727, + 0.033260274678468704, + 0.025249827653169632, + 0.013380829244852066, + -0.052034053951501846, + -0.0387660451233387, + -0.01463316660374403, + -0.004448053892701864, + -0.04030044004321098, + -0.021188193932175636, + 0.0384952686727047, + -0.06764878332614899, + -0.03781833127140999, + -0.02813810110092163, + -0.05740443617105484, + -0.023376964032649994, + 0.04765651375055313, + 0.039623502641916275, + -0.03617111220955849, + -0.019935855641961098, + -0.002972890855744481, + 0.03820192813873291, + -0.011406423524022102, + 0.06439947336912155, + 0.07947265356779099, + -0.0035003393422812223, + 0.04706983268260956, + 0.03226742893457413, + 0.00586680555716157, + -0.04752112552523613, + -0.009674588218331337, + 0.04005223140120506, + 0.017634263262152672, + -0.03071046993136406, + -0.043955910950899124, + 0.013504935428500175, + 0.0075083826668560505, + 0.008174039423465729, + -0.02430211380124092, + -0.023196445778012276, + -0.0059739877469837666, + -0.009922798722982407, + -0.016133714467287064, + -0.004653956275433302, + 0.026445753872394562, + 0.02479853481054306, + -0.03714139014482498, + -0.015028048306703568, + 0.0020999214611947536, + -0.010588455945253372, + 0.04851396754384041, + 0.03377925977110863, + 0.028296055272221565, + 0.0062221987172961235, + -0.04305332526564598, + -0.03084585815668106, + 0.03186126798391342, + 0.02177487500011921, + -0.005508591886609793, + -0.0021831286139786243, + 0.009183807298541069, + 0.019055835902690887, + -0.10217267274856567, + 0.007982240058481693, + 0.0006628361879847944, + 0.016020892187952995, + -0.05790085718035698, + 0.007593000307679176, + 0.009076625108718872, + 0.050183750689029694, + 0.02750629186630249, + -0.09486173093318939, + -0.00812326930463314, + -0.026761658489704132, + 0.03872091695666313, + -0.03386951982975006, + 0.04059378057718277, + 0.0005136980325914919, + -0.03129715099930763, + -0.0188301894813776, + 0.017837345600128174, + -0.005658082664012909, + -0.012387985363602638, + -0.013978792354464531, + -0.021944109350442886, + 0.0009660485084168613, + -0.05568952485918999, + -0.02497905306518078, + 0.06205274909734726, + -0.023625174537301064, + -0.018672237172722816, + -0.03084585815668106, + 0.011276677250862122, + 0.021199475973844528, + -0.03966863080859184, + 0.015501905232667923, + 0.015603446401655674, + 0.026400625705718994, + -0.011722329072654247, + -0.02247437834739685, + -0.0534781888127327, + 0.04129328578710556, + 0.006278610322624445, + 0.05568952485918999, + -0.014294696971774101, + -0.01611115038394928, + 0.005266021937131882, + 0.058893702924251556, + 0.008365838788449764, + -0.010464350692927837, + 0.09422992169857025, + 0.007265813183039427, + 0.030304307118058205, + -0.007068372331559658, + -0.012354138307273388, + -0.08051062375307083, + 0.007310942281037569, + -0.011350012384355068, + -0.00348623632453382, + -0.02378312684595585, + 0.02298208326101303, + -0.0171829704195261, + 0.014678295701742172, + -0.033892083913087845, + 0.015558317303657532, + 0.019676363095641136, + -0.017205536365509033, + -0.04160919040441513, + 0.03770550712943077, + -0.07035654038190842, + -0.032132044434547424, + 0.03197408840060234, + -0.028657088056206703, + -0.006639644503593445, + 0.055554136633872986, + 0.006690414622426033, + 0.04030044004321098, + -0.007062731310725212, + 0.02096254751086235, + 0.015366517938673496, + -0.0052237133495509624, + 0.019529692828655243, + -0.010842307470738888, + 0.056185945868492126, + 0.019112247973680496, + 0.004820370581001043, + 0.011541811749339104, + -0.022948235273361206, + 0.01612243242561817, + -0.01958610489964485, + 0.01572755165398121, + -0.007655052933841944, + 0.00017893052427098155, + -0.012173621915280819, + 0.030507389456033707, + 0.004961399361491203, + 0.0386306568980217, + -0.02895042859017849, + -0.039442986249923706, + 0.025407779961824417, + -0.013268006034195423, + -0.03894656151533127, + -0.028927864506840706, + 0.02385082095861435, + -0.019879445433616638, + -0.020161502063274384, + -0.07509510964155197, + 0.0059852697886526585, + 0.022553354501724243, + 0.02700987085700035, + -0.016020892187952995, + -0.006069887429475784, + -0.0314776673913002, + 0.02246309630572796, + 0.002579420106485486, + 0.003734447294846177, + 0.007796082179993391, + -0.0029136587399989367, + 0.03197408840060234, + 0.0450841449201107, + 0.02441493608057499, + 0.003133663907647133, + -0.024008773267269135, + -0.005257560405880213, + 0.04273742064833641, + 0.029311463236808777, + 0.032763853669166565, + -0.007762235123664141, + -0.05311715602874756, + 0.009460223838686943, + -0.052530474960803986, + 0.027619116008281708, + 0.0048372941091656685, + -0.04248921200633049, + -0.014576755464076996, + -0.03788602352142334, + 0.04059378057718277, + 0.005305510014295578, + -0.04348205402493477, + -0.0057370588183403015, + 0.012737737037241459, + -0.04488106071949005, + -0.05943525210022926, + -0.01218490395694971, + 0.03524596244096756, + 0.06507641077041626, + -0.004716008901596069, + 0.002129537519067526, + -0.03750242665410042, + 0.07694540917873383, + -0.024256983771920204, + -0.03583264350891113, + -0.0035736742429435253, + -0.02096254751086235, + -0.016878347843885422, + 0.04603185877203941, + -0.012545937672257423, + -0.00586680555716157, + -0.01215105690062046, + 0.06024758145213127, + -0.04262460023164749, + 0.0449487566947937, + 0.03296693414449692, + -0.0019645337015390396, + -0.005691929720342159, + 0.027348339557647705, + -0.007451971061527729, + -0.032560769468545914, + -0.003466492285951972, + -0.01774708740413189, + -0.02768680825829506, + -0.06435434520244598, + -0.0040785581804811954, + -0.031432539224624634, + 0.0017374770250171423, + 0.014994201250374317, + -0.03878860920667648, + -0.031048940494656563, + 0.0034608510322868824, + 0.00679759681224823, + -0.008935595862567425, + -0.0430307611823082, + -0.011598222889006138, + 0.03513313829898834, + 0.0216507688164711, + 0.026039591059088707, + 0.013482370413839817, + 0.039239902049303055, + 0.00971971731632948, + -0.02958223782479763, + -0.015693705528974533, + -0.03576494753360748, + -0.004529851023107767, + -0.03474954143166542, + -0.04607698693871498, + 0.013403394259512424, + 0.04221843555569649, + 0.036283936351537704, + 0.0015047792112454772, + 0.028476571664214134, + -0.003551109693944454, + 0.036599840968847275, + 0.04828832298517227, + -0.04582877829670906, + -0.012105927802622318, + 0.0014695220161229372, + 0.02493392303586006, + -0.02497905306518078, + -0.02285797707736492, + -0.007068372331559658, + -0.01211720984429121, + -0.02637805975973606, + 0.0391722097992897, + 0.0361485481262207, + -0.052846379578113556, + 0.011248471215367317, + 0.045670825988054276, + -0.02215847373008728, + 0.02147025242447853, + 0.020939983427524567, + -0.02971762605011463, + 0.03696087375283241, + 0.008151475340127945, + 0.06891240179538727, + -0.022993365302681923, + -0.030665341764688492, + -0.03240281715989113, + 0.08132295310497284, + 0.02687448263168335, + -0.007028884254395962, + -0.0216507688164711, + 0.026107285171747208, + -0.016144998371601105, + 0.024279549717903137, + 0.004603185690939426, + -0.031432539224624634, + 0.017070148140192032, + -0.05275611951947212, + -0.01927020028233528, + -0.009353041648864746, + 0.03321514651179314, + 0.0006145337829366326, + 0.0007784799672663212, + -0.03639676049351692, + -0.0007777748396620154, + -0.004955758340656757, + -0.01964251697063446, + -0.04587390646338463, + 0.036216240376234055, + 0.03840501233935356, + 0.03456902503967285, + -0.058261893689632416, + 0.020409714430570602, + -0.032199736684560776, + 0.011981821618974209, + -0.022384120151400566, + -0.016957323998212814, + 0.03032687120139599, + -0.016720395535230637, + 0.007581717800348997, + 0.05641159042716026, + 0.01950712874531746, + 0.013222876936197281, + 0.024144161492586136, + -0.01850300282239914, + 0.04334666579961777, + -0.003926246892660856, + -0.03499775007367134, + 0.020477408543229103, + -0.0217861570417881, + 0.009059702046215534, + 0.010261268354952335, + 0.026581142097711563, + -0.013753145933151245, + 0.008134551346302032, + -0.023512352257966995, + 0.04896526038646698, + 0.01792760379612446, + 0.011620787903666496, + 0.030033530667424202, + -0.005229354370385408, + 0.031206892803311348, + -0.009550482034683228, + 0.024437502026557922, + 0.01391109824180603, + 0.08051062375307083, + -0.019349176436662674, + -0.013696734793484211, + -0.017025018110871315, + -0.023828256875276566, + 0.03296693414449692, + 0.008134551346302032, + -0.0012495167320594192, + -0.01211720984429121, + -0.04537748545408249, + 0.005911934655159712, + -0.01655116118490696, + 0.015016765333712101, + 0.01679937168955803, + -0.02631036564707756, + 0.0019504308002069592, + -0.02409903146326542, + -0.023760562762618065, + -0.03129715099930763, + 0.009736640378832817, + 0.012985948473215103, + -0.02673909440636635, + -0.011039748787879944, + -0.04048095643520355, + 0.024324677884578705, + 0.014768554829061031, + 0.026265237480401993, + -0.07951778173446655, + 0.029537109658122063, + -0.004614468198269606, + -0.03544904291629791, + 0.013076206669211388, + 0.0023185163736343384, + -0.011790022253990173, + 0.011790022253990173, + -0.024460066109895706, + 0.018469154834747314, + 0.006188351660966873, + -0.021763592958450317, + 0.02504674717783928, + -0.012094644829630852, + 0.040255311876535416, + 0.014102897606790066, + 0.018266072496771812, + -0.07838954776525497, + -0.02964993193745613, + 0.002061843639239669, + -0.0006303995614871383, + -0.011586940847337246, + 0.07405713945627213, + 0.03102637454867363, + 0.035471606999635696, + -0.02416672557592392, + -0.0024962129537016153, + -0.009048419073224068, + 0.004955758340656757, + -0.007305301260203123, + -0.02479853481054306, + -0.026784224435687065, + 0.0014723425265401602, + -0.007722747046500444, + -0.024956488981842995, + 0.03499775007367134, + 0.04973245784640312, + -0.028589393943548203, + -0.000498537439852953, + 0.020443560555577278, + -0.013471088372170925, + 0.014204438775777817, + 0.007000678684562445, + -0.019473280757665634, + 0.00377675611525774, + 0.021199475973844528, + -0.05406486988067627, + -0.0034946980886161327, + -0.013482370413839817, + 0.035539302974939346, + 0.001963123446330428, + -0.03696087375283241, + -0.01994713954627514, + 0.05577978119254112, + -0.03833731636404991, + -0.026581142097711563, + 0.027145257219672203, + 0.028589393943548203, + 0.010131522081792355, + -0.03693830966949463, + 0.0018432487268000841, + 0.03991684317588806, + 0.01428341493010521, + -0.0077453115954995155, + -0.059751156717538834, + 0.010831025429069996, + 0.009730999357998371, + 0.031252022832632065, + 0.024437502026557922, + -0.04986784607172012, + 0.05027401074767113, + -0.002111203735694289, + -0.011857716366648674, + 0.009747923351824284, + -0.025407779961824417, + 0.03165818378329277, + 0.03432081267237663, + -0.04986784607172012, + -0.002565317088738084, + -0.0004110994632355869, + 0.030687905848026276, + -0.0050798640586435795, + -0.009336118586361408, + -0.01167719904333353, + 0.00048055624938569963, + -0.05641159042716026, + 0.007175554521381855, + 0.039442986249923706, + -0.01888660155236721, + 0.03964606672525406, + -0.02002611570060253, + -0.03260590136051178, + 0.035088010132312775, + -0.005951422732323408, + 0.05262073129415512, + -0.023376964032649994, + -0.008258656598627567, + 0.012895690277218819, + -0.0369834378361702, + -0.0030913553200662136, + -0.00531961303204298, + -0.032560769468545914, + 0.019676363095641136, + 0.0020392790902405977, + 0.0390368215739727, + 0.0063575864769518375, + -0.007435047999024391, + -0.033756695687770844, + -0.033395662903785706, + -0.0009505352936685085, + -0.005065761040896177, + 0.012500808574259281, + -0.025024181231856346, + -0.018548130989074707, + 0.014159309677779675, + 0.018897883594036102, + -0.047746770083904266, + 0.016336796805262566, + -0.0035426479298621416, + -0.0020251760724931955, + -0.003892399836331606, + 0.00607552845031023, + 0.021549228578805923, + 0.027551421895623207, + 0.029537109658122063, + -0.0022508224938064814, + -0.023557480424642563, + 0.04882987216114998, + -0.03971375897526741, + 0.016314232721924782, + -0.03398234397172928, + -0.007305301260203123, + -0.02782219648361206, + -0.042331259697675705, + -0.03168075159192085, + -0.05180840566754341, + -0.0022296682000160217, + -0.013143900781869888, + -0.003867014544084668, + 0.012985948473215103, + 0.018988141790032387, + -0.010120239108800888, + -0.012850560247898102, + 0.022609766572713852, + -0.02655857801437378, + 0.02291438914835453, + -0.011445911601185799, + 0.007604282349348068, + 0.022417966276407242, + -0.05645672231912613, + 0.005367563106119633, + -0.014791118912398815, + 0.011163854040205479, + 0.026445753872394562, + -0.006538103334605694, + 0.03727677837014198, + 0.060021933168172836, + 0.03632906451821327, + -0.026784224435687065, + -0.019461998715996742, + 0.015885503962635994, + -0.004236510489135981, + 0.00026301905745640397, + 0.0032605899032205343, + -0.03689318150281906, + 0.011620787903666496, + -0.03914964571595192, + -0.02203436754643917, + 0.05257560312747955, + 0.015783963724970818, + -0.015129588544368744, + 0.014588037505745888, + 0.001898250076919794, + 0.02518213540315628, + -0.017826063558459282, + 0.04896526038646698, + -0.0028939147014170885, + 0.011846434324979782, + 0.0007375815766863525, + 0.015874221920967102, + 0.024392371997237206, + -0.012376703321933746, + -0.03034943714737892, + -0.019856879487633705, + -0.011536170728504658, + 0.008614050224423409, + 0.017025018110871315, + 0.005226533859968185, + 0.020793313160538673, + -0.004239330999553204, + -0.0313422791659832, + -0.04287280887365341, + -0.02191026136279106, + -0.01686706580221653, + 0.03497518599033356, + -0.07455355674028397, + -0.00607552845031023, + 0.03179357200860977, + -0.019902009516954422, + -0.0030490464996546507, + 0.006775032263249159, + 0.024347243830561638, + 0.0007375815766863525, + -0.002091459697112441, + 0.02883760631084442, + -0.028679654002189636, + -0.025475474074482918, + 0.002998276147991419, + -0.04851396754384041, + 0.027867326512932777, + -0.031184328719973564, + 0.013222876936197281, + 0.031567927449941635, + -0.00859148520976305, + 0.03192896023392677, + 0.005782187916338444, + -0.025723686441779137, + -0.017972733825445175, + -0.04594159871339798, + -0.0034721335396170616, + 0.05835215002298355, + 0.053839221596717834, + 0.013234158977866173, + -0.017961449921131134, + 0.014475214295089245, + -0.008354556746780872, + 0.0077453115954995155, + 0.0018192738061770797, + -0.013685451820492744, + -0.0172506645321846, + 0.0184917189180851, + 0.008873543702065945, + 0.007074013818055391, + 0.009838181547820568, + 0.022812847048044205, + 0.014813683927059174, + -0.023399528115987778, + 0.010949489660561085, + 0.02473084256052971, + -0.00278532225638628, + -0.0186948012560606, + 0.0157388336956501, + -0.004569339100271463, + -0.02612984925508499, + -0.0036836769431829453, + 0.019992267712950706, + 0.005291407462209463, + 0.01945071667432785, + 0.03795371949672699, + -0.005246277898550034, + 0.008512509055435658, + -0.05198892205953598, + 0.02015022002160549, + -0.0371188260614872, + 0.0018587619997560978, + 0.01920250616967678, + 0.02996583841741085, + -0.01362904068082571, + 0.010430503636598587, + 0.010853590443730354, + 0.0034946980886161327, + 0.00607552845031023, + -0.0057426998391747475, + -0.008636614307761192, + 0.0006272263708524406, + 0.017780933529138565, + 0.010554608888924122, + 0.015637293457984924, + 0.008580203168094158, + 0.006786314304918051, + 0.008253015577793121, + -0.06494102627038956, + 0.032560769468545914, + 0.0013912508729845285, + -0.014012639410793781, + -0.004919090773910284, + 0.007141707465052605, + 0.026400625705718994, + -0.04237638786435127, + -0.016280384734272957, + -0.0011014363262802362, + 0.015874221920967102, + -0.013674169778823853, + -0.0327187217772007, + -0.01649474911391735, + -0.0024482631124556065, + -0.02373799867928028, + 0.017137842252850533, + -0.08236092329025269, + -0.008450456894934177, + 0.014531626366078854, + 0.039691194891929626, + -0.021312300115823746, + 0.007316583301872015, + -0.046167246997356415, + 0.015152153559029102, + -0.0068765729665756226, + 0.0010196395451202989, + -0.0101371631026268, + 0.023196445778012276, + -0.059074219316244125, + -0.01463316660374403, + 0.02441493608057499, + -0.014373673126101494, + 0.026355495676398277, + -0.05275611951947212, + -0.01327928900718689, + 0.018299920484423637, + -0.02461801841855049, + -0.0030575082637369633, + 0.01832248456776142, + 0.022135907784104347, + -0.021131781861186028, + -0.02536265179514885, + -0.006419639103114605, + 0.006949908100068569, + -0.034907493740320206, + -0.018739931285381317, + 0.02807040885090828, + 0.005040375515818596, + -0.0072601716965436935, + 0.03799884766340256, + 0.015964480116963387, + -0.005432436242699623, + 0.011039748787879944, + -0.0005440192762762308, + 0.0012918254360556602, + -0.01895429566502571, + -0.008738155476748943, + 0.004862679168581963, + -0.023692868649959564, + -0.022496942430734634, + -0.028544265776872635, + 0.023557480424642563, + -0.00802172813564539, + 0.005697570741176605, + -0.022372838109731674, + -0.03700600564479828, + 0.00693862559273839, + -0.0025878818705677986, + 0.0064986152574419975, + 0.022068215534090996, + -0.03529109060764313, + -0.0007523896056227386, + -0.019304046407341957, + 0.02416672557592392, + 0.0461898110806942, + 0.004888064227998257, + -0.01117513608187437, + -0.029627367854118347, + 0.011790022253990173, + 0.02757398597896099, + 0.011225907132029533, + 0.03495262190699577, + -0.017408616840839386, + 0.01943943463265896, + -0.014723425731062889, + -0.028657088056206703, + 0.031048940494656563, + 0.024505196139216423, + -0.03177100792527199, + 0.004050352144986391, + 0.01792760379612446, + 0.031184328719973564, + -0.031364843249320984, + -0.013031077571213245, + -0.03461415320634842, + 0.02291438914835453, + -0.012444397434592247, + 0.007666335441172123, + 0.0015865759924054146, + 0.02235027216374874, + -0.007717105560004711, + -0.017916321754455566, + 0.03208691254258156, + -0.010182292200624943, + 0.01807427406311035, + 0.023151317611336708, + 0.001865813392214477, + 0.017701957374811172, + -0.00044212586362846196, + 0.02266617678105831, + -0.05122172459959984, + 0.002823400078341365, + -0.011028465814888477, + 0.0003737267979886383, + -0.009042778052389622, + 0.02933402732014656, + 0.03538135066628456, + 0.05216943845152855, + -0.007062731310725212, + 0.04506158083677292, + 0.02926633320748806, + 0.050003234297037125, + 0.021797439083456993, + -0.022677460685372353, + 0.0005817445344291627, + 0.013967510312795639, + -0.02788989059627056, + -0.014971636235713959, + 0.005012169945985079, + 0.022417966276407242, + 0.014655731618404388, + 0.009432017803192139, + 0.000628636684268713, + -0.028499135747551918, + 0.02233899012207985, + -0.03215460851788521, + -0.004738573916256428, + -0.04702470451593399, + 0.013110053725540638, + -0.004292922094464302, + 0.014046486467123032, + -0.002331209136173129, + -0.026784224435687065, + -0.021977955475449562, + 0.007384277414530516, + -0.01591935195028782, + -0.06439947336912155, + -0.015343952924013138, + 0.021876415237784386, + 0.0023551839403808117, + 0.015750115737318993, + 0.0035905977711081505, + 0.004952937830239534, + 0.04418155923485756, + 0.0340951643884182, + -0.004194201901555061, + 0.026084719225764275, + 0.004039070103317499, + 0.025633426383137703, + 0.007181195542216301, + 0.014452650211751461, + -0.04558056592941284, + 0.009454582817852497, + 0.01744246482849121, + 0.029853014275431633, + -0.0027966047637164593, + 0.01259106770157814, + 0.0009526507346890867, + -0.011214624159038067, + -0.007581717800348997, + -0.00697247264906764, + 0.005635518115013838, + 0.003762653097510338, + 0.013448523357510567, + -0.004391642287373543, + 0.03637419268488884, + -0.03535878658294678, + -0.006927343551069498, + -0.00837712176144123, + 0.019089682027697563, + 0.03260590136051178, + 0.0007911725551821291, + 0.020545100793242455, + 0.0017417079070582986, + 0.017070148140192032, + 0.027980148792266846, + 0.019924573600292206, + -0.029785320162773132, + -0.02788989059627056, + 0.013448523357510567, + 0.024708276614546776, + 0.023399528115987778, + 0.007429406512528658, + 0.018548130989074707, + 0.015580881386995316, + 0.03199665620923042, + -0.01868351921439171, + -0.0008729693945497274, + 0.022925671190023422, + 0.04734060913324356, + 0.032628465443849564, + -0.016889629885554314, + 0.040571216493844986, + 0.00338187487795949, + 0.027664244174957275, + 0.022451814264059067, + -0.0024454426020383835, + 0.0008927134331315756, + 0.05027401074767113, + 0.03757011890411377, + 0.010977695696055889, + -0.005787829402834177, + 0.01668654941022396, + 0.003627265337854624, + 0.04291794076561928, + -0.027303209528326988, + 0.02567855641245842, + -0.004814729560166597, + -0.037479862570762634, + -0.023173881694674492, + -0.023004647344350815, + 0.010797178372740746, + -0.00020731259428430349, + 0.01532138790935278, + 0.006617079488933086, + -0.026581142097711563, + -0.0067129796370863914, + 0.033892083913087845, + -0.04273742064833641, + -0.04422668740153313, + 0.011575658805668354, + -0.0029926348943263292, + 0.0215830747038126, + -0.03734447434544563, + -0.01692347787320614, + 0.008738155476748943, + 0.006425280123949051, + 0.032199736684560776, + 0.008850978687405586, + -0.061466071754693985, + 0.04612211883068085, + 0.005305510014295578, + 0.011970539577305317, + -0.028792476281523705, + 0.012827996164560318, + -0.016009610146284103, + 0.017352204769849777, + -0.020127655938267708, + 0.009133036248385906, + 0.007045807782560587, + 0.01681065373122692, + 0.04607698693871498, + -0.028521699830889702, + 0.04255690425634384, + -0.00600783433765173, + 0.02191026136279106, + -0.0417897067964077, + -0.0345013290643692, + 0.017837345600128174, + -0.021481534466147423, + -0.004699085373431444, + 0.01655116118490696, + 0.0028092972934246063, + 0.011502323672175407, + -0.0049783228896558285, + 0.012703889980912209, + -0.051582761108875275, + 0.019608668982982635, + 0.011790022253990173, + -0.019146094098687172, + 0.017600417137145996, + -0.01660757325589657, + 0.01924763433635235, + 0.021504098549485207, + 0.011914128437638283, + 0.01637064479291439, + 0.01824350841343403, + -0.002006842289119959, + 0.018356332555413246, + 0.013516217470169067, + -0.003511621616780758, + 0.04436207562685013, + 0.01755528710782528, + -0.0014667013892903924, + 0.03095868229866028, + -0.04420412331819534, + 0.03398234397172928, + 0.022248731926083565, + 0.00590065261349082, + -0.003198537277057767, + 0.014509061351418495, + -0.002930582268163562, + 0.03567469120025635, + 0.03359874337911606, + 0.0156711395829916, + 0.036667533218860626, + -0.016032174229621887, + 0.027393469586968422, + 0.04734060913324356, + 0.042083047330379486, + -0.01811940409243107, + -0.026536012068390846, + -0.007468894589692354, + -0.02430211380124092, + 0.019608668982982635, + 0.04819806292653084, + -0.024460066109895706, + -0.010058186948299408, + -0.01674295961856842, + 0.003421362955123186, + 0.023895950987935066, + -0.012579784728586674, + 0.02694217674434185, + 0.012816713191568851, + 0.017194252461194992, + -0.003864194033667445, + 0.027957584708929062, + -0.002817759057506919, + -0.0028417338617146015, + -0.03310232236981392, + -0.01025562733411789, + 0.03028174303472042, + 0.008862260729074478, + -0.003037764225155115, + 0.018739931285381317, + -0.028341183438897133, + -0.0405486524105072, + 0.0010478453477844596, + -0.02933402732014656, + 0.006103734020143747, + -0.0331248864531517, + -0.03813423588871956, + -0.03240281715989113, + 0.0023382604122161865, + -0.019236352294683456, + 0.022869259119033813, + 0.0342305526137352, + -0.03183870390057564, + 0.00949971191585064, + 0.03639676049351692, + -0.04271485656499863, + 0.019980985671281815, + -0.03790859133005142, + 0.026017026975750923, + -0.005181404761970043, + -0.004287281073629856, + 0.01129360031336546, + 0.015558317303657532, + 0.017419898882508278, + 0.014926507137715816, + 0.018288638442754745, + -0.001688116928562522, + 0.00007434871804434806, + -0.03199665620923042, + -0.029695061966776848, + -0.014294696971774101, + 0.0108592314645648, + -0.008670461364090443, + 0.015445494093000889, + -0.012297727167606354, + 0.020669206976890564, + -0.014046486467123032, + 0.034140296280384064, + 0.0035595714580267668, + 0.020037397742271423, + 0.02108665369451046, + -0.005810393951833248, + 0.003263410646468401, + -0.025881638750433922, + 0.01047563273459673, + -0.005751161836087704, + -0.0034552100114524364, + 0.03177100792527199, + -0.009691511280834675, + -0.0013630450703203678, + 0.01283927820622921, + -0.007440689019858837, + 0.04262460023164749, + -0.0022945415694266558, + -0.015186000615358353, + -0.05054478719830513, + 0.0060868109576404095, + -0.014903942123055458, + -0.009059702046215534, + -0.01047563273459673, + 0.007542229723185301, + 0.019157376140356064, + 0.01774708740413189, + 0.03177100792527199, + 0.011378218419849873, + -0.025137005373835564, + 0.007621205877512693, + -0.02246309630572796, + -0.006272968836128712, + -0.020624078810214996, + 0.0051108901388943195, + 0.03820192813873291, + 0.008450456894934177, + -0.0008017497602850199, + 0.010402297601103783, + 0.03549417480826378, + -0.025949332863092422, + 0.022993365302681923, + 0.038923997431993484, + 0.00004475466630537994, + 0.01507317740470171, + 0.003579315496608615, + -0.010063827969133854, + -0.024437502026557922, + -0.004501644987612963, + 0.037051133811473846, + -0.015896786004304886, + -0.012568502686917782, + 0.04318871349096298, + 0.03951067849993706, + 0.003308539744466543, + 0.021887697279453278, + 0.0037654738407582045, + 0.00751966517418623, + -0.02493392303586006, + -0.006904779002070427, + -0.014114180579781532, + -0.010300756432116032, + 0.00010251043568132445, + 0.004476259928196669, + -0.024211855605244637, + 0.009432017803192139, + 0.020037397742271423, + -0.017916321754455566, + 0.010588455945253372, + 0.012749020010232925, + -0.007621205877512693, + 0.005181404761970043, + -0.003401618916541338, + -0.002995455404743552, + 0.002669678535312414, + 0.0185594130307436, + 0.03468184545636177, + -0.01053768489509821, + -0.004448053892701864, + 0.0008271349361166358, + -0.014215720817446709, + -0.003627265337854624, + -0.010407938621938229, + -0.005426795221865177, + -0.009375606663525105, + -0.0031900755129754543, + -0.009674588218331337, + -0.0013242621207609773, + -0.019157376140356064, + -0.012376703321933746, + 0.009082266129553318, + -0.03581007942557335, + -0.010362809523940086, + -0.008168398402631283, + 0.03377925977110863, + 0.01767939329147339, + 0.002853016136214137, + -0.016596289351582527, + 0.021436404436826706, + -0.0068483673967421055, + 0.012726454995572567, + -0.000556006736587733, + 0.02353491634130478, + 0.05140224099159241, + 0.0012184904189780354, + 0.003830346977338195, + -0.02147025242447853, + -0.014204438775777817, + 0.006160145625472069, + 0.003830346977338195, + -0.03398234397172928, + -0.02210206165909767, + 0.021616922691464424, + -0.027483727782964706, + -0.015016765333712101, + 0.004050352144986391, + -0.039691194891929626, + -0.01813068613409996, + 0.007801723200827837, + 0.009454582817852497, + 0.023376964032649994, + 0.000603604014031589, + -0.01387725118547678, + -0.004126507788896561, + 0.013268006034195423, + 0.013414676301181316, + -0.0018122224137187004, + -0.025024181231856346, + 0.008326350711286068, + 0.006696056108921766, + 0.027461163699626923, + 0.034772105515003204, + -0.01843530870974064, + -0.010312039405107498, + -0.0033000782132148743, + -0.03197408840060234, + 0.0014187515480443835, + -0.011005901731550694, + -0.034591589123010635, + 0.013967510312795639, + 0.0046003651805222034, + -0.015626011416316032, + 0.012376703321933746, + -0.00021083831961732358, + -0.01737477071583271, + -0.03411773219704628, + -0.04512927308678627, + -0.006019116844981909, + 0.01248952653259039, + -0.053026895970106125, + -0.04221843555569649, + -0.0007798902806825936, + 0.01679937168955803, + 0.03328283876180649, + 0.007734029088169336, + -0.03129715099930763, + -0.001107077463530004, + -0.018717365339398384, + 0.013583911582827568, + 0.004780882503837347, + -0.05830702185630798, + -0.014542908407747746, + -0.033711567521095276, + -0.0030941758304834366, + -0.0009463044698350132, + 0.005821676459163427, + -0.010988977737724781, + 0.0200712438672781, + -0.03091355226933956, + -0.008083781227469444, + 0.004360616207122803, + 0.007491459604352713, + 0.015152153559029102, + -0.039758890867233276, + 0.004577800631523132, + -0.006509897764772177, + -0.005243457388132811, + -0.003243666607886553, + 0.02971762605011463, + 0.010515120811760426, + 0.03447876498103142, + -0.01352749951183796, + -0.0013856097357347608, + 0.0002683076309040189, + 0.035652127116918564, + 0.013640322722494602, + 0.0013221466215327382, + 0.009336118586361408, + -0.03982658311724663, + -0.007852493785321712, + 0.010768973268568516, + 0.03405003622174263, + 0.0014109949115663767, + -0.03095868229866028, + -0.03432081267237663, + -0.01762298122048378, + -0.009048419073224068, + -0.018672237172722816, + 0.01844659075140953, + -0.010334603488445282, + -0.002700704848393798, + -0.031048940494656563, + -0.025949332863092422, + 0.008044293150305748, + -0.005440898239612579, + -0.021222040057182312, + 0.014102897606790066, + -0.005917576141655445, + -0.002449673367664218, + 0.021955391392111778, + -0.004845755640417337, + -0.013324418105185032, + 0.025904202833771706, + -0.05036427080631256, + -0.01315518282353878, + 0.018029144033789635, + 0.0004950117436237633, + -0.002850195625796914, + -0.008264298550784588, + 0.023715432733297348, + -0.019179942086338997, + 0.02078203111886978, + 0.024843664839863777, + 0.004464977420866489, + 0.002071715658530593, + 0.04036813601851463, + -0.030484823510050774, + -0.0009188037947751582, + -0.047295477241277695, + 0.019461998715996742, + 0.04136097803711891, + 0.0006381561397574842, + 0.001139514148235321, + -0.012410550378262997, + -0.02277900092303753, + 0.00887918472290039, + -0.007846852764487267, + -0.02486622892320156, + 0.00916124228388071, + -0.007638129405677319, + 0.02694217674434185, + 0.023173881694674492, + -0.0075083826668560505, + 0.008038652129471302, + 0.01857069507241249, + -0.013448523357510567, + -0.01730707660317421, + 0.021684614941477776, + -0.030236613005399704, + -0.014497779309749603, + 0.02800271473824978, + 0.019360458478331566, + -0.0481078065931797, + -0.0404132641851902, + 0.0346367172896862, + 0.006430921610444784, + 0.01072948519140482, + -0.00024750587181188166, + -0.0021619743201881647, + 0.022237449884414673, + -0.021312300115823746, + 0.030484823510050774, + 0.010063827969133854, + -0.00924585945904255, + -0.02504674717783928, + -0.004763958975672722, + -0.013572628609836102, + -0.0032972574699670076, + 0.00586680555716157, + 0.004665238782763481, + 0.03145510330796242, + -0.0024412116035819054, + -0.029356591403484344, + 0.0060868109576404095, + 0.014644449576735497, + -0.029288899153470993, + 0.030056096613407135, + 0.01895429566502571, + 0.007829928770661354, + -0.030033530667424202, + -0.024888794869184494, + 0.0010464349761605263, + -0.006408356595784426, + -0.024505196139216423, + 0.005838599521666765, + -0.0027458341792225838, + 0.014373673126101494, + 0.013087489642202854, + 0.00840532686561346, + -0.007079654838889837, + -0.01824350841343403, + 0.019337894394993782, + -0.003167510963976383, + -0.0026005744002759457, + -0.0013905457453802228, + -0.011575658805668354, + 0.028679654002189636, + -0.009465864859521389, + -0.03425311669707298, + -0.005542438942939043, + 0.06891240179538727, + 0.02001483179628849, + -0.0029221205040812492, + -0.03795371949672699, + -0.010424861684441566, + -0.00041885607060976326, + 0.025317521765828133, + -0.003979837987571955, + 0.014926507137715816, + 0.03152279928326607, + 0.027528855949640274, + 0.00023957298253662884, + 0.030936116352677345, + 0.0001641224807826802, + -0.006182710640132427, + 0.026897046715021133, + -0.007339147850871086, + 0.031703315675258636, + -0.00931355357170105, + -0.012105927802622318, + 0.009736640378832817, + 0.02310618758201599, + 0.007841210812330246, + -0.020861007273197174, + -0.0013376598944887519, + -0.002762757707387209, + 0.0033649513497948647, + -0.004851396661251783, + 0.021255888044834137, + -0.004961399361491203, + 0.00657759141176939, + -0.05997680500149727, + -0.032560769468545914, + -0.023647738620638847, + 0.013865969143807888, + 0.005184225272387266, + -0.01850300282239914, + -0.0005024157580919564, + 0.022756436839699745, + -0.028092972934246063, + 0.004442412871867418, + 0.005091146100312471, + 0.0024680071510374546, + -0.03669010102748871, + -0.06385792046785355, + -0.009606894105672836, + 0.009409453719854355, + -0.03472697734832764, + -0.011643352918326855, + 0.04833345115184784, + -0.020545100793242455, + -0.009612535126507282, + 0.013572628609836102, + -0.0026809608098119497, + -0.010785896331071854, + -0.021064087748527527, + 0.0008511099149473011, + -0.02536265179514885, + -0.01788247376680374, + 0.026919610798358917, + -0.026265237480401993, + 0.00621655723080039, + -0.04625750333070755, + -0.00003770321563933976, + -0.02473084256052971, + -0.007294018752872944, + 0.02725808136165142, + 0.0006141812191344798, + 0.02253079041838646, + -0.006481691729277372, + 0.003082893555983901, + -0.02581394463777542, + 0.027100129052996635, + -0.01925891824066639, + 0.008253015577793121, + 0.004118046257644892, + 0.007813005708158016, + -0.03872091695666313, + -0.04199278727173805, + -0.0076099238358438015, + 0.018164532259106636, + 0.0658436119556427, + 0.001991329248994589, + -0.03429824858903885, + 0.025024181231856346, + 0.00600783433765173, + -0.018299920484423637, + 0.026648836210370064, + 0.025588298216462135, + 0.012105927802622318, + 0.030936116352677345, + 0.01050947979092598, + -0.011530529707670212, + -0.03046225942671299, + 0.01400135736912489, + 0.009076625108718872, + -0.0033000782132148743, + -0.02209077961742878, + 0.01712655834853649, + -0.017081430181860924, + 0.019044553861021996, + 0.008258656598627567, + -0.0035031598526984453, + 0.0384952686727047, + -0.033079758286476135, + 0.016720395535230637, + 0.02958223782479763, + 0.010633585043251514, + -0.02719038724899292, + -0.013854687102138996, + 0.04512927308678627, + 0.008348915725946426, + 0.0073673538863658905, + -0.002204282907769084, + -0.011914128437638283, + -0.016663983464241028, + 0.04910064861178398, + -0.029740191996097565, + 0.014542908407747746, + 0.03763781487941742, + 0.03569725528359413, + 0.0014836249174550176, + 0.044407203793525696, + -0.0032352048438042402, + -0.001542857033200562, + 0.013719298876821995, + -0.01913481205701828, + -0.01542292907834053, + -0.019619951024651527, + -0.02655857801437378, + 0.0006716505158692598, + 0.002181718358770013, + 0.018029144033789635, + 0.026355495676398277, + 0.021820003166794777, + -0.011491041630506516, + -0.004684982821345329, + -0.019405586645007133, + -0.0022508224938064814, + -0.008794567547738552, + 0.018480436876416206, + 0.01624653860926628, + -0.009014572016894817, + 0.006272968836128712, + 0.01737477071583271, + -0.0217861570417881, + -0.027077563107013702, + 0.007897622883319855, + -0.002469417406246066, + -0.028408877551555634, + 0.009290989488363266, + 0.027528855949640274, + 0.007948393002152443, + -0.02335439808666706, + 0.004284460563212633, + 0.026084719225764275, + 0.031364843249320984, + -0.00585552304983139, + 0.018965577706694603, + 0.0072319661267101765, + -0.02764168009161949, + -0.003711882745847106, + -0.018920447677373886, + 0.034207988530397415, + -0.0325833335518837, + -0.0022155651822686195, + -0.004095481708645821, + 0.032380253076553345, + -0.002059023128822446, + -0.03416286036372185, + 0.024437502026557922, + 0.02147025242447853, + -0.014272132888436317, + 0.007294018752872944, + -0.027416033670306206, + -0.004930373281240463, + -0.024347243830561638, + 0.02378312684595585, + -0.040119923651218414, + -0.0071191429160535336, + 0.001377853099256754, + -0.021413840353488922, + 0.014824965968728065, + 0.023873385041952133, + 0.004659597296267748, + 0.012726454995572567, + 0.005370383616536856, + 0.005911934655159712, + 0.002930582268163562, + -0.025069311261177063, + 0.008715590462088585, + -0.0020153040532022715 + ] + }, + { + "HotelId": "45", + "HotelName": "Happy Lake Resort & Restaurant", + "Description": "The largest year-round resort in the area offering more of everything for your vacation – at the best value! What can you enjoy while at the resort, aside from the mile-long sandy beaches of the lake? Check out our activities sure to excite both young and young-at-heart guests. We have it all, including being named ā€œProperty of the Yearā€ and a ā€œTop Ten Resortā€ by top publications.", + "Description_fr": "La plus grande station de toute l'annĆ©e dans la rĆ©gion offrant plus de tout pour vos vacances-au meilleur rapport qualitĆ©-prix! Que pouvez-vous profiter de la station, en dehors des kilomĆØtres de longues plages de sable du lac? DĆ©couvrez nos activitĆ©s pour vous exciter Ć  la fois les jeunes et les jeunes-Ć -coeur invitĆ©s. Nous avons tout, y compris d'ĆŖtre nommĆ© \"propriĆ©tĆ© de l'annĆ©e\" et un \"Top Ten Resort\" par Top publications.", + "Category": "Resort and Spa", + "Tags": [ + "pool", + "bar", + "restaurant" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2015-05-08T00:00:00Z", + "Rating": 3.5, + "Address": { + "StreetAddress": "320 Westlake Ave N", + "City": "Seattle", + "StateProvince": "WA", + "PostalCode": "98109", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.338181, + 47.621201 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Services)", + "Type": "Budget Room", + "BaseRate": 70.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 100.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 lits doubles (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 117.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower", + "tv" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "tv" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Mountain View)", + "Description_fr": "Suite, 1 grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 249.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 112.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + } + ], + "embedding": [ + 0.010497158393263817, + 0.02493729442358017, + 0.03328849747776985, + 0.0258212648332119, + 0.002064538188278675, + -0.010875171981751919, + -0.01615573652088642, + 0.01911006309092045, + 0.005045033060014248, + 0.009810918010771275, + 0.007600989658385515, + 0.011101980693638325, + -0.04708309844136238, + -0.014236588962376118, + -0.0038382960483431816, + 0.04166296124458313, + -0.019528785720467567, + -0.008269783109426498, + -0.006972904782742262, + 0.022110912948846817, + -0.0031578708440065384, + -0.03175317868590355, + -0.06052876636385918, + -0.04047657921910286, + 0.03624282032251358, + 0.004536168184131384, + -0.06076139211654663, + 0.04459402337670326, + 0.010433186776936054, + 0.03393984213471413, + -0.03233473747968674, + -0.03347459435462952, + 0.03273019939661026, + 0.011189214885234833, + -0.010677441954612732, + -0.02489076927304268, + 0.019377579912543297, + -0.03710353001952171, + 0.024146372452378273, + -0.03963913023471832, + -0.003500991268083453, + 0.0624828077852726, + -0.030334170907735825, + -0.013748078607022762, + -0.00699616689234972, + 0.05029331147670746, + -0.00016101943037938327, + -0.023727649822831154, + -0.023425238206982613, + 0.007013613823801279, + -0.011555597186088562, + -0.006792621221393347, + -0.0026679066941142082, + -0.02963629923760891, + -0.013247936964035034, + -0.019389210268855095, + 0.029194314032793045, + -0.014980985783040524, + -0.016911765560507774, + 0.009543400257825851, + 0.03728962689638138, + 0.02658892422914505, + -0.008886236697435379, + 0.046687640249729156, + -0.008490776643157005, + 0.038894735276699066, + -0.04940934106707573, + 0.02447204664349556, + -0.0234833937138319, + 0.005722550675272942, + -0.015492758713662624, + -0.01956367865204811, + -0.015771908685564995, + -0.06792621314525604, + 0.023657862097024918, + -0.007542833685874939, + -0.02426268346607685, + -0.05643458291888237, + -0.0006789713515900075, + -0.05117728188633919, + 0.018563395366072655, + 0.0018159211613237858, + -0.02489076927304268, + 0.06648394465446472, + -0.016853610053658485, + 0.007211344316601753, + 0.04792054742574692, + -0.0021008856128901243, + -0.006385528948158026, + 0.05466664209961891, + 0.013689923100173473, + 0.0031782255973666906, + 0.006129642482846975, + -0.02328566275537014, + 0.017004815861582756, + -0.004873473197221756, + 0.03991828113794327, + -0.025798002257943153, + -0.02807771787047386, + 0.0018130133394151926, + 0.005617870017886162, + -0.06834493577480316, + 0.011526519432663918, + -0.018051622435450554, + 0.0433611162006855, + 0.008136024698615074, + -0.009275882504880428, + 0.07295089215040207, + 0.03273019939661026, + -0.020563961938023567, + -0.09677159041166306, + 0.00045325333485379815, + -0.024797718971967697, + 0.02472793124616146, + -0.026681974530220032, + 0.02313445694744587, + 0.03119487874209881, + -0.00004220853588776663, + -0.005803969223052263, + 0.0018057439010590315, + 0.03373048081994057, + 0.017993466928601265, + -0.026658711954951286, + -0.037661828100681305, + 0.02510013058781624, + -0.00970623642206192, + -0.018563395366072655, + -0.0012525349156931043, + -0.010933328419923782, + -0.001172570395283401, + -0.0286592785269022, + 0.03570778667926788, + 0.022169068455696106, + -0.004044749774038792, + -0.03542863577604294, + 0.023913748562335968, + -0.036266084760427475, + 0.040499839931726456, + -0.0017068786546587944, + 0.021401409059762955, + 0.038848210126161575, + 0.057178981602191925, + 0.007007798179984093, + -0.038801684975624084, + -0.005367799196392298, + -0.007961556315422058, + 0.07890606671571732, + 0.010671626776456833, + 0.025681691244244576, + -0.027333321049809456, + -0.031055305153131485, + 0.00747304642572999, + -0.03733615204691887, + 0.04436139762401581, + -0.01729559525847435, + -0.019214743748307228, + -0.001331045525148511, + -0.015190348029136658, + -0.022948358207941055, + 0.03205558657646179, + -0.028263816609978676, + -0.0351029634475708, + -0.03545190021395683, + 0.056248486042022705, + 0.06434380263090134, + -0.006722833961248398, + -0.04894409328699112, + 0.0428493432700634, + -0.08193017542362213, + -0.013713185675442219, + 0.01505077350884676, + -0.005966805852949619, + -0.01610921323299408, + 0.018039992079138756, + -0.00464666448533535, + -0.019133323803544044, + -0.01562070194631815, + 0.02158750779926777, + -0.012503540143370628, + -0.032869771122932434, + -0.03487033769488335, + -0.01574864611029625, + -0.039522819221019745, + -0.007862691767513752, + -0.006135458126664162, + 0.016597723588347435, + -0.0040738279931247234, + 0.013108362443745136, + 0.012887369841337204, + 0.024541832506656647, + -0.050572458654642105, + -0.02313445694744587, + 0.009438719600439072, + -0.022215593606233597, + 0.01244538463652134, + -0.01450410671532154, + -0.00689148623496294, + 0.02116878516972065, + -0.007606805302202702, + -0.00908396765589714, + -0.026937860995531082, + -0.07039202749729156, + 0.08862974494695663, + -0.06443685293197632, + -0.03631260618567467, + -0.016376730054616928, + 0.01551602128893137, + 0.008153471164405346, + 0.007176450453698635, + -0.050107210874557495, + 0.025123393163084984, + 0.039941541850566864, + 0.08332592248916626, + 0.029496723785996437, + 0.010799570009112358, + -0.029961971566081047, + -0.004632125608623028, + -0.007240422070026398, + -0.002558864187449217, + 0.05931912362575531, + -0.03186948969960213, + 0.03624282032251358, + -0.011317158117890358, + 0.009019996039569378, + 0.008839712478220463, + 0.02938041277229786, + 0.00663559976965189, + -0.01606268808245659, + 0.0048589338548481464, + 0.0024425520095974207, + 0.007438152562826872, + 0.020668642595410347, + 0.0010686165187507868, + -0.07262521237134933, + -0.03489360213279724, + 0.02489076927304268, + -0.016458148136734962, + 0.009525952860713005, + 0.047478560358285904, + 0.019645096734166145, + -0.000749485450796783, + -0.008031344041228294, + -0.03498665243387222, + 0.04622238874435425, + 0.024820981547236443, + -0.022076018154621124, + 0.012212760746479034, + 0.011479995213449001, + 0.05001416057348251, + 0.010671626776456833, + -0.02498381771147251, + -0.03279998525977135, + -0.014853042550384998, + -0.06443685293197632, + 0.0314972922205925, + -0.010549498721957207, + 0.00836864858865738, + 0.04487317055463791, + 0.0733230859041214, + 0.00939219444990158, + 0.025332754477858543, + -0.012864107266068459, + -0.07202039659023285, + -0.020610487088561058, + -0.015120560303330421, + 0.04585019126534462, + 0.012794320471584797, + 0.04610607773065567, + 0.02173871360719204, + 0.008769924752414227, + -0.03370722010731697, + -0.04345416650176048, + -0.014201696030795574, + 0.006443684920668602, + 0.04931629076600075, + -0.011142689734697342, + 0.008921130560338497, + -0.00918864831328392, + 0.034614451229572296, + 0.03163686394691467, + 0.04063941538333893, + -0.016225524246692657, + 0.018656445667147636, + -0.019994033500552177, + 0.010491343215107918, + -0.01709786430001259, + -0.0018202828941866755, + -0.0021517721470445395, + -0.021261833608150482, + -0.024448784068226814, + 0.021982969716191292, + 0.027333321049809456, + -0.014387794770300388, + -0.020715167745947838, + 0.007205528672784567, + 0.02370438724756241, + 0.003195672295987606, + -0.004539075773209333, + 0.04631543904542923, + 0.05220082774758339, + -0.01869133859872818, + 0.026402825489640236, + -0.0001669259072514251, + -0.031683389097452164, + -0.009101414121687412, + 0.0738348588347435, + 0.026565661653876305, + 0.010433186776936054, + -0.001686524017713964, + 0.043965939432382584, + 0.022471480071544647, + 0.003431204240769148, + 0.04978153854608536, + 0.007984818890690804, + -0.047152888029813766, + -0.04982806369662285, + 0.046431753784418106, + 0.011445101350545883, + -0.012678008526563644, + -0.003942977171391249, + 0.06062181666493416, + 0.07606805115938187, + 0.03449814021587372, + -0.02493729442358017, + 0.01066581066697836, + 0.0109740374609828, + 0.021855026483535767, + -0.010886803269386292, + -0.0012859746348112822, + -0.045966506004333496, + 0.008013896644115448, + 0.05410834401845932, + -0.04885104298591614, + 0.05303827300667763, + -0.029240837320685387, + -0.015353184193372726, + -0.02761247009038925, + -0.019086800515651703, + 0.016225524246692657, + 0.04524536803364754, + -0.03263714909553528, + 0.05373614653944969, + 0.003835388459265232, + 0.002775495173409581, + -0.04403572529554367, + -0.012131341733038425, + -0.03661501780152321, + 0.027658995240926743, + 0.015864957123994827, + 0.05662068352103233, + -0.026519136503338814, + -0.0469900481402874, + 0.006769358646124601, + 0.043547213077545166, + -0.01337588019669056, + -0.046641115099191666, + 0.050153736025094986, + 0.018354034051299095, + 0.02544906735420227, + 0.04717614874243736, + -0.004361700266599655, + -0.02689133584499359, + 0.010572761297225952, + 0.0049461680464446545, + 0.012654745951294899, + 0.015678858384490013, + -0.03466097638010979, + 0.01879601925611496, + 0.05913302302360535, + 0.009177017025649548, + -0.006833330262452364, + -0.03696395456790924, + 0.038429487496614456, + 0.000559751526452601, + -0.000987198087386787, + 0.05140990763902664, + 0.04573388025164604, + 0.028380129486322403, + 0.000416905852034688, + 0.021285096183419228, + 0.019633466377854347, + -0.006815883331000805, + 0.003332338994368911, + -0.04208168387413025, + 0.013922546990215778, + -0.01827261596918106, + -0.042314305901527405, + 0.010212194174528122, + -0.01050878968089819, + 0.0030328354332596064, + 0.04089530184864998, + -0.010026094503700733, + -0.028636015951633453, + -0.03677785396575928, + 0.0459432415664196, + 0.0002573403180576861, + -0.023204244673252106, + 0.018191197887063026, + 0.01605105586349964, + -0.006961273495107889, + 0.04156991094350815, + -0.009113045409321785, + -0.0035475161857903004, + -0.053875721991062164, + -0.041546646505594254, + -0.01745843142271042, + -0.008246521465480328, + 0.001962765119969845, + -0.0010468080872669816, + 0.0042366646230220795, + -0.02840339206159115, + -0.002967410022392869, + 0.025053605437278748, + 0.012712902389466763, + 0.005149714183062315, + 0.03847601264715195, + -0.022913465276360512, + 0.02019176445901394, + -0.0032712751999497414, + -0.026007363572716713, + -0.010671626776456833, + -0.0234950240701437, + -0.036219559609889984, + 0.006565812509506941, + -0.029054738581180573, + 0.053410474210977554, + 0.04454749822616577, + 0.03340480849146843, + -0.07453273236751556, + 0.0066297841258347034, + -0.011096165515482426, + -0.016841977834701538, + 0.03638239577412605, + 0.020436018705368042, + -0.04692026227712631, + 0.00892694666981697, + -0.048757992684841156, + 0.015574177727103233, + -0.01636509969830513, + -0.03140424191951752, + 0.02628651261329651, + 0.005010139662772417, + -0.019598573446273804, + 0.010834462940692902, + -0.010718150995671749, + 0.02510013058781624, + 0.020412756130099297, + 0.025309491902589798, + -0.006269217003136873, + 0.019075168296694756, + -0.0007662053103558719, + 0.01526013482362032, + -0.003611487802118063, + -0.01738864555954933, + 0.036428920924663544, + 0.08304677158594131, + 0.08234889805316925, + -0.021145522594451904, + 0.014562263153493404, + -0.013178150169551373, + 0.0330558717250824, + -0.028729064390063286, + -0.009432903490960598, + -0.02721700817346573, + 0.009903967380523682, + -0.046897001564502716, + -0.028775589540600777, + -0.02225048653781414, + -0.0023582258727401495, + -0.007688223384320736, + -0.0035329770762473345, + -0.0552249401807785, + 0.02556537836790085, + 0.02235516719520092, + 0.005867940839380026, + -0.02282041497528553, + -0.04038352891802788, + 0.02561190351843834, + -0.008595457300543785, + 0.0023538642562925816, + -0.022994883358478546, + 0.01164283137768507, + 0.0030531901866197586, + 0.004472196567803621, + -0.006216876674443483, + -0.04417530074715614, + -0.015911482274532318, + 0.021180415526032448, + -0.0990978255867958, + 0.026681974530220032, + 0.007310209330171347, + 0.010194746777415276, + -0.0018624459626153111, + -0.010107513517141342, + 0.01056113000959158, + 0.02271573431789875, + -0.025053605437278748, + -0.005274749360978603, + -0.023460131138563156, + 0.024495307356119156, + 0.019238006323575974, + 0.011607938446104527, + -0.026193464174866676, + 0.059970468282699585, + 0.07578890025615692, + 0.022076018154621124, + 0.01223602332174778, + -0.038592323660850525, + 0.005780706647783518, + 0.03452140465378761, + 0.010811200365424156, + 0.027845093980431557, + -0.029031476005911827, + 0.03035743348300457, + -0.010124959982931614, + 0.005737089551985264, + -0.02807771787047386, + -0.03933671861886978, + -0.004559430759400129, + -0.010008648037910461, + 0.0014887936413288116, + -0.02256452850997448, + 0.02008708380162716, + -0.0325208380818367, + 0.014376163482666016, + 0.012724533677101135, + -0.017772473394870758, + -0.023529918864369392, + 0.0273565836250782, + 0.017121126875281334, + -0.012643114663660526, + -0.024402258917689323, + -0.005042125470936298, + 0.011270632967352867, + 0.01295715756714344, + 0.06513471901416779, + 0.041430335491895676, + -0.035079699009656906, + 0.016504673287272453, + -0.010380846448242664, + 0.019761409610509872, + 0.025262966752052307, + 0.006048224400728941, + -0.002051452873274684, + -0.007955741137266159, + -0.030008496716618538, + 0.007240422070026398, + -0.00898510217666626, + -0.02442552149295807, + -0.010898434557020664, + 0.0009450350189581513, + 0.037452466785907745, + -0.017156019806861877, + -0.010683258064091206, + -0.002311701187863946, + 0.043756574392318726, + -0.02891516499221325, + 0.014980985783040524, + 0.014853042550384998, + 0.012491908855736256, + -0.0034050338435918093, + -0.002539963461458683, + -0.004690281581133604, + 0.025681691244244576, + 0.006705387029796839, + -0.013492192141711712, + 0.049130190163850784, + 0.004722267389297485, + 0.04482664540410042, + 0.06378550082445145, + -0.021506089717149734, + 0.030217858031392097, + -0.007449783850461245, + -0.03445161506533623, + 0.037498991936445236, + 0.006187798455357552, + 0.0012394498335197568, + -0.02029644511640072, + 0.021075734868645668, + 0.005960990209132433, + 0.010939143598079681, + -0.02726353332400322, + -0.032148636877536774, + 0.03184622526168823, + -0.00630992604419589, + 0.02912452630698681, + -0.01708623394370079, + -0.009177017025649548, + 0.021622400730848312, + 0.026681974530220032, + 0.02070353738963604, + -0.005870848428457975, + -0.023204244673252106, + -0.04340764135122299, + 0.0014306376688182354, + 0.009246804751455784, + -0.013143256306648254, + 0.00044416647870093584, + -0.03803402557969093, + 0.038894735276699066, + -0.00039327997365035117, + -0.018726233392953873, + -0.0028438284061849117, + -0.01627204939723015, + -0.004620494320988655, + 0.01280595175921917, + -0.009386378340423107, + -0.02514665573835373, + 0.011096165515482426, + -0.016376730054616928, + -0.032195162028074265, + 0.00029005305259488523, + 0.004062196705490351, + -0.01852850243449211, + -0.03040395863354206, + -0.005129359196871519, + -0.03514948859810829, + -0.03468424081802368, + -0.00794992595911026, + -0.046641115099191666, + -0.009310776367783546, + -0.05508536472916603, + 0.0030793603509664536, + 0.018447084352374077, + 0.04573388025164604, + 0.030217858031392097, + -0.001730141113512218, + -0.034614451229572296, + 0.0022142897360026836, + 0.004951983690261841, + -0.004434395115822554, + 0.04754834622144699, + 0.05206125229597092, + -0.0005848312866874039, + -0.012480278499424458, + -0.01983119733631611, + 0.0030648212414234877, + -0.011218292638659477, + -0.005140990484505892, + -0.000785832991823554, + 0.007618436124175787, + 0.008764109574258327, + 0.0511307567358017, + 0.0038295728154480457, + 0.00851985439658165, + -0.009648080915212631, + 0.015271766111254692, + -0.020924529060721397, + 0.01040410902351141, + -0.004024395253509283, + -0.007031060755252838, + 0.0012285455595701933, + 0.05871430039405823, + -0.004981061443686485, + -0.020156869664788246, + 0.014283114112913609, + 0.005251486785709858, + -0.03917388245463371, + 0.02421616017818451, + 0.004006948322057724, + -0.006600706372410059, + 0.009555031545460224, + -0.009275882504880428, + -0.03726636618375778, + -0.023890485987067223, + 0.03961586952209473, + 0.0017824814422056079, + -0.07132252305746078, + -0.006984536070376635, + 0.024704670533537865, + 0.03738267719745636, + 0.02215743623673916, + -0.004158154129981995, + 0.011264817789196968, + -0.0009675704641267657, + 0.00642623845487833, + 0.013608504086732864, + -0.018807651475071907, + 0.0037597855553030968, + 0.011456732638180256, + 0.0040912749245762825, + 0.024797718971967697, + -0.0190984308719635, + -0.01388765312731266, + -0.029403675347566605, + -0.006496025249361992, + 0.04526863247156143, + -0.01744680106639862, + 0.0027013462968170643, + -0.015504390001296997, + -0.02751941978931427, + -0.007926663383841515, + -0.010566945187747478, + -0.021773606538772583, + 0.011160137131810188, + -0.03163686394691467, + -0.0245185699313879, + -0.019424105063080788, + 0.028007930144667625, + -0.05708593130111694, + 0.008066237904131413, + 0.007595174014568329, + -0.015585809014737606, + 0.006181982811540365, + -0.010107513517141342, + -0.015923112630844116, + 0.0005477568483911455, + -0.013131625019013882, + 0.002270991913974285, + -0.017772473394870758, + 0.04273303225636482, + -0.019435735419392586, + -0.0036725515965372324, + 0.008903684094548225, + -0.004736806266009808, + -0.006269217003136873, + -0.01424822025001049, + 0.014643681235611439, + 0.0035911330487579107, + -0.006711202673614025, + -0.017179282382130623, + 0.017946941778063774, + 0.05587628856301308, + -0.0043936860747635365, + 0.028170768171548843, + 0.052945222705602646, + 0.043244801461696625, + -0.036428920924663544, + -0.04012764245271683, + 0.06439032405614853, + -0.05973784625530243, + -0.03619629517197609, + 0.027891619130969048, + 0.03031090833246708, + -0.02807771787047386, + 0.006350635550916195, + -0.02819403074681759, + 0.006519287824630737, + -0.016969921067357063, + -0.0552249401807785, + 0.01663261651992798, + -0.039988067001104355, + 0.03654523193836212, + -0.035754311829805374, + 0.016702404245734215, + -0.056760258972644806, + 0.007816166616976261, + -0.007292762864381075, + -0.01373644731938839, + 0.003221842460334301, + -0.01092169713228941, + 0.007438152562826872, + 0.003154963022097945, + -0.004905459005385637, + -0.02256452850997448, + -0.03933671861886978, + 0.004733898676931858, + -0.027193747460842133, + 0.013445667922496796, + 0.011299711652100086, + -0.01729559525847435, + 0.030497007071971893, + 0.021866656839847565, + 0.01972651667892933, + 0.016074318438768387, + 0.0014531731139868498, + -0.024611620232462883, + -0.022331904619932175, + -0.022331904619932175, + -0.00020300078904256225, + 0.02225048653781414, + -0.013224675320088863, + 0.01770268753170967, + -0.0005692018894478679, + -0.010625101625919342, + 0.02700764685869217, + 0.02958977408707142, + 0.012503540143370628, + 0.004227941390126944, + -0.005737089551985264, + 0.0025167008861899376, + -0.02565842866897583, + 0.0480135940015316, + 0.02002892643213272, + -0.020563961938023567, + -0.003140424145385623, + 0.05559713765978813, + 0.023913748562335968, + 0.04640848934650421, + 0.02044765092432499, + 0.020726799964904785, + -0.0397554412484169, + 0.04047657921910286, + -0.039732180535793304, + 0.04529189318418503, + -0.017679424956440926, + 0.011852193623781204, + -0.0017054247437044978, + 0.046803951263427734, + 0.023564811795949936, + -0.03701047971844673, + -0.03393984213471413, + -0.007263684645295143, + 0.004742621909826994, + -0.033637430518865585, + 0.02984566055238247, + -0.015108929015696049, + 0.033218707889318466, + -0.006641415413469076, + -0.011532335542142391, + -0.016097581014037132, + -0.0016588999424129725, + -0.019679991528391838, + -0.01771431788802147, + 0.03347459435462952, + -0.019272899255156517, + -0.022215593606233597, + 0.03847601264715195, + 0.002308793365955353, + 0.004521629307419062, + -0.0005215866258367896, + -0.008543116971850395, + 0.014306376688182354, + 0.05303827300667763, + -0.021238572895526886, + -0.02008708380162716, + -0.009898151271045208, + -0.015178716741502285, + 0.02819403074681759, + -0.01291063241660595, + -0.01564396545290947, + -0.00038601047708652914, + 0.01295715756714344, + 0.00219538901001215, + 0.007635883055627346, + 0.0036987217608839273, + 0.02700764685869217, + 0.016795452684164047, + -0.009130492806434631, + 0.02947346121072769, + 0.004030210897326469, + 0.04498948156833649, + -0.006972904782742262, + 0.012387228198349476, + -0.017225807532668114, + 0.002412020228803158, + -0.002423651283606887, + 0.006129642482846975, + 0.02938041277229786, + 0.03703374043107033, + -0.02101757936179638, + -0.03207885101437569, + 0.020924529060721397, + -0.004178508650511503, + -0.030380696058273315, + 0.006205245386809111, + 0.0020848927088081837, + 0.02163403294980526, + 0.029031476005911827, + 0.018761126324534416, + 0.000484148709801957, + -0.0075893583707511425, + 0.0001751949603203684, + -0.00857219472527504, + 0.016481410712003708, + 0.014748361892998219, + 0.011514888145029545, + 0.01848197728395462, + -0.005801061168313026, + -0.02369275502860546, + -0.003250920446589589, + -0.016655879095196724, + 0.006176167633384466, + 0.03840622305870056, + 0.019761409610509872, + 0.010450633242726326, + 0.02565842866897583, + 0.01854013279080391, + -0.02535601705312729, + -0.028845377266407013, + 0.008136024698615074, + 0.013713185675442219, + -0.015667226165533066, + 0.016702404245734215, + 0.010875171981751919, + -0.004163969773799181, + 0.016306942328810692, + 0.01926126703619957, + -0.0005477568483911455, + -0.009368931874632835, + 0.020424388349056244, + 0.01894722506403923, + 0.020784955471754074, + -0.0035591472405940294, + -0.015225240960717201, + 0.0038964522536844015, + 0.0007909216219559312, + 0.014190064743161201, + 0.003268367378041148, + 0.04484990984201431, + -0.021959707140922546, + -0.027333321049809456, + -0.03098551742732525, + 0.0029950342141091824, + 0.05382919684052467, + 0.007095032371580601, + 0.009043258614838123, + 0.036475446075201035, + 0.001631275867111981, + -0.05657415837049484, + 0.008688506670296192, + -0.05638806149363518, + 0.01878438889980316, + 0.008746663108468056, + -0.003059005830436945, + 0.055736713111400604, + -0.00990978255867958, + 0.00862453505396843, + 0.025123393163084984, + -0.01780736818909645, + -0.013910915702581406, + 0.03882494568824768, + -0.00144881138112396, + -0.00841517373919487, + -0.010497158393263817, + -0.012317441403865814, + 0.018854176625609398, + -0.0193659495562315, + 0.020261550322175026, + -0.019493892788887024, + -0.012468647211790085, + -0.02277388982474804, + 0.009531768970191479, + 0.007403259165585041, + 0.0335676446557045, + 0.036894168704748154, + 0.008438436314463615, + 0.014364532195031643, + 0.004861841909587383, + 0.04550125449895859, + -0.005053756758570671, + 0.002779856789857149, + 0.024844244122505188, + -0.04382636398077011, + -0.0032829062547534704, + -0.03412594273686409, + 0.012584959156811237, + 0.009270066395401955, + -0.0005811965675093234, + -0.004268650431185961, + 0.03268367424607277, + -0.0065832594409585, + 0.017260702326893806, + -0.03065984509885311, + -0.014539000578224659, + -0.00010849729005713016, + 0.004733898676931858, + 0.003844111692160368, + 0.008339570835232735, + 0.015981270000338554, + 0.001866807695478201, + -0.01414353959262371, + -0.011637016199529171, + -0.017365382984280586, + -0.024285946041345596, + 0.0087815560400486, + 0.015574177727103233, + 0.03519601374864578, + 0.012654745951294899, + 0.03570778667926788, + -0.03145076707005501, + 0.023378713056445122, + -0.02993871085345745, + 0.024402258917689323, + -0.04126749932765961, + 0.02265757881104946, + -0.021401409059762955, + -0.0007589358137920499, + -0.013585242442786694, + -0.03487033769488335, + 0.05224735289812088, + 0.06694918870925903, + -0.005414323881268501, + -0.00035838637268170714, + -0.010072619654238224, + -0.0030648212414234877, + 0.023425238206982613, + -0.011421838775277138, + 0.029264099895954132, + -0.0058621251955628395, + 0.023367080837488174, + 0.0073392875492572784, + 0.0031782255973666906, + 0.018249353393912315, + -0.010927513241767883, + 0.024309208616614342, + 0.01179403718560934, + -0.02849644050002098, + 0.03573104739189148, + 0.02172708325088024, + -0.010526236146688461, + -0.02038949355483055, + -0.018970487639307976, + -0.006775174289941788, + 0.009566661901772022, + -0.00023262400645762682, + 0.018144672736525536, + 0.024751193821430206, + -0.024285946041345596, + -0.003335246816277504, + -0.003364324802532792, + -0.0006240865914151073, + -0.011241555213928223, + -0.03256735950708389, + -0.03412594273686409, + -0.013434036634862423, + -0.011369498446583748, + -0.028147505596280098, + -0.0013245029840618372, + -0.007979003712534904, + 0.02276225946843624, + 0.01977303996682167, + 0.025518853217363358, + -0.007449783850461245, + -0.008903684094548225, + -0.033428069204092026, + 0.02251800335943699, + 0.004815316759049892, + 0.0042104944586753845, + -0.001701063010841608, + -0.0002495255903340876, + -0.025588640943169594, + 0.011003115214407444, + 0.03426551818847656, + 0.0024207436945289373, + 0.024239420890808105, + -0.013154887594282627, + -0.0010402655461803079, + -0.007095032371580601, + -0.017737580463290215, + -0.017539849504828453, + -0.013154887594282627, + 0.02628651261329651, + -0.00009595740266377106, + -0.013899284414947033, + -0.010119144804775715, + 0.008246521465480328, + -0.013771341182291508, + 0.035754311829805374, + 0.01785389333963394, + -0.0006342639098875225, + -0.0018464530585333705, + 0.01962183602154255, + 0.004457657691091299, + -0.004664111416786909, + -0.016353467479348183, + -0.013957440853118896, + -0.022064387798309326, + -0.0021517721470445395, + -0.013759709894657135, + 0.004291913006454706, + 0.01911006309092045, + 0.01981956511735916, + -0.018598290160298347, + -0.027426371350884438, + 0.0428493432700634, + -0.05829557776451111, + -0.025774739682674408, + -0.004472196567803621, + 0.00689148623496294, + 0.029194314032793045, + 0.02726353332400322, + 0.04429161176085472, + -0.05131685733795166, + 0.0011035101488232613, + -0.008921130560338497, + 0.010008648037910461, + -0.0004863295762334019, + 0.004137799609452486, + 0.018958857282996178, + -0.00004084550528205, + 0.004318083170801401, + -0.01888906955718994, + 0.04238409548997879, + -0.016434885561466217, + -0.004629217553883791, + -0.03480055183172226, + -0.039476294070482254, + 0.047525085508823395, + 0.002986310748383403, + 0.018761126324534416, + -0.0020805310923606157, + -0.013980702497065067, + 0.0204011257737875, + -0.0655999705195427, + 0.00600169925019145, + 0.07057812064886093, + 0.023739280179142952, + -0.007612620480358601, + -0.00038964522536844015, + 0.010421555489301682, + 0.012666377238929272, + 0.03387005627155304, + -0.014073752798140049, + -0.0382201261818409, + -0.01337588019669056, + -0.0335676446557045, + -0.0007007798412814736, + -0.006368082016706467, + 0.013655029237270355, + 0.0026344668585807085, + 0.016539566218852997, + 0.00678680557757616, + 0.0005219501326791942, + 0.01828424632549286, + -0.0005946450983174145, + 0.009514321573078632, + 0.007705670315772295, + -0.0016167368739843369, + 0.0071124788373708725, + 0.027752043679356575, + 0.004227941390126944, + 0.01138694491237402, + 0.02586778998374939, + -0.003765601199120283, + -0.002326240064576268, + 0.011235740035772324, + -0.02870580181479454, + 0.011799853295087814, + -0.020878003910183907, + 0.004719359800219536, + -0.012189498171210289, + -0.0077347480691969395, + -0.038755159825086594, + -0.03705700486898422, + -0.0034224807750433683, + -0.009456166066229343, + 0.024402258917689323, + -0.015120560303330421, + 0.028170768171548843, + -0.0039051754865795374, + 0.038173601031303406, + -0.010055173188447952, + -0.010625101625919342, + -0.0013390419771894813, + -0.011933611705899239, + 0.007874323055148125, + 0.058993447571992874, + 0.04601302742958069, + -0.006048224400728941, + 0.006961273495107889, + -0.0021328714210540056, + 0.029240837320685387, + -0.010502973571419716, + -0.0005328543484210968, + 0.0020834386814385653, + 0.02658892422914505, + -0.008229074068367481, + -0.01749332621693611, + -0.035963673144578934, + -0.029868923127651215, + 0.011497441679239273, + -0.0039604236371815205, + 0.003954607993364334, + 0.009845810942351818, + -0.012782689183950424, + -0.01378297246992588, + -0.002345140790566802, + -0.01657446101307869, + 0.043244801461696625, + 0.0006426238105632365, + -0.011724250391125679, + -0.03170665353536606, + -0.0061645363457500935, + 0.001208917936310172, + 0.015574177727103233, + 0.011648647487163544, + -0.04319828003644943, + 0.016946658492088318, + -0.01396907214075327, + 0.03221842646598816, + 0.02714722231030464, + -0.009903967380523682, + 0.031148355454206467, + -0.03607998415827751, + 0.02106410451233387, + 0.007769641932100058, + 0.029310625046491623, + 0.008543116971850395, + -0.020680274814367294, + -0.002544325077906251, + 0.02101757936179638, + 0.009624818339943886, + -0.0018319140654057264, + -0.005873756017535925, + 0.01225928496569395, + -0.016388362273573875, + -0.008461697958409786, + 0.0023393251467496157, + 0.028938427567481995, + -0.007792904507368803, + 0.004303544294089079, + -0.03310239687561989, + 0.010927513241767883, + -0.038731899112463, + -0.019645096734166145, + -0.011305526830255985, + -0.01234070397913456, + -0.004352976568043232, + -0.020366232842206955, + 0.0153648154810071, + 0.00564113212749362, + -0.0635063573718071, + 0.0020296445582062006, + 0.03682437911629677, + 0.030078284442424774, + 0.020668642595410347, + -0.020901266485452652, + 0.001744680106639862, + 0.013503823429346085, + -0.00903744250535965, + 0.015760276466608047, + -0.000006286981715675211, + 0.0025937575846910477, + 0.03654523193836212, + -0.027286795899271965, + -0.029961971566081047, + -0.011956874281167984, + 0.0037132606375962496, + 0.01888906955718994, + -0.013620135374367237, + 0.0012081909226253629, + -0.015295028686523438, + -0.00851985439658165, + -0.011416023597121239, + -0.011055456474423409, + -0.014759993180632591, + -0.003044466720893979, + 0.016900133341550827, + 0.04038352891802788, + -0.02803119271993637, + -0.0018217368051409721, + 0.0351029634475708, + 0.011945242993533611, + -0.02421616017818451, + -0.037452466785907745, + -0.00898510217666626, + 0.0018900700379163027, + -0.018342403694987297, + -0.006920564454048872, + 0.013759709894657135, + 0.02979913540184498, + -0.0234833937138319, + 0.008700137957930565, + 0.0011958327377215028, + 0.0180748850107193, + 0.028566228225827217, + -0.009403825737535954, + -0.002147410297766328, + -0.0004318083229009062, + -0.02747289463877678, + 0.009671343490481377, + 0.019272899255156517, + -0.0051962388679385185, + -0.016841977834701538, + 0.006827514618635178, + -0.022959990426898003, + -0.008845527656376362, + -0.031776439398527145, + -0.011863824911415577, + -0.0005688383826054633, + 0.002900530584156513, + -0.0020325523801147938, + 0.003268367378041148, + 0.01837729662656784, + 0.014597157016396523, + -0.029496723785996437, + 0.050153736025094986, + 0.026402825489640236, + -0.008886236697435379, + -0.009264251217246056, + -0.016969921067357063, + 0.012608221732079983, + -0.015760276466608047, + -0.005489926785230637, + 0.008403542451560497, + 0.0224598478525877, + -0.024704670533537865, + 0.015597439371049404, + -0.03419572860002518, + -0.003538792720064521, + 0.019482260569930077, + 0.005042125470936298, + -0.030962254852056503, + 0.0004303544119466096, + 0.02603062614798546, + -0.013085100799798965, + -0.0521543025970459, + 0.020121976733207703, + 0.025169918313622475, + -0.01947063021361828, + 0.010683258064091206, + 0.031148355454206467, + 0.039057571440935135, + 0.013515454716980457, + -0.001987481489777565, + -0.0019133324967697263, + -0.008083684369921684, + 0.0036056721583008766, + -0.0039051754865795374, + 0.016551198437809944, + 0.03894126042723656, + -0.026612186804413795, + 0.01530665997415781, + 0.04471033439040184, + -0.046897001564502716, + 0.00975857675075531, + -0.03205558657646179, + -0.022134173661470413, + -0.003951700404286385, + 0.012166235595941544, + 0.007426521275192499, + -0.0018231907160952687, + -0.014887936413288116, + -0.014085384085774422, + -0.0071299257688224316, + -0.004451842047274113, + -0.015120560303330421, + -0.0037103530485183, + -0.011305526830255985, + 0.0008083684369921684, + 0.014411057345569134, + 0.02844991534948349, + 0.003640565788373351, + -0.009839995764195919, + -0.022936727851629257, + -0.002989218570291996, + 0.009479428641498089, + 0.01530665997415781, + -0.022169068455696106, + -0.00564113212749362, + -0.016074318438768387, + -0.03584735840559006, + -0.010549498721957207, + 0.01693502813577652, + 0.0074207060970366, + -0.051549479365348816, + -0.016841977834701538, + -0.008636166341602802, + -0.013352618552744389, + -0.015295028686523438, + 0.015434603206813335, + -0.019238006323575974, + 0.03500991314649582, + 0.0206453800201416, + 0.020889636129140854, + 0.0012176412856206298, + -0.04359373822808266, + -0.036126509308815, + 0.010805385187268257, + -0.00821162760257721, + 0.016818715259432793, + 0.010590207763016224, + 0.02287857048213482, + 0.034312039613723755, + -0.017377013340592384, + 0.023634599521756172, + -0.04364026337862015, + -0.029147788882255554, + 0.005821415688842535, + -0.03803402557969093, + -0.020331338047981262, + 0.0330326110124588, + 0.011759143322706223, + -0.01469020638614893, + -0.03680111840367317, + -0.020156869664788246, + -0.015783539041876793, + 0.009415457025170326, + 0.018923962488770485, + 0.005181699991226196, + -0.0009792016353458166, + -0.021296728402376175, + -0.024751193821430206, + -0.01776084303855896, + 0.02942693792283535, + 0.014655312523245811, + -0.0004198136448394507, + 0.0022084740921854973, + -0.029752610251307487, + -0.008083684369921684, + -0.023320557549595833, + 0.02333218790590763, + -0.007920847274363041, + 0.013713185675442219, + -0.006938010919839144, + 0.02591431513428688, + -0.003689998295158148, + 0.0012765242718160152, + 0.007089216727763414, + -0.011474179103970528, + 0.03705700486898422, + 0.0023873038589954376, + 0.011654462665319443, + -0.023937011137604713, + 0.001014095265418291, + -0.030194595456123352, + -0.014748361892998219, + -0.016120843589305878, + -0.00002953234434244223, + -0.023343820124864578, + 0.006280848290771246, + -0.000747304642572999, + -0.009880704805254936, + 0.03545190021395683, + 0.01745843142271042, + 0.018982119858264923, + 0.02565842866897583, + 0.012142973020672798, + -0.02921757474541664, + -0.024192897602915764, + -0.03535884991288185, + -0.005859217140823603, + -0.014492475427687168, + -0.0006262674578465521, + 0.030171334743499756, + -0.015841694548726082, + -0.0707642212510109, + 0.0007458507316187024, + -0.0024498216807842255, + -0.07751031965017319, + 0.0008767017279751599, + 0.008008081465959549, + 0.01693502813577652, + 0.019179848954081535, + 0.0001214006551890634, + -0.03010154701769352, + -0.014725099317729473, + 0.0019816658459603786, + -0.04945586249232292, + -0.026519136503338814, + -0.01035176869481802, + 0.013492192141711712, + -0.0006182710058055818, + -0.008839712478220463, + 0.008921130560338497, + 0.041593171656131744, + 0.021343253552913666, + 0.017795735970139503, + 0.004207586869597435, + -0.02586778998374939, + 0.006112196017056704, + 0.020982686430215836, + -0.0021517721470445395, + -0.005734181962907314, + -0.02199460007250309, + -0.01556254643946886, + 0.005321274045854807, + 0.015295028686523438, + -0.009025811217725277, + 0.025425804778933525, + -0.02731005847454071, + -0.022076018154621124, + 0.030636582523584366, + 0.02008708380162716, + -0.002260814653709531, + 0.052433449774980545, + -0.0029325163923203945, + -0.013259568251669407, + -0.010741413570940495, + -0.022541265934705734, + -0.046803951263427734, + -0.025169918313622475, + -0.0025632258038967848, + -0.01735375076532364, + -0.013329355977475643, + -0.02179686911404133, + 0.016900133341550827, + 0.020773323252797127, + -0.00836283341050148, + -0.0245185699313879, + -0.027496157214045525, + 0.028380129486322403, + 0.025123393163084984, + -0.0351262241601944, + 0.006449500564485788, + -0.012131341733038425, + 0.021703820675611496, + 0.009316591545939445, + 0.014166802167892456, + 0.020843110978603363, + 0.01037503033876419, + -0.0026795377489179373, + 0.031218141317367554, + 0.02172708325088024, + 0.004320990759879351, + 0.016446517780423164, + -0.027682257816195488, + -0.0021445024758577347, + -0.02168055810034275, + -0.00805460661649704, + 0.021098997443914413, + 0.003640565788373351, + 0.03489360213279724, + -0.03268367424607277, + -0.021750343963503838, + 0.00502177095040679, + -0.012457015924155712, + -0.009351485408842564, + -0.018237723037600517, + -0.006211061030626297, + 0.008089499548077583, + -0.002525424351915717, + -0.025774739682674408, + 0.0020369139965623617, + 0.04315175488591194, + 0.015039142221212387, + 0.006507656536996365, + 0.024123109877109528, + 0.013957440853118896, + 0.007758010644465685, + -0.033590905368328094, + -0.033428069204092026, + -0.006932195276021957, + 0.029729347676038742, + 0.03098551742732525, + 0.014969355426728725, + -0.012840845622122288, + 0.0038063102401793003, + 0.010281980969011784, + 0.014957724139094353, + 0.002676629927009344, + 0.007333471905440092, + 0.00747304642572999, + 0.05210777744650841, + 0.005751628428697586 + ] + }, + { + "HotelId": "46", + "HotelName": "Swan Bird Lake Inn", + "Description": "We serve a continental-style breakfast each morning, featuring a variety of food and drinks. Our locally made, oh-so-soft, caramel cinnamon rolls are a favorite with our guests. Other breakfast items include coffee, orange juice, milk, cereal, instant oatmeal, bagels, and muffins.", + "Description_fr": "Nous servons un petit dĆ©jeuner continental de style chaque matin, avec une variĆ©tĆ© de nourriture et de boissons. Notre fait localement, oh-so-Soft, caramel rouleaux de cannelle sont un favori avec nos clients. Autres petits-dĆ©jeuners: cafĆ©, jus d'orange, lait, cĆ©rĆ©ales, Gruau instantanĆ©, bagels et muffins.", + "Category": "Budget", + "Tags": [ + "continental breakfast", + "free wifi", + "24-hour front desk service" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2019-02-07T00:00:00Z", + "Rating": 3.6, + "Address": { + "StreetAddress": "1 Memorial Dr", + "City": "Cambridge", + "StateProvince": "MA", + "PostalCode": "02142", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -71.08123, + 42.36137 + ] + }, + "Rooms": [ + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 61.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 153.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "suite", + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 129.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Services)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "suite", + "suite" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv", + "suite" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 119.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 245.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "suite" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 141.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 245.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 119.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "coffee maker", + "tv" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + } + ], + "embedding": [ + 0.01338883861899376, + -0.0051823025569319725, + 0.003173976903781295, + -0.03762968257069588, + -0.04524018242955208, + -0.01591392606496811, + 0.05642103776335716, + 0.011550809256732464, + 0.04110608249902725, + -0.0082153445109725, + 0.00319453002884984, + -0.019648708403110504, + 0.003408868797123432, + 0.03387141227722168, + -0.04030745103955269, + 0.08169540762901306, + -0.0005332780419848859, + 0.0645482987165451, + 0.019002756103873253, + 0.01996581256389618, + 0.03518680855631828, + -0.00045620411401614547, + -0.018157145008444786, + 0.025344837456941605, + 0.03706594184041023, + 0.03227414935827255, + -0.032415084540843964, + 0.008861296810209751, + -0.02301940694451332, + -0.07239368557929993, + -0.022162051871418953, + -0.013811644166707993, + -0.02922055311501026, + -0.032180190086364746, + 0.024569693952798843, + -0.05646801367402077, + 0.007404967211186886, + 0.002467833226546645, + -0.0038081849925220013, + 0.06797771900892258, + -0.032696954905986786, + 0.02492203190922737, + 0.01397606823593378, + -0.05839412659406662, + -0.015737757086753845, + 0.00891414750367403, + -0.0003897737478837371, + -0.022185539826750755, + -0.04965614899992943, + 0.03302580118179321, + -0.04084770381450653, + 0.04145842045545578, + -0.0026718955487012863, + -0.05844110623002052, + 0.0518641322851181, + 0.04249194636940956, + -0.016994429752230644, + 0.038099467754364014, + 0.003940311726182699, + 0.013200925663113594, + 0.03058292716741562, + -0.050125934183597565, + 0.031170155853033066, + 0.04599183425307274, + -0.021022826433181763, + -0.010006395168602467, + -0.014986103400588036, + -0.030301056802272797, + 0.006712036207318306, + 0.0341532826423645, + 0.04895147308707237, + -0.019319860264658928, + -0.026213936507701874, + -0.018803097307682037, + -0.005017878487706184, + -0.015855204313993454, + -0.00467434898018837, + -0.04397176578640938, + -0.006629824172705412, + 0.030629904940724373, + -0.024499226361513138, + -0.019672198221087456, + -0.003229763824492693, + 0.01667732559144497, + 0.016512900590896606, + -0.04730723053216934, + -0.013095224276185036, + 0.03020709939301014, + -0.001182533917017281, + 0.010840261355042458, + 0.02983127161860466, + -0.01974266581237316, + 0.021163761615753174, + -0.025180412456393242, + 0.03577403724193573, + 0.0022417495492845774, + -0.005000261589884758, + 0.0006665057735517621, + -0.04230403155088425, + 0.03048896975815296, + 0.019308114424347878, + -0.05097154527902603, + -0.016642091795802116, + 0.01347105111926794, + 0.06205844134092331, + -0.01759340427815914, + 0.03589148446917534, + 0.027482353150844574, + 0.00771619938313961, + -0.03619684278964996, + -0.03302580118179321, + -0.004448265302926302, + 0.0003165535454172641, + -0.05195809155702591, + 0.004976772237569094, + 0.04336104542016983, + 0.023336511105298996, + -0.0366666279733181, + -0.009313464164733887, + -0.039508819580078125, + 0.026401851326227188, + 0.034200262278318405, + -0.03185134381055832, + 0.009836099110543728, + 0.005364343989640474, + -0.04643813148140907, + -0.08366850018501282, + 0.01580822467803955, + -0.02501598745584488, + 0.0021800906397402287, + 0.018016209825873375, + -0.04352547228336334, + 0.022960683330893517, + -0.015514610335230827, + -0.02729444019496441, + -0.0028510005213320255, + 0.023101618513464928, + -0.022714046761393547, + -0.05712571367621422, + 0.03530425205826759, + 0.058347150683403015, + -0.0015106486389413476, + 0.007117224857211113, + -0.030559437349438667, + 0.011092769913375378, + -0.035703569650650024, + -0.02767026610672474, + -0.021281206980347633, + -0.03629079833626747, + 0.022972429171204567, + 0.01758165843784809, + -0.02590857818722725, + -0.030512459576129913, + -0.002271111123263836, + -0.05881693214178085, + -0.011392257176339626, + -0.00998877827078104, + 0.05322650820016861, + -0.004850517958402634, + 0.04751863330602646, + -0.0028451282996684313, + 0.036220330744981766, + -0.029291020706295967, + -0.013658964075148106, + -0.0189675223082304, + -0.054917726665735245, + -0.023618381470441818, + 0.044793885201215744, + -0.03640824556350708, + -0.04397176578640938, + 0.026871634647250175, + 0.009554228745400906, + -0.019766153767704964, + 0.043548960238695145, + -0.0007934942259453237, + -0.0022123882081359625, + -0.02071746625006199, + -0.03568008169531822, + 0.07319232076406479, + -0.017969230189919472, + -0.017769573256373405, + 0.021680522710084915, + -0.014210960827767849, + 0.012132166884839535, + 0.01549112144857645, + 0.05270974338054657, + -0.003755334299057722, + -0.0492803230881691, + 0.006400804501026869, + 0.01745246909558773, + -0.02743537537753582, + -0.007939346134662628, + 0.014445852488279343, + -0.0019393262919038534, + -0.03852227330207825, + -0.05444794520735741, + 0.0058018299750983715, + 0.014680744148790836, + 0.0015884565655142069, + 0.03504587337374687, + -0.04979708418250084, + -0.017299789935350418, + 0.031170155853033066, + -0.046461619436740875, + -0.021962393075227737, + 0.0037201005034148693, + 0.0429382398724556, + 0.05867599695920944, + 0.035327743738889694, + -0.012331824749708176, + 0.011233705095946789, + -0.007322755176573992, + -0.006330336909741163, + 0.026096491143107414, + 0.013764665462076664, + 0.013576752506196499, + -0.014046535827219486, + -0.01244927104562521, + 0.029150085523724556, + 0.015091804787516594, + 0.009472016245126724, + 0.020447339862585068, + 0.009900693781673908, + 0.029878251254558563, + 0.06600462645292282, + 0.04197518527507782, + -0.00904333870857954, + -0.030911775305867195, + 0.030911775305867195, + -0.024734117090702057, + 0.03403583914041519, + -0.0227492805570364, + -0.020130235701799393, + -0.0013829261297360063, + -0.03518680855631828, + 0.026895122602581978, + -0.029643358662724495, + -0.00663569662719965, + 0.04209262877702713, + -0.00486813485622406, + -0.029478933662176132, + 0.02009500190615654, + -0.060226283967494965, + 0.09639964252710342, + 0.05674988403916359, + -0.0072992658242583275, + 0.0020141981076449156, + -0.039508819580078125, + 0.02691861242055893, + -0.018521226942539215, + 0.02503947727382183, + -0.007628114894032478, + 0.012825097888708115, + -0.0012720865197479725, + 0.03556263446807861, + 0.016876984387636185, + 0.0556224025785923, + -0.040777236223220825, + 0.06722606718540192, + -0.0170883871614933, + -0.01768735982477665, + 0.03701896592974663, + -0.0208701454102993, + -0.021257717162370682, + -0.03377745673060417, + 0.02682465687394142, + -0.049092408269643784, + -0.031193645671010017, + 0.0032620613928884268, + 0.036854539066553116, + -0.03969673067331314, + -0.017522936686873436, + 0.01881484128534794, + 0.014481086283922195, + 0.052897658199071884, + -0.011268938891589642, + -0.0036789944861084223, + -0.005790085531771183, + 0.020435595884919167, + 0.014316662214696407, + -0.012919055297970772, + -0.051018521189689636, + 0.03802900016307831, + -0.04350198060274124, + -0.011521448381245136, + -0.016865238547325134, + 0.027905158698558807, + -0.04477039724588394, + 0.022479156032204628, + 0.01843901537358761, + 0.028093071654438972, + 0.018027953803539276, + 0.036220330744981766, + -0.024358291178941727, + -0.01784004084765911, + -0.000026792358767124824, + 0.033706989139318466, + 0.02338348887860775, + 0.05031384527683258, + 0.003411805024370551, + 0.031170155853033066, + 0.03326069563627243, + 0.011909020133316517, + 0.013165691867470741, + -0.03708943352103233, + 0.02426433376967907, + -0.042421478778123856, + 0.02856285683810711, + 0.08385641127824783, + -0.00840325839817524, + -0.036643136292696, + -0.01087549515068531, + 0.023465702310204506, + 0.02893868274986744, + -0.011497958563268185, + 0.02896217256784439, + -0.007868878543376923, + 0.020940613001585007, + -0.007821900770068169, + -0.0029552339110523462, + 0.05040780454874039, + 0.014328406192362309, + 0.023958975449204445, + 0.03513982892036438, + 0.011991231702268124, + -0.040283963084220886, + 0.04563949629664421, + -0.005549321416765451, + -0.027975626289844513, + -0.0543539859354496, + 0.03309626877307892, + -0.029291020706295967, + -0.01037047803401947, + 0.030301056802272797, + -0.044934820383787155, + -0.03765317425131798, + 0.011204344220459461, + -0.04697838053107262, + -0.023735826835036278, + -0.026613254100084305, + -0.001874731038697064, + -0.045428093522787094, + -0.028515877202153206, + -0.052897658199071884, + -0.012331824749708176, + -0.002125771716237068, + -0.044183168560266495, + 0.03692500665783882, + 0.020940613001585007, + -0.0070173959247767925, + -0.027764223515987396, + 0.003097637090831995, + -0.020541297271847725, + -0.004595072939991951, + 0.035938460379838943, + -0.02075270004570484, + 0.0316164493560791, + -0.009771503508090973, + 0.030794329941272736, + 0.041787270456552505, + 0.0005167622002772987, + -0.0027320864610373974, + 0.07666871696710587, + 0.010746304877102375, + 0.04143493250012398, + -0.02475760690867901, + -0.02466364949941635, + -0.0051823025569319725, + 0.02741188555955887, + -0.0132831372320652, + 0.025438793003559113, + 0.0234069786965847, + -0.033307671546936035, + -0.02237345464527607, + -0.0016912217251956463, + 0.06008534878492355, + 0.006970417220145464, + 0.014868658035993576, + 0.03323720395565033, + -0.01504482701420784, + 0.026754189282655716, + -0.016383711248636246, + 0.03654918074607849, + -0.013705942779779434, + 0.08249403536319733, + 0.026848144829273224, + -0.024546204134821892, + -0.04970312863588333, + 0.016266264021396637, + -0.02969033643603325, + 0.014281428419053555, + -0.009389803744852543, + 0.044300615787506104, + -0.02642533928155899, + -0.04852866753935814, + 0.040283963084220886, + -0.02363012544810772, + 0.021187249571084976, + -0.020811423659324646, + -0.013447561301290989, + 0.014269683510065079, + -0.023336511105298996, + 0.006165912374854088, + 0.010740432888269424, + 0.016278009861707687, + -0.005076601170003414, + -0.0035556762013584375, + 0.0036114631220698357, + -0.0032884867396205664, + -0.009712780825793743, + -0.005699065048247576, + -0.032696954905986786, + 0.030441991984844208, + 0.013482795096933842, + -0.032297637313604355, + 0.04913938790559769, + 0.005784213077276945, + 0.013494540005922318, + 0.006911694537848234, + 0.04131748527288437, + -0.04603881388902664, + -0.021680522710084915, + -0.044441547244787216, + 0.036102887243032455, + 0.004501115996390581, + 0.02262009121477604, + -0.04573345556855202, + -0.0632328987121582, + -0.08301080018281937, + -0.015632055699825287, + 0.00758113618940115, + -0.021433886140584946, + 0.020682232454419136, + 0.023923741653561592, + -0.014516320079565048, + 0.00041142787085846066, + 0.003455847268924117, + 0.023712338879704475, + -0.031052710488438606, + -0.00993005558848381, + -0.03060641512274742, + 0.005819446872919798, + -0.001503308187238872, + -0.01645417883992195, + -0.011809190735220909, + -0.00009258044156013057, + 0.040777236223220825, + 0.006941055878996849, + -0.015561589039862156, + -0.03347209841012955, + 0.03572705760598183, + 0.01219089049845934, + -0.022984173148870468, + -0.0442536361515522, + -0.03579752519726753, + 0.034599579870700836, + 0.010464434511959553, + -0.01554984413087368, + 0.022655325010418892, + -0.0922655388712883, + 0.011556682176887989, + -0.013870366849005222, + -0.006800120696425438, + -0.05223996192216873, + 0.010364605113863945, + -0.002274047350510955, + -0.022314731031656265, + 0.015068315900862217, + 0.010159075260162354, + -0.03511634096503258, + -0.021198995411396027, + -0.006817737594246864, + -0.040777236223220825, + 0.010881368070840836, + -0.0018071996746584773, + -0.039273928850889206, + 0.0017279236344620585, + 0.013189180754125118, + 0.013929090462625027, + 0.05369628965854645, + -0.010258903726935387, + 0.04197518527507782, + -0.015855204313993454, + -0.01244927104562521, + 0.017170598730444908, + 0.020001046359539032, + -0.006060211453586817, + 0.023348255082964897, + -0.010705199092626572, + -0.005038431379944086, + -0.00040995978633873165, + 0.0297138262540102, + 0.004492307547479868, + -0.010153202340006828, + 0.012566717341542244, + 0.009518994949758053, + -0.007669220678508282, + -0.041552379727363586, + 0.005716681946069002, + -0.009401548653841019, + -0.03845180571079254, + -0.010828517377376556, + 0.01422270480543375, + 0.03436468541622162, + 0.039649754762649536, + 0.02047082968056202, + -0.04124701768159866, + -0.01718234270811081, + 0.04989103972911835, + -0.0214691199362278, + -0.0061189341358840466, + 0.0252978578209877, + -0.011192599311470985, + 0.009859587997198105, + -0.022913705557584763, + 0.019308114424347878, + -0.005784213077276945, + 0.010769793763756752, + -0.04413618892431259, + -0.024851564317941666, + -0.026989080011844635, + 0.03239159286022186, + 0.03422375023365021, + -0.008168365806341171, + 0.010159075260162354, + -0.01694745197892189, + 0.02478109672665596, + -0.07441375404596329, + -0.005003197584301233, + -0.01784004084765911, + 0.016994429752230644, + -0.03819342330098152, + -0.023101618513464928, + 0.008438492193818092, + 0.026472318917512894, + 0.0017293916316702962, + 0.007663348689675331, + 0.03347209841012955, + 0.0341063067317009, + -0.027341417968273163, + -0.014328406192362309, + -0.005625660996884108, + -0.03868669643998146, + 0.008326917886734009, + 0.0026351935230195522, + -0.001955475192517042, + 0.019543007016181946, + -0.05867599695920944, + 0.009225379675626755, + 0.0366666279733181, + -0.022432176396250725, + 0.021938905119895935, + 0.03227414935827255, + -0.000137631970574148, + -0.0015723076649010181, + -0.029878251254558563, + 0.02071746625006199, + -0.04942125827074051, + 0.049468234181404114, + -0.005167622119188309, + -0.0036995476111769676, + -0.007933474145829678, + -0.04472341760993004, + 0.008884786628186703, + -0.0019143690587952733, + -0.004351372830569744, + -0.01907322369515896, + 0.03553914651274681, + 0.001663328381255269, + -0.012707652524113655, + -0.02821051888167858, + 0.024475736543536186, + 0.004630306735634804, + -0.041646335273981094, + 0.018121911212801933, + 0.014457597397267818, + 0.034317709505558014, + 0.007281649392098188, + -0.008003941737115383, + 0.04707233980298042, + -0.0028010860551148653, + -0.017299789935350418, + -0.003259125165641308, + 0.010141458362340927, + -0.031522493809461594, + 0.005191111005842686, + 0.0329083576798439, + -0.020188959315419197, + 0.00816249381750822, + 0.014950869604945183, + -0.023606637492775917, + 0.007575264200568199, + -0.0034764001611620188, + -0.036079395562410355, + 0.019237646833062172, + -0.011785701848566532, + -0.02922055311501026, + 0.02223251946270466, + -0.05839412659406662, + 0.011427490971982479, + 0.0048945602029562, + 0.0028921065386384726, + 0.010511413216590881, + 0.004104736261069775, + -0.04599183425307274, + 0.013482795096933842, + -0.029643358662724495, + -0.028398431837558746, + -0.014445852488279343, + -0.033800944685935974, + -0.020247682929039, + -0.0329083576798439, + 0.01948428340256214, + 0.005977998953312635, + -0.019695686176419258, + 0.0016266264719888568, + -0.020059768110513687, + -0.026073001325130463, + -0.022408688440918922, + 0.01061711460351944, + 0.013541518710553646, + -0.006077828351408243, + 0.013177435845136642, + 0.015080060809850693, + 0.0016222222475335002, + -0.00840913038700819, + 0.0035204424057155848, + -0.0028040220495313406, + -0.004765369463711977, + 0.0074460734613239765, + -0.011133876629173756, + 0.038992058485746384, + 0.014363639988005161, + -0.00973039772361517, + -0.016994429752230644, + 0.024475736543536186, + 0.01883833110332489, + -0.002865681191906333, + -0.01569077931344509, + -0.03854576125741005, + 0.05487075075507164, + 0.0007347712526097894, + 0.012519738636910915, + -0.01037047803401947, + -0.012461015954613686, + 0.002094942145049572, + 0.0645013153553009, + 0.032062746584415436, + 0.01834505796432495, + -0.011820935644209385, + 0.03391839191317558, + 0.002387088956311345, + 0.009037465788424015, + -0.030042674392461777, + -0.027482353150844574, + -0.0170883871614933, + 0.021257717162370682, + 0.051253415644168854, + 0.039767198264598846, + 0.015232739970088005, + 0.0019584111869335175, + 0.0030359779484570026, + 0.005323237739503384, + 0.0013799900189042091, + 0.013694197870790958, + 0.0492803230881691, + 0.02337174490094185, + 0.02743537537753582, + 0.02011849172413349, + -0.0003273806069046259, + 0.021210739389061928, + 0.031428538262844086, + 0.05031384527683258, + 0.025133434683084488, + -0.009160784073174, + 0.027223972603678703, + -0.013212669640779495, + 0.005064856726676226, + 0.01921415887773037, + 0.018392035737633705, + -0.00859704427421093, + -0.009894821792840958, + 0.0032415082678198814, + 0.01732327789068222, + 0.007410839665681124, + 0.009501378051936626, + 0.03135807067155838, + -0.00822121649980545, + 0.012414037249982357, + -0.03384792432188988, + 0.017922252416610718, + 0.047095827758312225, + 0.0005817245109938085, + -0.004941538441926241, + -0.039767198264598846, + -0.02884472720324993, + 0.020153725519776344, + 0.01846250332891941, + 0.01004750095307827, + -0.07756131142377853, + -0.017887018620967865, + -0.006565229035913944, + -0.03600892797112465, + 0.01617230847477913, + -0.01371768768876791, + 0.011051664128899574, + 0.0021844948641955853, + -0.007035012822598219, + -0.009272358380258083, + 0.014692489057779312, + -0.012179145589470863, + 0.008385641500353813, + -0.021093294024467468, + 0.028351454064249992, + 0.009331081062555313, + 0.01308347936719656, + -0.037606194615364075, + -0.010499668307602406, + -0.015080060809850693, + -0.009530738927423954, + -0.03948533162474632, + 0.012367058545351028, + -0.017288044095039368, + -0.03563310205936432, + 0.027130015194416046, + 0.038874611258506775, + 0.04275032877922058, + 0.027905158698558807, + -0.021316440775990486, + 0.027270950376987457, + 0.0028010860551148653, + 0.0016163499094545841, + 0.0021433886140584946, + 0.0404718741774559, + -0.029150085523724556, + -0.013647220097482204, + -0.01998930051922798, + -0.013048245571553707, + -0.03201576694846153, + -0.018662162125110626, + 0.017992720007896423, + -0.03168691694736481, + 0.01591392606496811, + -0.04629719629883766, + 0.007868878543376923, + 0.01657162420451641, + 0.021833203732967377, + 0.008168365806341171, + -0.0057342988438904285, + 0.0065299952402710915, + -0.020576531067490578, + 0.008062664419412613, + 0.01302475668489933, + 0.012331824749708176, + 0.015068315900862217, + -0.04237449914216995, + 0.04235101118683815, + 0.028234006837010384, + 0.004248607438057661, + -0.01667732559144497, + -0.011926637031137943, + 0.018673906102776527, + 0.031170155853033066, + 0.03553914651274681, + -0.00423392653465271, + 0.009583589620888233, + 0.015831714496016502, + -0.014187471009790897, + 0.006160040386021137, + 0.008074409328401089, + -0.04213960841298103, + -0.016912218183279037, + 0.032696954905986786, + -0.02767026610672474, + 0.03591497242450714, + -0.010705199092626572, + 0.000883780827280134, + 0.004462946206331253, + -0.04989103972911835, + 0.006265741772949696, + 0.03314324840903282, + -0.01465725526213646, + 0.0020391554571688175, + -0.001962815411388874, + -0.003400060348212719, + -0.0051823025569319725, + 0.013999558053910732, + 0.0014666063943877816, + 0.007240543141961098, + -0.026613254100084305, + 0.04871658235788345, + -0.016019627451896667, + 0.024076420813798904, + -0.036572668701410294, + -0.009624696336686611, + -0.051253415644168854, + -0.005208727903664112, + -0.02021244913339615, + 0.04131748527288437, + 0.031428538262844086, + -0.029478933662176132, + -0.01793399639427662, + 0.013435817323625088, + -0.035938460379838943, + 0.018321568146348, + 0.015009593218564987, + 0.033072780817747116, + 0.01314220204949379, + 0.05426003038883209, + -0.033800944685935974, + -0.019308114424347878, + 0.009190145879983902, + -0.0101238414645195, + 0.0067883762530982494, + 0.0303245447576046, + -0.020165469497442245, + -0.007986324839293957, + -0.00619527418166399, + 0.01333011593669653, + -0.021915415301918983, + 0.0032415082678198814, + 0.00222706887871027, + 0.009965289384126663, + -0.015902182087302208, + -0.013929090462625027, + -0.02501598745584488, + -0.002401769859716296, + 0.005437747575342655, + -0.0023503871634602547, + -0.027764223515987396, + -0.0010357265127822757, + 0.009389803744852543, + 0.014175727032124996, + 0.02731792815029621, + 0.011351151391863823, + 0.0035263148602098227, + 0.024193866178393364, + -0.00023195575340650976, + -0.04383083060383797, + 0.009753886610269547, + -0.006665057968348265, + -0.010887240059673786, + 0.029103107750415802, + 0.015056570991873741, + -0.05322650820016861, + 0.0028407240752130747, + -0.0006470538210123777, + -0.010793283581733704, + 0.012625440023839474, + -0.005496470723301172, + 0.005029622931033373, + -0.053038593381643295, + 0.019554750993847847, + -0.02176273614168167, + -0.04655557498335838, + 0.013893856666982174, + 0.008925892412662506, + -0.004119416698813438, + 0.007874751463532448, + -0.04084770381450653, + 0.028985662385821342, + 0.03175738453865051, + -0.005581618752330542, + 0.026589764282107353, + 0.0004727199557237327, + -0.00476830592378974, + -0.009971161372959614, + 0.013611986301839352, + -0.01125719491392374, + -0.02579113095998764, + 0.025955555960536003, + -0.016090095043182373, + -0.004371925722807646, + -0.0215160995721817, + 0.01092834584414959, + -0.017781317234039307, + -0.013611986301839352, + 0.001974560087546706, + -0.036337777972221375, + -0.014175727032124996, + 0.029032640159130096, + -0.0026586828753352165, + -0.021163761615753174, + 0.021187249571084976, + -0.026495806872844696, + -0.0014915636274963617, + -0.01289556547999382, + 0.03236810490489006, + -0.032039254903793335, + 0.010546647012233734, + -0.027270950376987457, + 0.018286334350705147, + 0.042515434324741364, + -0.013506284914910793, + 0.02188018150627613, + 0.002610236406326294, + 0.0035468677524477243, + -0.023172086104750633, + -0.014633765444159508, + 0.009395676665008068, + -0.010206053033471107, + 0.03194529935717583, + -0.04197518527507782, + -0.014058280736207962, + 0.0480353944003582, + 0.01707664132118225, + -0.01768735982477665, + 0.0003095802094321698, + -0.01946079544723034, + -0.027247460559010506, + -0.020141981542110443, + -0.03124062344431877, + -0.031545981764793396, + -0.015361931174993515, + 0.019824877381324768, + 0.002802554052323103, + -0.021304696798324585, + 0.01619579643011093, + 0.03436468541622162, + 0.03149900585412979, + 0.046085793524980545, + 0.015573333948850632, + -0.0429852195084095, + 0.021433886140584946, + -0.03008965402841568, + 0.02353616990149021, + 0.006060211453586817, + -0.013424072414636612, + 0.012742886319756508, + -0.020188959315419197, + 0.011914892122149467, + 0.018392035737633705, + 0.0017279236344620585, + 0.00010505907266633585, + 0.05750153958797455, + -0.05421305075287819, + -0.0004356510762590915, + 0.0017998592229560018, + -0.007939346134662628, + -0.00014570639177691191, + 0.026989080011844635, + 0.015138783492147923, + 0.02123422920703888, + -0.05665592849254608, + -0.012355314567685127, + -0.0234069786965847, + -0.021328184753656387, + 0.011721106246113777, + 0.036854539066553116, + -0.025861598551273346, + 0.01263718493282795, + -0.017875274643301964, + -0.007181819994002581, + -0.03814644739031792, + -0.024334801360964775, + 0.05411909520626068, + -0.01655988022685051, + -0.00022957014152780175, + -0.005919276271015406, + 0.03375396877527237, + -0.0011091302148997784, + 0.04768305644392967, + -0.02049431949853897, + 0.015185762196779251, + 0.021821457892656326, + -0.008309300988912582, + 0.02299591712653637, + 0.021844947710633278, + 0.013224414549767971, + 0.03295533359050751, + 0.0010188436135649681, + 0.02792864851653576, + -0.017722593620419502, + 0.008309300988912582, + -0.0023503871634602547, + 0.02933799847960472, + 0.017217576503753662, + 0.020177215337753296, + 0.022220773622393608, + 0.0012559376191347837, + 0.02555624023079872, + 0.020001046359539032, + -0.002999276155605912, + -0.019026244059205055, + -0.02893868274986744, + -0.01061711460351944, + 0.03391839191317558, + 0.016360221430659294, + -0.009307592175900936, + 0.002978723030537367, + -0.00782777275890112, + -0.04615626111626625, + -0.0480119064450264, + 0.0015077124116942286, + -0.03208623453974724, + -0.03147551417350769, + -0.002456088550388813, + 0.031146667897701263, + 0.004662604536861181, + 0.013001266866922379, + -0.034200262278318405, + -0.04789445921778679, + 0.006670930422842503, + -0.02567368559539318, + 0.011820935644209385, + 0.028257496654987335, + 0.01680651679635048, + -0.017534680664539337, + -0.024969009682536125, + 0.0014944997383281589, + 0.037723641842603683, + 0.014704233035445213, + 0.036572668701410294, + 0.0044952440075576305, + 0.003993162419646978, + -0.015866948291659355, + 0.02071746625006199, + 0.0010885772062465549, + 0.003082956187427044, + 0.034458644688129425, + 0.009818482212722301, + 0.014751211740076542, + 0.018861820921301842, + 0.0035498039796948433, + 0.015385420061647892, + 0.009712780825793743, + 0.06008534878492355, + 0.045569028705358505, + 0.05825319513678551, + 0.007980452850461006, + 0.009284102357923985, + 0.03462306782603264, + -0.00578127708286047, + 0.055575426667928696, + 0.009906566701829433, + -0.010035756975412369, + -0.0023195575922727585, + -0.047988418489694595, + -0.014434107579290867, + 0.0016031372360885143, + -0.02150435373187065, + 0.013130458071827888, + 0.0035938462242484093, + -0.009131423197686672, + 0.020787933841347694, + 0.05130039155483246, + 0.03455260023474693, + 0.0077925389632582664, + 0.02327778749167919, + 0.05487075075507164, + -0.019895344972610474, + -0.025579728186130524, + 0.014457597397267818, + -0.02428782358765602, + -0.026331383734941483, + 0.024875052273273468, + 0.0017602212028577924, + -0.031146667897701263, + -0.006265741772949696, + 0.007933474145829678, + 0.014363639988005161, + -0.003006616374477744, + 0.01302475668489933, + -0.03302580118179321, + -0.008050920441746712, + -0.0505957156419754, + 0.008708617649972439, + -0.017111875116825104, + -0.02870379202067852, + 0.012989522889256477, + -0.01632498763501644, + -0.00742845656350255, + -0.0028759578708559275, + 0.008092026226222515, + -0.024546204134821892, + -0.01961347460746765, + 0.008632278069853783, + -0.02757631056010723, + 0.003834610339254141, + 0.008814319036900997, + -0.004184012301266193, + 0.027505842968821526, + -0.016665581613779068, + 0.015890438109636307, + -0.01997755654156208, + 0.012437526136636734, + -0.009166656993329525, + -0.0297138262540102, + 0.026002533733844757, + -0.033706989139318466, + -0.00998877827078104, + 0.012367058545351028, + 0.011627149768173695, + 0.04866960272192955, + -0.022831493988633156, + -0.019883599132299423, + 0.03377745673060417, + 0.014340151101350784, + 0.0027497033588588238, + 0.026002533733844757, + 0.008843679912388325, + -0.006899949628859758, + 0.01043507270514965, + 0.009518994949758053, + -0.016653835773468018, + 0.003711292054504156, + -0.0454985611140728, + 0.025955555960536003, + 0.0028979789931327105, + 0.024475736543536186, + -0.013611986301839352, + 0.02337174490094185, + -0.005411322228610516, + 0.015502866357564926, + 0.024475736543536186, + -0.005851744674146175, + 0.0018820713739842176, + 0.02567368559539318, + -0.03138155862689018, + 0.02123422920703888, + 0.0068705882877111435, + -0.003899205708876252, + 0.026754189282655716, + 0.008338662795722485, + 0.009131423197686672, + -0.017992720007896423, + -0.020001046359539032, + 0.01446934137493372, + -0.02804609388113022, + -0.013095224276185036, + -0.018803097307682037, + 0.0017837104387581348, + 0.04054234176874161, + -0.016853494569659233, + 0.025767643004655838, + -0.007639859337359667, + -0.007892368361353874, + -0.005267451051622629, + 0.00030627704109065235, + 0.025838110595941544, + 0.03474051505327225, + 0.0004840975452680141, + 0.005531704518944025, + 0.05120643600821495, + -0.031076200306415558, + -0.0025368325877934694, + -0.005470045376569033, + 0.06553484499454498, + 0.0038698441348969936, + -0.012954289093613625, + -0.02388850785791874, + 0.01277812011539936, + -0.027740733698010445, + -0.02769375592470169, + -0.01732327789068222, + -0.017898762598633766, + -0.004580392036587, + 0.016524646431207657, + -0.013893856666982174, + -0.01820412278175354, + 0.0044952440075576305, + 0.028539367020130157, + 0.008837807923555374, + -0.03220368176698685, + 0.0012720865197479725, + 0.004228054545819759, + -0.011169110424816608, + 0.0018233484588563442, + 0.007722071371972561, + 0.061635635793209076, + 0.012707652524113655, + 0.003899205708876252, + -0.01617230847477913, + -0.03210972249507904, + -0.031921811401844025, + -0.017980976030230522, + 0.02097584679722786, + -0.027740733698010445, + 0.005050175823271275, + -0.03941486403346062, + 0.0061482954770326614, + 0.0430321991443634, + -0.022537877783179283, + -0.016841750591993332, + -0.016736049205064774, + 0.009642313234508038, + -0.014539808966219425, + 0.005922212265431881, + 0.011298300698399544, + -0.025814620777964592, + 0.023078130558133125, + -0.020893635228276253, + 0.031076200306415558, + -0.015702523291110992, + 0.00000417483670389629, + 0.005299748852849007, + -0.007493051700294018, + 0.003171040676534176, + 0.0017719658790156245, + 0.031663428992033005, + 0.009072699584066868, + -0.028022604063153267, + -0.03182785212993622, + -0.0015194570878520608, + 0.005443620029836893, + -0.02390025183558464, + 0.011885530315339565, + 0.0033530821092426777, + 0.025885088369250298, + -0.012038210406899452, + -0.00891414750367403, + 0.008532448671758175, + -0.012472759932279587, + -0.03135807067155838, + -0.028985662385821342, + 0.02075270004570484, + 0.014539808966219425, + 0.03326069563627243, + 0.005886978469789028, + -0.015737757086753845, + 0.006518250331282616, + 0.00940742064267397, + 0.010511413216590881, + -0.0001801143807824701, + 0.012437526136636734, + 0.00033912519575096667, + -0.02602602355182171, + 0.003182785352692008, + 0.01833331398665905, + -0.0097891204059124, + -0.004835837054997683, + 0.03492842614650726, + -0.01591392606496811, + -0.039015546441078186, + 0.024804584681987762, + -0.005584555212408304, + -0.004292649682611227, + -0.010346988216042519, + 0.01092834584414959, + 0.003053594846278429, + 0.013565007597208023, + 0.005296812392771244, + 0.013400583527982235, + -0.03516331687569618, + -0.003834610339254141, + -0.007868878543376923, + -0.042515434324741364, + 0.004545158240944147, + 0.004137033596634865, + 0.004644987639039755, + 0.02337174490094185, + 0.01870913989841938, + -0.021797969937324524, + 0.005980935413390398, + 0.017170598730444908, + -0.031663428992033005, + -0.002790809376165271, + 0.0010188436135649681, + 0.01921415887773037, + -0.00891414750367403, + 0.002990467706695199, + 0.0021213674917817116, + -0.02312510833144188, + -0.013576752506196499, + 0.011292428709566593, + -0.006048466544598341, + -0.01618405245244503, + 0.026119980961084366, + -0.009830226190388203, + 0.021774480119347572, + -0.025462282821536064, + 0.016360221430659294, + -0.046085793524980545, + 0.009618823416531086, + 0.026848144829273224, + -0.024193866178393364, + -0.006142423488199711, + -0.009630568325519562, + -0.009906566701829433, + 0.02313685230910778, + 0.011351151391863823, + -0.0009762694826349616, + 0.022584857419133186, + -0.011362896300852299, + 0.0030301057267934084, + 0.029291020706295967, + -0.005185239017009735, + -0.013165691867470741, + 0.04538111761212349, + -0.04131748527288437, + 0.011239578016102314, + 0.03095875307917595, + -0.00404014065861702, + -0.04387781023979187, + 0.015479376539587975, + -0.0024604927748441696, + 0.008397385478019714, + -0.02138690836727619, + 0.004122353158891201, + -0.0028642131946980953, + -0.008996360003948212, + 0.020306404680013657, + 0.03631429001688957, + 0.02159831114113331, + -0.005085409618914127, + 0.017522936686873436, + -0.0070173959247767925, + 0.027247460559010506, + -0.02983127161860466, + -0.005320301745086908, + -0.004947410896420479, + 0.022420432418584824, + 0.012120422907173634, + 0.03715990111231804, + 0.016078351065516472, + 0.005387833341956139, + 0.020811423659324646, + -0.0158199705183506, + -0.019378582015633583, + -0.0001318514405284077, + -0.004034268669784069, + -0.027270950376987457, + -0.030441991984844208, + -0.019378582015633583, + 0.008185982704162598, + -0.024475736543536186, + -0.013799899257719517, + -0.028492389246821404, + 0.010276520624756813, + -0.01921415887773037, + 0.01767561584711075, + 0.024992499500513077, + -0.0151622723788023, + 0.016231030225753784, + -0.004016651771962643, + 0.017534680664539337, + 0.007346244528889656, + -0.011973614804446697, + -0.021821457892656326, + 0.01175046805292368, + 0.013013011775910854, + -0.004275032784789801, + 0.018286334350705147, + 0.058863911777734756, + 0.014868658035993576, + -0.006717908661812544, + 0.02907961793243885, + -0.02489854209125042, + -0.027153505012392998, + -0.011668255552649498, + 0.020517807453870773, + 0.011680000461637974, + -0.00575485173612833, + -0.007410839665681124, + 0.03509284928441048, + 0.005807702429592609, + 0.007575264200568199, + 0.005593363661319017, + -0.011897275224328041, + -0.03389490395784378, + -0.028915194794535637, + 0.04728374257683754, + 0.021715756505727768, + 0.01619579643011093, + 0.040119536221027374, + 0.005337918642908335, + 0.0065241227857768536, + -0.006582845933735371, + 0.0024179185274988413, + 0.009906566701829433, + 0.017264556139707565, + -0.028398431837558746, + 0.028797747567296028, + -0.0019129009451717138, + -0.014809934422373772, + -0.002406174084171653, + -0.019930578768253326, + 0.018615184351801872, + 0.013882111757993698, + 0.01264892891049385, + 0.04535762593150139, + 0.01894403249025345, + -0.0016427752561867237, + 0.0007072448497638106, + -0.024311313405632973, + -0.0026968526653945446, + 0.00041436401079408824, + -0.0017470085294917226, + -0.00910793337970972, + -0.0026028959546238184, + 0.002616108627989888, + -0.03250904008746147, + -0.007868878543376923, + -0.017722593620419502, + 0.013353604823350906, + -0.04439457133412361, + 0.015949159860610962, + -0.05299161374568939, + -0.038874611258506775, + 0.0004059225902892649, + 0.0027687884867191315, + 0.006383187603205442, + -0.0271769929677248, + -0.005229281261563301, + 0.0022476220037788153, + 0.016207542270421982, + -0.035961952060461044, + -0.02299591712653637, + -0.03384792432188988, + 0.03708943352103233, + 0.012601951137185097, + 0.023829784244298935, + 0.002312217140570283, + 0.021891925483942032, + -0.0177108496427536, + -0.02060002088546753, + 0.021891925483942032, + -0.002191835083067417, + 0.009683419018983841, + -0.00013286073226481676, + -0.029925229027867317, + 0.02162180095911026, + -0.01565554551780224, + -0.048622626811265945, + -0.02047082968056202, + 0.00004635903678718023, + -0.003182785352692008, + -0.004060694016516209, + 0.024311313405632973, + 0.017875274643301964, + -0.01308347936719656, + 0.006107189692556858, + -0.009524866938591003, + 0.01156842615455389, + 0.03553914651274681, + -0.03295533359050751, + -0.014833424240350723, + -0.024616671726107597, + -0.0057137454859912395, + -0.03474051505327225, + 0.004374861717224121, + -0.011462724767625332, + 0.014833424240350723, + 0.0029420212376862764, + -0.005575746763497591, + 0.015326697379350662, + -0.010082734748721123, + -0.0039197588339447975, + -0.01882658712565899, + -0.03755921497941017, + -0.008996360003948212, + 0.009583589620888233, + 0.020670488476753235, + -0.0016868175007402897, + 0.015420653857290745, + -0.012531483545899391, + -0.010082734748721123, + 0.026895122602581978, + 0.01974266581237316, + 0.010805027559399605, + -0.015115294605493546, + -0.018920542672276497, + -0.02602602355182171, + -0.009947672486305237, + 0.02452271431684494, + 0.00046758170356042683, + 0.004689029883593321, + -0.008667511865496635, + -0.02391199581325054, + -0.03182785212993622, + -0.020282916724681854, + -0.05364931374788284, + -0.004947410896420479, + -0.031780876219272614, + -0.03340163081884384, + -0.021339930593967438, + -0.04617974907159805, + -0.004630306735634804, + -0.03302580118179321, + 0.008068537339568138, + -0.008039175532758236, + 0.02478109672665596, + 0.01846250332891941, + -0.02818702906370163, + -0.01605486124753952, + -0.03121713548898697, + -0.009577717632055283, + -0.04124701768159866, + 0.02729444019496441, + 0.008620533160865307, + -0.009507250040769577, + 0.014551553875207901, + 0.022690558806061745, + -0.03572705760598183, + -0.01383513305336237, + 0.030418502166867256, + 0.029995696619153023, + -0.02767026610672474, + -0.021645288914442062, + 0.01618405245244503, + 0.0036819307133555412, + 0.016242776066064835, + -0.02565019577741623, + 0.021809713914990425, + -0.02703605778515339, + 0.008444364182651043, + -0.001874731038697064, + 0.014774700626730919, + -0.027646778151392937, + -0.05876995623111725, + 0.02489854209125042, + 0.0135884964838624, + -0.0071054804138839245, + -0.00973039772361517, + 0.008673383854329586, + 0.045428093522787094, + 0.02223251946270466, + 0.001352830557152629, + -0.033072780817747116, + -0.030254077166318893, + -0.019801387563347816, + -0.005191111005842686, + 0.0011935444781556726, + 0.01821586675941944, + 0.016090095043182373, + 0.020071513950824738, + 0.008003941737115383, + 0.0027350226882845163, + 0.0017954549985006452, + -0.011268938891589642, + -0.0007233936921693385, + 0.030395012348890305, + -0.008737979456782341, + -0.026495806872844696, + -0.007722071371972561, + -0.013518028892576694 + ] + }, + { + "HotelId": "47", + "HotelName": "Country Comfort Inn", + "Description": "Situated conveniently at the north end of the village, the inn is just a short walk from the lake, offering reasonable rates and all the comforts home inlcuding living room suites and functional kitchens. Pets are welcome.", + "Description_fr": "IdĆ©alement situĆ©e Ć  l'extrĆ©mitĆ© nord du village, l'auberge se trouve Ć  quelques pas du lac, offrant des tarifs raisonnables et tout le confort de la maison, y compris des salles de sĆ©jour et des cuisines fonctionnelles. Les animaux sont les bienvenus.", + "Category": "Extended-Stay", + "Tags": [ + "laundry service", + "free wifi", + "free parking", + "24-hour front desk service" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-01-03T00:00:00Z", + "Rating": 2.5, + "Address": { + "StreetAddress": "700 Bellevue Way", + "City": "Bellevue", + "StateProvince": "WA", + "PostalCode": "98004", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.201195, + 47.616989 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 93.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 165.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 84.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 92.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 134.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 129.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "suite", + "tv" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + } + ], + "embedding": [ + -0.011206871829926968, + 0.00405739713460207, + 0.02879147231578827, + -0.03626951202750206, + 0.011563453823328018, + -0.02237299084663391, + -0.015098712407052517, + -0.016219399869441986, + 0.024166090413928032, + -0.04735412821173668, + 0.007111269515007734, + -0.0058173853904008865, + -0.005094032734632492, + 0.0067088408395648, + -0.039753831923007965, + 0.055586084723472595, + 0.011991352774202824, + 0.040324363857507706, + -0.011492137797176838, + 0.0863947942852974, + -0.01899055391550064, + -0.004182200878858566, + -0.058764759451150894, + -0.0641440600156784, + 0.02388082444667816, + -0.00043936033034697175, + -0.016127707436680794, + -0.02942313253879547, + 0.039387062191963196, + -0.021782083436846733, + -0.013213920406997204, + -0.019887102767825127, + 0.012337747029960155, + -0.06068011745810509, + 0.032846324145793915, + 0.014171598479151726, + 0.01489495113492012, + -0.03834787756204605, + -0.021211551502346992, + -0.04028360918164253, + -0.03633064031600952, + 0.04201558232307434, + -0.04331965371966362, + -0.0323980487883091, + -0.027507776394486427, + -0.00466868095099926, + 0.013325989246368408, + 0.0008360581123270094, + -0.03967232629656792, + -0.01219511404633522, + -0.01240906398743391, + 0.0018249371787533164, + -0.011889472603797913, + -0.059539053589105606, + -0.03777734562754631, + 0.006428669206798077, + 0.023045403882861137, + -0.014956079423427582, + 0.050695814192295074, + 0.035882364958524704, + 0.01068728044629097, + -0.005066015291959047, + 0.06687445938587189, + 0.026162952184677124, + -0.03732907027006149, + 0.02728363871574402, + -0.046090807765722275, + 0.020131617784500122, + -0.012582261115312576, + -0.029749151319265366, + 0.027976427227258682, + -0.01298978365957737, + -0.036452896893024445, + -0.04592780023813248, + -0.003927499055862427, + 0.025164522230625153, + -0.04221934452652931, + -0.03050306811928749, + -0.006168873514980078, + 0.019143374636769295, + -0.07119420170783997, + -0.01657598279416561, + -0.026448218151926994, + 0.0006577669410035014, + 0.004676321987062693, + -0.015618303790688515, + 0.013071287423372269, + 0.030278930440545082, + -0.010030150413513184, + 0.028526583686470985, + 0.02180245891213417, + 0.005669658537954092, + -0.022067349404096603, + -0.009953740052878857, + -0.015088524669408798, + -0.027079878374934196, + 0.03934630751609802, + -0.022474871948361397, + -0.02404383383691311, + 0.022067349404096603, + 0.03276481851935387, + -0.05627887323498726, + 0.0005985488533042371, + -0.021272679790854454, + 0.04109865427017212, + -0.014609686098992825, + 0.013539939187467098, + 0.01932675950229168, + -0.01702425628900528, + -0.025572044774889946, + -0.09968002885580063, + 0.04710961505770683, + -0.005297794006764889, + 0.027589280158281326, + -0.05713466927409172, + 0.01756422407925129, + 0.010982734151184559, + 0.0054149567149579525, + -0.024349475279450417, + -0.004200030118227005, + 0.014996832236647606, + 0.04067075625061989, + -0.014395736157894135, + -0.025633173063397408, + 0.0027584186755120754, + -0.06581490486860275, + -0.03404851257801056, + -0.015546987764537334, + 0.012633200734853745, + -0.02251562476158142, + -0.0036575153935700655, + 0.01745215617120266, + 0.05452652648091316, + 0.02597956731915474, + -0.024125339463353157, + 0.004284081514924765, + 0.00233434047549963, + -0.020162181928753853, + -0.02010105364024639, + 0.013224109075963497, + 0.04254535958170891, + 0.010911418125033379, + 0.02237299084663391, + -0.024858878925442696, + -0.010850289836525917, + 0.03592311963438988, + 0.019377700984477997, + 0.013356553390622139, + 0.008354214020073414, + -0.015231157653033733, + 0.0011060418328270316, + -0.007916126400232315, + -0.004834237042814493, + -0.0038816528394818306, + -0.040120601654052734, + 0.025490539148449898, + 0.007967066951096058, + -0.009286421351134777, + -0.026713106781244278, + 0.05880551412701607, + -0.006922790315002203, + -0.027079878374934196, + 0.030767956748604774, + 0.025735052302479744, + 0.00635225884616375, + 0.02026406116783619, + 0.006087368819862604, + 0.005552495829761028, + -0.0658964067697525, + -0.017900431528687477, + 0.05917228385806084, + 0.04060962796211243, + -0.00782952830195427, + 0.08476470410823822, + 0.00793140847235918, + 0.003924952354282141, + 0.020019548013806343, + -0.0036345922853797674, + -0.005081297364085913, + 0.00998939760029316, + 0.007029765285551548, + -0.03296858072280884, + 0.010188065469264984, + 0.019632400944828987, + -0.011848719790577888, + 0.019479580223560333, + -0.04246385768055916, + 0.020814217627048492, + -0.05057355761528015, + 0.025673924013972282, + -0.05232590436935425, + -0.03174601122736931, + 0.011094802990555763, + -0.010656716302037239, + 0.011094802990555763, + -0.013835392892360687, + -0.014395736157894135, + -0.04050774872303009, + 0.03584161400794983, + 0.004082866944372654, + -0.04007985070347786, + -0.0598650723695755, + 0.06826003640890121, + -0.005384392570704222, + -0.007039953023195267, + 0.02691686898469925, + -0.01665748655796051, + 0.04409394785761833, + 0.025572044774889946, + -0.04466447979211807, + 0.009561499580740929, + 0.004235688131302595, + 0.059987328946590424, + 0.014314231462776661, + 0.04107828065752983, + 0.0002723715442698449, + -0.018603406846523285, + 0.0016173553885892034, + -0.0320720300078392, + 0.031909018754959106, + -0.05957980453968048, + 0.01298978365957737, + -0.00622490793466568, + 0.01388633344322443, + -0.0034384720493108034, + 0.022393368184566498, + -0.010870665311813354, + -0.037899602204561234, + -0.004398697055876255, + 0.007386347278952599, + 0.0021356733050197363, + -0.020824406296014786, + 0.0032372577115893364, + -0.03553597256541252, + -0.05420050770044327, + 0.014691189862787724, + 0.02791529893875122, + 0.018909050151705742, + -0.038266371935606, + -0.004773108754307032, + -0.023208413273096085, + -0.03635101765394211, + -0.06202493980526924, + 0.00006781431147828698, + 0.03146074712276459, + -0.0566863939166069, + 0.024920007213950157, + 0.019571272656321526, + 0.018369082361459732, + -0.024430980905890465, + -0.027935674414038658, + 0.06394030153751373, + 0.07473964989185333, + -0.04564253240823746, + 0.0037364729214459658, + 0.025673924013972282, + -0.01457912102341652, + -0.024492109194397926, + 0.045153506100177765, + -0.019652778282761574, + 0.025531291961669922, + -0.004724715370684862, + -0.00019341404549777508, + -0.008578350767493248, + 0.014528181403875351, + -0.021822836250066757, + -0.012887902557849884, + 0.04804691672325134, + 0.0009965201606974006, + -0.040263235569000244, + -0.03417077288031578, + -0.05053280293941498, + -0.006255472078919411, + -0.009143788367509842, + 0.01367238350212574, + 0.033355724066495895, + 0.027935674414038658, + 0.010111655108630657, + 0.0430343896150589, + 0.004245876334607601, + -0.05053280293941498, + -0.05664564296603203, + 0.02061045542359352, + 0.025388658046722412, + -0.01943882927298546, + -0.0034308310132473707, + 0.04348266124725342, + 0.017778173089027405, + 0.03423190116882324, + -0.019428640604019165, + -0.05375223234295845, + 0.011145743541419506, + 0.02720213495194912, + -0.0054047685116529465, + 0.006469421554356813, + 0.020478012040257454, + 0.011288376525044441, + 0.0005530209164135158, + 0.07910013943910599, + 0.04735412821173668, + 0.010748408734798431, + 0.054730288684368134, + -0.03726794198155403, + -0.038755401968955994, + -0.033865127712488174, + 0.006179061718285084, + 0.031847890466451645, + -0.019876915961503983, + 0.008736265823245049, + 0.010295039974153042, + -0.011125367134809494, + 0.03663628175854683, + -0.04085414111614227, + -0.02748740091919899, + -0.008507034741342068, + 0.008950215764343739, + 0.015312662348151207, + -0.00638791685923934, + -0.02145606465637684, + 0.023554807528853416, + 0.07531017810106277, + 0.06394030153751373, + 0.016321280971169472, + 0.009928269311785698, + -0.037023428827524185, + -0.007814246229827404, + -0.0018580483738332987, + -0.01654541864991188, + -0.01953052170574665, + 0.036167632788419724, + 0.03135886415839195, + -0.007717459462583065, + -0.029484260827302933, + 0.011410633102059364, + -0.038898032158613205, + -0.007809151895344257, + -0.04861744865775108, + -0.03347798436880112, + -0.017146514728665352, + 0.01781892590224743, + -0.022678634151816368, + -0.014049341902136803, + -0.047028109431266785, + 0.03498581796884537, + -0.004546424373984337, + -0.014619873836636543, + 0.00953602883964777, + 0.029300875961780548, + 0.0011894566705450416, + 0.058112725615501404, + -0.04841368645429611, + -0.014130846597254276, + -0.008298179134726524, + 0.008450999855995178, + 0.017411403357982635, + 0.004100696183741093, + 0.03724756836891174, + 0.00855797529220581, + -0.003089530859142542, + 0.05807197093963623, + 0.010656716302037239, + 0.006683371029794216, + -0.011797779239714146, + 0.013621442951261997, + 0.020967038348317146, + -0.028363574296236038, + 0.015159841626882553, + -0.0291378665715456, + -0.06190268322825432, + -0.013733511790633202, + 0.02265825681388378, + 0.03362061455845833, + -0.0260406956076622, + -0.010850289836525917, + 0.014324420131742954, + 0.04071150720119476, + 0.027691161260008812, + 0.02231186255812645, + 0.0036269512493163347, + -0.006128121167421341, + 0.022413743659853935, + -0.011104991659522057, + 0.04898421838879585, + -0.04886196181178093, + 0.03131811320781708, + -0.05151085928082466, + -0.018094003200531006, + 0.008298179134726524, + -0.029891783371567726, + 0.042626865208148956, + 0.009867141023278236, + -0.03794035688042641, + -0.012225678190588951, + 0.004671228118240833, + 0.053426213562488556, + -0.006245283875614405, + 0.020050112158060074, + 0.011614394374191761, + -0.01364181935787201, + 0.00503799831494689, + 0.019112810492515564, + 0.02469586953520775, + -0.012062669731676579, + -0.0582757331430912, + -0.03172563388943672, + -0.008675137534737587, + 0.023004651069641113, + 0.004757826682180166, + -0.09340418130159378, + -0.015648867934942245, + -0.03451716527342796, + -0.04311589151620865, + -0.00114743085578084, + -0.03093096613883972, + -0.024553237482905388, + -0.051347848027944565, + 0.024777375161647797, + -0.021985845640301704, + 0.025796180590987206, + -0.005430238787084818, + 0.011145743541419506, + 0.006724122911691666, + -0.05750143900513649, + 0.004360491875559092, + -0.02870996855199337, + 0.03453754261136055, + 0.018654348328709602, + -0.024145714938640594, + -0.0800374448299408, + -0.03294820338487625, + -0.006556020118296146, + 0.02958614192903042, + -0.016382409259676933, + 0.027731914073228836, + -0.01941845193505287, + 0.029198994860053062, + -0.024512484669685364, + -0.0431973971426487, + 0.012103421613574028, + -0.04409394785761833, + -0.009673568420112133, + -0.055789846926927567, + -0.03741057589650154, + -0.016321280971169472, + -0.005929454229772091, + -0.018521903082728386, + 0.0037848663050681353, + 0.06634467840194702, + -0.005725692491978407, + -0.036595530807971954, + -0.01023391168564558, + 0.016606546938419342, + 0.020671583712100983, + -0.0065916781313717365, + 0.03576010838150978, + 0.011920036748051643, + 0.05175537243485451, + 0.009276233613491058, + -0.021822836250066757, + -0.011706086806952953, + 0.05636037886142731, + 0.02418646775186062, + -0.025225650519132614, + 0.019153563305735588, + 0.027100253850221634, + -0.01791061833500862, + -0.04409394785761833, + 0.0360453762114048, + 0.010524271056056023, + -0.029545389115810394, + -0.054934047162532806, + -0.05000302568078041, + 0.01784949004650116, + -0.0063064126297831535, + -0.037471704185009, + -0.009841671213507652, + -0.06398104876279831, + 0.015648867934942245, + -0.01367238350212574, + 0.0400187224149704, + -0.022862019017338753, + 0.0323980487883091, + -0.009057190269231796, + -0.002502443501725793, + 0.030767956748604774, + -0.0676487535238266, + 0.005577965639531612, + 0.025857308879494667, + -0.0444607175886631, + 0.029810279607772827, + -0.02597956731915474, + -0.003486865432932973, + -0.05269267410039902, + -0.0048164078034460545, + -0.00009909485379466787, + 0.033131588250398636, + 0.013804828748106956, + 0.02057989127933979, + 0.010992922820150852, + -0.00022318230185192078, + -0.05957980453968048, + 0.02547016367316246, + 0.00032044650288298726, + 0.06752649694681168, + -0.011023486964404583, + 0.037818100303411484, + -0.01662692241370678, + -0.017503095790743828, + 0.00724880862981081, + 0.014365172013640404, + -0.016321280971169472, + 0.06039484962821007, + -0.003474130295217037, + 0.013550126925110817, + -0.006184155587106943, + 0.03325384482741356, + 0.007972161285579205, + 0.03465979918837547, + -0.033640991896390915, + 0.004768014419823885, + -0.020620644092559814, + 0.0377977229654789, + -0.02864884026348591, + -0.018776604905724525, + 0.028730344027280807, + 0.0446237251162529, + -0.042708370834589005, + -0.0238196961581707, + -0.019306384027004242, + -0.02390120178461075, + 0.014426300302147865, + 0.003084436757490039, + -0.018318140879273415, + 0.03172563388943672, + -0.011064238846302032, + 0.04005947336554527, + 0.067322738468647, + 0.00802819523960352, + -0.01773742213845253, + -0.020641019567847252, + 0.014426300302147865, + 0.0015995262656360865, + -0.034293029457330704, + 0.016901999711990356, + -0.03704380616545677, + -0.01859322004020214, + 0.018318140879273415, + -0.0030564195476472378, + 0.03891840949654579, + -0.005506649147719145, + 0.008970591239631176, + 0.051999885588884354, + 0.020508576184511185, + -0.020630832761526108, + 0.02049838751554489, + 0.017696669325232506, + -0.005725692491978407, + 0.018430210649967194, + 0.01734008640050888, + 0.012918466702103615, + -0.018287576735019684, + 0.0020898268558084965, + -0.01216454990208149, + -0.018807169049978256, + 0.02353443019092083, + -0.021619074046611786, + 0.03394663333892822, + -0.012510944157838821, + -0.02432909980416298, + 0.02828206866979599, + -0.033070459961891174, + 0.02390120178461075, + -0.01370294764637947, + 0.03164413198828697, + 0.012551696039736271, + 0.0010009774705395103, + -0.02993253618478775, + -0.0017994670197367668, + -0.015730373561382294, + -0.01457912102341652, + -0.003499600337818265, + -0.037675466388463974, + -0.04409394785761833, + 0.030054792761802673, + -0.022393368184566498, + 0.03274444118142128, + -0.03720681369304657, + 0.005858137737959623, + -0.006637524347752333, + 0.020253874361515045, + 0.010320509783923626, + 0.005272323731333017, + -0.030054792761802673, + -0.04735412821173668, + -0.014660625718533993, + -0.0066986531019210815, + 0.009327174164354801, + 0.03863314539194107, + -0.022250734269618988, + 0.012317370623350143, + -0.002806812059134245, + -0.012358123436570168, + 0.022495247423648834, + 0.03567860648036003, + -0.018746040761470795, + -0.031562626361846924, + -0.004286628682166338, + 0.02186358906328678, + -0.01151251420378685, + -0.015720184892416, + -0.03653440251946449, + -0.028628462925553322, + 0.0284247025847435, + -0.0007984896074049175, + -0.021965468302369118, + -0.030604947358369827, + -0.05175537243485451, + 0.004551518242806196, + -0.013234296813607216, + -0.006581490393728018, + -0.003963157534599304, + -0.0026017772033810616, + 0.03785885125398636, + 0.02316766045987606, + 0.007671613246202469, + 0.030034417286515236, + 0.02475699782371521, + -0.04547952488064766, + -0.012908278964459896, + -0.031114351004362106, + 0.028526583686470985, + 0.05815347656607628, + 0.028098683804273605, + -0.01835889369249344, + -0.024369852617383003, + 0.004138901364058256, + 0.03893878683447838, + -0.02430872432887554, + 0.02402345836162567, + 0.03484318405389786, + -0.024777375161647797, + 0.03357986360788345, + 0.030971718952059746, + -0.023432550951838493, + 0.015057960525155067, + 0.004258611239492893, + 0.0330297090113163, + 0.0017383386148139834, + 0.01125781238079071, + -0.0011136828688904643, + -0.013071287423372269, + -0.004663587082177401, + 0.039468564093112946, + -0.009887517429888248, + -0.016280528157949448, + 0.05089957267045975, + -0.02083459310233593, + 0.018409833312034607, + 0.017859678715467453, + 0.00441397912800312, + -0.004966681823134422, + 0.004997245967388153, + 0.010340886190533638, + 0.023921577259898186, + 0.0033798906952142715, + 0.012673953548073769, + -0.005045639351010323, + -0.01148195005953312, + -0.011288376525044441, + -0.0071571157313883305, + 0.06667070090770721, + 0.04266761615872383, + 0.02115042321383953, + 0.008089323528110981, + 0.022495247423648834, + 0.009597157128155231, + 0.025490539148449898, + -0.03404851257801056, + -0.01626015268266201, + 0.01132912840694189, + 0.02669273130595684, + 0.013122227974236012, + -0.0005492003983817995, + -0.0057205986231565475, + 0.007763305678963661, + -0.005949830170720816, + 0.033070459961891174, + -0.012847150675952435, + 0.05676789954304695, + 0.01309166382998228, + 0.0009302977123297751, + 0.013213920406997204, + 0.012918466702103615, + -0.013264860957860947, + 0.0026132387574762106, + -0.009123412892222404, + -0.0008768103434704244, + -0.014405923895537853, + 0.009199823252856731, + -0.017238207161426544, + 0.01805325224995613, + -0.00483168987557292, + -0.0005129054188728333, + -0.03741057589650154, + -0.00535892229527235, + -0.04547952488064766, + 0.011858908459544182, + -0.015709996223449707, + -0.01830795407295227, + -0.009856953285634518, + 0.005552495829761028, + -0.015424731187522411, + -0.011288376525044441, + 0.001832578214816749, + -0.0019662966951727867, + -0.009306797757744789, + -0.022699009627103806, + -0.008975685574114323, + 0.01190984807908535, + -0.005832667462527752, + 0.017666105180978775, + 0.028546959161758423, + 0.02697799727320671, + 0.020967038348317146, + 0.01676955632865429, + 0.01989729143679142, + 0.026998372748494148, + -0.010463142767548561, + 0.02928050048649311, + -0.004722168203443289, + -0.009189634583890438, + -0.028526583686470985, + 0.013713136315345764, + 0.04372717812657356, + -0.014681002125144005, + 0.004113431554287672, + -0.010254288092255592, + 0.016851060092449188, + -0.009602251462638378, + -0.035800863057374954, + 0.003868917701765895, + 0.0016848512459546328, + -0.0034206430427730083, + 0.030767956748604774, + -0.013865957036614418, + -0.011563453823328018, + -0.003313668305054307, + 0.008496846072375774, + -0.044501468539237976, + -0.009658286347985268, + -0.025449786335229874, + 0.003947875462472439, + -0.03311121091246605, + -0.03419114649295807, + -0.00933736190199852, + -0.057460688054561615, + 0.0032703690230846405, + -0.04101715236902237, + -0.012001540511846542, + 0.007518792059272528, + -0.012633200734853745, + -0.013468622229993343, + 0.018094003200531006, + 0.002035066019743681, + 0.05966131016612053, + 0.012887902557849884, + 0.01921469159424305, + 0.033865127712488174, + -0.026937244459986687, + -0.01608695462346077, + -0.03447641432285309, + -0.020854970440268517, + -0.027894923463463783, + -0.02396233007311821, + 0.06373653560876846, + -0.043930936604738235, + 0.006102651357650757, + -0.0074831340461969376, + 0.037390198558568954, + -0.020600268617272377, + 0.050410546362400055, + -0.05387448891997337, + 0.004444543272256851, + -0.038959160447120667, + 0.011757027357816696, + 0.014884763397276402, + 0.0584387443959713, + 0.028954481706023216, + -0.01892942562699318, + 0.04230084642767906, + -0.001193277188576758, + -0.02481812797486782, + 0.04044662043452263, + -0.0584387443959713, + 0.02251562476158142, + -0.030767956748604774, + -0.012296995148062706, + -0.00004600548345479183, + 0.05546382814645767, + -0.006184155587106943, + 0.00535892229527235, + -0.022189605981111526, + -0.016280528157949448, + -0.0035785578656941652, + 0.026244455948472023, + -0.0018860655836760998, + -0.029484260827302933, + 0.015934133902192116, + -0.0023725456558167934, + -0.017503095790743828, + 0.01830795407295227, + 0.007345594931393862, + -0.00769708352163434, + -0.007946690544486046, + 0.015129276551306248, + -0.004931023810058832, + -0.014365172013640404, + 0.024716246873140335, + -0.012602636590600014, + -0.021639451384544373, + 0.012358123436570168, + -0.013285237364470959, + 0.005053280387073755, + 0.023554807528853416, + -0.0330297090113163, + 0.010417296551167965, + -0.014721754007041454, + -0.014232727698981762, + 0.02186358906328678, + 0.006148497574031353, + 0.024593990296125412, + -0.019550897181034088, + -0.005664564203470945, + 0.01033069845288992, + -0.004192389082163572, + -0.006586584262549877, + -0.008262520655989647, + 0.012938843108713627, + 0.006973730865865946, + 0.011054051108658314, + 0.02021312154829502, + 0.048821210861206055, + -0.017401214689016342, + 0.021476441994309425, + -0.04682434722781181, + -0.0037492080591619015, + -0.010014868341386318, + 0.03021780215203762, + 0.02007048949599266, + -0.0031277360394597054, + -0.0037492080591619015, + -0.018399646505713463, + -0.004421620164066553, + 0.004235688131302595, + -0.010697468183934689, + -0.050206784158945084, + -0.0013231750344857574, + -0.009897705167531967, + 0.014324420131742954, + -0.009999586269259453, + 0.005445520859211683, + -0.019306384027004242, + 0.007422005757689476, + 0.014742130413651466, + -0.028241317719221115, + 0.0046533988788723946, + -0.013112040236592293, + -0.002214630600064993, + 0.011155931279063225, + 0.003756849095225334, + -0.021904340013861656, + 0.023147284984588623, + -0.007381253410130739, + -0.003879105905070901, + 0.00937811378389597, + -0.040833767503499985, + 0.03146074712276459, + 0.02245449647307396, + -0.007564638275653124, + -0.017900431528687477, + -0.005167895928025246, + -0.011104991659522057, + -0.018338518217206, + 0.0007131645688787103, + -0.008308366872370243, + 0.014558745548129082, + -0.04437921196222305, + 0.013152792118489742, + -0.009882423095405102, + 0.015597928315401077, + 0.008196298964321613, + 0.02987140789628029, + 0.05179612338542938, + 0.018083816394209862, + -0.024553237482905388, + 0.00006717755604768172, + -0.010789161548018456, + 0.03582123667001724, + 0.015852630138397217, + 0.01064652856439352, + 0.0023139643017202616, + 0.007192774210125208, + 0.01583225280046463, + 0.027793042361736298, + 0.014232727698981762, + 0.009128506295382977, + -0.02524602599442005, + -0.01215436216443777, + -0.009632815606892109, + 0.016708428040146828, + 0.007218244485557079, + -0.039896462112665176, + 0.0013499186607077718, + -0.0048164078034460545, + -0.004345209803432226, + 0.02402345836162567, + -0.03749208152294159, + 0.0207225251942873, + 0.00699920067563653, + 0.009133600629866123, + -0.0038409007247537374, + 0.06561113893985748, + -0.02777266688644886, + 0.027528151869773865, + 0.021985845640301704, + -0.0027023842558264732, + 0.022678634151816368, + -0.022413743659853935, + 0.0041541834361851215, + -0.020559515804052353, + 0.0291378665715456, + -0.023860448971390724, + -0.01762535236775875, + -0.0094086779281497, + 0.041628435254096985, + 0.04311589151620865, + 0.03899991512298584, + 0.012938843108713627, + 0.03101246990263462, + -0.013988213613629341, + -0.005481179337948561, + 0.005277418065816164, + 0.018338518217206, + -0.0398557111620903, + 0.014833822846412659, + -0.0034079079050570726, + 0.014599497430026531, + -0.0063828229904174805, + 0.02583693340420723, + -0.030747581273317337, + 0.013611255213618279, + 0.011920036748051643, + 0.03675853833556175, + -0.0115532660856843, + -0.005455709062516689, + 0.002600503619760275, + -0.027467023581266403, + -0.034150395542383194, + 0.004090508446097374, + 0.003336591413244605, + 0.020488198846578598, + 0.021252304315567017, + -0.0158016886562109, + -0.03355948626995087, + 0.002149681793525815, + 0.00003231527080060914, + 0.0398557111620903, + 0.019235067069530487, + 0.029749151319265366, + 0.008889086544513702, + -0.028363574296236038, + 0.04715036600828171, + -0.020253874361515045, + -0.0005351917934603989, + -0.035576723515987396, + -0.006795439403504133, + -0.05354847013950348, + 0.020162181928753853, + -0.0268353633582592, + -0.046661339700222015, + 0.007228432223200798, + 0.06438857316970825, + 0.0012760552344843745, + 0.012347934767603874, + -0.017472531646490097, + 0.01568962074816227, + 0.046294569969177246, + -0.00818611029535532, + -0.006917696446180344, + -0.036086127161979675, + 0.029973288998007774, + -0.021394936367869377, + -0.03266293555498123, + -0.02294352278113365, + -0.00033334075124002993, + 0.011420820839703083, + 0.014915327541530132, + -0.019163750112056732, + 0.04405319318175316, + 0.017503095790743828, + -0.013173168525099754, + -0.006403198931366205, + -0.008119887672364712, + -0.020854970440268517, + -0.021985845640301704, + 0.03692154958844185, + -0.015220969915390015, + 0.00856816302984953, + -0.04657983407378197, + 0.0006211536237969995, + 0.01252113189548254, + 0.01594432257115841, + 0.04323814809322357, + -0.009204916656017303, + -0.022189605981111526, + 0.02777266688644886, + 0.007605390623211861, + 0.01835889369249344, + -0.0028602993115782738, + 0.042341601103544235, + 0.008165733888745308, + -0.005832667462527752, + 0.02375856786966324, + -0.005659470334649086, + 0.021557945758104324, + -0.024573612958192825, + 0.04503124952316284, + 0.007365971338003874, + 0.036677036434412, + -0.024145714938640594, + 0.015883194282650948, + 0.03863314539194107, + 0.013539939187467098, + 0.04095602408051491, + 0.02583693340420723, + -0.002592862583696842, + 0.01330561377108097, + -0.005944736301898956, + -0.0012703243410214782, + -0.02057989127933979, + -0.03584161400794983, + -0.0010073449229821563, + -0.0019573820754885674, + -0.01482363510876894, + -0.04118015989661217, + -0.004039567895233631, + 0.00793140847235918, + -0.007391441613435745, + 0.011410633102059364, + 0.014304043725132942, + -0.01719745434820652, + -0.010442767292261124, + 0.017859678715467453, + 0.00454133003950119, + 0.03131811320781708, + 0.012337747029960155, + -0.0071673039346933365, + 0.00003748889503185637, + -0.009189634583890438, + -0.0007443655049428344, + 0.004650851711630821, + 0.015027396380901337, + 0.01485419925302267, + -0.012663764879107475, + -0.019306384027004242, + 0.011746839620172977, + -0.019336948171257973, + -0.006489797495305538, + -0.008405153639614582, + 0.061413656920194626, + 0.012949030846357346, + -0.005045639351010323, + 0.007727647665888071, + 0.014670814387500286, + 0.0285062063485384, + -0.036086127161979675, + 0.0007857545278966427, + -0.004571894183754921, + 0.0075493562035262585, + 0.043564166873693466, + 0.011094802990555763, + 0.009862047620117664, + -0.0320720300078392, + -0.01104386243969202, + -0.017360463738441467, + -0.012021916918456554, + -0.014008590020239353, + -0.030380811542272568, + -0.003751754993572831, + 0.005246853455901146, + -0.0021369466558098793, + 0.015526611357927322, + 0.0014976456295698881, + 0.007192774210125208, + 0.011644958518445492, + -0.005898889619857073, + 0.044949743896722794, + 0.019917666912078857, + 0.029912158846855164, + 0.022413743659853935, + -0.0017714498098939657, + -0.016963128000497818, + 0.01622958853840828, + 0.004615193698555231, + -0.005333452019840479, + -0.028078308328986168, + -0.0049233827739953995, + 0.030197424814105034, + -0.001199644641019404, + 0.005909077823162079, + 0.011155931279063225, + -0.025735052302479744, + 0.034578293561935425, + -0.003637139219790697, + -0.023840073496103287, + 0.017044633626937866, + -0.010025056079030037, + 0.016749178990721703, + -0.017350275069475174, + 0.025735052302479744, + -0.024410605430603027, + -0.03834787756204605, + -0.012612825259566307, + -0.008384778164327145, + 0.007798964157700539, + -0.021904340013861656, + 0.006347164511680603, + -0.00773274153470993, + 0.028017180040478706, + -0.028180189430713654, + -0.0058173853904008865, + -0.03818487003445625, + -0.04943249374628067, + -0.03276481851935387, + -0.018206072971224785, + -0.006683371029794216, + -0.011094802990555763, + 0.003181223291903734, + 0.010778972879052162, + 0.009388302452862263, + 0.029117491096258163, + 0.037960730493068695, + 0.015577551908791065, + 0.02512376941740513, + 0.030034417286515236, + 0.008889086544513702, + 0.024003081023693085, + 0.033131588250398636, + 0.004467466846108437, + -0.017635541036725044, + -0.04507200047373772, + 0.036962300539016724, + 0.02496076002717018, + 0.03101246990263462, + -0.021639451384544373, + 0.01478288322687149, + 0.03952969238162041, + -0.013010159134864807, + -0.023636311292648315, + -0.005178084131330252, + 0.000792758830357343, + -0.013550126925110817, + -0.020019548013806343, + 0.008104605600237846, + 0.0036422333214432, + -0.030238177627325058, + -0.005791915114969015, + 0.012205302715301514, + -0.008191204629838467, + 0.00969394389539957, + 0.00978054292500019, + 0.0075799208134412766, + 0.0070908935740590096, + -0.03221466392278671, + 0.012541508302092552, + -0.006953354459255934, + 0.014069718308746815, + 0.012938843108713627, + 0.050125282257795334, + -0.022637881338596344, + 0.028811847791075706, + 0.0069839186035096645, + -0.024838503450155258, + -0.005878513678908348, + -0.016127707436680794, + -0.028811847791075706, + 0.008068948052823544, + 0.01097254641354084, + -0.0045846295543015, + -0.030462315306067467, + 0.011981165036559105, + 0.0007793870172463357, + -0.014344795607030392, + -0.01824682578444481, + -0.00879739411175251, + 0.00856816302984953, + -0.019520333036780357, + 0.008751547895371914, + 0.012317370623350143, + 0.03268331289291382, + 0.002687102183699608, + 0.022760137915611267, + -0.01007599662989378, + 0.004245876334607601, + -0.039101794362068176, + 0.004515859764069319, + -0.0006297497893683612, + -0.03372249752283096, + -0.000051298502512509, + 0.012439628131687641, + -0.0161175187677145, + 0.003469036193564534, + -0.016331467777490616, + -0.02518489770591259, + 0.04348266124725342, + -0.008501940406858921, + -0.01958146132528782, + 0.030319683253765106, + -0.005178084131330252, + -0.005909077823162079, + 0.016759367659687996, + 0.029891783371567726, + 0.0022184511180967093, + 0.01589338108897209, + 0.03360024094581604, + 0.000010048775038740132, + -0.05301869288086891, + -0.003930046223104, + -0.017645729705691338, + 0.003002932295203209, + -0.00063420704100281, + 0.02518489770591259, + -0.024492109194397926, + 0.0017357916804030538, + -0.0012550422688946128, + 0.017930995672941208, + -0.0016122612869367003, + -0.010565023869276047, + 0.008496846072375774, + 0.013081476092338562, + -0.00875664222985506, + 0.02202659659087658, + 0.008461188524961472, + -0.004818954970687628, + 0.022902769967913628, + -0.012337747029960155, + -0.005198460537940264, + 0.00805875938385725, + -0.03231654316186905, + 0.0011627129279077053, + -0.005246853455901146, + 0.026794612407684326, + -0.00040402045124210417, + 0.012663764879107475, + -0.00966337975114584, + 0.020162181928753853, + 0.01421235129237175, + -0.01762535236775875, + -0.01061596442013979, + 0.013580691069364548, + -0.0031506591476500034, + 0.004401244223117828, + -0.004897912498563528, + 0.010452955029904842, + -0.009836576879024506, + 0.03001403994858265, + 0.006301318295300007, + 0.008664949797093868, + -0.024797750636935234, + 0.0010882127098739147, + -0.012296995148062706, + 0.012643389403820038, + -0.0027813417837023735, + 0.026142574846744537, + 0.05570834130048752, + 0.011563453823328018, + 0.004345209803432226, + 0.008848334662616253, + -0.009617533534765244, + -0.012887902557849884, + 0.001734518096782267, + -0.03502656891942024, + 0.0004957130295224488, + -0.006612054537981749, + -0.006627336610108614, + -0.005557589698582888, + 0.010514083318412304, + 0.02308615669608116, + 0.0025597515050321817, + 0.027731914073228836, + 0.00843062438070774, + -0.018919236958026886, + -0.000815681996755302, + -0.005746068898588419, + 0.008333837613463402, + -0.00491064740344882, + -0.024858878925442696, + -0.02561279572546482, + 0.03840900585055351, + -0.012959219515323639, + -0.008043477311730385, + -0.019194314256310463, + 0.05440426990389824, + 0.03209240734577179, + -0.012083045206964016, + 0.022474871948361397, + -0.009612439200282097, + 0.008196298964321613, + -0.028119061142206192, + -0.006571302190423012, + -0.01482363510876894, + 0.024634741246700287, + -0.011308752931654453, + -0.008919651620090008, + 0.028261693194508553, + -0.028445078060030937, + -0.004579535219818354, + -0.03567860648036003, + 0.02512376941740513, + -0.03404851257801056, + 0.009199823252856731, + -0.021537570282816887, + 0.013101851567626, + -0.05627887323498726, + 0.015057960525155067, + -0.000603961234446615, + -0.006795439403504133, + 0.00574097502976656, + -0.0006485340418294072, + -0.025205273181200027, + 0.00929661002010107, + 0.02964727021753788, + -0.02972877398133278, + -0.02388082444667816, + -0.00021952096722088754, + 0.003647327423095703, + -0.020763278007507324, + -0.015516423620283604, + 0.02021312154829502, + -0.0010614690836519003, + 0.0088534289970994, + -0.022474871948361397, + -0.0028170000296086073, + 0.008634385652840137, + -0.0187358520925045, + 0.011685711331665516, + -0.03885728120803833, + -0.04274912178516388, + -0.014344795607030392, + -0.01924525573849678, + -0.024512484669685364, + 0.025877686217427254, + 0.012429439462721348, + 0.011186495423316956, + 0.03840900585055351, + -0.00581229105591774, + 0.014324420131742954, + -0.007625767029821873, + -0.002689649350941181, + -0.003677891567349434, + 0.01742159202694893, + 0.006031334865838289, + -0.0075595444068312645, + 0.04042624309659004, + 0.021639451384544373, + -0.0005453798803500831, + 0.01956108585000038, + -0.0134176816791296, + -0.04584629461169243, + -0.037756968289613724, + -0.011818155646324158, + 0.003654968459159136, + -0.01126800011843443, + 0.04315664619207382, + -0.010636339895427227, + -0.02756890468299389, + -0.017717044800519943, + -0.004243329167366028, + 0.051633115857839584, + 0.041119031608104706, + -0.010626152157783508, + -0.02223035879433155, + 0.02467549405992031, + 0.009230387397110462, + -0.03427265211939812, + 0.021476441994309425, + 0.006525455974042416, + -0.04036511480808258, + -0.0014912780607119203, + 0.010707656852900982, + 0.0025291871279478073, + -0.029056362807750702, + -0.01986672729253769, + 0.006703746970742941, + 0.021822836250066757, + -0.035230331122875214, + 0.013906708918511868, + -0.041200537234544754, + 0.019204502925276756, + 0.009271139279007912, + -0.006989012937992811, + -0.0017510737525299191, + -0.002801717957481742, + -0.00990789383649826, + -0.012786022387444973, + -0.019550897181034088, + -0.017095573246479034, + -0.006581490393728018, + -0.03459867089986801, + 0.006683371029794216, + -0.007085799239575863, + -0.005995676387101412, + 0.01943882927298546, + -0.009520746767520905, + 0.023473301902413368, + 0.012307182885706425, + 0.03101246990263462, + -0.0003995631996076554, + 0.004380868282169104, + -0.016178647056221962, + -0.01929619535803795, + -0.04063000530004501, + -0.004808766767382622, + -0.01788005419075489, + 0.015455295331776142, + 0.035800863057374954, + -0.006719029042869806, + 0.01845058612525463, + 0.008002725429832935, + 0.026529721915721893, + -0.04095602408051491, + 0.001492551527917385, + -0.020141804590821266, + 0.028872977942228317, + 0.048169173300266266, + -0.0612914003431797, + -0.0034563010558485985, + -0.015414542518556118, + -0.005847949534654617, + 0.008135169744491577, + -0.0043273805640637875, + -0.005246853455901146, + 0.007844810374081135, + 0.008074041455984116, + 0.010188065469264984, + -0.013896521180868149, + 0.014151223003864288, + 0.03333535045385361, + 0.0007004294893704355, + -0.02223035879433155, + 0.02010105364024639, + -0.020793842151761055, + -0.0052061015740036964, + -0.006841286085546017, + 0.009357738308608532, + -0.011665334925055504, + 0.03470055013895035, + 0.026162952184677124, + -0.01577112451195717, + -0.035291459411382675, + 0.0017447061836719513, + -0.05301869288086891, + -0.03669741004705429, + 0.011176307685673237, + 0.06585565209388733, + 0.017492908984422684, + -0.01399840135127306, + -0.007065423298627138, + -0.026285208761692047, + -0.006449045147746801, + 0.0012270250590518117, + -0.019489768892526627, + -0.0237381923943758, + -0.02331029437482357, + -0.006250378210097551, + -0.01892942562699318, + 0.008048571646213531, + 0.004737450275570154, + 0.04523501172661781, + -0.03488393500447273, + -0.017930995672941208, + -0.0014772694557905197, + -0.004790937528014183, + 0.009806012734770775, + -0.030258553102612495, + 0.03468017280101776, + 0.005025263410061598, + 0.024777375161647797, + -0.03331497311592102, + -0.0031226419378072023, + -0.005213742610067129, + 0.007844810374081135, + 0.062350958585739136, + 0.004765467718243599, + 0.014293855987489223, + 0.0208040289580822, + 0.004021738655865192, + -0.00036008443566970527, + -0.01148195005953312, + 0.006469421554356813, + -0.03268331289291382, + -0.0062096258625388145, + -0.02944350801408291, + 0.01992785558104515, + -0.02870996855199337, + -0.006082274951040745, + -0.018460774794220924, + -0.015322850085794926, + -0.020335378125309944, + -0.02202659659087658, + -0.026713106781244278, + 0.010585400275886059, + 0.038816530257463455, + -0.023188035935163498, + 0.004513313062489033, + 0.018858108669519424, + -0.01788005419075489, + -0.015995262190699577, + 0.043360404670238495, + -0.009724508039653301, + -0.028404325246810913, + 0.011706086806952953, + 0.012928654439747334, + 0.013081476092338562, + 0.03743095323443413, + -0.013743700459599495, + -0.017319710925221443, + -0.012826774269342422, + -0.007106175646185875, + -0.0026017772033810616, + -0.004599911626428366, + 0.019968608394265175, + 0.023432550951838493, + -0.025388658046722412, + -0.0008144084713421762, + -0.002888316521421075 + ] + }, + { + "HotelId": "48", + "HotelName": "Nordick's Valley Motel", + "Description": "Only 90 miles (about 2 hours) from the nation's capital and nearby most everything the historic valley has to offer. Hiking? Wine Tasting? Exploring the caverns? It's all nearby and we have specially priced packages to help make our B&B your home base for fun while visiting the valley.", + "Description_fr": "Seulement 90 milles (environ 2 heures) de la capitale de la nation et Ć  proximitĆ© la plupart tout que la vallĆ©e historique a Ć  offrir. RandonnĆ©e? DĆ©gustation? Vous explorez les cavernes? C'est tout prĆØs et nous avons des forfaits Ć  prix spĆ©cial pour aider Ć  rendre notre B&B votre base pour le plaisir en visitant la vallĆ©e.", + "Category": "Boutique", + "Tags": [ + "continental breakfast", + "air conditioning", + "free parking" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2018-02-19T00:00:00Z", + "Rating": 4.5, + "Address": { + "StreetAddress": "1401 I St NW", + "City": "Washington D.C.", + "PostalCode": "20005", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -77.03241, + 38.90166 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 135.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 lits doubles (Mountain View)", + "Type": "Standard Room", + "BaseRate": 110.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "jacuzzi tub", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 166.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower", + "jacuzzi tub" + ] + } + ], + "embedding": [ + -0.07034669071435928, + -0.011760267429053783, + 0.051721297204494476, + 0.0060502695851027966, + -0.040808722376823425, + -0.012787051498889923, + 0.05410916730761528, + 0.030875178053975105, + -0.004354880657047033, + 0.009539546445012093, + -0.017980672419071198, + 0.016738979145884514, + -0.047279857099056244, + 0.018613457679748535, + 0.03075578436255455, + 0.02779482491314411, + 0.011169268749654293, + 0.042217567563056946, + 0.04023563489317894, + 0.022302718833088875, + -0.03682097792625427, + -0.014255592599511147, + -0.04895136505365372, + 0.011736388318240643, + 0.06065193563699722, + -0.013491474092006683, + -0.013336262665688992, + 0.018900003284215927, + -0.003934018313884735, + -0.052628688514232635, + -0.03932824358344078, + -0.026481494307518005, + -0.023866774514317513, + -0.04883197322487831, + -0.008285913616418839, + 0.04295780882239342, + 0.0037907459773123264, + -0.01712103933095932, + 0.003784776199609041, + 0.015365952625870705, + -0.011049875058233738, + 0.027412764728069305, + 0.007312856614589691, + -0.030636390671133995, + 0.001299897558055818, + -0.014028744772076607, + 0.01986709050834179, + 0.04732761159539223, + -0.028535064309835434, + -0.006805433891713619, + -0.03003942407667637, + -0.05855060741305351, + -0.03997296839952469, + -0.04441440850496292, + -0.03600910305976868, + 0.026982948184013367, + -0.03192584216594696, + -0.021001329645514488, + 0.024439863860607147, + 0.018804488703608513, + 0.03791939839720726, + -0.027603793889284134, + 0.00924703199416399, + 0.06346962600946426, + 0.005220483988523483, + 0.05081390589475632, + -0.0045429253950715065, + 0.009073911234736443, + 0.004110123962163925, + 0.0014170524664223194, + 0.007497916463762522, + 0.04271902143955231, + -0.014840621501207352, + -0.0003124753711745143, + 0.026648646220564842, + 0.027173977345228195, + -0.00900227576494217, + -0.043602533638477325, + 0.000023400674763252027, + -0.03820594400167465, + 0.0023729472886770964, + -0.022087810561060905, + 0.023448897525668144, + 0.0026042722165584564, + -0.013789957389235497, + -0.03056475520133972, + 0.013157172128558159, + 0.031137844547629356, + -0.02126399613916874, + -0.003719109809026122, + 0.03768061101436615, + -0.003083338961005211, + 0.026051677763462067, + -0.056306008249521255, + -0.030373726040124893, + 0.04701719060540199, + 0.03682097792625427, + -0.0020759557373821735, + -0.035006195306777954, + 0.0615115687251091, + 0.01847018674015999, + -0.05506431683897972, + 0.011175238527357578, + 0.01224978081882, + 0.04856930673122406, + 0.018923882395029068, + 0.04164448007941246, + 0.059983331710100174, + 0.02150278352200985, + 0.008076975122094154, + -0.07192268967628479, + -0.006244284100830555, + 0.0023953334894031286, + 0.026075556874275208, + -0.0222310833632946, + 0.036415040493011475, + 0.009300759062170982, + -0.042408596724271774, + 0.027102341875433922, + 0.01734788715839386, + -0.00433995621278882, + -0.0009021676960401237, + -0.04135793447494507, + -0.030803542584180832, + -0.0016192753100767732, + -0.02360410988330841, + -0.05162578076124191, + 0.024595076218247414, + -0.03199747949838638, + -0.026911310851573944, + 0.0024430910125374794, + -0.029728999361395836, + 0.09990854561328888, + 0.03445698693394661, + -0.005921921227127314, + -0.01964024268090725, + -0.007277038414031267, + 0.004145941697061062, + -0.02523980103433132, + 0.026505373418331146, + 0.0017521006520837545, + -0.014685409143567085, + 0.018900003284215927, + -0.006512919440865517, + 0.040546055883169174, + 0.04923791065812111, + 0.01307359617203474, + 0.011157329194247723, + 0.008817215450108051, + 0.032021354883909225, + 0.0015476392582058907, + 0.02681579627096653, + -0.012990021146833897, + -0.028797730803489685, + -0.051673538982868195, + -0.014124259352684021, + -0.022386295720934868, + 0.013360140845179558, + -0.01943727396428585, + 0.054443471133708954, + -0.041047509759664536, + 0.005736861377954483, + 0.03130499646067619, + -0.04861706495285034, + 0.03259444609284401, + 0.011133451014757156, + -0.00799340009689331, + 0.019102972000837326, + -0.03027820959687233, + -0.026218829676508904, + 0.00796952098608017, + -0.036438919603824615, + 0.006930796895176172, + 0.003784776199609041, + -0.00023580230481456965, + 0.005536877084523439, + 0.010590209625661373, + 0.03971030190587044, + -0.0010573792969807982, + -0.005333907902240753, + 0.004029532894492149, + -0.015461468137800694, + 0.029657363891601562, + -0.0096887880936265, + -0.019258184358477592, + 0.010172332637012005, + 0.00700243329629302, + 0.037394069135189056, + -0.018362730741500854, + 0.02199229598045349, + -0.04274290055036545, + -0.02309071645140648, + -0.025478588417172432, + 0.0036295645404607058, + 0.005411513615399599, + -0.0338122583925724, + -0.01352729182690382, + -0.017861278727650642, + 0.010781239718198776, + 0.02473834902048111, + -0.05477777123451233, + -0.03175869211554527, + 0.08381428569555283, + -0.04047442227602005, + -0.0596490278840065, + -0.020499875769019127, + 0.021813206374645233, + 0.006250253412872553, + 0.005507028661668301, + -0.003969836514443159, + 0.01756279543042183, + 0.035961344838142395, + 0.034361470490694046, + 0.03844473138451576, + 0.010930481366813183, + -0.03307202085852623, + -0.048235002905130386, + 0.043554775416851044, + 0.02009393833577633, + 0.010721542872488499, + -0.04696943238377571, + 0.014172017574310303, + 0.020010363310575485, + 0.05659255385398865, + 0.03837309405207634, + 0.03237953782081604, + -0.036868736147880554, + -0.02054763399064541, + 0.02495325729250908, + -0.012596022337675095, + 0.020977450534701347, + -0.025383073836565018, + -0.02170575223863125, + -0.011073754169046879, + -0.031806446611881256, + 0.02127593569457531, + 0.013157172128558159, + 0.005074226763099432, + 0.0017879187362268567, + -0.013169110752642155, + -0.04942893981933594, + -0.027006827294826508, + 0.019819334149360657, + 0.03405104577541351, + 0.010058908723294735, + -0.01598680019378662, + 0.0046145617961883545, + -0.02657700888812542, + 0.048903606832027435, + 0.02612331323325634, + -0.06218017265200615, + -0.0300871804356575, + -0.020416300743818283, + -0.04976323992013931, + 0.00947387982159853, + 0.026457615196704865, + -0.018804488703608513, + -0.0007085262332111597, + 0.04159672185778618, + -0.023233989253640175, + 0.025956163182854652, + 0.02705458365380764, + -0.025359194725751877, + -0.017885157838463783, + -0.02079836092889309, + -0.026696402579545975, + 0.02960960566997528, + -0.0037519431207329035, + -0.024189138785004616, + -0.0513869933784008, + -0.03658219054341316, + -0.035674799233675, + 0.012584082782268524, + -0.017001645639538765, + -0.01283480878919363, + -0.04422337934374809, + 0.0024057806003838778, + -0.03149602562189102, + 0.040116239339113235, + 0.0028982791118323803, + -0.018410488963127136, + 0.012416931800544262, + -0.0014558554394170642, + 0.011246874928474426, + -0.03190196305513382, + -0.021228177472949028, + 0.04904688149690628, + 0.03536437824368477, + -0.010249937884509563, + -0.008375459350645542, + -0.03937600180506706, + 0.035770315676927567, + -0.011079723946750164, + -0.008256065659224987, + 0.02753215841948986, + -0.018840305507183075, + 0.03027820959687233, + -0.030469240620732307, + 0.019377576187253, + 0.011264783330261707, + -0.016368858516216278, + 0.055398616939783096, + 0.02540695294737816, + -0.0008238156442530453, + 0.01660764589905739, + 0.027842581272125244, + -0.020905815064907074, + -0.0019401456229388714, + 0.004480243660509586, + 0.023484716191887856, + 0.018625397235155106, + 0.018923882395029068, + -0.017479218542575836, + 0.0040235635824501514, + 0.01592710241675377, + -0.03426595404744148, + -0.06585749238729477, + -0.019532788544893265, + 0.05668807029724121, + -0.02609943598508835, + 0.041238538920879364, + 0.0222310833632946, + 0.004698137287050486, + -0.004677243065088987, + -0.04470095410943031, + -0.014983893372118473, + 0.050766147673130035, + -0.021108783781528473, + -0.011384177021682262, + -0.009103760123252869, + 0.01616588979959488, + -0.02982451394200325, + -0.02519204467535019, + 0.053536079823970795, + -0.010357392951846123, + -0.012369174510240555, + -0.037155281752347946, + -0.013837715610861778, + 0.03727467358112335, + 0.05453898385167122, + -0.06265775114297867, + -0.022839991375803947, + -0.030469240620732307, + 0.013873533345758915, + -0.02245793119072914, + 0.04326822981238365, + 0.00361464056186378, + 0.03075578436255455, + 0.007533734664320946, + 0.00021807981829624623, + -0.07206596434116364, + -0.0015342073747888207, + -0.0003171391726937145, + 0.007462098263204098, + -0.0021117739379405975, + -0.0006402480648830533, + 0.041023630648851395, + -0.045656103640794754, + -0.020392421633005142, + 0.014016805216670036, + -0.030206574127078056, + -0.012524385936558247, + 0.02516816556453705, + -0.006369647104293108, + 0.004348910879343748, + 0.03450474143028259, + 0.011384177021682262, + 0.0052264537662267685, + -0.0000926232969504781, + -0.01596292108297348, + 0.02679191716015339, + -0.016738979145884514, + 0.007862066850066185, + 0.0057816337794065475, + 0.01941339485347271, + 0.05415692552924156, + 0.06490235030651093, + 0.012548265047371387, + 0.006274132523685694, + -0.01423171442002058, + -0.011127481237053871, + -0.030230453237891197, + 0.028941001743078232, + 0.0050981054082512856, + 0.051434751600027084, + -0.04876033589243889, + 0.002178932772949338, + -0.049094635993242264, + -0.06542767584323883, + 0.007432249840348959, + 0.042456354945898056, + -0.00981415156275034, + -0.052867475897073746, + -0.012464689090847969, + -0.02497713640332222, + -0.030827421694993973, + 0.030708028003573418, + -0.021837085485458374, + -0.005724921822547913, + 0.0396864227950573, + 0.023687684908509254, + -0.0402117557823658, + -0.05506431683897972, + -0.01188562996685505, + 0.01040515024214983, + 0.0159151628613472, + -0.007432249840348959, + -0.03290487080812454, + -0.017849339172244072, + 0.020893875509500504, + -0.02193260006606579, + -0.05797751992940903, + 0.044271137565374374, + -0.026171071454882622, + 0.017646370455622673, + 0.04131017625331879, + -0.0052622719667851925, + -0.03543601185083389, + 0.033860016614198685, + -0.013945169746875763, + 0.015616679564118385, + 0.06179811432957649, + 0.020213332027196884, + -0.0008506792364642024, + -0.0577864907681942, + 0.005521952640265226, + 0.02219526469707489, + -0.005683134309947491, + -0.07870424538850784, + -0.028320156037807465, + -0.009008245542645454, + -0.0199029091745615, + 0.04716046154499054, + 0.0660485252737999, + -0.006106981076300144, + 0.01480480283498764, + -0.057452186942100525, + -0.007951611652970314, + 0.0017356841126456857, + -0.0011155836982652545, + 0.0025654693599790335, + -0.02960960566997528, + -0.05621049553155899, + 0.006357708014547825, + 0.03357347473502159, + 0.005572695285081863, + 0.04995427280664444, + -0.004008639138191938, + -0.015616679564118385, + -0.036152373999357224, + 0.020499875769019127, + -0.022063933312892914, + -0.024833863601088524, + -0.04376968368887901, + -0.000036657558666775, + 0.03768061101436615, + -0.0046354555524885654, + -0.020261090248823166, + 0.010643936693668365, + -0.018135884776711464, + -0.00037086629890836775, + 0.006483071018010378, + -0.04071320965886116, + 0.01328850444406271, + -0.008530670776963234, + -0.03245117515325546, + 0.014339168556034565, + 0.003137066261842847, + 0.026051677763462067, + -0.05482552945613861, + 0.009282850660383701, + -0.03670158609747887, + -0.016321102157235146, + -0.0064293439500033855, + -0.03400329127907753, + -0.01755085587501526, + -0.0660485252737999, + 0.03584194928407669, + -0.03471964970231056, + -0.013192989863455296, + -0.0008073990466073155, + -0.01547340676188469, + -0.00970072764903307, + 0.032689958810806274, + 0.0012596022570505738, + -0.06719470024108887, + -0.01570025458931923, + -0.0015095825074240565, + -0.06571422517299652, + -0.027603793889284134, + 0.037346310913562775, + 0.0024639847688376904, + -0.02059539221227169, + -0.01133044995367527, + 0.006315920036286116, + 0.02753215841948986, + -0.05372710898518562, + 0.033645108342170715, + 0.041071388870477676, + -0.02219526469707489, + -0.004799621645361185, + -0.02980063669383526, + 0.02009393833577633, + -0.006847221404314041, + 0.010811087675392628, + -0.010011151432991028, + 0.01944921351969242, + 0.01944921351969242, + 0.0005473449127748609, + 0.01984321139752865, + -0.015783829614520073, + -0.02426077425479889, + -0.0008693344425410032, + -0.011999053880572319, + -0.013801896944642067, + 0.009282850660383701, + 0.0084530645981431, + 0.020846117287874222, + -0.0018311989260837436, + 0.050527360290288925, + 0.027221735566854477, + 0.007426280528306961, + 0.003019165014848113, + -0.0022162431851029396, + -0.014888378791511059, + 0.029227547347545624, + 0.00635173823684454, + -0.040546055883169174, + 0.03206911310553551, + -0.0012021440779790282, + -0.0254308320581913, + -0.02428465336561203, + -0.029728999361395836, + -0.004196684341877699, + -0.01146775297820568, + 0.04345926269888878, + 0.007390462327748537, + -0.010578271001577377, + 0.013801896944642067, + 0.022744474932551384, + -0.0009954439010471106, + 0.00039287947583943605, + -0.01710909977555275, + 0.0212401170283556, + -0.004181759897619486, + -0.016559889540076256, + 0.002892309334129095, + 0.029442455619573593, + 0.006118920631706715, + 0.010960330255329609, + 0.002296833787113428, + 0.052342142909765244, + -0.036391161382198334, + -0.018541822209954262, + 0.01247662864625454, + -0.00040593816083855927, + -0.008381429128348827, + 0.007682976312935352, + -0.014768985100090504, + 0.013825776055455208, + 0.01732400804758072, + 0.01030366588383913, + 0.02963348478078842, + 0.0033788380678743124, + 0.05587619170546532, + 0.01688225194811821, + 0.032260142266750336, + 0.03211687132716179, + -0.014148138463497162, + -0.025120407342910767, + 0.025502467527985573, + 0.03997296839952469, + -0.00016509892884641886, + -0.03345407918095589, + 0.048688698559999466, + 0.00428025983273983, + 0.03311977908015251, + -0.041286297142505646, + -0.019353698939085007, + 0.004489198327064514, + 0.011300601996481419, + 0.0036892613861709833, + -0.01660764589905739, + -0.01593904197216034, + -0.00393998809158802, + -0.061368297785520554, + 0.02447568252682686, + -0.048449911177158356, + -0.004378759302198887, + 0.005906997248530388, + -0.03030208870768547, + 0.01964024268090725, + 0.0028639533556997776, + 0.0027356052305549383, + -0.00572193693369627, + -0.01351535227149725, + 0.0077546127140522, + -0.03655831143260002, + -0.039638668298721313, + -0.00880527589470148, + 0.010476785711944103, + -0.027126219123601913, + 0.005969678517431021, + 0.019258184358477592, + -0.030230453237891197, + -0.006178617477416992, + -0.014016805216670036, + 0.01331238355487585, + 0.003408686490729451, + 0.0006316666258499026, + 0.006978554185479879, + -0.01782546006143093, + 0.032498929649591446, + -0.014243653044104576, + -0.004357865545898676, + 0.013957108370959759, + -0.021598298102617264, + -0.010255907662212849, + -0.02379513904452324, + -0.015580861829221249, + 0.04462931677699089, + -0.00567119475454092, + -0.006883039604872465, + 0.016273343935608864, + 0.0073307654820382595, + 0.02612331323325634, + -0.01986709050834179, + -0.03698812797665596, + -0.019473092630505562, + -0.013181050308048725, + -0.0015565936919301748, + 0.04856930673122406, + 0.04756639897823334, + -0.045011378824710846, + -0.022553445771336555, + -0.019950665533542633, + -0.007271068636327982, + 0.004984681494534016, + -0.02172963134944439, + -0.01399292703717947, + 0.021574418991804123, + 0.025956163182854652, + -0.007784461136907339, + 0.005489119328558445, + -0.0014909273013472557, + 0.015115226618945599, + 0.01572413370013237, + -0.004716046154499054, + -0.020296907052397728, + -0.03820594400167465, + 0.011521480046212673, + 0.0270307045429945, + 0.01133044995367527, + 0.016834493726491928, + 0.007605370599776506, + 0.02151472121477127, + -0.0024117501452565193, + -0.0157121941447258, + -0.025980042293667793, + 0.0013461625203490257, + -0.0003413909871596843, + 0.015903223305940628, + -0.004513076972216368, + 0.028988759964704514, + 0.009079881012439728, + -0.006680070422589779, + 0.01570025458931923, + -0.008375459350645542, + -0.02590840496122837, + 0.04145344719290733, + 0.04923791065812111, + 0.03054087609052658, + 0.018577640876173973, + -0.0013110906584188342, + 0.0029594681691378355, + 0.001404366921633482, + 0.037394069135189056, + -0.012930324301123619, + 0.02657700888812542, + 0.010399180464446545, + 0.04548894986510277, + 0.0011111064814031124, + -0.015079407952725887, + 0.0392804853618145, + -0.011855782009661198, + -0.012393052689731121, + 0.023496655747294426, + -0.008256065659224987, + -0.003259444609284401, + -0.011312541551887989, + -0.013849654234945774, + -0.025478588417172432, + 0.003184823552146554, + 0.011181208305060863, + 0.03839697316288948, + -0.03971030190587044, + -0.015437589026987553, + -0.01962830312550068, + 0.018422428518533707, + -0.07120632380247116, + -0.0016028587706387043, + -0.030827421694993973, + 0.019759636372327805, + -0.026051677763462067, + 0.003005733247846365, + -0.030397603288292885, + -0.023484716191887856, + -0.022959385067224503, + 0.012584082782268524, + -0.013216868974268436, + -0.03118560090661049, + -0.020404361188411713, + -0.04236083850264549, + -0.006524858996272087, + -0.01642855629324913, + -0.029203668236732483, + -0.026481494307518005, + -0.005256302189081907, + 0.01688225194811821, + -0.050049785524606705, + -0.020070059224963188, + 0.037083644419908524, + -0.001461078878492117, + 0.0022595233749598265, + -0.0004932446754537523, + 0.014136198908090591, + 0.00866200402379036, + -0.04718434065580368, + -0.0006991986301727593, + 0.08209501951932907, + 0.02750827930867672, + -0.030015544965863228, + 0.007444189395755529, + 0.05277195945382118, + 0.00983803067356348, + 0.012631840072572231, + -0.013479534536600113, + -0.008035187609493732, + -0.051482509821653366, + -0.03161541745066643, + 0.018601518124341965, + 0.01782546006143093, + 0.0007753120153211057, + -0.020667027682065964, + 0.021646054461598396, + -0.02174156904220581, + 0.023687684908509254, + -0.026457615196704865, + -0.05587619170546532, + 0.012369174510240555, + -0.011915478855371475, + 0.008226217702031136, + -0.012333355844020844, + -0.02980063669383526, + 0.014876439236104488, + -0.03603298217058182, + 0.010596179403364658, + 0.017240431159734726, + -0.0026311359833925962, + -0.001868509454652667, + -0.008381429128348827, + -0.013503413647413254, + 0.0072591290809214115, + 0.033883895725011826, + -0.006142799276858568, + 0.0495244562625885, + 0.0041071390733122826, + 0.03562704101204872, + -0.011491631157696247, + -0.03077966347336769, + -0.0018640321213752031, + 0.0256934966892004, + -0.021455025300383568, + -0.016070375218987465, + 0.016691220924258232, + 0.0005514490767382085, + 0.016762858256697655, + -0.05067063122987747, + 0.018147822469472885, + -0.02471446990966797, + 0.03531662002205849, + -0.012524385936558247, + -0.0094858193770051, + -0.00005134856473887339, + -0.007748642936348915, + 0.012154266238212585, + 0.007635219022631645, + -0.011384177021682262, + 0.01435110718011856, + 0.006369647104293108, + -0.013049717992544174, + -0.033860016614198685, + 0.029728999361395836, + -0.05616273730993271, + 0.005390619859099388, + -0.04419950023293495, + 0.004110123962163925, + -0.04212205111980438, + 0.035937465727329254, + 0.014780924655497074, + 0.039423756301403046, + -0.02147890441119671, + 0.018601518124341965, + -0.03354959562420845, + 0.02683967538177967, + 0.0004577997315209359, + -0.030397603288292885, + -0.03006330132484436, + 0.0007917286129668355, + -0.03842085227370262, + -0.018577640876173973, + -0.011611024849116802, + 0.00002889231291192118, + -0.035244982689619064, + 0.025144286453723907, + 0.02726949192583561, + -0.013682503253221512, + 0.012357234954833984, + 0.04271902143955231, + -0.00936045590788126, + -0.02937081828713417, + 0.00710391765460372, + -0.0270307045429945, + 0.0022281825076788664, + -0.02241017296910286, + -0.025812890380620956, + 0.0020893875043839216, + 0.003590761683881283, + -0.018100066110491753, + -0.059744544327259064, + -0.038038793951272964, + -0.0040713208727538586, + 0.014136198908090591, + -0.003137066261842847, + -0.015186863020062447, + -0.004528001416474581, + 0.016368858516216278, + 0.020201392471790314, + 0.009933545254170895, + 0.028535064309835434, + 0.048688698559999466, + 0.024153320118784904, + 0.0029520061798393726, + -0.03051699697971344, + 0.004683212842792273, + -0.030875178053975105, + 0.013730260543525219, + 0.00021453532099258155, + -0.013276565819978714, + -0.0009984287898987532, + 0.004525016527622938, + 0.016237525269389153, + -0.010255907662212849, + 0.03285711258649826, + -0.020213332027196884, + -0.016094254329800606, + -0.0087873674929142, + -0.01918654702603817, + 0.035483770072460175, + -0.01707328110933304, + -0.004999605938792229, + -0.03624789044260979, + 0.0014998817350715399, + 0.03978193923830986, + 0.008011308498680592, + 0.01731206849217415, + -0.0010342468740418553, + -0.01247662864625454, + -0.02636210061609745, + 0.025717375800013542, + -0.0630875676870346, + -0.026481494307518005, + 0.039638668298721313, + 0.023687684908509254, + -0.009760424494743347, + -0.03541213274002075, + 0.013861593790352345, + -0.04388907924294472, + 0.012858687900006771, + -0.03908945620059967, + 0.01165878213942051, + 0.017503097653388977, + 0.004259365610778332, + 0.025980042293667793, + 0.01490031834691763, + 0.020034242421388626, + 0.00444442592561245, + 0.04465319588780403, + 0.024642834439873695, + 0.01961636357009411, + 0.003220641752704978, + 0.0037459733430296183, + 0.017718005925416946, + 0.01618976891040802, + -0.015067469328641891, + 0.01260796096175909, + 0.0069725848734378815, + 0.03610461577773094, + -0.029872272163629532, + 0.038755152374506, + -0.002059539081528783, + 0.0019625318236649036, + -0.026672525331377983, + 0.024451803416013718, + 0.0059786331839859486, + -0.018219459801912308, + -0.02264896035194397, + 0.02793809585273266, + -0.008500822819769382, + -0.053106263279914856, + -0.010661846026778221, + -0.04825888201594353, + 0.005796558223664761, + 0.028320156037807465, + 0.009294789284467697, + 0.014136198908090591, + -0.024618955329060555, + 0.030708028003573418, + -0.011390146799385548, + -0.0319497212767601, + -0.016010677441954613, + 0.023198170587420464, + -0.018434368073940277, + 0.04599040374159813, + 0.014279471710324287, + -0.005354801658540964, + -0.014470500871539116, + -0.016727039590477943, + 0.024153320118784904, + -0.006172647699713707, + -0.0026609841734170914, + -0.010070848278701305, + -0.009664909914135933, + -0.010285756550729275, + 0.03961478918790817, + -0.001111852703616023, + 0.030111059546470642, + 0.010440967977046967, + -0.012560203671455383, + 0.01331238355487585, + -0.022995201870799065, + -0.04205041751265526, + 0.038062673062086105, + -0.04904688149690628, + -0.011193147860467434, + 0.02171769179403782, + -0.008596337400376797, + -0.010900633409619331, + 0.0166434645652771, + -0.017849339172244072, + 0.026720281690359116, + 0.007372552994638681, + 0.010542452335357666, + 0.00774267315864563, + -0.030851298943161964, + 0.04257574677467346, + 0.029490211978554726, + -0.00036396385985426605, + -0.017431462183594704, + -0.015127166174352169, + 0.00399073027074337, + -0.016822554171085358, + 0.02291162684559822, + -0.017920974642038345, + 0.0034415198024362326, + -0.010046969167888165, + 0.04443828761577606, + -0.0020670013036578894, + 0.02793809585273266, + 0.02566961757838726, + 0.01158117689192295, + 0.004190714564174414, + 0.00030408051679842174, + -0.009539546445012093, + -0.00722928112372756, + 0.006805433891713619, + 0.03507783263921738, + 0.02008199878036976, + -0.021168481558561325, + -0.05348832160234451, + 0.0254308320581913, + 0.06681264191865921, + -0.011055844835937023, + 0.023938411846756935, + -0.00808294489979744, + 0.021622175350785255, + -0.033907774835824966, + 0.004495168104767799, + 0.03536437824368477, + -0.005912966560572386, + 0.013789957389235497, + -0.01444662269204855, + 0.011008087545633316, + -0.018661215901374817, + 0.00970072764903307, + 0.0025535300374031067, + 0.018840305507183075, + 0.0609862357378006, + -0.0017595627577975392, + -0.0059099821373820305, + -0.00037907459773123264, + -0.027460521087050438, + -0.008363519795238972, + 0.009109729900956154, + 0.0019625318236649036, + 0.025072650983929634, + -0.006190557032823563, + 0.026027798652648926, + 0.006781554780900478, + -0.0053518167696893215, + 0.024809984490275383, + -0.04692167416214943, + -0.021347571164369583, + 0.01374220009893179, + -0.03374062478542328, + 0.002580393571406603, + -0.028726093471050262, + 0.013491474092006683, + -0.012787051498889923, + 0.025359194725751877, + 0.03214075043797493, + -0.017944853752851486, + -0.014733167365193367, + 0.018661215901374817, + 0.010196210816502571, + -0.02774706669151783, + 0.029872272163629532, + 0.008757518604397774, + 0.0007745657931081951, + 0.011843842454254627, + -0.03218850865960121, + -0.005704028066247702, + 0.008924669586122036, + 0.020416300743818283, + 0.016500191763043404, + 0.00433100201189518, + -0.00796952098608017, + -0.016046496108174324, + -0.006674100644886494, + 0.0203088466078043, + -0.021657994017004967, + -0.01030366588383913, + -0.010661846026778221, + -0.01874479092657566, + -0.008859002962708473, + 0.012273658998310566, + 0.013563109561800957, + 0.03899393975734711, + 0.022290781140327454, + 0.04744700714945793, + 0.011408056132495403, + -0.023007141426205635, + -0.012978081591427326, + -0.005041393451392651, + 0.024571197107434273, + -0.016082314774394035, + -0.028344035148620605, + -0.013897412456572056, + -0.001544654369354248, + -0.009658940136432648, + 0.02473834902048111, + 0.025836769491434097, + -0.0169061291962862, + -0.039638668298721313, + -0.0463247075676918, + 0.014995832927525043, + 0.02731725014746189, + 0.015306255780160427, + 0.015521164983510971, + 0.03467189520597458, + 0.012393052689731121, + -0.0029728999361395836, + 0.026075556874275208, + 0.001309598213993013, + -0.017288189381361008, + -0.03954315185546875, + 0.010267847217619419, + -0.002652029739692807, + 0.016046496108174324, + 0.03787164017558098, + 0.0014342153444886208, + -0.030015544965863228, + 0.027603793889284134, + 0.00799340009689331, + -0.020738663151860237, + -0.020225271582603455, + 0.019294001162052155, + 0.011419995687901974, + -0.003241535509005189, + 0.03214075043797493, + 0.003474353114143014, + -0.005575679708272219, + -0.028630578890442848, + 0.02242211252450943, + 0.0009357471135444939, + 0.009933545254170895, + 0.000820084591396153, + 0.06198914349079132, + 0.019723817706108093, + 0.026911310851573944, + -0.0005383904208429158, + 0.014136198908090591, + 0.03913721442222595, + -0.0014379463391378522, + -0.009479849599301815, + -0.004286229144781828, + -0.04085648059844971, + 0.03264220431447029, + 0.010888693854212761, + -0.01330044399946928, + 0.034767407923936844, + -0.033621229231357574, + -0.0043936837464571, + 0.019079092890024185, + 0.007647158578038216, + 0.01709716022014618, + 0.01100211776793003, + -0.018386609852313995, + -0.02246987074613571, + 0.0166434645652771, + 0.0004518300702329725, + -0.018553761765360832, + -0.03216462954878807, + 0.0026221813168376684, + -0.014613773673772812, + -0.006483071018010378, + -0.019043274223804474, + -0.004262350499629974, + -0.016762858256697655, + 0.018434368073940277, + 0.015007772482931614, + -0.01528237760066986, + -0.018804488703608513, + -0.008715731091797352, + -0.0010566330747678876, + -0.01964024268090725, + 0.010494695045053959, + 0.012154266238212585, + 0.03099457174539566, + 0.019819334149360657, + 0.008930639363825321, + 0.015162983909249306, + 0.003757912665605545, + -0.01734788715839386, + 0.012966142036020756, + -0.01708522066473961, + 0.005984602961689234, + 0.06380392611026764, + -0.01731206849217415, + -0.027126219123601913, + -0.008303822949528694, + -0.009754454717040062, + 0.034552499651908875, + -0.032260142266750336, + -0.0166434645652771, + -0.01420783530920744, + 0.017718005925416946, + 0.006214435677975416, + -0.004766788333654404, + 0.002025213558226824, + 0.004271305166184902, + 0.0031251267064362764, + -0.01801649108529091, + -0.005011545494198799, + 0.0065785860642790794, + -0.024189138785004616, + 0.004722015932202339, + 0.0012170682894065976, + -0.03696424886584282, + -0.01109166257083416, + -0.01375413965433836, + -0.030397603288292885, + 0.003307201899588108, + -0.003737018909305334, + -0.023078778758645058, + 0.015461468137800694, + -0.021359510719776154, + -0.0016386768547818065, + -0.023914532735943794, + -0.010082786902785301, + 0.01801649108529091, + 0.02774706669151783, + -0.00710391765460372, + 0.03175869211554527, + -0.014828681945800781, + 0.020034242421388626, + 0.001245424267835915, + 0.04802009463310242, + 0.00046936600119806826, + 0.004963787738233805, + -0.023210110142827034, + -0.009933545254170895, + 0.024618955329060555, + -0.012357234954833984, + -0.02428465336561203, + 0.011211056262254715, + 0.03450474143028259, + -0.03032596781849861, + 0.020881935954093933, + 0.014983893372118473, + 0.006954675540328026, + -0.019007457420229912, + -0.03257056698203087, + 0.023222049698233604, + -0.059983331710100174, + 0.022565385326743126, + 0.006912888027727604, + 0.010429028421640396, + -0.016106193885207176, + 0.003737018909305334, + 0.014374986290931702, + 0.016547949984669685, + -0.05640152469277382, + -0.005456286482512951, + 0.007611340377479792, + -0.03006330132484436, + 0.039901331067085266, + -0.027460521087050438, + -0.029299182817339897, + 0.015330134890973568, + -0.03054087609052658, + 0.007068099454045296, + -0.008930639363825321, + -0.018112005665898323, + 0.014398865401744843, + 0.015377892181277275, + -0.060508664697408676, + -0.012207993306219578, + 0.011014057323336601, + -0.013634745962917805, + -0.002362500410526991, + 0.03698812797665596, + -0.01756279543042183, + 0.03147214651107788, + 0.027365006506443024, + 0.012548265047371387, + -0.01330044399946928, + 0.006709918845444918, + 0.02748440019786358, + -0.02126399613916874, + 0.006930796895176172, + -0.02196841686964035, + 0.0121482964605093, + -0.004904090892523527, + 0.024809984490275383, + 0.033406320959329605, + -0.035531528294086456, + 0.013837715610861778, + -0.0028251504991203547, + 0.013813836500048637, + 0.026529252529144287, + -0.012954202480614185, + -0.007593431510031223, + 0.012369174510240555, + -0.017741885036230087, + -0.03280935436487198, + 0.054204683750867844, + 0.01443468313664198, + 0.02609943598508835, + -0.018697034567594528, + -0.02681579627096653, + -0.01110360212624073, + 0.00665022199973464, + 0.049094635993242264, + 0.01596292108297348, + -0.026314344257116318, + 0.028941001743078232, + -0.025550225749611855, + -0.027388885617256165, + 0.029012639075517654, + -0.053297292441129684, + 0.005638361442834139, + -0.014315289445221424, + 0.02128787338733673, + -0.005139893386512995, + 0.0013461625203490257, + -0.00687706982716918, + 0.025956163182854652, + 0.021825145930051804, + -0.005826406180858612, + 0.039184972643852234, + -0.01989096961915493, + 0.0023236973211169243, + -0.016070375218987465, + 0.02683967538177967, + 0.03612849488854408, + 0.011211056262254715, + -0.019043274223804474, + 0.012058750726282597, + -0.018613457679748535, + -0.024881619960069656, + -0.0011357313487678766, + 0.0025326362811028957, + -0.050718389451503754, + 0.034337591379880905, + 0.016547949984669685, + -0.04329210892319679, + -0.015365952625870705, + 0.06404270976781845, + 0.0035250952932983637, + -0.027579914778470993, + -0.010434998199343681, + 0.019532788544893265, + 0.010220089927315712, + 0.02636210061609745, + 0.01549728587269783, + -0.0037400037981569767, + -0.00970072764903307, + -0.0030117027927190065, + -0.0027669460978358984, + -0.014303349889814854, + 0.002817688276991248, + -0.0010454399744048715, + 0.03309589996933937, + -0.00537271099165082, + -0.008279944770038128, + -0.02125205658376217, + -0.006924827117472887, + -0.01849406398832798, + 0.005124968942254782, + 0.015318195335566998, + -0.0004507107369136065, + 0.017944853752851486, + -0.005405543837696314, + -0.025048771873116493, + -0.0056055281311273575, + -0.04802009463310242, + -0.01847018674015999, + 0.013169110752642155, + 0.00559955881908536, + 0.011127481237053871, + 0.021884841844439507, + -0.015664437785744667, + -0.025526346638798714, + -0.008053096942603588, + -0.01480480283498764, + -0.01645243540406227, + -0.015401771292090416, + -0.02521592192351818, + -0.017479218542575836, + 0.03161541745066643, + -0.015306255780160427, + 0.012404992245137691, + 0.013348201289772987, + 0.009975332766771317, + 0.010220089927315712, + -0.003557928605005145, + -0.01593904197216034, + -0.041238538920879364, + 0.0003891484229825437, + -0.017897097393870354, + -0.010805118829011917, + 0.015891285613179207, + -0.015162983909249306, + 0.022290781140327454, + -0.025980042293667793, + -0.0010499171912670135, + -0.02194453962147236, + -0.009694757871329784, + 0.003999684937298298, + -0.03488680347800255, + 0.01781352050602436, + -0.006692009977996349, + -0.014960015192627907, + -0.023651866242289543, + 0.02984839305281639, + 0.016953887417912483, + -0.02335338294506073, + -0.030684148892760277, + -0.01827915571630001, + -0.012882567010819912, + 0.003993715159595013, + -0.00890676025301218, + -0.02241017296910286, + 0.01145581342279911, + -0.023174293339252472, + -0.000005086469172965735, + -0.021347571164369583, + 0.03811042755842209, + 0.009909667074680328, + -0.025741254910826683, + 0.0023819017224013805, + -0.012213962152600288, + -0.012285598553717136, + -0.006614403799176216, + 0.0327615961432457, + 0.011294632218778133, + 0.015055529773235321, + -0.023687684908509254, + -0.008118762634694576, + -0.015007772482931614, + -0.019950665533542633, + 0.008327702060341835, + -0.000043046980863437057, + 0.005375695880502462, + -0.00996339414268732, + -0.013730260543525219, + -0.03854024410247803, + -0.02724561281502247, + -0.0035937465727329254, + -0.017658310011029243, + -0.010464847087860107, + 0.0004044457455165684, + -0.01714491657912731, + -0.01119911763817072, + -0.014506319537758827, + -0.0035071861930191517, + -0.03560316190123558, + -0.027818702161312103, + -0.043148837983608246, + 0.02500101365149021, + 0.018589578568935394, + 0.003698216052725911, + -0.015807708725333214, + 0.02125205658376217, + -0.011819964274764061, + 0.028511185199022293, + -0.00961118284612894, + 0.01872091181576252, + -0.015318195335566998, + -0.031090086326003075, + -0.002222212962806225, + -0.021789327263832092, + -0.006441283505409956, + 0.019126851111650467, + 0.03448086231946945, + -0.02015363611280918, + -0.017168795689940453, + 0.02521592192351818, + 0.016559889540076256, + -0.06089072301983833, + -0.019353698939085007, + 0.012596022337675095, + 0.025048771873116493, + 0.0036295645404607058, + -0.028272397816181183, + -0.011425965465605259, + -0.03003942407667637, + 0.0034982317592948675, + 0.010112635791301727, + 0.0055159833282232285, + -0.040999751538038254, + 0.05878939479589462, + -0.001014845329336822, + 0.03720303624868393, + 0.01109166257083416, + 0.010572301223874092, + 0.009139577858150005, + 0.044080108404159546, + -0.028845487162470818, + 0.005151832941919565, + 0.021622175350785255, + 0.028272397816181183, + -0.020177513360977173, + 0.043626412749290466, + -0.019580546766519547, + -0.02726949192583561, + -0.0061965263448655605, + 0.016798675060272217, + 0.016261404380202293, + 0.0314243882894516, + 0.016691220924258232, + -0.0338122583925724, + 0.02731725014746189, + 0.05902818217873573, + -0.000029195460228947923, + 0.019771575927734375, + -0.017156856134533882, + 0.00538166519254446, + 0.03889842703938484, + -0.007820279337465763, + -0.05707012861967087, + -0.039805818349123, + 0.008184429258108139, + 0.025287559255957603, + 0.0007421057089231908, + -0.008835124783217907, + -0.00213416013866663, + 0.0020744632929563522, + 0.016046496108174324, + -0.03209299221634865, + -0.018553761765360832, + 0.011802054941654205, + -0.013252686709165573, + 0.01201099343597889, + 0.01330044399946928, + 0.004357865545898676, + 0.050049785524606705, + -0.025359194725751877, + 0.00048503640573471785, + -0.023735443130135536, + 0.026314344257116318, + -0.008853033185005188, + 0.0030519983265548944, + 0.010106666013598442, + 0.046109799295663834, + 0.009097790345549583, + 0.0007842665654607117, + -0.002349068643525243, + -0.004513076972216368, + -0.007587461732327938, + 0.06323083490133286, + 0.022505689412355423, + 0.043626412749290466, + -0.04250411316752434, + -0.010399180464446545, + -0.004378759302198887, + -0.006226374767720699, + 0.0038116397336125374, + -0.02452344074845314, + -0.011425965465605259, + -0.023938411846756935, + 0.03512559086084366, + -0.008303822949528694, + -0.005683134309947491, + 0.017419522628188133, + 0.025263680145144463, + 0.01596292108297348, + -0.007963551208376884, + -0.0035430043935775757, + -0.03424207866191864, + 0.0053189839236438274, + -0.0434115044772625, + -0.007987430319190025, + 0.02034466527402401, + -0.05229438468813896, + -0.0007962058880366385, + 0.008017278276383877, + 0.027603793889284134, + 0.0038773063570261, + 0.00005549935667659156, + -0.0002035287325270474, + 0.012763173319399357, + -0.03562704101204872, + -0.0014289917889982462, + 0.005315999034792185 + ] + }, + { + "HotelId": "49", + "HotelName": "Swirling Currents Hotel", + "Description": "Spacious rooms, glamorous suites and residences, rooftop pool, walking access to shopping, dining, entertainment and the city center. Each room comes equipped with a microwave, a coffee maker and a minifridge. In-room entertainment includes complimentary W-Fi and flat-screen TVs. ", + "Description_fr": "Chambres spacieuses, suites et rĆ©sidences glamour, piscine sur le toit, accĆØs Ć  pied aux commerces, restaurants, divertissements et centre-ville. Chaque chambre est Ć©quipĆ©e d'un four micro-ondes, d'une cafetiĆØre et d'un mini-rĆ©frigĆ©rateur. Les divertissements en chambre comprennent une connexion Wi-Fi gratuite et une tĆ©lĆ©vision Ć  Ć©cran plat.", + "Category": "Suite", + "Tags": [ + "air conditioning", + "laundry service", + "24-hour front desk service" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-01-27T00:00:00Z", + "Rating": 2.7, + "Address": { + "StreetAddress": "1100 S Hayes St", + "City": "Arlington", + "StateProvince": "VA", + "PostalCode": "22202", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -77.060066, + 38.863659 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 139.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "tv" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 87.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 136.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 260.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 86.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 Queen Bed (City View)", + "Description_fr": "Suite, 1 grand lit (vue sur la ville)", + "Type": "Suite", + "BaseRate": 258.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 167.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 243.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 261.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + } + ], + "embedding": [ + -0.04004042223095894, + -0.012945814058184624, + 0.0341910757124424, + 0.013409347273409367, + -0.03129951283335686, + -0.01212911307811737, + 0.0017685990314930677, + 0.0011864237021654844, + 0.02536187693476677, + -0.005192673299461603, + -0.010655740275979042, + 0.014435742050409317, + 0.012758193537592888, + -0.02562675252556801, + -0.02805478312075138, + 0.03229279816150665, + -0.08599640429019928, + 0.034654609858989716, + 0.04235808551311493, + 0.056153710931539536, + -0.002708081156015396, + 0.008923009969294071, + -0.04613256826996803, + -0.023838840425014496, + -0.03432351350784302, + 0.04935522750020027, + -0.05730150640010834, + 0.014678544364869595, + -0.0019396648276597261, + 0.024501029402017593, + -0.014590253122150898, + -0.019192473962903023, + 0.055005915462970734, + 0.003321986412629485, + 0.03339644894003868, + -0.03728129714727402, + 0.015164150856435299, + -0.029445381835103035, + 0.025957847014069557, + 0.010788178071379662, + -0.000904303218703717, + 0.039223719388246536, + -0.025472242385149002, + -0.0008560185087844729, + 0.008812645450234413, + -0.031895484775304794, + -0.00944172590970993, + 0.018618574365973473, + 0.012118076905608177, + 0.0511210672557354, + -0.02184123359620571, + 0.029842695221304893, + -0.030880127102136612, + -0.05394640937447548, + -0.017382487654685974, + 0.00979489367455244, + -0.02361810952425003, + -0.054873477667570114, + 0.006390133406966925, + -0.00819460116326809, + -0.005609300918877125, + -0.0067929658107459545, + -0.0006525330245494843, + 0.07376796752214432, + -0.022624824196100235, + -0.007206834387034178, + -0.022282693535089493, + 0.05518249794840813, + -0.020274050533771515, + 0.013817697763442993, + 0.021653613075613976, + -0.006119739264249802, + 0.011941492557525635, + -0.023905059322714806, + 0.009745229035615921, + -0.003556512063369155, + -0.028915628790855408, + -0.01293477788567543, + -0.01168765313923359, + -0.02375054731965065, + -0.029246725142002106, + -0.031696826219558716, + 0.017912238836288452, + 0.06480632722377777, + 0.02781197987496853, + 0.0007539308862760663, + -0.024986635893583298, + -0.023971278220415115, + -0.008133900351822376, + 0.08771809935569763, + 0.011544179171323776, + 0.01162143424153328, + -0.02973232977092266, + -0.013298981823027134, + -0.05915563926100731, + -0.014347449876368046, + 0.05562395974993706, + -0.008238746784627438, + -0.034720826894044876, + 0.10418456047773361, + 0.045337941497564316, + -0.07752037793397903, + -0.01396117266267538, + 0.005606541875749826, + 0.04215943068265915, + -0.04081297665834427, + 0.03631008416414261, + -0.0170955378562212, + 0.05562395974993706, + 0.008018016815185547, + -0.09394268691539764, + -0.01934698410332203, + -0.04105577990412712, + -0.020616181194782257, + -0.011764909140765667, + 0.005493417847901583, + 0.022393057122826576, + -0.03759031742811203, + -0.03348474204540253, + 0.007135096937417984, + 0.03211621567606926, + 0.04052602872252464, + -0.003802074119448662, + -0.044962700456380844, + 0.006257695145905018, + -0.06538022309541702, + -0.01148899644613266, + -0.01571597531437874, + -0.03805385157465935, + 0.025383949279785156, + -0.0331977903842926, + -0.0052892426028847694, + 0.007361345458775759, + 0.0013078252086415887, + 0.012912704609334469, + 0.06652802228927612, + 0.002703942358493805, + 0.0035178842954337597, + -0.0044394321739673615, + -0.04513928294181824, + 0.015175187028944492, + 0.0034102783538401127, + 0.025074927136301994, + 0.014347449876368046, + 0.002317664911970496, + -0.022867627441883087, + 0.018155042082071304, + 0.023331159725785255, + -0.05677175521850586, + 0.042313940823078156, + -0.008172527886927128, + 0.020649291574954987, + -0.0015106209320947528, + 0.004635329823940992, + -0.002187986159697175, + -0.023728474974632263, + -0.01258161012083292, + 0.012691974639892578, + -0.01729419454932213, + 0.03412485867738724, + 0.0025590884033590555, + -0.02018575742840767, + -0.039223719388246536, + -0.015208296477794647, + 0.010997871868312359, + 0.012680938467383385, + -0.014965493232011795, + 0.04719207435846329, + -0.05328422039747238, + -0.030041351914405823, + 0.05032644048333168, + -0.01248228084295988, + -0.00717924302443862, + 0.03933408483862877, + 0.03558167442679405, + 0.03496363013982773, + 0.021521175280213356, + 0.012603682465851307, + 0.012449171394109726, + -0.0175038892775774, + -0.002079000696539879, + -0.02509700134396553, + 0.05231300741434097, + -0.01854131929576397, + -0.014402632601559162, + 0.021068677306175232, + -0.054476164281368256, + 0.0009939747396856546, + 0.005429957993328571, + 0.02882733754813671, + -0.023132503032684326, + 0.003482015570625663, + -0.03593484312295914, + -0.0003010895161423832, + -0.050503022968769073, + 0.053416658192873, + -0.06511534750461578, + -0.006688118912279606, + 0.00009510359086561948, + -0.008520177565515041, + -0.03756824508309364, + -0.037303369492292404, + 0.05129764974117279, + -0.014623362571001053, + -0.027458811178803444, + -0.04705963656306267, + -0.02153221145272255, + 0.04414599761366844, + 0.028297584503889084, + 0.00004686201282311231, + 0.02439066395163536, + -0.01796742156147957, + 0.01814400590956211, + 0.04917864128947258, + -0.015506282448768616, + -0.01044604741036892, + -0.02375054731965065, + -0.00014511273184325546, + 0.0031950667034834623, + 0.055579811334609985, + -0.0017685990314930677, + 0.022735189646482468, + 0.010435010306537151, + 0.02851831540465355, + -0.03580240532755852, + 0.03275633230805397, + 0.00012709219299722463, + -0.03006342612206936, + 0.013883916661143303, + -0.0022017816081643105, + -0.009662455879151821, + -0.01794534921646118, + -0.03909128159284592, + -0.02311043068766594, + -0.04085712134838104, + 0.013883916661143303, + -0.038075923919677734, + 0.01837577298283577, + 0.002400438766926527, + -0.0021245263051241636, + -0.02432444505393505, + -0.01904899813234806, + 0.0076372576877474785, + 0.031454022973775864, + 0.046309154480695724, + 0.0045001329854130745, + 0.03461046144366264, + -0.034919485449790955, + 0.03165268152952194, + -0.029710257425904274, + -0.04145309329032898, + -0.002397679490968585, + 0.015484209172427654, + -0.016311947256326675, + 0.03602313622832298, + 0.010782659985125065, + 0.04151931032538414, + 0.007951797917485237, + 0.02650967240333557, + -0.03655288740992546, + 0.07023628801107407, + 0.017360413447022438, + 0.0019520808709785342, + -0.03006342612206936, + 0.01615743525326252, + -0.0034571834839880466, + -0.0736355260014534, + 0.020351305603981018, + -0.007769695948809385, + -0.031564388424158096, + -0.06696948409080505, + -0.03143195062875748, + 0.0022528255358338356, + 0.013321055099368095, + 0.038716040551662445, + 0.008437404409050941, + 0.022459277883172035, + -0.03262389451265335, + -0.024103716015815735, + 0.036332156509160995, + -0.003368891542777419, + -0.03359510377049446, + 0.001419569831341505, + -0.013034106232225895, + 0.013464529998600483, + 0.028562461957335472, + 0.0430644229054451, + 0.012725084088742733, + -0.05284276232123375, + -0.00297709577716887, + 0.023132503032684326, + -0.025516387075185776, + 0.0197222251445055, + -0.06436486542224884, + 0.007008177228271961, + 0.029114285483956337, + 0.03191755712032318, + -0.014899274334311485, + 0.03525058180093765, + -0.0010595039930194616, + -0.0021328036673367023, + 0.037811048328876495, + -0.003156438935548067, + -0.006494980305433273, + -0.04692719876766205, + 0.02929086983203888, + -0.0175038892775774, + 0.004235256928950548, + 0.016952063888311386, + -0.030262082815170288, + -0.005253374110907316, + -0.0005107829929329455, + 0.02562675252556801, + -0.07548965513706207, + -0.01880619488656521, + -0.013442456722259521, + 0.006042483728379011, + 0.0397755466401577, + -0.00609766598790884, + -0.03648666664958, + 0.005794162396341562, + 0.011522105894982815, + 0.004657403100281954, + -0.026311015710234642, + -0.017956385388970375, + -0.04074675589799881, + 0.014424704946577549, + 0.027083570137619972, + -0.054299578070640564, + -0.06714606285095215, + 0.08506934344768524, + -0.010606076568365097, + 0.02573711797595024, + -0.014910311438143253, + -0.02767954207956791, + 0.005893490742892027, + -0.046883050352334976, + 0.007079914677888155, + -0.01396117266267538, + 0.0017396282637491822, + -0.01258161012083292, + -0.04171796888113022, + -0.02845209650695324, + 0.02072654664516449, + 0.02851831540465355, + -0.05368153378367424, + -0.023397378623485565, + 0.013431420549750328, + 0.05478518456220627, + 0.015738049522042274, + -0.008018016815185547, + -0.012184295803308487, + -0.02509700134396553, + 0.016080180183053017, + 0.00751585653051734, + 0.012614719569683075, + 0.04692719876766205, + 0.006748819723725319, + -0.06758752465248108, + -0.008133900351822376, + -0.02036234177649021, + 0.03476497530937195, + 0.03359510377049446, + 0.002258343854919076, + 0.04057017341256142, + 0.029908914119005203, + -0.07482746988534927, + 0.0456911101937294, + -0.02754710428416729, + -0.01880619488656521, + 0.030858052894473076, + 0.0371488593518734, + 0.013685259968042374, + 0.008840235881507397, + -0.0361555740237236, + 0.039025064557790756, + 0.02542809583246708, + 0.03849530965089798, + -0.008641579188406467, + -0.02264689840376377, + 0.010539857670664787, + 0.006081111263483763, + 0.00935343373566866, + -0.021863305941224098, + 0.007565520703792572, + 0.002556329360231757, + -0.02166464924812317, + 0.0032943952828645706, + -0.02452310174703598, + 0.041938699781894684, + -0.012449171394109726, + -0.013210690580308437, + -0.018287479877471924, + 0.009883185848593712, + 0.001797569915652275, + 0.022691043093800545, + 0.021212153136730194, + 0.0011208945652469993, + -0.014899274334311485, + -0.0005007811705581844, + -0.0038903660606592894, + -0.08114034682512283, + 0.022735189646482468, + -0.02633308805525303, + -0.005617578513920307, + -0.07986011356115341, + -0.004431154578924179, + -0.07244358211755753, + 0.005827271845191717, + -0.00290535856038332, + -0.028187220916152, + -0.07081018388271332, + 0.00032816341263242066, + 0.006765374448150396, + -0.04820743203163147, + -0.022735189646482468, + -0.006036965176463127, + -0.013254836201667786, + 0.04363831877708435, + -0.01716175675392151, + 0.04851645231246948, + 0.0350077785551548, + -0.021510137245059013, + 0.02207299880683422, + -0.025251511484384537, + 0.013596967794001102, + 0.02368432842195034, + -0.05527079105377197, + -0.0838332548737526, + 0.009215476922690868, + -0.029842695221304893, + -0.01061711274087429, + 0.023441525176167488, + 0.054167140275239944, + -0.02256964147090912, + 0.013574894517660141, + -0.02330908738076687, + -0.020936239510774612, + -0.01901588961482048, + -0.03355095908045769, + -0.003937271423637867, + -0.020274050533771515, + -0.07045701146125793, + -0.0028336213435977697, + -0.005545841064304113, + -0.000600454572122544, + 0.01553939189761877, + 0.06900019943714142, + 0.01571597531437874, + -0.04143102094531059, + 0.002626687055453658, + -0.026862841099500656, + -0.011875273659825325, + -0.018132969737052917, + -0.012471244670450687, + -0.006715710274875164, + 0.02677454799413681, + -0.0038600158877670765, + -0.020340269431471825, + 0.0071516516618430614, + -0.001525796134956181, + 0.006202512886375189, + -0.014987566508352757, + -0.00698058633133769, + 0.01615743525326252, + -0.05028229206800461, + -0.054034702479839325, + 0.0255605336278677, + 0.008779536001384258, + -0.005225782748311758, + -0.06546851992607117, + -0.05681589990854263, + 0.028187220916152, + 0.029312944039702415, + 0.03129951283335686, + -0.067719966173172, + 0.011455886997282505, + 0.03814214468002319, + 0.02536187693476677, + 0.004180074203759432, + 0.006114220712333918, + 0.014347449876368046, + -0.05059131607413292, + -0.009154776111245155, + -0.007824878208339214, + -0.014424704946577549, + -0.05059131607413292, + -0.02005331963300705, + -0.054343726485967636, + 0.0085477689281106, + -0.02156531997025013, + 0.017713582143187523, + 0.0012540222378447652, + -0.007079914677888155, + 0.033882055431604385, + 0.01638920232653618, + -0.049266934394836426, + 0.003333022817969322, + 0.011720762588083744, + 0.0019410443492233753, + -0.025472242385149002, + 0.004491855390369892, + -0.007764177396893501, + 0.011213083751499653, + -0.001796190394088626, + 0.04377075657248497, + -0.024699686095118523, + -0.025891628116369247, + 0.027635395526885986, + 0.011345521546900272, + 0.006925403606146574, + -0.005959710106253624, + -0.03229279816150665, + 0.017625290900468826, + 0.020108502358198166, + 0.03458838909864426, + -0.0056672426871955395, + -0.019170399755239487, + -0.0067322649993002415, + -0.04004042223095894, + 0.0027577453292906284, + -0.00895060133188963, + 0.023198721930384636, + -0.002632205141708255, + 0.018099859356880188, + 0.020207831636071205, + -0.0018968983786180615, + -0.0611422099173069, + 0.013861843384802341, + -0.005816235207021236, + -0.022095073014497757, + -0.01722797565162182, + -0.0027204970829188824, + 0.013166544027626514, + 0.01840888150036335, + 0.018894487991929054, + -0.007631739601492882, + -0.00821667443960905, + 0.06171610578894615, + -0.01885034143924713, + 0.06273146718740463, + -0.0016458180034533143, + 0.011731799691915512, + -0.04357210174202919, + -0.02213921770453453, + -0.017823947593569756, + -0.02348567172884941, + 0.0038434609305113554, + 0.0038903660606592894, + 0.01794534921646118, + 0.018430953845381737, + 0.022735189646482468, + 0.026311015710234642, + 0.0012940296437591314, + -0.008139418438076973, + 0.004199387971311808, + 0.010225317440927029, + 0.004947111010551453, + 0.007830396294593811, + 0.016852734610438347, + -0.021212153136730194, + 0.030262082815170288, + -0.006743301171809435, + 0.02271311730146408, + 0.02247031405568123, + 0.015506282448768616, + 0.02915843203663826, + 0.03869396820664406, + -0.007024731952697039, + -0.007675885688513517, + 0.00003233349707443267, + 0.010832324624061584, + -0.01014806143939495, + -0.014965493232011795, + 0.017890166491270065, + -0.009822485037147999, + 0.004850541707128286, + -0.008575360290706158, + -0.02664211019873619, + 0.00881816353648901, + 0.01479994598776102, + -0.010810251347720623, + 0.067719966173172, + 0.027193935588002205, + -0.012460208497941494, + -0.03275633230805397, + 0.023154577240347862, + 0.0025218401569873095, + 0.03399242088198662, + 0.022315802052617073, + 0.04944352060556412, + 0.004781563300639391, + 0.029467454180121422, + -0.04449916630983353, + 0.011367594823241234, + -0.01121860183775425, + -0.034478023648262024, + 0.01226155087351799, + -0.031895484775304794, + 0.031696826219558716, + -0.020947275683283806, + -0.0017120370175689459, + -0.03107878379523754, + -0.01052882056683302, + 0.00635702395811677, + -0.008520177565515041, + -0.009828003123402596, + -0.019567715004086494, + -0.006770892534404993, + -0.04052602872252464, + -0.013696296140551567, + -0.007041286677122116, + -0.011466923169791698, + 0.0008353251032531261, + -0.03628801181912422, + 0.040261149406433105, + -0.03366132453083992, + -0.03198377788066864, + 0.008867827244102955, + -0.000537339597940445, + -0.010412937961518764, + 0.01044604741036892, + 0.020748618990182877, + 0.047721825540065765, + 0.02123422548174858, + 0.03860567510128021, + -0.015749085694551468, + -0.044190146028995514, + 0.005167840979993343, + -0.03670739755034447, + 0.04639744386076927, + 0.032668039202690125, + 0.054167140275239944, + 0.008222192525863647, + -0.0006194235756993294, + 0.05633029341697693, + -0.013608003966510296, + 0.017250049859285355, + -0.00498849805444479, + -0.02015264891088009, + 0.010153579525649548, + 0.0001437331666238606, + -0.0027867162134498358, + 0.00013907713582739234, + 0.016852734610438347, + 0.01706242933869362, + 0.050944484770298004, + -0.024898342788219452, + -0.0001650301564950496, + 0.017757728695869446, + 0.001878964132629335, + -0.020207831636071205, + 0.01737145148217678, + -0.04015078768134117, + -0.005471344571560621, + 0.02139977365732193, + 0.021289408206939697, + -0.002175569999963045, + 0.02031819522380829, + 0.03675154596567154, + -0.018453028053045273, + 0.031122928485274315, + -0.014181902632117271, + -0.0028888038359582424, + -0.0022997306659817696, + 0.013254836201667786, + -0.011864237487316132, + 0.018386809155344963, + -0.020516853779554367, + 0.04151931032538414, + 0.0581844262778759, + 0.006997141055762768, + 0.004480818752199411, + 0.021190078929066658, + 0.038009706884622574, + 0.006081111263483763, + 0.04500684514641762, + -0.013917026109993458, + -0.0008725732914172113, + 0.025759190320968628, + 0.007118542212992907, + 0.014943420886993408, + -0.05690419301390648, + 0.008956119418144226, + 0.004773286171257496, + -0.03951067104935646, + 0.037678610533475876, + -0.0026542781852185726, + 0.035294726490974426, + -0.00328335864469409, + -0.00930376909673214, + -0.00035868622944690287, + -0.0008063542773015797, + 0.014181902632117271, + 0.0045084101147949696, + -0.04359417408704758, + 0.004254570696502924, + 0.004853300750255585, + 0.02015264891088009, + -0.03262389451265335, + 0.0106833316385746, + 0.02005331963300705, + 0.04542623460292816, + -0.005446512717753649, + -0.0018844823352992535, + -0.014954457059502602, + 0.028098927810788155, + -0.031829264014959335, + 0.033815834671258926, + -0.009701083414256573, + -0.0027618841268122196, + -0.01642231084406376, + 0.0032336944714188576, + -0.02825343981385231, + 0.015870487317442894, + 0.008277375251054764, + -0.024810051545500755, + -0.004712585359811783, + 0.010848878882825375, + -0.0057886443100869656, + 0.007813842035830021, + 0.03695020079612732, + 0.0020127815660089254, + 0.014557142741978168, + -0.01944631338119507, + -0.000885679095517844, + -0.026664182543754578, + -0.01719486713409424, + -0.014082573354244232, + 0.04551452398300171, + 0.020042283460497856, + 0.003128847572952509, + -0.0028060299810022116, + -0.005129213444888592, + 0.01898277923464775, + -0.0001822746853576973, + -0.000804284936748445, + -0.017283158376812935, + -0.020936239510774612, + -0.020174721255898476, + -0.001027774065732956, + -0.02059410884976387, + -0.01811089552938938, + -0.024611394852399826, + 0.02948952652513981, + -0.03661910444498062, + 0.02032923325896263, + -0.045470379292964935, + -0.053195927292108536, + 0.020031247287988663, + -0.04794255644083023, + 0.006572235841304064, + 0.028187220916152, + -0.025957847014069557, + -0.031189149245619774, + -0.027701614424586296, + 0.03816421702504158, + 0.01599188894033432, + -0.021708795800805092, + -0.0021300443913787603, + 0.015197260305285454, + -0.000013256732927402481, + 0.009905258193612099, + 0.003214380471035838, + 0.02935708872973919, + -0.036972273141145706, + 0.005043680313974619, + 0.00999355036765337, + -0.021223189309239388, + -0.004127650987356901, + -0.006688118912279606, + 0.030858052894473076, + 0.03216036036610603, + -0.0025135627947747707, + -0.022580677643418312, + 0.0021479788701981306, + -0.013023070059716702, + -0.05535908415913582, + 0.021443918347358704, + 0.002844657748937607, + 0.039422377943992615, + -0.01585944928228855, + 0.02781197987496853, + -0.008586396463215351, + 0.012879595160484314, + -0.001363697461783886, + -0.007223389111459255, + -0.025692971423268318, + 0.004127650987356901, + -0.015285552479326725, + -0.0007877301541157067, + -0.007571038790047169, + 0.0036448040045797825, + -0.029511600732803345, + -0.007598630152642727, + 0.031365733593702316, + 0.004395286086946726, + 0.022061962634325027, + 0.04825157672166824, + 0.007173724938184023, + -0.005120935849845409, + 0.010114951990544796, + 0.036067280918359756, + 0.005548600107431412, + 0.02774576097726822, + 0.009568645618855953, + -0.0066329361870884895, + 0.015042749233543873, + 0.018596502020955086, + -0.04895791411399841, + -0.02639930695295334, + 0.03752410039305687, + 0.0039676218293607235, + 0.0021314239129424095, + -0.008851272985339165, + 0.010997871868312359, + 0.01393909938633442, + 0.00007225458102766424, + 0.0008629163494333625, + -0.007388936821371317, + -0.0008346352842636406, + -0.024236153811216354, + 0.0028143073432147503, + 0.035294726490974426, + 0.00359513983130455, + 0.0120408209040761, + -0.017073465511202812, + -0.017007246613502502, + 0.018563393503427505, + -0.033617179840803146, + 0.01585944928228855, + -0.000363169820047915, + -0.020174721255898476, + 0.021278372034430504, + 0.00019055206212215126, + -0.011312412098050117, + 0.011897346936166286, + 0.041740041226148605, + 0.0005018158699385822, + 0.008167009800672531, + 0.00939206127077341, + 0.007300644647330046, + -0.011643507517874241, + -0.003840701887384057, + -0.014369523152709007, + -0.025008708238601685, + -0.020936239510774612, + 0.011014427058398724, + 0.00819460116326809, + -0.0015630442649126053, + 0.048693038523197174, + -0.0020031246822327375, + 0.026487600058317184, + -0.020682400092482567, + 0.020141612738370895, + 0.019942954182624817, + 0.01850821077823639, + 0.016654077917337418, + 0.008873346261680126, + 0.005446512717753649, + -0.03242523595690727, + 0.009552090428769588, + -0.0007994564366526902, + -0.0037717237137258053, + -0.03359510377049446, + 0.031056709587574005, + -0.0022735190577805042, + -0.00328335864469409, + 0.015153113752603531, + 0.02812100201845169, + 0.001630642800591886, + -0.017923275008797646, + -0.005463067442178726, + 0.025759190320968628, + 0.028474168851971626, + -0.011108237318694592, + 0.01451299712061882, + 0.009850076399743557, + 0.016013961285352707, + -0.054608602076768875, + 0.015771158039569855, + 0.012327770702540874, + -0.0034240740351378918, + 0.012703010812401772, + -0.018188152462244034, + 0.026178577914834023, + -0.02092520333826542, + 0.009083039127290249, + -0.005308556370437145, + -0.0018292998429387808, + -0.003404760267585516, + 0.014137756079435349, + 0.027525030076503754, + -0.021719831973314285, + -0.027083570137619972, + 0.01479994598776102, + -0.012956851162016392, + 0.029710257425904274, + -0.007024731952697039, + 0.0160249974578619, + -0.03695020079612732, + 0.005777607671916485, + -0.017018282786011696, + -0.029886841773986816, + 0.00018348181038163602, + 0.027216007933020592, + -0.01444677822291851, + -0.011753872036933899, + 0.013475566171109676, + 0.015749085694551468, + 0.011119273491203785, + -0.020009174942970276, + -0.023198721930384636, + -0.0012140149483457208, + 0.008696761913597584, + 0.02831965871155262, + -0.02516322024166584, + -0.009596236981451511, + 0.008923009969294071, + -0.01622365415096283, + 0.009176849387586117, + 0.035051923245191574, + -0.039113353937864304, + -0.03315364569425583, + -0.01894967071712017, + 0.001724453060887754, + -0.028341731056571007, + 0.017261086031794548, + -0.00435113999992609, + -0.013177581131458282, + 0.0025342563167214394, + 0.007306162733584642, + 0.02798856422305107, + 0.020980386063456535, + 0.05271032452583313, + 0.005057475995272398, + 0.013034106232225895, + -0.014667508192360401, + 0.008277375251054764, + -0.007008177228271961, + -0.006820556707680225, + 0.027127716690301895, + -0.01860753819346428, + 0.0012988580856472254, + 0.020009174942970276, + -0.022150255739688873, + 0.021179042756557465, + 0.00198656995780766, + -0.0006470148218795657, + -0.033882055431604385, + 0.02851831540465355, + 0.03725922480225563, + 0.015727011486887932, + -0.01219533197581768, + -0.025251511484384537, + 0.0050878264009952545, + -0.010948208160698414, + 0.0022638619411736727, + 0.04220357537269592, + -0.005184395704418421, + -0.007775214035063982, + 0.024037497118115425, + 0.014303303323686123, + -0.012471244670450687, + 0.01162143424153328, + 0.010192207992076874, + -0.007841433398425579, + 0.08122863620519638, + -0.01033016387373209, + 0.01944631338119507, + -0.0076979584991931915, + -0.0008084236178547144, + 0.03443387895822525, + 0.010054251179099083, + -0.04330722615122795, + 0.03778897598385811, + -0.006340469233691692, + 0.027635395526885986, + 0.02311043068766594, + 0.04736865684390068, + 0.0019327669870108366, + 0.019302837550640106, + 0.022128181532025337, + -0.03776690363883972, + -0.010854397900402546, + -0.0036116945557296276, + 0.018099859356880188, + 0.0071516516618430614, + 0.029710257425904274, + -0.010230835527181625, + -0.0011609018547460437, + -0.021752940490841866, + -0.0035537530202418566, + 0.026156503707170486, + -0.0475010946393013, + -0.004202147480100393, + -0.03152024373412132, + 0.04414599761366844, + -0.013828733935952187, + -0.0020141613204032183, + -0.007344790734350681, + -0.01258161012083292, + -0.008371185511350632, + -0.021885378286242485, + 0.024037497118115425, + 0.03584655001759529, + 0.010710923001170158, + 0.04434465616941452, + -0.028165146708488464, + -0.008696761913597584, + 0.03827458247542381, + 0.02419200725853443, + 0.002335599157959223, + -0.004323548637330532, + -0.06997140496969223, + -0.027370519936084747, + 0.026664182543754578, + 0.01635609194636345, + -0.004958147648721933, + 0.030262082815170288, + 0.009960440918803215, + 0.02697320468723774, + 0.03679569065570831, + -0.008056645281612873, + 0.0041773151606321335, + -0.036861907690763474, + 0.037943486124277115, + 0.015638720244169235, + 0.03200585022568703, + 0.0019658764358609915, + 0.021477028727531433, + -0.002330081071704626, + 0.014259157702326775, + -0.00488641019910574, + 0.00003295861097285524, + 0.015550428070127964, + -0.04151931032538414, + -0.01790120266377926, + -0.005661724600940943, + -0.0052561331540346146, + -0.004262847825884819, + 0.019766371697187424, + 0.0003228176210541278, + 0.014192938804626465, + -0.05059131607413292, + 0.013089288957417011, + -0.0020872780587524176, + 0.02388298511505127, + 0.03063732385635376, + -0.03326401114463806, + 0.02250342257320881, + -0.010937171056866646, + -0.008873346261680126, + -0.008437404409050941, + -0.045205503702163696, + 0.02478797920048237, + -0.022249583154916763, + -0.03174097463488579, + 0.02812100201845169, + -0.014954457059502602, + 0.018364734947681427, + 0.0002193504333263263, + 0.010744032450020313, + -0.01676444336771965, + -0.022393057122826576, + -0.01850821077823639, + -0.030107570812106133, + -0.025008708238601685, + -0.05491762235760689, + 0.010407418943941593, + 0.011500032618641853, + 0.0328666977584362, + 0.0276133231818676, + -0.029710257425904274, + 0.017581144347786903, + -0.013861843384802341, + -0.0013485222589224577, + -0.013442456722259521, + 0.005267169326543808, + 0.06449730694293976, + -0.007686921861022711, + 0.025715043768286705, + -0.014115682803094387, + 0.015108968131244183, + 0.00394830759614706, + 0.017283158376812935, + 0.02734844572842121, + -0.029842695221304893, + 0.0044477093033492565, + 0.011069608852267265, + -0.010103915818035603, + 0.029953060671687126, + -0.0062135495245456696, + 0.01190838310867548, + -0.031255368143320084, + 0.026024065911769867, + 0.020836912095546722, + -0.0010298433480784297, + -0.008227710612118244, + 0.02264689840376377, + 0.023772619664669037, + 0.021388737484812737, + 0.010501229204237461, + -0.04235808551311493, + -0.00560102378949523, + 0.002610132098197937, + 0.018993815407156944, + -0.00905544776469469, + -0.031255368143320084, + -0.02633308805525303, + -0.015561464242637157, + 0.003402000991627574, + 0.011334485374391079, + 0.026421381160616875, + 0.010545375756919384, + 0.024633467197418213, + 0.013254836201667786, + 0.025008708238601685, + 0.021377699449658394, + 0.008785054087638855, + -0.022801408544182777, + -0.029953060671687126, + 0.011108237318694592, + 0.015749085694551468, + -0.004158001393079758, + 0.008779536001384258, + -0.007477228529751301, + 0.0368177630007267, + 0.01021428033709526, + 0.011643507517874241, + 0.007885579019784927, + 0.0009222375229001045, + -0.022558605298399925, + -0.049840833991765976, + -0.03476497530937195, + -0.0070633599534630775, + 0.013828733935952187, + 0.0022004020866006613, + 0.010324645787477493, + 0.007973871193826199, + 0.004991257097572088, + 0.007201316300779581, + 0.00536649813875556, + -0.00009751781908562407, + -0.004420117940753698, + -0.02052788995206356, + 0.011897346936166286, + 0.036001063883304596, + 0.01170972641557455, + 0.028849409893155098, + -0.018320590257644653, + 0.030526958405971527, + 0.008122864179313183, + 0.007664849050343037, + 0.013663186691701412, + 0.023154577240347862, + 0.0010601937538012862, + -0.02169775776565075, + -0.025450168177485466, + -0.007096469402313232, + -0.06568924337625504, + -0.0191483274102211, + -0.016002925112843513, + 0.004867096431553364, + -0.010319127701222897, + 0.017106574028730392, + -0.029754403978586197, + 0.007195797748863697, + -0.01625676453113556, + 0.03701642155647278, + 0.026421381160616875, + -0.012548500671982765, + -0.0028143073432147503, + -0.013089288957417011, + -0.010650222189724445, + 0.0043318262323737144, + -0.004996775183826685, + 0.008669170551002026, + 0.017934313043951988, + -0.02414786070585251, + -0.014810983091592789, + 0.026156503707170486, + -0.002847417024895549, + -0.016929991543293, + -0.02580333687365055, + 0.013045142404735088, + 0.022801408544182777, + -0.01582634076476097, + -0.011676616966724396, + -0.041673824191093445, + -0.015980850905179977, + 0.018232297152280807, + 0.0154510997235775, + -0.04613256826996803, + -0.024346519261598587, + 0.0027094606775790453, + -0.012416061945259571, + 0.01773565448820591, + 0.02355189062654972, + -0.020605145022273064, + 0.01821022480726242, + 0.0055044544860720634, + -0.014479887671768665, + -0.032270725816488266, + -0.050944484770298004, + -0.011864237487316132, + -0.010137025266885757, + -0.029886841773986816, + -0.0022486867383122444, + 0.0012326390715315938, + 0.016720296815037727, + -0.0051347315311431885, + -0.022668970748782158, + -0.019534604623913765, + 0.007620702963322401, + -0.05412299558520317, + 0.0005763122462667525, + -0.02633308805525303, + 0.014501960948109627, + -0.015362807549536228, + -0.00020676192070823163, + -0.00997699610888958, + -0.005733461584895849, + 0.006450834218412638, + 0.026597963646054268, + -0.014082573354244232, + -0.01019772607833147, + 0.01743767037987709, + -0.0006090768147259951, + 0.015528354793787003, + 0.007863505743443966, + 0.008255301974713802, + -0.021609466522932053, + 0.014888238161802292, + 0.02979854866862297, + 0.01435848604887724, + -0.01985466293990612, + 0.001134000369347632, + -0.026796622201800346, + -0.017625290900468826, + -0.008967156521975994, + 0.01908210851252079, + 0.01719486713409424, + 0.005170600023120642, + 0.03076976165175438, + -0.0013933581067249179, + -0.01656578667461872, + -0.009198922663927078, + -0.014203974977135658, + -0.0015782194677740335, + 0.04145309329032898, + -0.002302489709109068, + -0.011014427058398724, + 0.015417990274727345, + -0.007195797748863697, + 0.005145768169313669, + 0.020836912095546722, + -0.012096003629267216, + -0.02105764113366604, + -0.01210703980177641, + 0.003250249195843935, + -0.0022169568110257387, + -0.004455986898392439, + 0.03756824508309364, + 0.0057831257581710815, + 0.010810251347720623, + -0.0045608333311975, + 0.028076855465769768, + 0.0397755466401577, + 0.029401235282421112, + -0.041673824191093445, + -0.03063732385635376, + -0.01648852974176407, + 0.001982431160286069, + 0.016146399080753326, + -0.031454022973775864, + -0.002661176025867462, + 0.020009174942970276, + -0.0011705587385222316, + -0.0033495777752250433, + -0.008111827075481415, + -0.03734751418232918, + -0.03174097463488579, + -0.003203344065696001, + -0.0002138321870006621, + 0.023927131667733192, + -0.00997699610888958, + 0.031255368143320084, + 0.015263479202985764, + 0.018464064225554466, + -0.021278372034430504, + 0.03143195062875748, + -0.0261344313621521, + -0.05041472986340523, + 0.015131041407585144, + 0.033573031425476074, + 0.00009363780554849654, + -0.07504820078611374, + 0.0033661324996501207, + 0.023066284134984016, + 0.004588424693793058, + 0.012636791914701462, + 0.009921813383698463, + 0.017713582143187523, + -0.01656578667461872, + 0.021554283797740936, + 0.010727478191256523, + -0.01264782901853323, + -0.019998136907815933, + -0.016521640121936798, + -0.014833055436611176, + 0.007184761576354504, + -0.0030267599504441023, + 0.004960906691849232, + 0.025273583829402924, + -0.008293929509818554, + -0.024567248299717903, + -0.006252177059650421, + 0.015417990274727345, + -0.03995212912559509, + 0.028739046305418015, + 0.015020675957202911, + -0.008917491883039474, + -0.004798118490725756, + 0.026178577914834023, + 0.014215012080967426, + -0.006798483897000551, + -0.04052602872252464, + 0.023441525176167488, + -0.01258161012083292, + 0.016047069802880287, + 0.03160853683948517, + 0.006506016477942467, + -0.03480911999940872, + 0.0006701224483549595, + -0.0026722124312072992, + -0.0010905441595241427, + 0.027260154485702515, + 0.006439797580242157, + 0.0001001907221507281, + 0.01965600624680519, + -0.033815834671258926, + -0.031233293935656548, + -0.009309287182986736, + 0.04165175184607506, + 0.010252907872200012, + -0.007433082442730665, + -0.056860048323869705, + -0.019391130656003952, + -0.02143288217484951, + 0.011588324792683125, + -0.03805385157465935, + -0.00008066129521466792, + 0.02902599424123764, + 0.03487534075975418, + 0.029048066586256027, + 0.005921082105487585, + 0.003702745772898197, + -0.0018996575381606817, + -0.003567548468708992, + -0.018563393503427505, + 0.021686721593141556, + 0.016941027715802193, + -0.020549962297081947, + 0.00358962151221931, + 0.012338806875050068, + -0.00997699610888958, + -0.010137025266885757, + 0.006737783085554838, + -0.012967887334525585, + 0.017360413447022438, + -0.0022859349846839905, + -0.023573962971568108, + -0.02184123359620571, + 0.007267535198479891, + -0.004395286086946726, + 0.010694368742406368, + 0.016587859019637108, + 0.02414786070585251, + 0.014557142741978168, + -0.033175718039274216, + -0.0074275643564760685, + 0.03602313622832298, + 0.004000731278210878, + 0.0050878264009952545, + -0.022293729707598686, + 0.028606606647372246, + -0.07089847326278687, + -0.03328608348965645, + 0.00423249788582325, + -0.0368177630007267, + -0.02781197987496853, + -0.01190838310867548, + 0.03211621567606926, + 0.031365733593702316, + -0.005093344487249851, + 0.02146599255502224, + -0.021819159388542175, + -0.003937271423637867, + 0.022691043093800545, + -0.017713582143187523, + 0.003062628675252199, + -0.007841433398425579, + -0.00382966548204422, + -0.01190838310867548, + -0.010909579694271088, + 0.013376237824559212, + -0.02851831540465355, + 0.0034130376297980547, + 0.003617212874814868, + 0.0552266463637352, + -0.007913170382380486, + 0.016907917335629463, + -0.0033275047317147255, + 0.035758260637521744, + 0.010710923001170158, + -0.007052323315292597, + 0.01177594531327486, + -0.008122864179313183, + 0.006379096768796444, + 0.00888438243418932, + -0.005129213444888592, + 0.008785054087638855, + -0.03277840465307236, + -0.02197367139160633, + 0.02567089907824993, + -0.008520177565515041, + -0.02677454799413681, + 0.0018568910891190171, + 0.013321055099368095, + -0.04851645231246948, + 0.005545841064304113, + 0.010098397731781006, + 0.051385942846536636, + 0.0356699675321579, + 0.005556877702474594, + -0.018938632681965828, + 0.00557619147002697, + 0.035493385046720505, + -0.01585944928228855, + 0.013983245007693768, + -0.004403563216328621, + 0.027061497792601585, + -0.014667508192360401, + -0.0024280298966914415, + 0.015241405926644802, + -0.00965693686157465, + -0.0015575260622426867, + 0.005454789847135544, + -0.014479887671768665, + 0.03129951283335686, + 0.003286117920652032, + 0.02657589130103588, + -0.0038903660606592894, + 0.02200677990913391, + 0.021510137245059013, + 0.011996675282716751, + 0.04352795332670212, + -0.002185226883739233, + -0.026222722604870796, + 0.02626686915755272, + -0.014457814395427704, + -0.004684993997216225, + 0.026730403304100037, + 0.037678610533475876, + -0.0020734823774546385, + 0.04121029004454613, + 0.00496366573497653, + 0.01328794565051794, + 0.03134365752339363, + 0.010230835527181625, + -0.03664118051528931, + 0.015936706215143204, + -0.0014485405990853906, + -0.001115376246161759, + -0.015329698100686073, + 0.03776690363883972, + -0.0018017085967585444, + 0.02895977534353733, + -0.004944351967424154, + -0.03798763081431389, + -0.03785519301891327, + -0.003617212874814868, + 0.006086629815399647, + 0.01776876486837864, + 0.007013695780187845, + 0.001156073296442628, + 0.05509420856833458, + 0.006572235841304064, + 0.024434810504317284, + -0.03494155779480934, + -0.0007497922051697969, + 0.033948272466659546, + 0.000352650647982955, + -0.01727212220430374, + 0.015738049522042274, + 0.005587228108197451, + 0.0001295926485909149, + 0.013188617303967476, + 0.02529565803706646, + 0.009783857502043247, + 0.031122928485274315, + 0.0014857887290418148, + -0.014590253122150898, + -0.02929086983203888, + 0.024743832647800446, + -0.013045142404735088, + 0.05041472986340523, + -0.03706056624650955, + -0.0005463067209348083, + 0.0009222375229001045, + 0.019865699112415314, + 0.014479887671768665, + -0.011246193200349808, + -0.028981847688555717, + 0.03560374677181244, + -0.017989493906497955, + 0.0019920882768929005, + -0.01716175675392151, + 0.006274250335991383, + -0.04374868422746658, + -0.002288694027811289, + -0.04279954731464386, + -0.01712864823639393, + 0.012669901363551617, + 0.02113489620387554, + 0.004850541707128286, + 0.004089022986590862, + -0.022801408544182777, + 0.019026925787329674, + 0.03326401114463806, + 0.007841433398425579, + -0.028606606647372246, + -0.015120004303753376, + 0.0017672195099294186, + -0.011053054593503475 + ] + }, + { + "HotelId": "5", + "HotelName": "Red Tide Hotel", + "Description": "On entering this charming hotel in Scarlet Harbor, you'll notice an uncommon blend of antiques, original artwork, and contemporary comforts that give this hotel its signature look. Each suite is furnished to accentuate the views and unique characteristics of the building's classic architecture. No two suites are alike. However, all guests are welcome in the mezzanine plaza, the surrounding gardens, and the northside terrace for evening refreshments.", + "Description_fr": "En entrant dans ce charmant hĆ“tel de Scarlet Harbor, vous remarquerez un mĆ©lange rare d'antiquitĆ©s, d'œuvres d'art originales et de confort contemporain qui donnent Ć  cet hĆ“tel son look signature. Chaque suite est meublĆ©e pour accentuer les vues et les caractĆ©ristiques uniques de l'architecture classique du bĆ¢timent. Il n'y a pas deux suites identiques. Cependant, tous les invitĆ©s sont les bienvenus sur la place mezzanine, dans les jardins environnants et sur la terrasse cĆ“tĆ© nord pour des rafraĆ®chissements en soirĆ©e.", + "Category": "Boutique", + "Tags": [ + "24-hour front desk service", + "bar", + "free parking" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2011-12-07T00:00:00Z", + "Rating": 4.1, + "Address": { + "StreetAddress": "800 Boylston St", + "City": "Boston", + "StateProvince": "MA", + "PostalCode": "02199", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -71.082466, + 42.347179 + ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (Waterfront View)", + "Description_fr": "Suite, 2 grands lits (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Standard, 2 lits doubles (vue ville)", + "Type": "Standard Room", + "BaseRate": 134.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 grands lits (Services)", + "Type": "Standard Room", + "BaseRate": 101.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv", + "tv" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 63.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 135.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 78.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "suite" + ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 242.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 165.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 73.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 137.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "tv", + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 89.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + } + ], + "embedding": [ + -0.007606433238834143, + -0.036500271409749985, + 0.033635422587394714, + 0.01384675968438387, + -0.013210127130150795, + -0.050400082021951675, + -0.010623807087540627, + -0.03774700686335564, + 0.015120024792850018, + -0.0209956131875515, + -0.024828672409057617, + 0.011837387457489967, + -0.006571905221790075, + -0.019470347091555595, + 0.00935717299580574, + 0.031964261084795, + -0.013256547972559929, + -0.01672486960887909, + 0.04233606904745102, + 0.026194779202342033, + -0.0006154944421723485, + -0.01871434599161148, + 0.005242271814495325, + -0.03520047664642334, + -0.0003891914093401283, + 0.007407485507428646, + -0.03894069418311119, + 0.002309451112523675, + 0.060427043586969376, + 0.0375613234937191, + -0.005103008355945349, + -0.021353719756007195, + 0.058676306158304214, + 0.0043768491595983505, + 0.02116803452372551, + 0.005013481713831425, + 0.012281703762710094, + -0.010444753803312778, + -0.04745565727353096, + -0.03029310144484043, + -0.006439273711293936, + 0.03610237315297127, + 0.000402454606955871, + -0.014682339504361153, + 0.00201102951541543, + -0.034245528280735016, + 0.037110377103090286, + 0.017693081870675087, + -0.02955036424100399, + 0.021247614175081253, + -0.0506918728351593, + 0.0033141369931399822, + -0.057562198489904404, + -0.034643422812223434, + -0.06467126309871674, + 0.00033282290678471327, + -0.05575840547680855, + -0.007128959055989981, + 0.013336126692593098, + 0.021592456847429276, + 0.03281310573220253, + -0.009078646078705788, + 0.01445686537772417, + 0.013316231779754162, + -0.0627083107829094, + 0.05501566827297211, + -0.04493565112352371, + 0.04737607762217522, + -0.03933858871459961, + 0.015027182176709175, + 0.0676952674984932, + 0.035120900720357895, + 0.0048543238081038, + -0.031858157366514206, + -0.04169943556189537, + -0.02230866812169552, + 0.0025415567215532064, + 0.03517395257949829, + 0.04329101741313934, + -0.002677504438906908, + -0.03705732151865959, + -0.002059108577668667, + -0.03623500466346741, + 0.006495642010122538, + -0.015557709150016308, + 0.021579192951321602, + 0.0037667430005967617, + -0.0008604487520642579, + -0.024457301944494247, + 0.06376936286687851, + 0.03607584908604622, + 0.06716474145650864, + -0.03809184953570366, + -0.047031234949827194, + -0.03790616616606712, + -0.005049955565482378, + -0.0006125930813141167, + -0.05209776759147644, + -0.031858157366514206, + 0.0576152503490448, + 0.080109603703022, + -0.04047922417521477, + -0.030478786677122116, + -0.032388683408498764, + 0.002022634958848357, + -0.047137338668107986, + -0.009768331423401833, + 0.03153983876109123, + -0.010332017205655575, + -0.00363079528324306, + -0.1353905349969864, + -0.03716342896223068, + -0.016472868621349335, + 0.02022634819149971, + -0.023940037935972214, + 0.04268091171979904, + -0.0049405344761908054, + -0.029842153191566467, + -0.002241477370262146, + 0.03819795697927475, + 0.004038637969642878, + 0.019642768427729607, + -0.02523983083665371, + -0.00623369449749589, + 0.018223607912659645, + -0.03984259068965912, + -0.020345717668533325, + -0.026778358966112137, + -0.03119499795138836, + -0.04411333426833153, + 0.0019032662967219949, + -0.01659223809838295, + -0.054909564554691315, + -0.007447275333106518, + 0.02840973064303398, + 0.008256329223513603, + -0.000739836716093123, + -0.0444847047328949, + -0.019231610000133514, + 0.02241477370262146, + 0.017852239310741425, + 0.006008220370858908, + 0.01702992245554924, + -0.057562198489904404, + -0.01742781698703766, + 0.007467169780284166, + 0.044749967753887177, + 0.02140677161514759, + 0.0013486995594576001, + 0.057190828025341034, + -0.00700959051027894, + 0.03546574339270592, + 0.0060513257049024105, + -0.012686231173574924, + 0.009814753197133541, + -0.04618239030241966, + 0.03931206464767456, + -0.05162029340863228, + -0.07040095329284668, + 0.038648903369903564, + -0.013223390094935894, + -0.012076124548912048, + -0.0010817780857905746, + 0.01067022792994976, + 0.042495228350162506, + 0.009635699912905693, + -0.00832927692681551, + 0.03392721340060234, + -0.04310533404350281, + 0.037640903145074844, + -0.005079797934740782, + -0.014310970902442932, + 0.010106543079018593, + 0.05225692689418793, + 0.019576452672481537, + -0.006094431038945913, + -0.013753917068243027, + -0.02368803881108761, + 0.01435075979679823, + 0.004187848884612322, + 0.002670872723683715, + -0.0023807405959814787, + 0.054432086646556854, + -0.03591668978333473, + 0.014775182120501995, + -0.0005462772096507251, + -0.0701887458562851, + -0.00929085724055767, + -0.022733088582754135, + 0.013435600325465202, + 0.009363804943859577, + 0.01648613251745701, + -0.021327191963791847, + -0.0031135312747210264, + -0.014178338460624218, + 0.0023591879289597273, + 0.008899593725800514, + 0.00576285133138299, + 0.020518139004707336, + -0.0005823364481329918, + -0.026950780302286148, + -0.0017872133757919073, + 0.06048009917140007, + -0.027348676696419716, + -0.03207036852836609, + 0.009821384213864803, + 0.03214994817972183, + 0.02268003672361374, + -0.002138687763363123, + 0.01428444404155016, + 0.014682339504361153, + 0.00856801401823759, + -0.026274358853697777, + 0.05421987920999527, + -0.01672486960887909, + -0.023886986076831818, + -0.012454125098884106, + 0.023475827649235725, + -0.03498826548457146, + 0.022229088470339775, + -0.047508709132671356, + 0.013621285557746887, + 0.03490868955850601, + -0.0011074754875153303, + 0.011883808299899101, + 0.040028274059295654, + 0.002389030298218131, + -0.03732258826494217, + 0.0005587114137597382, + 0.0117445457726717, + -0.005222376901656389, + 0.008468540385365486, + -0.039869118481874466, + -0.03082362934947014, + -0.07294748723506927, + 0.023807406425476074, + -0.03957732766866684, + -0.002563109388574958, + 0.012726020999252796, + 0.012984653003513813, + -0.026473306119441986, + 0.00943675171583891, + 0.019735610112547874, + 0.0075003281235694885, + 0.033370159566402435, + -0.03496174141764641, + -0.012387809343636036, + -0.024894988164305687, + 0.011094649322330952, + 0.012321493588387966, + -0.04175248742103577, + 0.06774832308292389, + 0.036739006638526917, + 0.03997522220015526, + 0.013873285613954067, + 0.01830318756401539, + -0.01972234807908535, + -0.018289923667907715, + 0.013468759134411812, + -0.01722886972129345, + 0.05793356895446777, + 0.006681326776742935, + 0.012149072252213955, + -0.0519651360809803, + 0.002965978579595685, + -0.05307924374938011, + -0.02120782434940338, + -0.03596974164247513, + -0.029842153191566467, + 0.005567219574004412, + -0.037640903145074844, + 0.007400854025036097, + 0.02086298167705536, + 0.02191077172756195, + 0.0018833715002983809, + -0.042389120906591415, + -0.023568669334053993, + -0.0006834682426415384, + 0.032760053873062134, + 0.0024006355088204145, + -0.016884027048945427, + -0.051169347018003464, + 0.01958971656858921, + 0.015372024849057198, + 0.00629337877035141, + 0.03018699586391449, + 0.0407179594039917, + 0.0049405344761908054, + 0.0376143753528595, + 0.010385069064795971, + 0.011359913274645805, + -0.06960516422986984, + 0.04307880625128746, + -0.00653874734416604, + -0.035731006413698196, + 0.0288076251745224, + 0.017321711406111717, + 0.00389605900272727, + 0.027003834024071693, + -0.008150223642587662, + -0.005471061449497938, + 0.038887642323970795, + 0.009668857790529728, + 0.01608823612332344, + 0.024642987176775932, + 0.028834151104092598, + -0.0024768987204879522, + -0.038622379302978516, + 0.017746133729815483, + 0.0021552667021751404, + 0.026579411700367928, + -0.05021439865231514, + -0.042627859860658646, + -0.05360976979136467, + -0.00461890222504735, + -0.03344973921775818, + 0.000054814234317746013, + 0.05623587965965271, + 0.024523619562387466, + -0.02484193444252014, + 0.08079928904771805, + 0.03366195037961006, + 0.03159289434552193, + -0.017308449372649193, + -0.007254959084093571, + -0.04395417496562004, + -0.0007945473189465702, + -0.02066403441131115, + -0.0009433436207473278, + 0.01685750111937523, + 0.024921514093875885, + -0.08244392275810242, + 0.04034659266471863, + 0.033131420612335205, + -0.01433749683201313, + -0.04106280207633972, + -0.04082406684756279, + 0.030107418075203896, + 0.00851496122777462, + -0.005427956115454435, + -0.006870327051728964, + -0.08366413414478302, + -0.026513095945119858, + -0.0014324233634397388, + -0.00047954684123396873, + -0.04793313145637512, + -0.023263616487383842, + -0.0024669512640684843, + 0.050267450511455536, + 0.03591668978333473, + -0.05042660981416702, + 0.010192753747105598, + -0.0018170556286349893, + -0.0009367120219394565, + -0.004638797137886286, + 0.04008132964372635, + 0.0576152503490448, + 0.016539184376597404, + -0.04822491854429245, + 0.048145342618227005, + -0.03405984491109848, + 0.006555326282978058, + 0.001908239908516407, + -0.01571686752140522, + -0.00017905292042996734, + -0.0444316491484642, + 0.022693300619721413, + 0.018289923667907715, + 0.020743612200021744, + -0.040160905569791794, + -0.030876681208610535, + 0.026088673621416092, + -0.014841497875750065, + -0.009178119711577892, + -0.008640961721539497, + 0.06058620288968086, + 0.03496174141764641, + -0.00007315472612390295, + 0.023396247997879982, + -0.024550145491957664, + 0.014364023692905903, + -0.0038430062122642994, + 0.02342277392745018, + -0.0519651360809803, + 0.022932037711143494, + -0.014483392238616943, + 0.010511069558560848, + 0.005742956884205341, + -0.01733497530221939, + 0.02955036424100399, + 0.005464429967105389, + -0.040505748242139816, + -0.025730568915605545, + -0.015265919268131256, + -0.007221801206469536, + 0.03833058848977089, + 0.014682339504361153, + -0.008926119655370712, + 0.00671448465436697, + 0.04294617474079132, + 0.017480870708823204, + -0.032733526080846786, + 0.008442013524472713, + -0.045280493795871735, + -0.015557709150016308, + -0.008879698812961578, + -0.026460042223334312, + -0.04910029098391533, + -0.0009425146854482591, + 0.03278657793998718, + -0.0469781830906868, + -0.0052820611745119095, + 0.009748436510562897, + -0.0007099945796653628, + -0.008621066808700562, + -0.016804447397589684, + 0.027109939604997635, + -0.05244261026382446, + 0.01665855385363102, + 0.030770575627684593, + 0.010962017811834812, + 0.019801927730441093, + 0.0426013320684433, + -0.006190589163452387, + 0.0376143753528595, + 0.012626546435058117, + 0.021287402138113976, + -0.024709302932024002, + -0.0313541553914547, + -0.028250571340322495, + -0.05947209522128105, + 0.0038794800639152527, + 0.018687820062041283, + 0.0419381745159626, + -0.053158823400735855, + 0.09209951758384705, + -0.03153983876109123, + -0.026208043098449707, + -0.013979391194880009, + -0.00629337877035141, + -0.0036606374196708202, + -0.040505748242139816, + -0.03596974164247513, + -0.006130904890596867, + -0.004320480860769749, + 0.04159333184361458, + 0.041779015213251114, + 0.03371500223875046, + 0.006213799584656954, + -0.012553599663078785, + -0.037243008613586426, + -0.04520091414451599, + -0.06567926704883575, + 0.004967060871422291, + 0.02447056584060192, + 0.02035897970199585, + 0.009018962271511555, + 0.017414554953575134, + -0.0053848507814109325, + -0.042787015438079834, + 0.047137338668107986, + 0.025664251297712326, + -0.04191164672374725, + -0.003528005676344037, + 0.027773097157478333, + -0.002632741117849946, + -0.03018699586391449, + 0.018024660646915436, + -0.01821034587919712, + -0.034112896770238876, + -0.004207743797451258, + -0.08668813854455948, + 0.05957820266485214, + 0.003465005662292242, + -0.0021353717893362045, + -0.01635350100696087, + -0.006084483582526445, + 0.01696360670030117, + 0.05337103456258774, + -0.006008220370858908, + -0.01992129534482956, + 0.009582647122442722, + -0.014828234910964966, + -0.021632244810461998, + -0.0184490829706192, + 0.011353281326591969, + -0.005978378001600504, + 0.02287898398935795, + -0.01726865954697132, + 0.02274635247886181, + -0.020000874996185303, + 0.016234131529927254, + -0.017242133617401123, + -0.014695602469146252, + 0.04270743951201439, + 0.029258573427796364, + -0.010444753803312778, + -0.027720045298337936, + -0.030850155279040337, + 0.005414693150669336, + 0.02917899377644062, + -0.03233563154935837, + 0.004065164364874363, + 0.008475171402096748, + 0.01904592476785183, + 0.057031672447919846, + -0.05878240987658501, + -0.014509918168187141, + 0.029523836448788643, + -0.03228257969021797, + -0.057296935468912125, + 0.02648657001554966, + -0.013740654103457928, + 0.032866157591342926, + -0.014602760784327984, + -0.0063795894384384155, + -0.023515617474913597, + 0.007778854575008154, + 0.002612846437841654, + -0.017043186351656914, + 0.0019364241743460298, + -0.011817492544651031, + -0.03307836875319481, + 0.0008405540138483047, + 0.038755010813474655, + 0.03082362934947014, + -0.015120024792850018, + -0.05185903236269951, + 0.008170118555426598, + -0.0009375410154461861, + 0.0017673186957836151, + -0.06955211609601974, + -0.0020126875024288893, + 0.02234845794737339, + 0.004549270495772362, + 0.027905728667974472, + -0.009032225236296654, + -0.004337059799581766, + 0.03841016814112663, + 0.0027720045763999224, + 0.035253532230854034, + -0.013269810937345028, + -0.006581852678209543, + -0.0194172952324152, + -0.03297226503491402, + 0.009416857734322548, + -0.016008658334612846, + 0.009562752209603786, + 0.016128025949001312, + 0.015013919211924076, + 0.0169238168746233, + 0.01632697321474552, + 0.018833715468645096, + -0.025186777114868164, + -0.010895702056586742, + 0.002783609787002206, + 0.009178119711577892, + 0.025823410600423813, + -0.008680750615894794, + 0.01645960472524166, + -0.0073212748393416405, + 0.01415181253105402, + -0.017626766115427017, + -0.01659223809838295, + 0.018316451460123062, + 0.046155862510204315, + 0.014722129330039024, + 0.04766786843538284, + 0.006223747041076422, + -0.037879642099142075, + -0.008992435410618782, + 0.018197081983089447, + -0.00480458652600646, + -0.024205302819609642, + 0.010438121855258942, + 0.006588484160602093, + 0.0576152503490448, + 0.005414693150669336, + 0.002529951510950923, + 0.028144467622041702, + 0.0034517424646764994, + -0.025889726355671883, + 0.03177857771515846, + 0.03899374604225159, + -0.04994913190603256, + -0.0019612926989793777, + 0.03705732151865959, + 0.033874161541461945, + 0.027003834024071693, + 0.016128025949001312, + -0.02012024261057377, + 0.0013196863001212478, + -0.002059108577668667, + 0.01043149083852768, + 0.010584017261862755, + 0.010438121855258942, + -0.014430339448153973, + -0.01696360670030117, + 0.010312122292816639, + 0.005928641185164452, + -0.002274635247886181, + -0.03005436435341835, + 0.01709623821079731, + -0.007705907337367535, + -0.004516112618148327, + 0.0012674626195803285, + 0.018621504306793213, + -0.021817930042743683, + -0.027640465646982193, + -0.006525484379380941, + -0.018833715468645096, + 0.0008803435484878719, + 0.014788445085287094, + -0.02016003243625164, + -0.08615761250257492, + 0.01779918745160103, + -0.056288935244083405, + 0.01639328896999359, + -0.0003425630566198379, + -0.0036142163444310427, + -0.004778060596436262, + 0.009788226336240768, + -0.008156855590641499, + 0.039895642548799515, + 0.019801927730441093, + 0.046129338443279266, + 0.000019143533791066147, + -0.05597061663866043, + -0.003796585137024522, + -0.017746133729815483, + 0.04862281680107117, + 0.035890161991119385, + 0.022229088470339775, + -0.04533354565501213, + -0.03254784271121025, + 0.0077523281797766685, + 0.019602978602051735, + 0.037402164191007614, + 0.019006136804819107, + 0.013833495788276196, + 0.021565929055213928, + 0.018289923667907715, + 0.007904854603111744, + -0.012341388501226902, + -0.02642025426030159, + 0.006588484160602093, + 0.05809272453188896, + 0.012069493532180786, + 0.0036374269984662533, + -0.005868956912308931, + -0.037004269659519196, + 0.005504219327121973, + 0.021963825449347496, + -0.03344973921775818, + -0.005796009209007025, + -0.006406115833669901, + -0.0039225853979587555, + 0.021632244810461998, + 0.019801927730441093, + 0.05788051337003708, + -0.01336265355348587, + 0.06095757335424423, + -0.035863637924194336, + -0.031858157366514206, + -0.01672486960887909, + -0.009330647066235542, + -0.019191820174455643, + -0.013515179976820946, + -0.04586407542228699, + -0.02631414867937565, + 0.06811968982219696, + 0.012208756990730762, + 0.023436037823557854, + 0.03947122022509575, + 0.022096456959843636, + -0.0005325995734892786, + -0.028356676921248436, + 0.00694990623742342, + -0.026460042223334312, + -0.004545954521745443, + -0.003445110749453306, + 0.025186777114868164, + -0.010590649209916592, + -0.009980542585253716, + -0.004366901703178883, + -0.039869118481874466, + -0.0011588702909648418, + 0.0017358185723423958, + 0.011233912780880928, + -0.015557709150016308, + -0.012593388557434082, + 0.025133725255727768, + 0.0463680736720562, + -0.027401728555560112, + 0.00425748061388731, + 0.005093060899525881, + -0.005159376654773951, + -0.0014058969682082534, + 0.018900031223893166, + -0.060904521495103836, + 0.01746760681271553, + 0.014669076539576054, + 0.03490868955850601, + -0.013435600325465202, + 0.003528005676344037, + 0.014828234910964966, + 0.0070825377479195595, + -0.005885535851120949, + 0.03305184468626976, + 0.004095006734132767, + 0.010040226392447948, + 0.00504000810906291, + -0.03994869813323021, + 0.0023658196441829205, + 0.0073080118745565414, + 0.028993310406804085, + -0.009390330873429775, + -0.009211278520524502, + 0.00022547405387740582, + -0.0092378044500947, + -0.01904592476785183, + 0.004927271045744419, + -0.009483173489570618, + 0.03294573724269867, + -0.023701300844550133, + -0.009198014624416828, + 0.014655813574790955, + -0.02753436006605625, + -0.006817274261265993, + 0.04209733009338379, + -0.024682777002453804, + 0.013780442997813225, + 0.0037170059513300657, + 0.002382398582994938, + 0.037879642099142075, + -0.0077390652149915695, + -0.006883590016514063, + 0.016128025949001312, + -0.006750958506017923, + -0.020133506506681442, + 0.018992872908711433, + -0.016844237223267555, + 0.0002890958567149937, + -0.02143329754471779, + -0.00844864547252655, + -0.013700864277780056, + -0.01578318327665329, + -0.011797597631812096, + -0.0463150218129158, + 0.04379501938819885, + -0.041248489171266556, + 0.011790966615080833, + 0.012679599225521088, + -0.03005436435341835, + -0.00930412020534277, + -0.07252306491136551, + 0.027149727568030357, + 0.03207036852836609, + 0.034510791301727295, + 0.03894069418311119, + -0.0026940833777189255, + 0.02443077601492405, + -0.02466951310634613, + 0.024855198338627815, + 0.0133096007630229, + 0.019748874008655548, + 0.049789976328611374, + 0.016618764027953148, + -0.019735610112547874, + 0.0006250273436307907, + -0.00713559053838253, + -0.01639328896999359, + -0.019815189763903618, + -0.021579192951321602, + 0.03315794840455055, + 0.009125067852437496, + 0.03955079987645149, + -0.03642069175839424, + 0.018634766340255737, + -0.017109502106904984, + 0.041540276259183884, + -0.019629506394267082, + 0.014788445085287094, + -0.003431847784668207, + -0.010305490344762802, + -0.017825713381171227, + -0.012805599719285965, + -0.014655813574790955, + -0.002893031109124422, + 0.02180466614663601, + 0.02153940312564373, + -0.0029974784702062607, + 0.008680750615894794, + -0.06122283637523651, + -0.010159595869481564, + 0.008083907887339592, + 0.015000656247138977, + -0.0638754740357399, + -0.005139482207596302, + 0.03106236644089222, + 0.0010270674247294664, + -0.0037899534218013287, + 0.008309382013976574, + -0.030399207025766373, + -0.033264052122831345, + 0.042150385677814484, + -0.022600457072257996, + -0.011877177283167839, + 0.03732258826494217, + -0.026499832049012184, + -0.008594539947807789, + 0.023568669334053993, + -0.017586976289749146, + -0.02049161307513714, + 0.055280931293964386, + -0.012785704806447029, + 0.006571905221790075, + -0.00989433191716671, + -0.025385726243257523, + -0.002515030326321721, + 0.006339799612760544, + -0.02615498937666416, + -0.03795921802520752, + 0.02120782434940338, + -0.0457049161195755, + 0.017626766115427017, + 0.00791148655116558, + -0.006111009977757931, + 0.0014349102275446057, + -0.04079753905534744, + 0.004045269917696714, + 0.025956042110919952, + -0.012560230679810047, + 0.044511228799819946, + -0.0019198452355340123, + 0.0015667130937799811, + -0.002647662302479148, + 0.007606433238834143, + -0.03116847202181816, + -0.006518852896988392, + 0.009549489244818687, + -0.0003500235907267779, + -0.022892247885465622, + 0.012878547422587872, + -0.025120461359620094, + -0.0008703961502760649, + 0.03923248499631882, + -0.012454125098884106, + -0.020319191738963127, + 0.0031980841886252165, + -0.005494271870702505, + 0.009688752703368664, + 0.02466951310634613, + -0.013050968758761883, + 0.006459168158471584, + -0.005411377176642418, + 0.0037667430005967617, + -0.027269097045063972, + 0.016247395426034927, + 0.042654383927583694, + -0.013210127130150795, + 0.03315794840455055, + -0.0075135910883545876, + -0.028834151104092598, + -0.06705863773822784, + 0.03543921560049057, + -0.011240544728934765, + -0.02965646982192993, + 0.007818643935024738, + 0.006087799556553364, + -0.032998789101839066, + 0.0008069815812632442, + 0.016645289957523346, + 0.002954373136162758, + -0.000010005670446844306, + 0.044139862060546875, + 0.021552667021751404, + 0.032627422362565994, + -0.016884027048945427, + -0.04207080602645874, + 0.00042690857662819326, + 0.008773593232035637, + -0.013057599775493145, + -0.0006784945144318044, + -0.0014564628945663571, + 0.011757808737456799, + -0.01672486960887909, + 0.03294573724269867, + -0.007606433238834143, + 0.014005917124450207, + 0.0019264768343418837, + -0.01014633197337389, + -0.002030924428254366, + -0.03780006244778633, + 0.015186340548098087, + 0.005978378001600504, + -0.006193904671818018, + 0.006203852128237486, + -0.0028714784421026707, + 0.010564122349023819, + 0.0006445076433010399, + -0.011061491444706917, + 0.00905212014913559, + 0.010776333510875702, + 0.035996269434690475, + 0.01639328896999359, + -0.008097170852124691, + -0.014231391251087189, + 0.03246826305985451, + -0.019125504419207573, + -0.025398988276720047, + -0.02840973064303398, + 0.005026745144277811, + 0.030478786677122116, + -0.02103540301322937, + 0.02390024997293949, + -0.035624898970127106, + 0.012255177833139896, + -0.015372024849057198, + 0.024550145491957664, + -0.014072233811020851, + -0.0004857639432884753, + -0.016618764027953148, + 0.015809709206223488, + -0.004075111821293831, + 0.0073212748393416405, + -0.008296119049191475, + 0.008740435354411602, + -0.03941816836595535, + -0.01009327918291092, + -0.004860955290496349, + -0.007042748387902975, + 0.0010660280240699649, + 0.01958971656858921, + 0.021353719756007195, + -0.01553118322044611, + 0.002738846465945244, + -0.01551792025566101, + 0.03453731909394264, + -0.04429901763796806, + 0.005945220123976469, + 0.005537377204746008, + -0.017189079895615578, + -0.0013760548317804933, + -0.012042966671288013, + -0.026539621874690056, + 0.0175339225679636, + -0.002392346039414406, + 0.02685793861746788, + -0.02856888808310032, + 0.039152905344963074, + 0.032388683408498764, + 0.0092245414853096, + -0.022388245910406113, + -0.017043186351656914, + -0.01851539872586727, + -0.03432510793209076, + -0.006227062549442053, + -0.016366763040423393, + -0.010000437498092651, + -0.0057363249361515045, + 0.017149290069937706, + 0.03405984491109848, + 0.005205797962844372, + -0.00700959051027894, + 0.01086917519569397, + 0.002098898170515895, + 0.02073035016655922, + -0.05459124594926834, + -0.007361064665019512, + -0.03008089028298855, + -0.007825275883078575, + -0.011970018967986107, + -0.0024437408428639174, + 0.0021005559246987104, + 0.044405125081539154, + 0.022534141317009926, + 0.0013685943558812141, + -0.007599801756441593, + -0.005411377176642418, + 0.02322382666170597, + 0.06207168102264404, + 0.01972234807908535, + -0.006197220645844936, + -0.019430557265877724, + 0.023714564740657806, + 0.03660637512803078, + 0.019098978489637375, + -0.00773243373259902, + 0.0034484267234802246, + 0.002549846190959215, + -0.017507396638393402, + 0.012447494082152843, + -0.0007448104443028569, + -0.04472343996167183, + 0.0065155369229614735, + 0.003942479845136404, + 0.034616898745298386, + 0.021924035623669624, + 0.014509918168187141, + 0.015451603569090366, + -0.002241477370262146, + -0.014695602469146252, + -0.04732302576303482, + -0.0037800061982125044, + 0.00419779634103179, + -0.0024238459300249815, + 0.04660681262612343, + 0.030478786677122116, + -0.03655332326889038, + 0.012540335766971111, + 0.020319191738963127, + 0.03228257969021797, + 0.006349747069180012, + -0.027375202625989914, + 0.018157292157411575, + 0.009284225292503834, + -0.010597280226647854, + -0.03116847202181816, + 0.008335907943546772, + 0.011200754903256893, + 0.0006967313820496202, + 0.026738569140434265, + -0.011797597631812096, + 0.023276880383491516, + 0.010630438104271889, + 0.021857719868421555, + 0.006797379348427057, + -0.008369065821170807, + 0.022361719980835915, + -0.013886548578739166, + 0.002422188175842166, + 0.026062147691845894, + 0.0028316888492554426, + 0.021128244698047638, + 0.029125941917300224, + -0.011048228479921818, + -0.006237010005861521, + -0.009125067852437496, + 0.0032909263391047716, + -0.037402164191007614, + 0.004791323561221361, + -0.014868023805320263, + -0.01779918745160103, + -0.025093935430049896, + 0.007871696725487709, + 0.001614792039617896, + 0.027640465646982193, + 0.05148766189813614, + 0.04196469858288765, + 0.026433516293764114, + -0.0313011035323143, + -0.01764002814888954, + -0.012818862684071064, + 0.009091909043490887, + -0.011757808737456799, + 0.02688446454703808, + -0.01998761110007763, + -0.012885178439319134, + -0.005404745694249868, + -0.03623500466346741, + -0.003557847812771797, + -0.004174585919827223, + -0.02779962494969368, + -0.04058532789349556, + -0.022268878296017647, + -0.02779962494969368, + -0.0036672691348940134, + -0.05085102841258049, + 0.014191602356731892, + 0.021022139117121696, + -0.007533486001193523, + -0.006021483335644007, + -0.017388029024004936, + 0.05087755620479584, + -0.01814403012394905, + -0.0019513452425599098, + -0.0034815846011042595, + -0.005454482510685921, + 0.011684861034154892, + 0.006890221498906612, + 0.01783897541463375, + -0.0008169289794750512, + -0.009881068952381611, + -0.013422337360680103, + 0.007825275883078575, + -0.014125285670161247, + -0.009450015611946583, + -0.03610237315297127, + 0.026778358966112137, + -0.012593388557434082, + 0.005351692903786898, + -0.028144467622041702, + 0.029258573427796364, + 0.008276224136352539, + 0.013276442885398865, + 0.017321711406111717, + 0.004038637969642878, + 0.006910116411745548, + -0.012241914868354797, + -0.006104378495365381, + 0.026910990476608276, + 0.006823905743658543, + 0.015743393450975418, + -0.011227281764149666, + 0.0073080118745565414, + -0.020279401913285255, + 0.01258675754070282, + -0.01145938690751791, + -0.033874161541461945, + 0.029974784702062607, + -0.011253807693719864, + 0.03140720725059509, + 0.00858127698302269, + 0.004310533404350281, + 0.02523983083665371, + 0.0015592525014653802, + -0.025558147579431534, + 0.027070149779319763, + -0.006107694003731012, + -0.022626984864473343, + -0.004347007256001234, + -0.007506959605962038, + 0.02433793433010578, + -0.023754354566335678, + -0.007745696697384119, + 0.005245587322860956, + 0.0001530446606921032, + 0.006963169202208519, + 0.033370159566402435, + -0.0035246899351477623, + -0.02591625228524208, + 0.004545954521745443, + -0.04591712728142738, + 0.0033141369931399822, + 0.026910990476608276, + 0.004877534229308367, + 0.016618764027953148, + -0.022268878296017647, + 0.009615805000066757, + 0.004549270495772362, + 0.018051186576485634, + 0.014324233867228031, + -0.006983064115047455, + 0.016260657459497452, + 0.018329713493585587, + -0.001120738685131073, + 0.0638754740357399, + 0.024311408400535583, + -0.01546486746519804, + 0.009595910087227821, + 0.022507615387439728, + -0.024948040023446083, + 0.001717581762932241, + 0.011293597519397736, + 0.03382110595703125, + 0.027375202625989914, + -0.003030636580660939, + -0.011558860540390015, + -0.01810424029827118, + -0.019006136804819107, + 0.01565055176615715, + -0.003337347414344549, + -0.013329495675861835, + 0.015318972058594227, + 0.011830756440758705, + -0.013322863727807999, + 0.009562752209603786, + 0.008727172389626503, + -0.0036606374196708202, + 0.00449290219694376, + -0.012553599663078785, + 0.007831907831132412, + 0.017189079895615578, + 0.006976432166993618, + 0.01911224238574505, + 0.02594277821481228, + 0.03947122022509575, + 0.007414117455482483, + -0.04421944171190262, + -0.004778060596436262, + -0.005540693178772926, + -0.019868243485689163, + -0.005812588147819042, + -0.01297138910740614, + 0.030107418075203896, + 0.010935491882264614, + 0.00017128152830991894, + -0.04185859486460686, + -0.006442589219659567, + -0.0043834806419909, + 0.008488434366881847, + 0.03029310144484043, + -0.04331754520535469, + 0.007646223064512014, + 0.017547186464071274, + -0.013011178933084011, + -0.011015070602297783, + 0.004270743578672409, + 0.00043768491013906896, + -0.0008384816464968026, + 0.01851539872586727, + -0.03772048279643059, + 0.02342277392745018, + -0.023144248872995377, + -0.017255395650863647, + -0.01401918102055788, + -0.008203276433050632, + -0.02843625657260418, + 0.0012492256937548518, + -0.008136960677802563, + 0.006041378248482943, + -0.017308449372649193, + -0.02547856792807579, + 0.041381120681762695, + -0.03427205607295036, + 0.010371806100010872, + -0.016167815774679184, + 0.015106760896742344, + -0.021884245797991753, + 0.0055108508095145226, + 0.02830362506210804, + 0.033104896545410156, + 0.030903207138180733, + 0.04408680647611618, + -0.004439849406480789, + -0.012447494082152843, + 0.028011834248900414, + 0.00019003648776561022, + 0.014801708050072193, + -0.01553118322044611, + -0.027985308319330215, + -0.040532276034355164, + 0.004134796094149351, + 0.011174228973686695, + 0.0000775585140218027, + 0.004642112646251917, + 0.03623500466346741, + -0.034006793051958084, + -0.005182587541639805, + -0.011068123392760754, + 0.0007875012815929949, + 0.029125941917300224, + -0.018157292157411575, + 0.02692425437271595, + 0.008488434366881847, + -0.014841497875750065, + 0.023462563753128052, + 0.004824481438845396, + -0.03610237315297127, + 0.023077931255102158, + 0.01041822787374258, + -0.028515836223959923, + 0.004963744897395372, + 0.03291920945048332, + -0.028250571340322495, + 0.003640742739662528, + -0.03459037095308304, + -0.029125941917300224, + -0.04230954125523567, + -0.038012273609638214, + -0.0045028491877019405, + -0.017308449372649193, + 0.004642112646251917, + -0.019748874008655548, + -0.00347495311871171, + 0.0002915827208198607, + 0.0513019785284996, + 0.011897072196006775, + 0.01565055176615715, + -0.06589147448539734, + 0.001191199291497469, + -0.02716299146413803, + 0.024523619562387466, + 0.009556121192872524, + -0.012354651466012001, + -0.0040485854260623455, + 0.007347801234573126, + 0.006339799612760544, + -0.016300447285175323, + -0.0018468977650627494, + -0.01827666163444519, + 0.010557490400969982, + 0.016181079670786858, + 0.00043892834219150245, + 0.029523836448788643, + 0.010411595925688744, + 0.030850155279040337, + -0.01713602803647518, + -0.022494351491332054, + 0.010066753253340721, + 0.015186340548098087, + -0.001612305291928351, + -0.03554531931877136, + -0.0045127966441214085, + -0.02604888379573822, + 0.00024889185442589223, + -0.024284880608320236, + -0.01098854374140501, + 0.018157292157411575, + -0.007354433182626963, + -0.010351911187171936, + -0.006611695047467947, + -0.018793925642967224, + -0.014828234910964966, + 0.018767399713397026, + -0.00811043381690979, + -0.023436037823557854, + -0.010106543079018593, + -0.008335907943546772, + -0.021884245797991753, + 0.0551217719912529, + 0.012195493094623089, + 0.011658335104584694, + 0.013137179426848888, + -0.01834297738969326, + -0.0003000794386025518, + 0.01164507120847702, + -0.010690122842788696, + -0.02103540301322937, + 0.008249697275459766, + -0.03994869813323021, + -0.0036009531468153, + -0.0005831654416397214, + -0.00181539764162153, + 0.005361640360206366, + -0.024616461247205734, + -0.01726865954697132, + -0.04642112925648689, + 0.004642112646251917, + 0.03833058848977089, + -0.0011323438957333565, + 0.005338429939001799, + -0.017852239310741425, + -0.00027438203687779605, + -0.0241257231682539, + -0.03214994817972183, + -0.004429901950061321, + -0.020650770515203476, + 0.0070692747831344604, + 0.006691274233162403, + -0.041540276259183884, + -0.021725088357925415, + -0.00832927692681551, + 0.007898223586380482, + -0.02856888808310032, + 0.00012786533625330776, + -0.040532276034355164, + -0.02265351079404354, + 0.007904854603111744, + -0.002843294059857726, + -0.012321493588387966, + -0.015902552753686905, + 0.00714222202077508, + 0.009973910637199879, + 0.017547186464071274, + 0.02416551299393177, + 0.008621066808700562, + 0.0028499257750809193, + 0.006273483857512474, + 0.02127414010465145, + 0.035996269434690475, + 0.02981562726199627, + 0.01312391646206379, + 0.00804411806166172, + 0.05395461246371269, + 0.0015799762913957238, + 0.0006407773471437395, + 0.0066481688991189, + 0.0015061998274177313, + 0.014788445085287094, + -0.03427205607295036, + 0.012321493588387966, + 0.014921076595783234, + 0.0008480145479552448, + -0.001248396816663444, + -0.0021436612587422132, + 0.008607803843915462, + 0.014417075552046299, + 0.003096952335909009, + -0.03854279965162277, + -0.0033008737955242395, + -0.006890221498906612, + -0.006465800106525421, + 0.026088673621416092, + -0.009735173545777798, + -0.0010336990235373378, + 0.001171304495073855, + -0.013753917068243027, + 0.030240049585700035, + -0.0077390652149915695, + 0.0009474883554503322, + 0.0028714784421026707, + -0.0014813313027843833, + 0.02941773273050785, + 0.0018120819004252553, + 0.0038098483346402645, + -0.008793488144874573, + 0.03079710341989994, + 0.014045706950128078, + -0.02729562297463417, + 0.02214950881898403, + -0.037402164191007614, + 0.013886548578739166, + -0.008760330267250538, + 0.014231391251087189, + -0.004652060102671385, + -0.0030936365947127342, + -0.03684511408209801, + 0.04090364649891853, + 0.01541181467473507, + 0.004453112371265888, + -0.009204646572470665, + 0.009463278576731682, + 0.043503228574991226, + 0.02173835039138794, + -0.033635422587394714, + -0.020571190863847733, + -0.014509918168187141, + -0.012162335216999054, + 0.01897960901260376, + -0.008136960677802563, + -0.008707277476787567, + -0.04981650039553642, + 0.0001522157108411193, + 0.016777921468019485, + 0.00948980450630188, + -0.009861174039542675, + -0.007480433210730553, + 0.004754849709570408, + -0.024749092757701874, + 0.03427205607295036, + -0.013806969858705997, + 0.053901560604572296, + 0.026844674721360207, + -0.003355584340170026, + -0.007871696725487709, + 0.0045791128650307655, + 0.010776333510875702, + 0.016884027048945427, + 0.026141727343201637, + -0.0054080612026154995, + 0.011910335160791874, + -0.004957113415002823, + 0.014324233867228031, + -0.007221801206469536, + 0.005013481713831425, + 0.03891417011618614, + 0.023475827649235725, + 0.007228432688862085, + -0.0026509780436754227, + 0.010610543191432953, + 0.004277375526726246, + -0.020982349291443825, + 0.018064450472593307, + -0.029364679008722305, + -0.005321850534528494, + 0.04822491854429245, + 0.030982786789536476, + 0.013979391194880009, + 0.0281709935516119, + -0.00017097067029681057, + -0.018488872796297073, + 0.014072233811020851, + 0.042150385677814484, + -0.011784334667026997, + 0.01851539872586727, + 0.008422118611633778, + 0.004224322736263275, + 0.00811043381690979, + 0.004068480338901281, + -0.04135459288954735, + 0.029152467846870422, + -0.002261372050270438, + 0.007778854575008154, + -0.02537246234714985, + -0.0013735679676756263, + -0.001531897229142487, + 0.012745914980769157, + 0.02022634819149971, + -0.0234890915453434, + 0.02114150859415531, + 0.022600457072257996, + -0.01559749897569418, + -0.010696753859519958, + -0.014722129330039024, + 0.015332235023379326, + 0.05398114025592804, + -0.03533310815691948, + -0.003899374743923545, + 0.008793488144874573, + 0.009980542585253716, + 0.03734911233186722, + -0.015902552753686905, + -0.013356021605432034, + 0.011300228536128998, + -0.024576671421527863, + 0.00582253560423851, + -0.041275013238191605, + 0.014682339504361153, + 0.007712538819760084, + 0.01408549677580595, + 0.020451823249459267, + -0.0008994093514047563, + -0.02486846223473549, + 0.006094431038945913, + -0.034112896770238876, + 0.028728047385811806, + -0.006996327079832554, + 0.003982269670814276, + 0.0070692747831344604, + -0.011751176789402962, + 0.046023230999708176, + -0.01779918745160103, + 0.02981562726199627, + 0.03355584293603897, + 0.012361283414065838, + 0.006767537444829941, + -0.006661431863903999, + -0.0021950562950223684, + -0.026446780189871788, + -0.021990351378917694, + -0.008786856196820736, + 0.0319112092256546, + 0.008926119655370712, + -0.020690560340881348, + -0.013554969802498817, + -0.032866157591342926, + -0.011081386357545853, + 0.0018303187098354101, + 0.02305140532553196, + -0.016406552866101265, + -0.012600020505487919, + -0.03342321142554283, + -0.027375202625989914, + -0.036261532455682755 + ] + }, + { + "HotelId": "50", + "HotelName": "Head Wind Resort", + "Description": "The best of old town hospitality combined with views of the river and cool breezes off the prairie. Our penthouse suites offer views for miles and the rooftop plaza is open to all guests from sunset to 10 p.m. Enjoy a complimentary continental breakfast in the lobby, and free Wi-Fi throughout the hotel.", + "Description_fr": "Le meilleur de l'hospitalitĆ© de la vieille ville, avec vue sur la riviĆØre et les vents de la prairie. Nos suites de haut niveau offrent des vues Ć  des milliers de personnes et la place sur le toit est ouverte Ć  tous les clients du coucher du soleil Ć  22 heures. Profitez d'un petit-dĆ©jeuner continental gratuit dans le hall et d'une connexion Wi-Fi gratuite dans tout l'hĆ“tel.", + "Category": "Suite", + "Tags": [ + "coffee in lobby", + "free wifi", + "view" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2012-04-04T00:00:00Z", + "Rating": 4.7, + "Address": { + "StreetAddress": "7633 E 63rd Pl", + "City": "Tulsa", + "StateProvince": "OK", + "PostalCode": "74133", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -95.889305, + 36.072445 + ] + }, + "Rooms": [ + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 160.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 130.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 254.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 145.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 64.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "vcr/dvd" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 135.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 91.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "coffee maker", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 81.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "suite" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (Mountain View)", + "Type": "Budget Room", + "BaseRate": 86.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv", + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Suite, 1 King Bed (Waterfront View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 98.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (Mountain View)", + "Type": "Budget Room", + "BaseRate": 99.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "suite", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 229.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "suite" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 75.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 82.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 113.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + } + ], + "embedding": [ + -0.03645928576588631, + -0.01478429976850748, + 0.05564465746283531, + -0.006194538902491331, + -0.04509624466300011, + -0.019338760524988174, + -0.01788746938109398, + -0.00939210131764412, + 0.016896342858672142, + -0.03636489436030388, + 0.03813476115465164, + -0.015681032091379166, + 0.013804972171783447, + -0.0328015573322773, + -0.013097025454044342, + 0.04762125387787819, + -0.02586367540061474, + 0.04410511627793312, + 0.015456849709153175, + 0.0994901955127716, + 0.006548512727022171, + -0.026028862223029137, + -0.020282689481973648, + -0.018536420539021492, + -0.009592685848474503, + 0.036766063421964645, + -0.03277796134352684, + 0.017970062792301178, + 0.03419385477900505, + 0.025297317653894424, + -0.023633640259504318, + -0.026689613237977028, + 0.005672427825629711, + 0.0013406751677393913, + 0.01177552342414856, + -0.04245324060320854, + -0.0009136945009231567, + -0.023893222212791443, + 0.0172739140689373, + -0.02614685334265232, + -0.003937956877052784, + 0.03166884183883667, + 0.04103734716773033, + -0.042571231722831726, + 0.0016872744308784604, + -0.021781178191304207, + -0.01002335362136364, + 0.05706055462360382, + -0.006861189380288124, + 0.012507068924605846, + -0.001437280559912324, + -0.021639589220285416, + -0.041674498468637466, + -0.06876528263092041, + -0.03881911188364029, + 0.006524914409965277, + -0.009598585776984692, + -0.05267127975821495, + 0.035066988319158554, + 0.023657239973545074, + 0.030229350551962852, + 0.006542613264173269, + 0.05503110587596893, + 0.042807213962078094, + -0.03874831646680832, + -0.004642954561859369, + -0.024778155609965324, + 0.010459921322762966, + -0.02673681080341339, + 0.027680739760398865, + 0.03032374382019043, + 0.04323198273777962, + -0.039220280945301056, + -0.04620536044239998, + -0.03270716592669487, + -0.02077825367450714, + 0.0056104823015630245, + 0.009976157918572426, + 0.018088053911924362, + -0.02318527363240719, + -0.06782135367393494, + -0.035727739334106445, + -0.030205752700567245, + 0.10175562649965286, + 0.0007757922867313027, + -0.012094100005924702, + 0.0018155898433178663, + -0.0006043362664058805, + 0.00036356045166030526, + 0.06678302586078644, + 0.019421353936195374, + 0.06777415424585342, + -0.0010464346269145608, + -0.024424182251095772, + -0.009002730250358582, + 0.019492149353027344, + 0.061874594539403915, + -0.004778644535690546, + -0.015114675275981426, + 0.04051818326115608, + 0.0842457264661789, + -0.09184436500072479, + 0.02517932653427124, + 0.030795708298683167, + -0.017026131972670555, + -0.036317698657512665, + 0.01602320745587349, + 0.02101423591375351, + 0.05229370668530464, + 0.004120843484997749, + -0.09373222291469574, + -0.0003211573348380625, + -0.07919570803642273, + 0.00698507996276021, + -0.03232959285378456, + 0.030536126345396042, + -0.015291661955416203, + -0.03851233422756195, + -0.0011275535216555, + 0.004816991277039051, + 0.0037934177089482546, + 0.052199315279722214, + -0.029521401971578598, + 0.029073035344481468, + -0.015586639754474163, + -0.07324894517660141, + -0.03947986289858818, + 0.011763724498450756, + 0.030418135225772858, + 0.011185567826032639, + -0.03539736568927765, + -0.0083773760125041, + 0.015681032091379166, + -0.020082104951143265, + -0.005607532802969217, + 0.03343871235847473, + 0.009716576896607876, + 0.00040670097223483026, + -0.010406825691461563, + -0.038181956857442856, + 0.03657727688550949, + 0.04061257839202881, + 0.018017258495092392, + -0.030890101566910744, + -0.036105312407016754, + -0.010595611296594143, + 0.02368083782494068, + -0.008589760400354862, + -0.00369607494212687, + 0.04136772081255913, + -0.02912023290991783, + 0.021250218152999878, + -0.02196996472775936, + -0.013663383200764656, + -0.03164524585008621, + -0.0025294367223978043, + 0.017911067232489586, + -0.04729088023304939, + -0.013651584275066853, + 0.07891252636909485, + -0.038323547691106796, + 0.007055874913930893, + -0.03589292988181114, + -0.007280058227479458, + 0.004232935141772032, + 0.0015073377871885896, + -0.013757776468992233, + -0.0023583495058119297, + -0.05021706223487854, + -0.03846513852477074, + 0.04825840890407562, + 0.022701511159539223, + -0.0140763521194458, + 0.10505937784910202, + 0.025155726820230484, + 0.031928423792123795, + 0.0055957334116101265, + 0.007551438175141811, + 0.03568054363131523, + -0.00838327594101429, + 0.0071030715480446815, + -0.05012267082929611, + 0.07136108726263046, + -0.045049045234918594, + -0.0008923085988499224, + 0.05597503483295441, + -0.06810452789068222, + 0.014465723186731339, + 0.0073803504928946495, + 0.05201052874326706, + 0.014347732067108154, + 0.00394680630415678, + -0.016742954030632973, + -0.010406825691461563, + 0.0016002558404579759, + 0.01966913603246212, + -0.05035865306854248, + -0.023716235533356667, + -0.01809985190629959, + 0.013568989932537079, + -0.04148571193218231, + -0.02109682932496071, + 0.03884270787239075, + -0.041839685291051865, + 0.0032654069364070892, + -0.03589292988181114, + 0.02942701056599617, + 0.03955065459012985, + -0.035940125584602356, + 0.011492344550788403, + 0.011917113326489925, + 0.02921462617814541, + 0.02683120220899582, + 0.055550266057252884, + 0.030960895121097565, + -0.07872374355792999, + -0.010052851401269436, + 0.028365088626742363, + -0.022595318034291267, + 0.04316118732094765, + -0.007297756616026163, + -0.03428824618458748, + 0.0001512684248154983, + 0.04113173857331276, + 0.0324711836874485, + 0.03879551216959953, + -0.012955435551702976, + -0.03770999237895012, + -0.0010383226908743382, + -0.004203437361866236, + 0.0016297537367790937, + -0.037662796676158905, + -0.02174578234553337, + 0.0028981592040508986, + -0.0184774249792099, + 0.041108138859272, + -0.04431750252842903, + -0.02309088222682476, + 0.011515943333506584, + -0.01952754706144333, + -0.013498195447027683, + 0.025533299893140793, + -0.04828200489282608, + 0.032070014625787735, + 0.046087369322776794, + -0.02860107086598873, + -0.012318283319473267, + -0.030583323910832405, + 0.04233524948358536, + -0.032825157046318054, + -0.02704358659684658, + 0.031409263610839844, + 0.019161773845553398, + -0.037521205842494965, + 0.03516138345003128, + 0.0020840198267251253, + -0.003681326052173972, + -0.019798927009105682, + -0.01043042354285717, + -0.021273816004395485, + 0.039007898420095444, + 0.018123451620340347, + -0.022760506719350815, + -0.010459921322762966, + 0.036034516990184784, + -0.015858018770813942, + 0.004787493497133255, + -0.02697279304265976, + -0.010601511225104332, + -0.018229642882943153, + -0.04410511627793312, + -0.022158751264214516, + -0.009185615926980972, + 0.018229642882943153, + -0.015456849709153175, + -0.03039453737437725, + 0.021250218152999878, + -0.04677172005176544, + 0.03598732128739357, + -0.020601266995072365, + -0.010159043595194817, + -0.023527448996901512, + 0.04837640002369881, + -0.012872842140495777, + 0.006064748391509056, + 0.011456946842372417, + 0.014595513232052326, + 0.025651291012763977, + 0.017604289576411247, + -0.01697893626987934, + -0.006619307212531567, + -0.017474498599767685, + 0.006861189380288124, + -0.020554069429636, + -0.02794031985104084, + 0.039361871778964996, + 0.03402866795659065, + -0.050547439604997635, + 0.05120818689465523, + -0.02831789292395115, + 0.0017477449728175998, + 0.020211895927786827, + 0.0015840320847928524, + -0.009374402463436127, + 0.0008052900666370988, + 0.03709643706679344, + 0.023149877786636353, + 0.0008746099192649126, + -0.002109093125909567, + 0.004699000157415867, + 0.017970062792301178, + 0.018972987309098244, + 0.006878888234496117, + -0.029332617297768593, + -0.005409897305071354, + 0.009498292580246925, + 0.011445147916674614, + 0.05564465746283531, + 0.0022241345141083, + 0.0005711512640118599, + 0.014902290888130665, + 0.026500826701521873, + 0.011333056725561619, + 0.011185567826032639, + 0.011858117766678333, + -0.03232959285378456, + 0.010495319031178951, + 0.017616089433431625, + -0.004256532993167639, + -0.03131486847996712, + 0.025202924385666847, + -0.031031690537929535, + -0.01243627443909645, + 0.013262213207781315, + -0.055550266057252884, + -0.0013546866830438375, + -0.05356801301240921, + 0.051821742206811905, + -0.031480055302381516, + 0.027161577716469765, + -0.05210492014884949, + -0.020235493779182434, + -0.04075416550040245, + -0.016294587403535843, + -0.019031982868909836, + -0.05677737295627594, + -0.01704973168671131, + -0.007268258836120367, + 0.03549175709486008, + 0.026642417535185814, + -0.010631009005010128, + 0.01669575646519661, + -0.004533812403678894, + 0.012341881170868874, + 0.023716235533356667, + 0.01706152968108654, + 0.06649985164403915, + 0.047810040414333344, + -0.038323547691106796, + 0.05729653686285019, + -0.0032005116809159517, + -0.01749809831380844, + -0.023008286952972412, + 0.010170843452215195, + 0.024023011326789856, + 0.008135494776070118, + -0.03032374382019043, + 0.004206386860460043, + -0.0032595074735581875, + -0.009633982554078102, + -0.0004358300648164004, + 0.020058507099747658, + 0.00909122359007597, + 0.024990539997816086, + -0.01386396773159504, + 0.08542564511299133, + 0.029993368312716484, + 0.027916721999645233, + 0.022607117891311646, + 0.0008908336749300361, + -0.025297317653894424, + 0.021639589220285416, + 0.02517932653427124, + -0.015704631805419922, + 0.04773924499750137, + -0.011303558945655823, + -0.005917259491980076, + 0.0056252311915159225, + 0.008141393773257732, + 0.031173279508948326, + 0.04412871599197388, + -0.05885402113199234, + -0.019102778285741806, + -0.01973993144929409, + 0.05842925235629082, + -0.0012418575352057815, + 0.01248347107321024, + 0.010601511225104332, + -0.001589931664057076, + -0.00137828488368541, + 0.011722427792847157, + -0.021203022450208664, + 0.010566113516688347, + -0.020388882607221603, + -0.010170843452215195, + -0.05389838665723801, + -0.03070131503045559, + -0.017344709485769272, + -0.03978664055466652, + -0.019503949210047722, + -0.05035865306854248, + -0.04158010706305504, + 0.0045072645880281925, + -0.017698682844638824, + -0.01781667396426201, + -0.01129176001995802, + -0.02683120220899582, + -0.04290160536766052, + 0.013474596664309502, + 0.049273133277893066, + -0.011917113326489925, + 0.032754361629486084, + -0.015220867469906807, + -0.013108824379742146, + -0.004516114015132189, + 0.01772228069603443, + 0.044152311980724335, + -0.06933163851499557, + -0.017250316217541695, + -0.03294314816594124, + -0.018819598481059074, + 0.0061178444884717464, + -0.03346230834722519, + 0.0250377357006073, + -0.062110576778650284, + 0.04445908963680267, + -0.04106094315648079, + 0.0447186715900898, + 0.013663383200764656, + 0.0011282910127192736, + -0.029993368312716484, + -0.041462112218141556, + -0.029096635058522224, + -0.009846366941928864, + -0.022253144532442093, + -0.01109707448631525, + 0.0500754714012146, + 0.06437601149082184, + 0.01720311865210533, + -0.010572013445198536, + 0.015822622925043106, + -0.004572159610688686, + 0.002800816437229514, + -0.012271086685359478, + 0.011344855651259422, + -0.02123842015862465, + 0.021061431616544724, + 0.019680935889482498, + -0.0326363705098629, + -0.009934860281646252, + 0.02109682932496071, + -0.041155338287353516, + -0.0666414424777031, + 0.004212286323308945, + -0.008141393773257732, + -0.028034713119268417, + -0.00608834670856595, + 0.059797950088977814, + 0.022595318034291267, + -0.0445534847676754, + -0.008035201579332352, + -0.018442027270793915, + 0.027775133028626442, + 0.0018981837201863527, + -0.03070131503045559, + -0.02621764875948429, + 0.03589292988181114, + 0.042358845472335815, + 0.015327059663832188, + 0.05153856426477432, + -0.023574644699692726, + -0.01995231583714485, + -0.043633151799440384, + 0.013321208767592907, + -0.01117966789752245, + -0.022925693541765213, + -0.04634695127606392, + 0.018666211515665054, + -0.022536322474479675, + -0.006631106603890657, + -0.021368209272623062, + 0.015114675275981426, + -0.05281287059187889, + -0.010448122397065163, + 0.029309019446372986, + 0.002141540637239814, + -0.0248725488781929, + -0.016813749447464943, + 0.024188200011849403, + -0.011740126647055149, + -0.03733242303133011, + 0.015622037462890148, + -0.00040965076186694205, + 0.009893563576042652, + 0.05408717319369316, + 0.06060028821229935, + -0.03107888624072075, + -0.03195202350616455, + 0.04427030682563782, + 0.007321354933083057, + -0.00983456801623106, + 0.0005925371660850942, + -0.022300340235233307, + 0.026689613237977028, + 0.0046459040604531765, + 0.008412773720920086, + -0.00039711419958621264, + 0.014984884299337864, + -0.02020009607076645, + -0.009350803680717945, + 0.020141100510954857, + 0.023857824504375458, + -0.0012639808701351285, + 0.002476340625435114, + 0.009911262430250645, + 0.035963721573352814, + -0.02638283558189869, + -0.03568054363131523, + 0.0183948315680027, + -0.011091174557805061, + 0.025155726820230484, + -0.01885499618947506, + -0.00883164256811142, + 0.001400408218614757, + -0.012400876730680466, + 0.029922572895884514, + 0.015138273127377033, + -0.010371427983045578, + 0.04403432086110115, + -0.023716235533356667, + 0.02628844417631626, + -0.016341783106327057, + -0.03971584513783455, + -0.007557337637990713, + -0.017604289576411247, + -0.05498390644788742, + -0.018607215955853462, + 0.009309506975114346, + -0.01117966789752245, + -0.024707360193133354, + 0.026359237730503082, + 0.02817630209028721, + 0.006159141659736633, + 0.016141198575496674, + 0.008147293701767921, + -0.001238170312717557, + 0.010807995684444904, + 0.039078690111637115, + -0.005259458441287279, + 0.023964015766978264, + -0.018595416098833084, + 0.01378137432038784, + -0.023079082369804382, + -0.029969768598675728, + 0.008796244859695435, + 0.029592197388410568, + 0.015622037462890148, + 0.04851798713207245, + 0.0028981592040508986, + 0.006454119458794594, + 0.001855411916039884, + 0.03577493876218796, + -0.02189916931092739, + 0.0011946611339226365, + 0.014890491962432861, + 0.01222389005124569, + 0.02510853111743927, + 0.0043627251870930195, + -0.005988054443150759, + -0.006106045562773943, + 0.02690199762582779, + -0.019279764965176582, + 0.022595318034291267, + 0.020011311396956444, + -0.017179520800709724, + -0.02122662030160427, + 0.0312676727771759, + 0.017533494159579277, + 0.039975423365831375, + 0.04245324060320854, + -0.014406727626919746, + 0.017486298456788063, + -0.014583714306354523, + -0.010949584655463696, + -0.013427400961518288, + -0.03530297055840492, + -0.02293749339878559, + 0.00842457264661789, + -0.04405792057514191, + 0.030512528494000435, + -0.009333105757832527, + -0.03865392133593559, + -0.02428259328007698, + 0.03313193470239639, + 0.002999926684424281, + -0.013722378760576248, + -0.010961384512484074, + 0.007108971010893583, + -0.046606529504060745, + -0.049650706350803375, + 0.02324426919221878, + -0.03509058803319931, + -0.002417345065623522, + 0.0018539370503276587, + -0.05536147952079773, + 0.03971584513783455, + -0.04342076927423477, + 0.009061725810170174, + 0.033651094883680344, + -0.009515991434454918, + 0.003197561949491501, + 0.017781276255846024, + 0.05909000337123871, + 0.02772793546319008, + 0.00912662036716938, + 0.0243533868342638, + -0.0018524620682001114, + -0.05413437262177467, + 0.00923871248960495, + -0.019043782725930214, + 0.03950345888733864, + 0.01214129664003849, + 0.02621764875948429, + -0.002793441992253065, + -0.012259287759661674, + 0.011928912252187729, + 0.01572822965681553, + 0.02309088222682476, + 0.011185567826032639, + -0.046889711171388626, + -0.009049925953149796, + -0.005303705111145973, + 0.010123646818101406, + 0.00041260055149905384, + -0.01359258871525526, + 0.004244734067469835, + 0.016896342858672142, + 0.017934665083885193, + 0.03459502384066582, + -0.000679186952766031, + -0.0013347757048904896, + -0.013085226528346539, + 0.042807213962078094, + 0.026359237730503082, + -0.008619258180260658, + -0.019775327295064926, + -0.014878693036735058, + 0.006607508286833763, + 0.008448171429336071, + 0.05507830157876015, + 0.0004336177371442318, + 0.0217575803399086, + -0.0018096902640536427, + -0.017262116074562073, + -0.02862466871738434, + -0.0011312407441437244, + 0.009970257990062237, + -0.0013532118173316121, + -0.059561967849731445, + 0.006902486085891724, + 0.07589194923639297, + 0.0030043513979762793, + 0.02248912677168846, + 0.013156021013855934, + 0.031338468194007874, + 0.05087781324982643, + 0.024990539997816086, + -0.01192301232367754, + 0.02727956883609295, + 0.016660360619425774, + 0.011268161237239838, + 0.010359629057347775, + -0.03376908600330353, + 0.014182544313371181, + -0.020967040210962296, + -0.0002490720944479108, + 0.015563041903078556, + 0.04044738784432411, + -0.02228854037821293, + -0.024471377953886986, + 0.02928541973233223, + 0.019999511539936066, + 0.020801851525902748, + -0.0006283032125793397, + -0.014925888739526272, + -0.03181043267250061, + -0.04969790205359459, + -0.011864016763865948, + 0.008247585967183113, + -0.04099014773964882, + -0.0018347634468227625, + 0.01944495178759098, + 0.0032713066320866346, + -0.0260760597884655, + 0.00011974265362368897, + -0.009150219149887562, + 0.014300535432994366, + -0.02355104684829712, + -0.013663383200764656, + 0.022677911445498466, + 0.0281527042388916, + -0.022241344675421715, + 0.006288931705057621, + -0.009846366941928864, + -0.0009336055372841656, + 0.009350803680717945, + -0.06291291862726212, + 0.012979034334421158, + -0.002878985833376646, + -0.0184774249792099, + 0.029828179627656937, + 0.023574644699692726, + -0.00042587454663589597, + 0.006601608823984861, + -0.003356850240379572, + -0.04327917844057083, + -0.009769672527909279, + -0.001715297345072031, + -0.007663529831916094, + 0.047125693410634995, + -0.00020482538093347102, + 0.02035348489880562, + 0.00034346507163718343, + -0.0017772427527233958, + 0.024376986548304558, + -0.028506677597761154, + 0.022087955847382545, + 0.03218800574541092, + -0.03756840527057648, + -0.012023305520415306, + -0.012082301080226898, + -0.0421464629471302, + -0.008271184749901295, + -0.015008483082056046, + 0.046842511743307114, + -0.03837074339389801, + -0.0033686491660773754, + 0.0177930761128664, + -0.057862892746925354, + 0.0016518770717084408, + -0.02928541973233223, + 0.008330180309712887, + 0.0336746945977211, + -0.0033450510818511248, + 0.0013104400131851435, + -0.017403705045580864, + 0.028034713119268417, + 0.007852315902709961, + 0.011976108886301517, + 0.007527839858084917, + 0.0009085323545150459, + 0.009073524735867977, + -0.009221013635396957, + 0.004681301768869162, + 0.0019483299693092704, + 0.012825645506381989, + 0.02711438201367855, + 0.029261821880936623, + -0.025155726820230484, + -0.044152311980724335, + 0.005374500062316656, + -0.06168580800294876, + 0.029993368312716484, + -0.0005283794016577303, + 0.0028022914193570614, + -0.040187809616327286, + 0.0121766934171319, + -0.0015191369457170367, + -0.004504314623773098, + -0.015692831948399544, + 0.008772647008299828, + -0.05564465746283531, + 0.001663676230236888, + -0.0060942466370761395, + 0.0250377357006073, + -0.014371329918503761, + 0.004684251267462969, + 0.007156167179346085, + 0.04549741372466087, + 0.00389371020719409, + 0.04150931164622307, + -0.0006032300880178809, + 0.027468355372548103, + -0.01660136505961418, + 0.012766649946570396, + 0.02264251559972763, + 0.003902559634298086, + -0.003902559634298086, + 0.026548024266958237, + -0.003480740822851658, + 0.013804972171783447, + 0.025273719802498817, + 0.023952217772603035, + -0.029639393091201782, + 0.01064870785921812, + 0.001085519208572805, + -0.010925986804068089, + 0.006790394429117441, + 0.03114968165755272, + -0.027680739760398865, + -0.02258352003991604, + 0.023975815623998642, + -0.013356605544686317, + 0.008459970355033875, + 0.029167428612709045, + -0.013250413350760937, + 0.018229642882943153, + -0.028506677597761154, + -0.02153339795768261, + 0.026807604357600212, + -0.010825694538652897, + -0.03197561949491501, + 0.0015855069505050778, + 0.012094100005924702, + -0.03138566389679909, + 0.0049585807137191296, + 0.007445245981216431, + 0.003342101350426674, + 0.0035397366154938936, + -0.03398147225379944, + -0.02138000912964344, + 0.028341490775346756, + -0.00491728400811553, + 0.025958068668842316, + 0.0003657727793324739, + 0.001641552778892219, + -0.020919842645525932, + 0.015220867469906807, + -0.0035338369198143482, + 0.002480765338987112, + -0.00564588000997901, + 0.019114578142762184, + -0.03202281519770622, + 0.010566113516688347, + -0.024919744580984116, + 0.01571642979979515, + 0.011769624426960945, + -0.020601266995072365, + -0.040258605033159256, + -0.01743910275399685, + 0.028270695358514786, + -0.02683120220899582, + 0.03794597461819649, + -0.01043632347136736, + -0.014241539873182774, + -0.0009874389506876469, + -0.003637079382315278, + 0.030890101566910744, + 0.00014205036859493703, + 0.029993368312716484, + -0.004117893520742655, + -0.015374255366623402, + 0.034901801496744156, + -0.00998205691576004, + -0.023303264752030373, + 0.016200194135308266, + -0.00346599193289876, + -0.04202847182750702, + 0.030087759718298912, + 0.001479314872995019, + -0.027208775281906128, + 0.02786952629685402, + -0.008094197139143944, + 0.040258605033159256, + 0.024825353175401688, + -0.015291661955416203, + 0.02196996472775936, + 0.032683566212654114, + 0.020601266995072365, + -0.024612968787550926, + -0.014135347679257393, + -0.0011835993500426412, + 0.00319461221806705, + 0.022607117891311646, + -0.042948804795742035, + 0.02659521996974945, + -0.022748706862330437, + 0.026949193328619003, + -0.021132227033376694, + -0.01676655188202858, + -0.00739214988425374, + -0.0005807380075566471, + 0.015032080933451653, + -0.04301959648728371, + -0.023798828944563866, + 0.02614685334265232, + 0.003448293311521411, + 0.025438906624913216, + 0.013274012133479118, + 0.023008286952972412, + 0.015256264247000217, + 0.0140763521194458, + -0.009763773530721664, + -0.00743344658985734, + -0.022524522617459297, + 0.006265333853662014, + -0.006719599943608046, + 0.01043632347136736, + -0.008837542496621609, + -0.022253144532442093, + -0.00497038010507822, + -0.01923256926238537, + -0.00111206725705415, + 0.01578722521662712, + -0.019775327295064926, + 0.03313193470239639, + -0.018276840448379517, + 0.0034571427386254072, + -0.009150219149887562, + 0.004365675151348114, + -0.003932057414203882, + 0.005306655075401068, + -0.048470791429281235, + 0.016282787546515465, + 0.018666211515665054, + 0.024424182251095772, + -0.04217006266117096, + -0.008813943713903427, + -0.015079277567565441, + -0.04068337380886078, + 0.034075863659381866, + -0.016270989552140236, + -0.014017356559634209, + 0.003224109997972846, + 0.020624864846467972, + 0.012188493274152279, + 0.01676655188202858, + -0.012636859901249409, + 0.018571818247437477, + -0.0005398098146542907, + -0.000868710340000689, + 0.02912023290991783, + -0.015433250926434994, + -0.007297756616026163, + -0.003002876415848732, + -0.02458936907351017, + 0.02801111526787281, + -0.013439199887216091, + 0.013297609984874725, + -0.010678205639123917, + 0.029238224029541016, + 0.01743910275399685, + -0.007628132123500109, + -0.012064602226018906, + -0.019397756084799767, + -0.009557289071381092, + -0.02763354405760765, + -0.00024815028882585466, + -0.019574742764234543, + -0.020825449377298355, + 0.008406874723732471, + 0.04830560460686684, + -0.01690814085304737, + -0.016967136412858963, + 0.005306655075401068, + 0.0008082398562692106, + -0.013097025454044342, + 0.03457142785191536, + -0.03643568977713585, + 0.011456946842372417, + -0.0002216022548964247, + 0.020318087190389633, + -0.005583934485912323, + 0.0021046684123575687, + -0.008990930393338203, + 0.03402866795659065, + -0.0026371036656200886, + 0.010890589095652103, + 0.03549175709486008, + 0.0023023036774247885, + -0.010701803490519524, + 0.0621577724814415, + -0.00608834670856595, + -0.021285615861415863, + 0.014607313089072704, + 0.023728033527731895, + -0.024329788982868195, + 0.032070014625787735, + 0.030441734939813614, + -0.01117376796901226, + 0.019987711682915688, + -0.048022426664829254, + 0.010513017885386944, + 0.047786444425582886, + -0.017002534121274948, + -0.029545001685619354, + -0.0179582629352808, + 0.030583323910832405, + 0.019645538181066513, + -0.011793222278356552, + -0.007333154324442148, + -0.008265284821391106, + -0.004023500718176365, + -0.038488734513521194, + -0.005796318408101797, + 0.01565743423998356, + -0.008554363623261452, + 0.015067478641867638, + -0.014654509723186493, + -0.025132128968834877, + 0.027468355372548103, + 0.006200438365340233, + 0.002967479173094034, + -0.001326663768850267, + -0.04068337380886078, + 0.03018215298652649, + 0.0357513390481472, + 0.035656947642564774, + -0.009179716929793358, + 0.03223520144820213, + 0.006052949465811253, + 0.02631204202771187, + 0.0016946488758549094, + 0.000802340277004987, + 0.013014431111514568, + -0.013167819939553738, + 0.06937883794307709, + 0.008141393773257732, + 0.029757386073470116, + -0.0008827217970974743, + 0.03768639639019966, + -0.00912662036716938, + 0.03641209006309509, + 0.008076499216258526, + 0.03046533279120922, + 0.006572111044079065, + -0.027845926582813263, + -0.024825353175401688, + 0.02138000912964344, + 0.012990833260118961, + -0.03457142785191536, + 0.002513212850317359, + 0.007875913754105568, + 0.019161773845553398, + -0.030960895121097565, + 0.013734177686274052, + 0.005728473421186209, + -0.015858018770813942, + 0.034972596913576126, + 0.010695903562009335, + -0.011055776849389076, + 0.004389273468405008, + -0.03747401013970375, + -0.0011209165677428246, + -0.017462700605392456, + -0.005790418945252895, + -0.0070971716195344925, + -0.024707360193133354, + 0.025580495595932007, + -0.03001696616411209, + 0.011816820129752159, + -0.009256411343812943, + 0.008241686969995499, + -0.03553895652294159, + -0.0250377357006073, + -0.017085127532482147, + -0.017899267375469208, + -0.01393476314842701, + -0.027657141909003258, + 0.010949584655463696, + -0.0017639687284827232, + 0.02697279304265976, + -0.01248347107321024, + -0.017474498599767685, + 0.03190482407808304, + -0.028129106387495995, + -0.009799170307815075, + -0.0015294611221179366, + 0.021061431616544724, + 0.04304319620132446, + -0.007061774376779795, + 0.0063774255104362965, + -0.04148571193218231, + -0.004908434581011534, + 0.003713773563504219, + -0.005433495622128248, + 0.022170549258589745, + -0.03197561949491501, + 0.0051591661758720875, + 0.04075416550040245, + 0.012117697857320309, + 0.001481527229771018, + 0.01742730289697647, + -0.005955606698989868, + 0.015043879859149456, + -0.012259287759661674, + -0.002030923729762435, + 0.02369263581931591, + -0.009474694728851318, + 0.042571231722831726, + -0.010194441303610802, + 0.011073475703597069, + -0.011846317909657955, + 0.009869965724647045, + 0.0027403461281210184, + 0.003657727735117078, + -0.0140763521194458, + 0.007887712679803371, + -0.005433495622128248, + 0.006324329413473606, + -0.009433398023247719, + 0.022677911445498466, + 0.02086084708571434, + 0.015138273127377033, + 0.023433055728673935, + 0.035066988319158554, + -0.0020294489804655313, + 0.006625206675380468, + 0.009510092437267303, + -0.01586981862783432, + 0.007002778816968203, + -0.007268258836120367, + -0.025580495595932007, + 0.02517932653427124, + 0.010566113516688347, + -0.016223791986703873, + 0.010973183438181877, + 0.0027993416879326105, + 0.041768889874219894, + 0.013604387640953064, + -0.020624864846467972, + -0.026194050908088684, + -0.0035249877255409956, + -0.014689906500279903, + 0.002249207580462098, + -0.0033067038748413324, + 0.0015707580605521798, + 0.008607459254562855, + -0.008931934833526611, + 0.012719453312456608, + -0.0021194173023104668, + 0.011982007883489132, + 0.016141198575496674, + 0.015468648634850979, + 0.01497308537364006, + 0.0008030777098610997, + 0.01531525980681181, + 0.04983948916196823, + -0.005094270687550306, + 0.026878399774432182, + -0.005321403965353966, + -0.015987809747457504, + 0.030134957283735275, + 0.04549741372466087, + -0.0068139927461743355, + -0.00007383669435512275, + -0.008949633687734604, + 0.00968707911670208, + -0.04349156469106674, + -0.03501979261636734, + -0.012294684536755085, + 0.0005991741782054305, + -0.00849536806344986, + 0.007710726000368595, + 0.002187262289226055, + 0.023267868906259537, + -0.04521423578262329, + 0.010607410222291946, + 0.007781520951539278, + 0.01728571392595768, + 0.01431233435869217, + -0.01802905835211277, + -0.009958459064364433, + -0.027963919565081596, + -0.006017552223056555, + 0.011828619986772537, + 0.00486418791115284, + 0.026854801923036575, + 0.009586786851286888, + -0.02756274864077568, + -0.00804700143635273, + 0.03070131503045559, + -0.019657336175441742, + 0.0007002041093073785, + -0.02666601538658142, + -0.008914236910641193, + 0.013215016573667526, + -0.02562769316136837, + 0.015067478641867638, + -0.005383349489420652, + -0.025084933266043663, + 0.025981666520237923, + -0.0029099583625793457, + -0.03634129464626312, + 0.006707800552248955, + -0.002451267559081316, + -0.03412305936217308, + 0.023928619921207428, + 0.03428824618458748, + 0.01393476314842701, + 0.016742954030632973, + -0.0026960992254316807, + 0.0011998232221230865, + -0.015138273127377033, + -0.0031562650110572577, + -0.02056586928665638, + -0.0183948315680027, + -0.006731398869305849, + -0.0431847870349884, + 0.014914089813828468, + 0.0011238662991672754, + 0.01742730289697647, + -0.027751535177230835, + -0.019197171553969383, + 0.01258966326713562, + -0.025792879983782768, + -0.0043774740770459175, + 0.042807213962078094, + 0.008985031396150589, + -0.04073056951165199, + 0.011403851211071014, + -0.01809985190629959, + 0.015445050783455372, + 0.0030058263801038265, + 0.035656947642564774, + -0.020919842645525932, + -0.025202924385666847, + -0.004501365125179291, + -0.004117893520742655, + 0.015185469761490822, + -0.0031857627909630537, + -0.008607459254562855, + -0.06683022528886795, + 0.012837444432079792, + 0.018123451620340347, + -0.00035378930624574423, + -0.01177552342414856, + 0.020082104951143265, + -0.01578722521662712, + -0.023303264752030373, + -0.006666503846645355, + 0.011816820129752159, + 0.029403410851955414, + -0.015751827508211136, + 0.020377082750201225, + -0.023338662460446358, + -0.005191613454371691, + -0.0020294489804655313, + 0.004687201231718063, + -0.0014734152937307954, + 0.027680739760398865, + 0.015079277567565441, + -0.023267868906259537, + 0.011893514543771744, + -0.00979327131062746, + -0.027468355372548103, + 0.021498000249266624, + -0.01794646494090557, + -0.00693198386579752, + -0.008518965914845467, + -0.0040795463137328625, + 0.01563383638858795, + 0.008070599287748337, + 0.02645363099873066, + 0.02146260254085064, + 0.009362603537738323, + 0.010707703419029713, + 0.037592001259326935, + 0.016329985111951828, + -0.002193161752074957, + -0.034689418971538544, + 0.011344855651259422, + 0.006855289917439222, + 0.031692441552877426, + 0.019633738324046135, + -0.017167722806334496, + 0.006625206675380468, + 0.014713505282998085, + 0.009657581336796284, + 0.008577961474657059, + -0.008011603727936745, + 0.019787127152085304, + -0.0281527042388916, + -0.009409799240529537, + 0.013911164365708828, + 0.0062771327793598175, + 0.004442369565367699, + 0.013769575394690037, + -0.006100146099925041, + -0.01975172944366932, + 0.008861140348017216, + 0.01608220301568508, + -0.009297708049416542, + -0.045261431485414505, + -0.02466016449034214, + 0.014111749827861786, + 0.009203314781188965, + -0.0815083310008049, + 0.0027845927979797125, + 0.013392003253102303, + -0.0010243112919852138, + -0.00003890023072017357, + -0.024424182251095772, + 0.018088053911924362, + -0.024188200011849403, + 0.01441852655261755, + -0.0025604094844311476, + -0.012294684536755085, + -0.033721890300512314, + -0.0010147244902327657, + -0.0010198865784332156, + -0.017085127532482147, + 0.02631204202771187, + 0.007899511605501175, + -0.0035633346997201443, + -0.0038553630001842976, + 0.0028258897364139557, + -0.0016209043096750975, + -0.015173670835793018, + -0.03761560097336769, + 0.024471377953886986, + 0.014241539873182774, + 0.021427204832434654, + -0.030300144106149673, + -0.014064553193747997, + 0.03221160173416138, + -0.026713211089372635, + -0.0184774249792099, + 0.008601559326052666, + 0.014595513232052326, + 0.018512822687625885, + 0.06399843841791153, + 0.014630910940468311, + -0.003029424464330077, + 0.0009513042168691754, + -0.0002193899272242561, + -0.016129398718476295, + -0.0023583495058119297, + -0.03877191245555878, + 0.009751974605023861, + 0.022477326914668083, + 0.020471476018428802, + -0.00432142848148942, + 0.02123842015862465, + 0.025273719802498817, + -0.018064456060528755, + -0.021049633622169495, + -0.03426465019583702, + -0.02206435799598694, + 0.005129668395966291, + 0.010247536934912205, + -0.03957425430417061, + 0.007185664959251881, + 0.03943266347050667, + 0.019551144912838936, + -0.0016533519374206662, + 0.01990511827170849, + -0.011220964603126049, + -0.015858018770813942, + -0.020672060549259186, + -0.009734275750815868, + 0.029828179627656937, + 0.01057791244238615, + -0.004165090154856443, + 0.05059463530778885, + 0.011805021204054356, + -0.0014343307120725513, + 0.010123646818101406, + 0.014548317529261112, + -0.018288638442754745, + 0.009781472384929657, + 0.004409921821206808, + 0.01616479642689228, + -0.018902193754911423, + 0.009097122587263584, + -0.008336079306900501, + -0.00005544665327761322, + -0.014630910940468311, + 0.022441929206252098, + 0.0002783855306915939, + -0.013403802178800106, + -0.031716037541627884, + -0.019834322854876518, + 0.029191026464104652, + -0.0026149803306907415, + -0.017557093873620033, + 0.01840662956237793, + -0.0075101410038769245, + -0.02294929139316082, + 0.022335737943649292, + -0.034524232149124146, + -0.00016629387391731143, + -0.005637030582875013, + 0.020978838205337524, + 0.02928541973233223, + -0.031763236969709396, + 0.030606921762228012, + -0.0177930761128664, + 0.03643568977713585, + 0.0010250486666336656, + -0.01982252486050129, + -0.034831006079912186, + -0.028553875163197517, + -0.01433593314141035, + 0.007799219340085983, + -0.006937883794307709, + 0.015338858589529991, + -0.0390314944088459, + -0.010743100196123123, + 0.003398147178813815, + 0.031716037541627884, + 0.003713773563504219, + -0.013026230037212372, + 0.00804700143635273, + 0.0020810700953006744, + 0.004828790668398142, + 0.002001425949856639, + -0.017226718366146088, + -0.01267225667834282, + 0.0048995851539075375, + 0.010300633497536182, + -0.045992977917194366, + 0.012507068924605846, + -0.007044075522571802, + 0.02271330915391445, + 0.02116762474179268, + -0.01109707448631525, + -0.021580593660473824, + 0.021863773465156555, + -0.01788746938109398, + -0.027137979865074158, + 0.011397951282560825, + -0.0034217452630400658, + 0.06999239325523376, + 0.01951574720442295, + -0.03032374382019043, + -0.015527644194662571, + 0.014501120895147324, + 0.01563383638858795, + 0.019090978428721428, + 0.034689418971538544, + -0.03794597461819649, + -0.003985153511166573, + 0.002491089515388012, + -0.006996879354119301, + 0.007557337637990713, + 0.025297317653894424, + 0.014253338798880577, + -0.011409751139581203, + -0.021120427176356316, + -0.021887371316552162, + -0.010164943523705006, + -0.012719453312456608, + 0.006595708895474672, + 0.015409653075039387, + -0.007917210459709167, + -0.002961579477414489, + 0.0069732810370624065, + -0.011746025644242764, + -0.017922865226864815, + 0.028294293209910393, + -0.022607117891311646, + 0.029379813000559807, + 0.02303188666701317, + 0.026878399774432182, + -0.05252968892455101, + 0.023562846705317497, + -0.00128462933935225, + 0.000246122304815799, + 0.0020486225839704275, + 0.017096927389502525, + -0.04061257839202881, + 0.004672452341765165, + 0.00938620138913393, + -0.01483149640262127, + -0.015350657515227795, + 0.011746025644242764, + 0.002966004190966487, + 0.03641209006309509, + -0.02727956883609295, + -0.024011213332414627, + -0.01891399174928665, + -0.01668395847082138, + -0.0035574352368712425, + -0.014206143096089363, + -0.0030205752700567245, + 0.005106070078909397, + -0.008878839202225208, + -0.01878420263528824, + 0.03369829058647156, + -0.021415406838059425, + 0.010654606856405735, + 0.042429640889167786, + -0.03865392133593559, + -0.014760700985789299, + 0.0379931703209877, + 0.0185600183904171, + 0.005637030582875013, + -0.014442125335335732, + 0.016070403158664703, + -0.007462944369763136, + 0.023515649139881134, + 0.0028140905778855085, + 0.00173299596644938, + -0.042878009378910065, + -0.008507166989147663, + 0.013392003253102303, + 0.03789877891540527, + -0.017899267375469208, + -0.007504241541028023, + 0.001752169569954276, + -0.02489614672958851, + 0.001393033773638308, + -0.007622232660651207, + 0.01431233435869217, + 0.04561540484428406, + 0.0032801558263599873, + 0.0324711836874485, + -0.0032801558263599873, + 0.01267225667834282, + -0.02690199762582779, + -0.01203510444611311, + -0.033627498894929886, + 0.0027831178158521652, + 0.02534451335668564, + 0.019326960667967796, + -0.008412773720920086, + -0.009651681408286095, + 0.009551389142870903, + 0.011498244479298592, + 0.03447703272104263, + 0.022477326914668083, + -0.015598438680171967, + -0.03787517920136452, + 0.0216749869287014, + -0.04099014773964882 + ] + }, + { + "HotelId": "6", + "HotelName": "King's Cellar Hotel", + "Description": "Newest kid on the downtown block. Steps away from the most popular destinations in downtown, enjoy free WiFi, an indoor rooftop pool & fitness center, 24 Grab'n'Go & drinks at the bar", + "Description_fr": "Le plus rĆ©cent de l'immeuble du centre-ville. ƀ quelques pas des destinations les plus populaires du centre-ville, profitez du WiFi gratuit, d'une piscine couverte sur le toit et d'un centre de remise en forme, de 24 Grab'n'Go et de boissons au bar.", + "Category": "Suite", + "Tags": [ + "free wifi", + "pool", + "bar" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2015-03-20T00:00:00Z", + "Rating": 3.5, + "Address": { + "StreetAddress": "555 California St", + "City": "San Francisco", + "StateProvince": "CA ", + "PostalCode": "94104", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.403481, + 37.792259 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Standard, 2 grands lits (Mountain View)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv", + "bathroom shower", + "tv" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 126.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub", + "bathroom shower", + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 67.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 252.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 168.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Cityside)", + "Description_fr": "Suite, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 257.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 83.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 148.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker", + "tv" + ] + }, + { + "Description": "Suite, 2 Queen Beds (City View)", + "Description_fr": "Suite, 2 grands lits (vue sur la ville)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 105.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 107.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "tv", + "suite" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Amenities)", + "Description_fr": "Suite, 1 grand lit (Services)", + "Type": "Suite", + "BaseRate": 247.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + } + ], + "embedding": [ + -0.03176756203174591, + -0.07633914798498154, + -0.013155650347471237, + 0.010300206951797009, + -0.003464725334197283, + -0.035574816167354584, + -0.02946380525827408, + 0.03499281778931618, + 0.008439015597105026, + -0.021873541176319122, + 0.011712771840393543, + -0.00723257614299655, + -0.036617569625377655, + -0.03230106085538864, + 0.009991019032895565, + 0.027936052531003952, + -0.06183761730790138, + -0.02255254238843918, + -0.013689151033759117, + 0.04898509383201599, + 0.030797557905316353, + 0.016417281702160835, + -0.007584202103316784, + -0.014525777660310268, + -0.0013913463335484266, + 0.050343096256256104, + -0.03150080889463425, + -0.0331740640103817, + -0.027063051238656044, + 0.0208307895809412, + 0.000502809532918036, + -0.0406673289835453, + -0.01440452691167593, + 0.02444404549896717, + 0.04253458231687546, + -0.017993533983826637, + -0.02507454715669155, + 0.016199029982089996, + 0.05301060155034065, + -0.03123405948281288, + 0.03164631128311157, + 0.013701275922358036, + 0.015447279438376427, + -0.0442320853471756, + 0.010057706385850906, + -0.041419077664613724, + -0.04217083007097244, + 0.00624438701197505, + 0.03841207176446915, + 0.047457341104745865, + -0.04219508171081543, + -0.025438297539949417, + -0.017460033297538757, + -0.0807526558637619, + -0.054902102798223495, + 0.014077152125537395, + -0.017229657620191574, + -0.045856837183237076, + 0.01866041123867035, + 0.015653405338525772, + 0.05815161019563675, + 0.04702083766460419, + -0.0009987987577915192, + 0.07376863807439804, + -0.022128166630864143, + 0.03137955814599991, + -0.007717577274888754, + 0.03230106085538864, + -0.014489402063190937, + -0.010088019073009491, + 0.02730555273592472, + 0.028954554349184036, + -0.032786063849925995, + -0.027693552896380424, + -0.016162656247615814, + -0.026626549661159515, + -0.02754805237054825, + -0.04925184324383736, + -0.004516571294516325, + -0.030870309099555016, + -0.01171883475035429, + -0.0027038801927119493, + 0.0024295514449477196, + 0.034507814794778824, + -0.012985900044441223, + -0.024686546996235847, + -0.03860607370734215, + -0.04549308493733406, + 0.007117388304322958, + 0.05407760292291641, + 0.044814083725214005, + -0.012052272446453571, + -0.03196156024932861, + -0.02626279927790165, + 0.009918268769979477, + 0.0011117130052298307, + 0.0036011317279189825, + -0.015459404326975346, + 0.0003417740808799863, + 0.0040527889505028725, + 0.02953655645251274, + -0.13182325661182404, + -0.005750291980803013, + -0.03918807581067085, + 0.012670649215579033, + -0.027596551924943924, + -0.03826657310128212, + 0.0687246322631836, + 0.034604813903570175, + -0.00044748911750502884, + -0.10204419493675232, + 0.00036469794576987624, + -0.018175410106778145, + -0.0006240597576834261, + -0.009402954950928688, + -0.009651518426835537, + 0.037684570997953415, + -0.006214074324816465, + -0.013398149982094765, + -0.044062335044145584, + -0.01014864444732666, + 0.07735764980316162, + 0.01950916275382042, + -0.020091162994503975, + -0.013410275802016258, + -0.06935513019561768, + 0.0033525689505040646, + 0.017581284046173096, + -0.038436323404312134, + -0.006220136769115925, + -0.017350908368825912, + -0.03707832098007202, + -0.009293830022215843, + -0.008651203475892544, + 0.03234956040978432, + 0.012573649175465107, + -0.07173163443803787, + -0.00354656926356256, + -0.017387282103300095, + -0.05984911322593689, + 0.010864020325243473, + 0.03234956040978432, + 0.01966678723692894, + -0.028954554349184036, + -0.01693865656852722, + -0.023825669661164284, + -0.002385598374530673, + 0.020782290026545525, + -0.03591431677341461, + 0.02406817115843296, + -0.017581284046173096, + 0.005274385213851929, + -0.0002462895354256034, + -0.03547781705856323, + -0.01878166012465954, + -0.008954329416155815, + 0.013155650347471237, + 0.030967308208346367, + -0.01680528186261654, + 0.021194539964199066, + -0.042486079037189484, + -0.021812915802001953, + -0.02924555540084839, + 0.023425543680787086, + 0.009384768083691597, + 0.017520658671855927, + -0.020745914429426193, + -0.010233519598841667, + -0.061061616986989975, + 0.0012185648083686829, + 0.11106520891189575, + 0.0020900508388876915, + 0.010033456608653069, + 0.06368061900138855, + 0.006104948930442333, + 0.01478040311485529, + -0.0032434435561299324, + 0.04217083007097244, + 0.03361056372523308, + -0.03382881358265877, + 0.02754805237054825, + -0.02582629956305027, + 0.07827914506196976, + -0.04071582853794098, + -0.004328633192926645, + -0.00019030601833947003, + -0.0013564869295805693, + 0.0468025878071785, + -0.005277416203171015, + 0.027087301015853882, + -0.020163914188742638, + 0.04272858053445816, + -0.048306092619895935, + -0.009069517254829407, + 0.009548455476760864, + 0.019715286791324615, + -0.013167775236070156, + 0.002274957485496998, + -0.004710571374744177, + 0.021873541176319122, + -0.05781210958957672, + -0.0289303045719862, + 0.021909916773438454, + -0.0582486093044281, + -0.004565071314573288, + -0.06033411622047424, + -0.014234776608645916, + 0.005959448870271444, + -0.027620801702141762, + -0.016817407682538033, + 0.011179271154105663, + 0.007335639093071222, + 0.00028815874247811735, + 0.005304697435349226, + 0.003331350162625313, + -0.015665529295802116, + -0.011749147437512875, + 0.03761181980371475, + 0.041200827807188034, + 0.06227411702275276, + 0.008827016688883305, + 0.04398958384990692, + 0.024056045338511467, + 0.03589006885886192, + 0.0005778331542387605, + 0.02337704412639141, + -0.02837255410850048, + -0.04413508251309395, + 0.06450512260198593, + 0.01696290634572506, + 0.0045226337388157845, + -0.018951410427689552, + -0.028760554268956184, + -0.02255254238843918, + -0.0018657379550859332, + 0.06668762862682343, + -0.02381354570388794, + 0.004598414991050959, + 0.013725525699555874, + 0.016975032165646553, + -0.05242859944701195, + -0.026844801381230354, + -0.0188544113188982, + 0.044377584010362625, + 0.02614155039191246, + -0.05102209746837616, + -0.0235952939838171, + -0.0002824751427397132, + 0.016878031194210052, + -0.014101401902735233, + -0.0028084584046155214, + -0.0034465377684682608, + -0.01853916049003601, + -0.01165820937603712, + 0.048209089785814285, + 0.007123451214283705, + 0.03411981463432312, + -0.009596955962479115, + 0.01705990731716156, + -0.02786330319941044, + 0.05111909657716751, + 0.016671907156705856, + 0.012913149781525135, + -0.04532333463430405, + 0.012670649215579033, + 0.01897566020488739, + -0.03901832550764084, + 0.027766302227973938, + -0.010912520810961723, + -0.007281076163053513, + -0.06033411622047424, + -0.019848663359880447, + -0.059994615614414215, + 0.007699389476329088, + 0.006668762769550085, + -0.006132230162620544, + -0.013580026105046272, + -0.021534040570259094, + 0.012913149781525135, + 0.01296164933592081, + -0.010372957214713097, + -0.03188880905508995, + 0.01504715345799923, + -0.026844801381230354, + -0.010088019073009491, + -0.007287138607352972, + 0.0008070718613453209, + 0.03838782384991646, + -0.02711155079305172, + 0.026820551604032516, + -0.0024947235360741615, + 0.010506332851946354, + -0.028324054554104805, + -0.06935513019561768, + 0.03142806142568588, + 0.015847405418753624, + 0.0696946308016777, + -0.049906596541404724, + 0.016914406791329384, + -0.01709628291428089, + 0.0240924209356308, + 0.026553800329566002, + -0.031015809625387192, + -0.0319858118891716, + 0.012682774104177952, + 0.041419077664613724, + -0.012452398426830769, + 0.04828184098005295, + 0.03031255677342415, + 0.008396578021347523, + -0.0412735790014267, + -0.00197183177806437, + 0.026820551604032516, + -0.019897162914276123, + -0.008281391113996506, + 0.017193282023072243, + 0.017290282994508743, + 0.015883781015872955, + -0.029609305784106255, + 0.006383824627846479, + 0.005613885819911957, + -0.01938791200518608, + 0.02371654473245144, + 0.010857958346605301, + 0.027693552896380424, + -0.05761810764670372, + 0.03213131055235863, + 0.00008899577369447798, + 0.03511406481266022, + -0.05412610247731209, + 0.060528114438056946, + -0.010354769416153431, + 0.0045590088702738285, + -0.017884409055113792, + -0.014174152165651321, + -0.057230107486248016, + -0.026432549580931664, + -0.04030357673764229, + 0.016186906024813652, + 0.06760913133621216, + 0.012937399558722973, + -0.03635082021355629, + 0.009936456568539143, + 0.003064599586650729, + 0.02337704412639141, + -0.024310670793056488, + -0.021715916693210602, + 0.020224537700414658, + 0.006571762263774872, + 0.0471905879676342, + -0.023510418832302094, + -0.00006171447603264824, + 0.03935782611370087, + 0.0278390534222126, + 0.04078857600688934, + 0.002067316323518753, + 0.04850009083747864, + -0.007711514830589294, + -0.04122507944703102, + 0.010609394870698452, + -0.025559548288583755, + 0.036205317825078964, + -0.007881265133619308, + 0.03904257342219353, + 0.05718160793185234, + 0.01963041163980961, + -0.001791472197510302, + -0.03940632566809654, + -0.02519579790532589, + 0.015241153538227081, + -0.01473190262913704, + 0.04231632873415947, + 0.012228085659444332, + 0.016065655276179314, + -0.05931561440229416, + 0.04813634231686592, + 0.02262529358267784, + 0.03647207096219063, + 0.045662835240364075, + 0.011912834830582142, + 0.0031252247281372547, + -0.012719148769974709, + 0.0006797590758651495, + -0.010294144973158836, + 0.04180707782506943, + -0.008184390142560005, + -0.06726963073015213, + -0.042486079037189484, + -0.03993982449173927, + 0.014550027437508106, + 0.005198603495955467, + -0.03368331491947174, + -0.047263339161872864, + -0.0235952939838171, + -0.03038530796766281, + -0.019109036773443222, + 0.04930034279823303, + 0.0002849380543921143, + -0.01642940565943718, + -0.015229028649628162, + 0.01360427588224411, + -0.017484283074736595, + 0.01567765511572361, + -0.03673882037401199, + -0.007966140285134315, + -0.052137598395347595, + 0.035865817219018936, + -0.027620801702141762, + -0.008802766911685467, + 0.00857845414429903, + 0.03729657083749771, + -0.031112808734178543, + 0.020539788529276848, + 0.0033283187076449394, + -0.010979208163917065, + 0.0018520972225815058, + -0.017835909500718117, + -0.03761181980371475, + -0.006274699233472347, + 0.059800613671541214, + 0.025462549179792404, + -0.019484911113977432, + -0.055532604455947876, + 0.011446021497249603, + -0.03426531329751015, + 0.028857555240392685, + 0.03601131960749626, + 0.015701904892921448, + -0.04452308267354965, + -0.021667415276169777, + 0.014525777660310268, + -0.048839591443538666, + -0.009572705253958702, + 0.037054069340229034, + -0.004922759253531694, + 0.026723550632596016, + -0.0321798101067543, + 0.02679629996418953, + 0.007062825839966536, + 0.0026493174955248833, + -0.0329800620675087, + -0.027814803645014763, + -0.011446021497249603, + -0.014283277094364166, + -0.020818663761019707, + -0.01503502856940031, + -0.004637821111828089, + 0.043116580694913864, + -0.06984013319015503, + -0.004443821031600237, + -0.035962820053100586, + -0.007529639173299074, + 0.022128166630864143, + -0.0067597003653645515, + -0.003585975617170334, + -0.014550027437508106, + 0.05572660639882088, + -0.01762978360056877, + -0.011652147397398949, + 0.0006323957350105047, + 0.014234776608645916, + -0.016987157985568047, + -0.03210706263780594, + -0.008978579193353653, + 0.020903538912534714, + -0.052671100944280624, + -0.037151072174310684, + 0.04231632873415947, + 0.0400853268802166, + -0.01743578352034092, + -0.038509074598550797, + -0.02051553875207901, + 0.0006808958132751286, + 0.035768818110227585, + -0.040352076292037964, + -0.07473864406347275, + 0.008317765779793262, + 0.048112090677022934, + -0.006041292566806078, + 0.0359385684132576, + -0.06702712923288345, + 0.03940632566809654, + 0.0026659893337637186, + -0.01355577539652586, + -0.014792528003454208, + -0.013677026145160198, + 0.017266033217310905, + 0.03734507039189339, + -0.07832764834165573, + -0.05039159581065178, + -0.050343096256256104, + 0.01595653034746647, + 0.04231632873415947, + -0.012094710022211075, + 0.021291540935635567, + 0.014222651720046997, + -0.03164631128311157, + -0.008523890748620033, + 0.018733160570263863, + -0.023801419883966446, + 0.03882432356476784, + -0.038121070712804794, + -0.03637506812810898, + 0.0069415755569934845, + 0.029488055035471916, + 0.035987067967653275, + -0.0631956234574318, + -0.007875202223658562, + 0.04716634005308151, + -0.00906345434486866, + -0.00709920097142458, + -0.012282648123800755, + -0.009918268769979477, + 0.037151072174310684, + 0.011724897660315037, + 0.043625831604003906, + 0.01684165745973587, + 0.025583798065781593, + 0.00893614161759615, + -0.02730555273592472, + 0.0019612223841249943, + 0.010512394830584526, + -0.013543650507926941, + -0.0057684797793626785, + -0.00664451252669096, + 0.01165820937603712, + -0.013082900084555149, + -0.0671241283416748, + -0.013095024973154068, + 0.007699389476329088, + 0.029100054875016212, + 0.012985900044441223, + 0.006559637375175953, + 0.0016020187176764011, + 0.006523262243717909, + 0.02033366449177265, + -0.015410903841257095, + -0.012106835842132568, + 0.03773307055234909, + -0.07774564623832703, + 0.002508364152163267, + 0.006699074991047382, + -0.006198917981237173, + -0.020758040249347687, + -0.04854859039187431, + -0.026311300694942474, + -0.0456143356859684, + -0.027814803645014763, + 0.00840264093130827, + 0.0023037544451653957, + -0.004974290728569031, + -0.005183447152376175, + 0.03867882490158081, + -0.02158254012465477, + -0.019181786105036736, + -0.020903538912534714, + 0.033853065222501755, + -0.011536959558725357, + 0.01737515814602375, + 0.003631444415077567, + -0.014962278306484222, + 0.0018808941822499037, + 0.013422400690615177, + 0.008596641011536121, + 0.025899048894643784, + 0.01988503709435463, + 0.05019759386777878, + 0.049809593707323074, + -0.018054159358143806, + -0.0023461920209228992, + 0.0016959875356405973, + 0.03972157463431358, + 0.00127994769718498, + -0.007929764688014984, + -0.000029033746614004485, + -0.008426890708506107, + -0.022916292771697044, + 0.004410476889461279, + 0.0024780514650046825, + 0.013458775356411934, + -0.002641739323735237, + -0.009008891880512238, + 0.043528832495212555, + 0.01916966214776039, + -0.0029873026069253683, + 0.012052272446453571, + 0.020091162994503975, + 0.030773308128118515, + 0.04229208081960678, + 0.016126280650496483, + 0.020467039197683334, + 0.03892132267355919, + -0.002578082960098982, + -0.018466409295797348, + -0.030264057219028473, + -0.030530808493494987, + -0.03251931071281433, + -0.0036920695565640926, + -0.03644781932234764, + 0.019715286791324615, + 0.006917325779795647, + -0.013846776448190212, + -0.004049757495522499, + -0.0026478020008653402, + 0.001991535071283579, + -0.011336896568536758, + -0.009402954950928688, + -0.023231543600559235, + -0.015010778792202473, + -0.0359385684132576, + -0.007590264547616243, + -0.022479793056845665, + -0.013216274790465832, + -0.0023370981216430664, + -0.03877582401037216, + 0.03222830966114998, + -0.02007903717458248, + -0.004368039313703775, + 0.032034311443567276, + -0.0024295514449477196, + -0.0029327399097383022, + -0.03368331491947174, + 0.035453565418720245, + -0.014052901417016983, + -0.005686635617166758, + 0.01424690242856741, + 0.006753637921065092, + -0.04697233811020851, + -0.0042710392735898495, + -0.04420783370733261, + 0.007766077294945717, + 0.02943955548107624, + 0.03499281778931618, + -0.002946380525827408, + 0.013252650387585163, + 0.018987786024808884, + -0.007723639719188213, + 0.03031255677342415, + -0.026020299643278122, + -0.020406413823366165, + -0.009463580325245857, + 0.012076523154973984, + -0.008178328163921833, + 0.00552901066839695, + -0.007838827557861805, + 0.03829082101583481, + 0.017302406951785088, + -0.03358631208539009, + 0.004519602283835411, + -0.004322570748627186, + -0.012731274589896202, + -0.010627582669258118, + 0.035235315561294556, + -0.0031191622838377953, + -0.019339412450790405, + -0.016186906024813652, + 0.002284051151946187, + -0.025220047682523727, + 0.004249820485711098, + 0.06144961714744568, + 0.015471529215574265, + 0.01508352905511856, + 0.007523576728999615, + -0.027790552005171776, + -0.05325309932231903, + 0.018902910873293877, + 0.009948581457138062, + 0.012476649135351181, + -0.049397341907024384, + 0.00845114141702652, + 0.07129513472318649, + 0.016029279679059982, + 0.027135800570249557, + 0.005471416749060154, + 0.009409017860889435, + -0.012937399558722973, + 0.004383195657283068, + -0.027717802673578262, + -0.008790642023086548, + 0.01617478020489216, + 0.005241041071712971, + 0.00422557070851326, + -0.03142806142568588, + 0.02572929859161377, + 0.007911577820777893, + -0.03649631887674332, + 0.01696290634572506, + 0.041079577058553696, + -0.0007744858157821, + -0.02560804784297943, + 0.014877403154969215, + -0.016538530588150024, + 0.03986707702279091, + 0.006004917435348034, + -0.019484911113977432, + -0.05432010442018509, + 0.008057077415287495, + 0.004480196163058281, + 0.009360517375171185, + -0.06392312049865723, + 0.022673793137073517, + 0.01270702388137579, + 0.03605981916189194, + -0.037660323083400726, + -0.006996138487011194, + -0.00036280343192629516, + 0.017011407762765884, + 0.0013117758790031075, + 0.0003156294988002628, + -0.01360427588224411, + 0.005307728890329599, + -0.03605981916189194, + 0.008190453052520752, + -0.00006024620961397886, + -0.004498383495956659, + -0.0022476762533187866, + -0.02033366449177265, + 0.02086716517806053, + -0.01236146129667759, + -0.02701455168426037, + 0.014792528003454208, + 0.034507814794778824, + -0.023364920169115067, + -0.008626953698694706, + 0.011148958466947079, + 0.002596270525828004, + 0.025583798065781593, + -0.007426576688885689, + -0.02560804784297943, + 0.008172265253961086, + 0.010451769456267357, + 0.012573649175465107, + 0.016029279679059982, + -0.015398778952658176, + -0.0032767874654382467, + 0.0034283502027392387, + -0.003661756869405508, + -0.014756153337657452, + -0.04100682958960533, + -0.02193416655063629, + -0.00943933054804802, + -0.017326658591628075, + 0.011367209255695343, + 0.004368039313703775, + 0.02397117018699646, + -0.04335908219218254, + 0.0026735675055533648, + -0.015326028689742088, + -0.04854859039187431, + -0.012149273417890072, + -0.01393165159970522, + 0.008723953738808632, + 0.004468070808798075, + -0.0044771647080779076, + 0.003301037475466728, + 0.013361775316298008, + -0.0006592981517314911, + -0.029366806149482727, + -0.011815834790468216, + 0.01872103475034237, + 0.012064398266375065, + 0.006486887112259865, + 0.039382074028253555, + -0.006923388224095106, + 0.016017155721783638, + -0.012106835842132568, + 0.042243581265211105, + 0.00570179196074605, + -0.014416652731597424, + 0.021873541176319122, + 0.05965511500835419, + -0.011743084527552128, + 0.038630321621894836, + -0.0171811580657959, + -0.009633330628275871, + 0.007644827011972666, + -0.038727324455976486, + -0.011367209255695343, + -0.02397117018699646, + -0.01743578352034092, + 0.011045895516872406, + 0.0012958617880940437, + 0.0018233003793284297, + 0.030579308047890663, + 0.0005990519421175122, + -0.040012575685977936, + 0.042898330837488174, + 0.018405785784125328, + 0.009560580365359783, + 0.016671907156705856, + -0.018199659883975983, + -0.025850549340248108, + 0.026602299883961678, + -0.011979523114860058, + 0.021982666105031967, + 0.047360338270664215, + -0.01473190262913704, + -0.04105532914400101, + 0.035017065703868866, + 0.06208011880517006, + 0.013580026105046272, + 0.009487830102443695, + 0.027063051238656044, + 0.004277101717889309, + 0.020285163074731827, + 0.036617569625377655, + -0.013822526670992374, + 0.011870397254824638, + -0.002000628737732768, + -0.0473845899105072, + -0.008457203395664692, + 0.03346506506204605, + -0.012337210588157177, + 0.008869454264640808, + -0.002923646243289113, + -0.011294458992779255, + -0.000511903315782547, + -0.006517199799418449, + -0.0584426112473011, + 0.030749058350920677, + -0.024104544892907143, + 0.012925274670124054, + -0.008639078587293625, + 0.026335550472140312, + -0.0029009117279201746, + 0.021861417219042778, + -0.014234776608645916, + 0.021558290347456932, + 0.011482397094368935, + -0.03380456566810608, + -0.002963052596896887, + 0.02572929859161377, + -0.021230915561318398, + 0.016574906185269356, + -0.013155650347471237, + -0.02331641875207424, + -0.01561702974140644, + 0.055241603404283524, + -0.004646915011107922, + 0.014271152205765247, + -0.002067316323518753, + 0.0053471350111067295, + -0.019775912165641785, + -0.007535701617598534, + -0.008827016688883305, + 0.0026872081216424704, + 0.022879919037222862, + -0.0104153947904706, + -0.002896364778280258, + 0.008457203395664692, + 0.011555147357285023, + -0.01355577539652586, + 0.04018232598900795, + -0.016853781417012215, + -0.002764505334198475, + -0.005016728304326534, + 0.01054270751774311, + 0.02152191661298275, + 0.002528067212551832, + -0.022140292450785637, + -0.040570326149463654, + 0.0200426634401083, + 0.004371070768684149, + 0.0187574103474617, + -0.033537812530994415, + 0.026408299803733826, + 0.0124887740239501, + 0.01054270751774311, + 0.015968656167387962, + 0.005716948304325342, + -0.054174602031707764, + 0.0050803846679627895, + -0.023449795320630074, + 0.0004857587337028235, + 0.014865278266370296, + -0.004313476849347353, + -0.008014639839529991, + 0.01355577539652586, + 0.035017065703868866, + 0.004916696809232235, + 0.016720406711101532, + 0.005674510728567839, + -0.022067541256546974, + 0.01217352319508791, + -0.03807257115840912, + 0.033440813422203064, + -0.02551104873418808, + 0.036617569625377655, + -0.012476649135351181, + 0.005171322263777256, + 0.012634273618459702, + 0.0019021129701286554, + 0.00489244656637311, + 0.008069203235208988, + -0.05640560761094093, + 0.0404733270406723, + -0.015823155641555786, + 0.02349829487502575, + 0.0060231052339077, + 0.01853916049003601, + 0.04059457778930664, + 0.014671278186142445, + -0.04539608582854271, + -0.02582629956305027, + -0.013131399638950825, + 0.0016641593538224697, + -0.023922670632600784, + 0.003707225900143385, + -0.003992164041846991, + 0.0008040405809879303, + 0.01617478020489216, + -0.024613795801997185, + 0.020539788529276848, + -0.013276900164783001, + 0.003916382323950529, + 0.0321798101067543, + 0.008542078547179699, + -0.0331740640103817, + -0.0002495102526154369, + 0.006923388224095106, + 0.043625831604003906, + 0.013616400770843029, + -0.0606251135468483, + -0.009809143841266632, + -0.017617657780647278, + 0.00919076707214117, + -0.03506556525826454, + -0.004468070808798075, + 0.021133914589881897, + 0.011979523114860058, + -0.0012860102578997612, + 0.017423657700419426, + -0.009305954910814762, + -0.020527664572000504, + 0.04212233051657677, + -0.002575051737949252, + 0.03414406627416611, + -0.01897566020488739, + 0.001518659177236259, + -0.014744027517735958, + -0.006899137981235981, + 0.03254356235265732, + 0.0064565748907625675, + -0.01393165159970522, + 0.025583798065781593, + -0.010894333012402058, + 0.018939286470413208, + -0.01296164933592081, + -0.051604099571704865, + 0.01451365277171135, + -0.012343273498117924, + 0.018017783761024475, + -0.020030537620186806, + -0.0037617883644998074, + -0.01693865656852722, + -0.023037543520331383, + -0.007517514284700155, + 0.02023666352033615, + -0.0033616626169532537, + 0.00964545551687479, + -0.00556841678917408, + -0.01577465422451496, + 0.01171883475035429, + 0.010015268810093403, + 0.011464209295809269, + 0.010888271033763885, + -0.008160140365362167, + 0.047675590962171555, + -0.006614199839532375, + 0.007117388304322958, + 0.026723550632596016, + 0.05019759386777878, + -0.0027887553442269564, + 0.021121790632605553, + -0.007129513658583164, + 0.02849380485713482, + 0.019969912245869637, + 0.022031167522072792, + 0.024589546024799347, + 0.009330205619335175, + 0.0048287902027368546, + 0.05335010215640068, + 0.011500583961606026, + -0.0006979466415941715, + 0.016768906265497208, + -0.009202892892062664, + -0.016077781096100807, + 0.012670649215579033, + 0.037248071283102036, + -0.014671278186142445, + 0.013398149982094765, + -0.029051555320620537, + -0.0061686052940785885, + 0.02997305616736412, + -0.013034399598836899, + 0.02635980024933815, + 0.0034859441220760345, + 0.0070749507285654545, + 0.004255882930010557, + 0.020321538671851158, + -0.020697414875030518, + 0.010203206911683083, + 0.023946920409798622, + -0.004025507718324661, + 0.021558290347456932, + 0.015471529215574265, + 0.025317048653960228, + 0.008814891800284386, + 0.006004917435348034, + -0.013774026185274124, + 0.014804652892053127, + 0.03273756057024002, + 0.032058559358119965, + 0.00870576687157154, + -0.02815430425107479, + -0.010864020325243473, + 0.0065414500422775745, + 0.007984328083693981, + 0.00013148071593604982, + 0.008275328204035759, + -0.015241153538227081, + 0.013034399598836899, + -0.008626953698694706, + -0.008287453092634678, + -0.0022113011218607426, + -0.05461110547184944, + 0.03242231160402298, + 0.0026493174955248833, + 0.017484283074736595, + -0.010142581537365913, + 0.013034399598836899, + 0.009760643355548382, + 0.007566014304757118, + 0.00605644891038537, + 0.021764416247606277, + -0.009675768204033375, + 0.02425004541873932, + -0.01878166012465954, + 0.015410903841257095, + 0.005201634950935841, + -0.015326028689742088, + 0.010663957335054874, + 0.01824815943837166, + 0.026941800490021706, + -0.06227411702275276, + 0.03761181980371475, + -0.015556404367089272, + 0.008814891800284386, + 0.04503233730792999, + -0.010627582669258118, + -0.009924331679940224, + -0.013082900084555149, + 0.0003451842349022627, + 0.0015595811419188976, + -0.030555058270692825, + 0.011094396002590656, + -0.0054805101826786995, + -0.002190082333981991, + 0.02953655645251274, + -0.007475076708942652, + 0.04083707928657532, + 0.02041853964328766, + 0.01393165159970522, + -0.026165800169110298, + 0.013507275842130184, + 0.008614828810095787, + -0.0013511822326108813, + 0.004407445900142193, + -0.00906345434486866, + 0.0004202078271191567, + 0.013349650427699089, + 0.025365548208355904, + 0.01658703200519085, + 0.008948267437517643, + 0.009499955922365189, + -0.03935782611370087, + 0.013507275842130184, + -0.009984956122934818, + 0.0306035578250885, + 0.012149273417890072, + -0.005610854364931583, + 0.0038800074253231287, + -0.013301149941980839, + 0.004631758667528629, + -0.02284354344010353, + -0.0020415508188307285, + 0.01608990505337715, + -0.034289564937353134, + 0.01624753139913082, + 0.002435613889247179, + -0.0031252247281372547, + -0.005968542769551277, + -0.030967308208346367, + 0.006347449496388435, + -0.015811029821634293, + -0.0047408840619027615, + -0.0009768222225829959, + 0.024904796853661537, + 0.0028372553642839193, + 0.01082158274948597, + -0.004083101637661457, + -0.0018536129500716925, + 0.004401383455842733, + -0.016199029982089996, + -0.0054653543047606945, + 0.017350908368825912, + 0.0011427834397181869, + -0.031743310391902924, + 0.00368297565728426, + -0.02340129390358925, + 0.02302541956305504, + -0.015010778792202473, + 0.007711514830589294, + 0.019084786996245384, + 0.03940632566809654, + 0.003528381697833538, + -0.000349352223565802, + 0.004880321677774191, + -0.019521286711096764, + -0.0028660523239523172, + 0.009245330467820168, + -0.01762978360056877, + 0.004161914344877005, + 0.010433582589030266, + 0.012937399558722973, + 0.015180529095232487, + 0.015459404326975346, + 0.006292887032032013, + -0.021570416167378426, + 0.02278291806578636, + 0.014356027357280254, + -0.02055191434919834, + -0.04515358433127403, + -0.0321798101067543, + -0.02132791467010975, + -0.015701904892921448, + -0.018417909741401672, + -0.0046590398997068405, + -0.009014954790472984, + -0.0097727682441473, + 0.018575536087155342, + 0.012634273618459702, + 0.02180079184472561, + -0.008329890668392181, + -0.0069779506884515285, + 0.000655509065836668, + 0.011027708649635315, + 0.05368960276246071, + 0.02551104873418808, + -0.008111640810966492, + -0.010257769376039505, + 0.0012390257325023413, + 0.011931022629141808, + 0.007268951274454594, + -0.015471529215574265, + 0.010081957094371319, + 0.01608990505337715, + -0.009578768163919449, + -0.0016687063034623861, + 0.0024386453442275524, + -0.02010328881442547, + 0.011379334144294262, + -0.021158164367079735, + 0.009948581457138062, + 0.010300206951797009, + 0.007590264547616243, + -0.032810311764478683, + 0.027135800570249557, + 0.035768818110227585, + 0.03433806449174881, + 0.013470900245010853, + -0.03622956946492195, + -0.037999823689460754, + 0.01919391192495823, + 0.007656951900571585, + 0.018902910873293877, + -0.008542078547179699, + -0.015544279478490353, + -0.002187051111832261, + 0.0014451511669903994, + 0.0015307841822504997, + 0.001505776308476925, + -0.01938791200518608, + -0.051264598965644836, + -0.017144782468676567, + 0.010633645579218864, + -0.015144153498113155, + -0.01986078731715679, + 0.012985900044441223, + -0.01296164933592081, + -0.03814532235264778, + 0.01856341026723385, + -0.02013966254889965, + -0.011045895516872406, + -0.02912430465221405, + 0.00028133843443356454, + -0.01536240428686142, + 0.013301149941980839, + 0.047675590962171555, + 0.0005316064925864339, + -0.007384139113128185, + -0.017205407842993736, + 0.005995824001729488, + 0.020163914188742638, + -0.024771422147750854, + -0.01755703240633011, + -0.02274654246866703, + -0.00925139244645834, + -0.02114604040980339, + 0.018927160650491714, + -0.008329890668392181, + 0.010736707597970963, + 0.008596641011536121, + -0.003661756869405508, + 0.030797557905316353, + -0.004989447072148323, + -0.0008434469345957041, + -0.013519400730729103, + -0.0005122822476550937, + -0.03302856162190437, + -0.005198603495955467, + 0.00845114141702652, + -0.009293830022215843, + -0.008663329295814037, + 0.04954284429550171, + -0.0249775480479002, + 0.009639393538236618, + 0.010385082103312016, + 0.02217666618525982, + 0.018054159358143806, + 0.007432639133185148, + 0.008026765659451485, + -0.04711784049868584, + -0.010385082103312016, + 0.009530267678201199, + -0.02001841366291046, + 0.0017475188942626119, + -0.005671479739248753, + -0.0066748252138495445, + 0.014174152165651321, + -0.017326658591628075, + 0.0021309726871550083, + 0.013531525619328022, + 0.0066748252138495445, + -0.010488145053386688, + -0.07076163589954376, + -0.009366580285131931, + 0.015253279358148575, + 0.009821268729865551, + 0.01608990505337715, + -0.013616400770843029, + 0.00030539900762960315, + -0.005750291980803013, + 0.01627178117632866, + -0.03213131055235863, + -0.028518054634332657, + -0.013737651519477367, + -0.0030145838391035795, + -0.002803911454975605, + 0.046414587646722794, + 0.0010988302528858185, + -0.006850637961179018, + -0.008596641011536121, + 0.004116445314139128, + 0.0013170805759727955, + 0.0007725913310423493, + -0.009330205619335175, + 0.0343623161315918, + 0.04238907992839813, + 0.03072480857372284, + -0.00489244656637311, + 0.017302406951785088, + -0.006874888204038143, + 0.013677026145160198, + 0.029827557504177094, + -0.01185827236622572, + 0.008748204447329044, + 0.020345788449048996, + -0.004913665354251862, + -0.0035708192735910416, + -0.02384991943836212, + -0.02387417107820511, + 0.022261541336774826, + -0.035987067967653275, + 0.003219193546101451, + -0.015071403235197067, + 0.011039833538234234, + 0.007863077335059643, + -0.011373271234333515, + 0.00884520448744297, + -0.01709628291428089, + 0.03404706344008446, + -0.021449165418744087, + 0.0007858530734665692, + 0.007032513152807951, + 0.00489244656637311, + 0.0021370353642851114, + -0.053398601710796356, + 0.032373812049627304, + -0.001574737369082868, + 0.015968656167387962, + 0.015980780124664307, + -0.02849380485713482, + 0.014865278266370296, + -0.03710256889462471, + -0.004061882849782705, + -0.0006073878612369299, + -0.0357445664703846, + -0.012064398266375065, + 0.004104320425540209, + -0.008620891720056534, + 0.010942833498120308, + 0.029900306835770607, + -0.03579306975007057, + 0.022043291479349136, + -0.006014011334627867, + 0.006001886446028948, + -0.0014928934397175908, + 0.0018384566064924002, + -0.03649631887674332, + 0.04934884235262871, + -0.017799533903598785, + 0.013968026265501976, + -0.005804854910820723, + 0.023680169135332108, + 0.011737022548913956, + 0.03402281552553177, + -0.02594754844903946, + 0.04386833310127258, + 0.004649946466088295, + -0.017787408083677292, + 0.04061882570385933, + -0.02720855176448822, + 0.009894018992781639, + -0.0015285107074305415, + 0.004465039819478989, + -0.04010957479476929, + -0.007517514284700155, + 0.004513539839535952, + -0.028202803805470467, + 0.035671819001436234, + 0.010342644527554512, + -0.04881534352898598, + -0.025583798065781593, + 0.0063231997191905975, + 0.0144651522859931, + -0.01844215951859951, + -0.044280584901571274, + 0.0009972831467166543, + 0.02481992170214653, + 0.0023992389906197786, + -0.00043346956954337656, + -0.003995195031166077, + 0.03601131960749626, + 0.010930708609521389, + 0.03654481843113899, + -0.0007964624674059451, + -0.020066913217306137, + 0.005659354384988546, + 0.010409331880509853, + -0.02912430465221405, + 0.04231632873415947, + 0.0006467942148447037, + -0.00885732937604189, + 0.05868511274456978, + 0.03104005940258503, + -0.01887866109609604, + -0.0037981634959578514, + -0.024698670953512192, + -0.01834516040980816, + 0.014295401982963085, + -0.023777170106768608, + -0.023995419964194298, + 0.017860159277915955, + -0.006499012466520071, + -0.027766302227973938, + 0.0022052384447306395, + 0.0034465377684682608, + 0.02432279661297798, + 0.006887013092637062, + -0.018151160329580307, + -0.01049420703202486, + 0.024747172370553017, + 0.008360203355550766, + -0.025874799117445946, + 0.019157536327838898, + 0.018624035641551018, + -0.006341387052088976, + -0.020467039197683334, + -0.005501728970557451, + 0.0014777372125536203, + 0.0014368152478709817, + -0.008329890668392181, + 0.023946920409798622, + 0.013264775276184082, + 0.016477907076478004, + 0.017544908449053764, + -0.003291943809017539, + 0.018090534955263138, + 0.002766020828858018, + -0.009718205779790878, + -0.04801509156823158, + -0.01737515814602375, + 0.0144651522859931, + -0.010651832446455956, + -0.021715916693210602, + -0.0038830386474728584, + -0.00016141436935868114, + 0.037369322031736374, + -0.006559637375175953, + 0.03581731766462326, + -0.004501414950937033, + 0.01938791200518608, + -0.007147700991481543, + 0.0044044144451618195, + -0.02079441398382187, + 0.0199456624686718, + 0.0016717375256121159, + 0.023740794509649277, + 0.0013314790558069944, + -0.00291455234400928, + -0.0207337886095047, + 0.0207337886095047, + -0.021182416006922722, + 0.027669303119182587, + 0.022382792085409164, + -0.024553172290325165, + 0.0026174893137067556, + 0.005071290768682957, + 0.01108833309262991, + -0.041613079607486725, + 0.007911577820777893, + -0.003049443243071437, + 0.018866535276174545, + 0.01171883475035429, + 0.0010753379901871085, + -0.026747800409793854, + 0.02412879653275013, + 0.005947323981672525, + 0.009584831073880196, + -0.009257455356419086, + -0.01903628557920456, + -0.0209277905523777, + 0.005971573758870363, + -0.02375292032957077, + 0.0003917897993233055, + 0.010694270022213459, + -0.0008010093588382006, + -0.016635531559586525, + -0.020066913217306137, + 0.02786330319941044, + -0.012525148689746857, + -0.005729073192924261, + 0.006305011920630932, + 0.04110382869839668, + 0.03307706117630005, + -0.010385082103312016, + 0.019594037905335426, + -0.018393659964203835, + -0.030797557905316353, + 0.014598527923226357, + -0.03940632566809654, + -0.002766020828858018, + 0.06314712017774582, + 0.034483566880226135, + -0.02164316549897194, + 0.037466321140527725, + 0.01269489899277687, + -0.009584831073880196, + 0.015786780044436455, + 0.010973146185278893, + -0.030579308047890663, + -0.008869454264640808, + 0.006162542849779129, + 0.011330833658576012, + -0.0020309414248913527, + 0.015010778792202473, + 0.007790327072143555, + 0.03589006885886192, + -0.011621834710240364, + -0.006608137395232916, + 0.0001224816805915907, + 0.0404733270406723, + 0.020879289135336876, + 0.02509879693388939, + 0.0068567004054784775, + -0.013483025133609772, + 0.016550656408071518, + -0.0017808628035709262, + 0.02732980251312256, + -0.03324681147933006, + 0.01564127951860428, + 0.03654481843113899, + -0.0034404753241688013, + -0.002396207768470049, + 0.035356566309928894, + -0.004565071314573288, + -0.006838513072580099, + -0.009402954950928688, + 0.036399319767951965, + 0.016914406791329384, + -0.007669077254831791, + 0.021594665944576263, + 0.012791899032890797, + -0.05136159807443619, + -0.009869768284261227, + -0.007117388304322958, + 0.022637417539954185, + -0.02805730327963829, + -0.020273039117455482, + -0.0010685176821425557, + -0.023049669340252876, + 0.0017672220710664988, + 0.00939083006232977, + -0.0036738819908350706, + 0.03016705811023712, + -0.010433582589030266, + 0.011252021417021751, + -0.040546078234910965, + 0.000825259368866682, + 0.007214388810098171, + 0.013955901376903057, + -0.022989043965935707, + -0.012804023921489716, + 0.012767649255692959, + 0.02742680162191391, + -0.002500785980373621, + -0.03188880905508995, + 0.007960077375173569, + 0.013119274750351906, + 0.020442789420485497, + 0.0216189157217741, + -0.013810400851070881, + -0.040764328092336655, + 0.011318708769977093, + 0.0002959263511002064 + ] + }, + { + "HotelId": "7", + "HotelName": "Roach Motel", + "Description": "Perfect Location on Main Street. Earn points while enjoying close proximity to the city's best shopping, restaurants, and attractions.", + "Description_fr": "Emplacement parfait sur la rue principale. Gagnez des points tout en apprĆ©ciant la proximitĆ© des meilleurs magasins, restaurants et attractions de la ville.", + "Category": "Budget", + "Tags": [ + "free parking", + "24-hour front desk service", + "coffee in lobby" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2016-07-02T00:00:00Z", + "Rating": 4.7, + "Address": { + "StreetAddress": "9 Great Oaks Blvd,", + "City": "San Jose", + "StateProvince": "CA ", + "PostalCode": "95119", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -121.781952, + 37.242077 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "tv" + ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "tv" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (City View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Standard, 2 grands lits (vue sur la ville)", + "Type": "Standard Room", + "BaseRate": 99.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Cityside)", + "Description_fr": "Suite, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Suite", + "BaseRate": 256.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 108.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 120.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 159.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 263.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv", + "tv" + ] + }, + { + "Description": "Budget Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv", + "suite", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 74.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 156.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags" + ] + }, + { + "Description": "Suite, 2 Double Beds (City View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la ville)", + "Type": "Suite", + "BaseRate": 262.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Amenities)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Services)", + "Type": "Deluxe Room", + "BaseRate": 143.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Standard, 2 lits doubles (Services)", + "Type": "Standard Room", + "BaseRate": 123.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Budget Room, 1 King Bed (City View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 82.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 231.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "jacuzzi tub" + ] + } + ], + "embedding": [ + -0.010691559873521328, + -0.0372023843228817, + 0.04623185843229294, + 0.036730870604515076, + -0.020451880991458893, + -0.025697464123368263, + 0.013673880137503147, + -0.019119856879115105, + -0.01975639909505844, + -0.04344993084669113, + 0.020039306953549385, + 0.002504913369193673, + -0.012789793312549591, + -0.003751476062461734, + 0.014157180674374104, + 0.03524560481309891, + -0.02859726920723915, + 0.013178790919482708, + 0.07850693166255951, + 0.061532460153102875, + 0.05313952639698982, + 0.03387821465730667, + 0.0023413572926074266, + 0.01058546919375658, + 0.021654238924384117, + 0.027937151491642, + -0.050357598811388016, + -0.024212198331952095, + 0.06379572302103043, + 0.0014049616875126958, + 0.0208998192101717, + -0.020569758489727974, + 0.02135954424738884, + 0.024447955191135406, + 0.018011800944805145, + -0.005080553703010082, + -0.026357581838965416, + -0.022137539461255074, + 0.01798822544515133, + -0.0023354634176939726, + -0.03500984609127045, + 0.0388055294752121, + 0.032982341945171356, + -0.026899822056293488, + -0.01135167758911848, + 0.007019651122391224, + -0.03493912145495415, + 0.03816898539662361, + 0.00023962443810887635, + 0.04969748109579086, + -0.029681749641895294, + -0.024011805653572083, + -0.04481732100248337, + -0.07652657479047775, + -0.09086057543754578, + -0.023552078753709793, + 0.023457776755094528, + -0.04866015166044235, + 0.05780750513076782, + 0.05049905180931091, + 0.024447955191135406, + 0.01936740055680275, + 0.023823199793696404, + 0.049131665378808975, + -0.014840874820947647, + 0.03180355951189995, + -0.0341375470161438, + 0.03288803994655609, + -0.026121824979782104, + 0.03126131743192673, + 0.06455014646053314, + 0.03241652622818947, + 0.01614932343363762, + -0.03614147752523422, + -0.006147352047264576, + -0.00100049190223217, + -0.020239699631929398, + 0.02484874054789543, + -0.014546179212629795, + -0.02491946704685688, + -0.03135562315583229, + -0.024707285687327385, + -0.012589399702847004, + 0.02706485241651535, + -0.001198674668557942, + -0.05172498896718025, + -0.013673880137503147, + -0.020463667809963226, + 0.0013563368702307343, + 0.05672302469611168, + -0.0013644410064443946, + -0.009825154207646847, + 0.014263271354138851, + -0.005749512929469347, + -0.02326917089521885, + 0.04076230898499489, + -0.026239704340696335, + -0.018306495621800423, + -0.01573674939572811, + 0.010632620193064213, + 0.040408674627542496, + -0.08124170452356339, + 0.013909636996686459, + -0.03338312730193138, + 0.016797654330730438, + -0.00871120486408472, + 0.022231843322515488, + 0.014628694392740726, + 0.0006568030221387744, + 0.00046414570533670485, + -0.12834586203098297, + 0.050781961530447006, + -0.04842439666390419, + 0.010880164802074432, + 0.002242634305730462, + -0.0069842878729105, + 0.021383119747042656, + -0.005501968320459127, + 0.010019653476774693, + 0.008339888416230679, + -0.010225940495729446, + 0.04429865628480911, + -0.03847546875476837, + -0.028149332851171494, + -0.010980361141264439, + -0.022880174219608307, + 0.026805520057678223, + -0.012730853632092476, + 0.009866411797702312, + 0.01230649184435606, + -0.0340668223798275, + 0.00800393521785736, + -0.009000006131827831, + -0.007880162447690964, + 0.005885072983801365, + 0.02197251096367836, + 0.024943042546510696, + -0.02970532514154911, + -0.02977605164051056, + -0.010950892232358456, + 0.007956783287227154, + -0.046184707432985306, + -0.013768183067440987, + -0.019414551556110382, + -0.02810218185186386, + 0.003053047228604555, + -0.0271355789154768, + 0.03979570418596268, + 0.002111494541168213, + 0.05516703426837921, + -0.0022676833905279636, + 0.03904128447175026, + 0.007667982019484043, + -0.03989000990986824, + 0.000618124206084758, + -0.022998051717877388, + 0.00785069353878498, + -0.002392929047346115, + -0.019155219197273254, + 0.023186657577753067, + -0.015571719966828823, + -0.012282916344702244, + -0.004060906823724508, + 0.000824411166831851, + 0.017445985227823257, + -0.01552456896752119, + -0.05445976182818413, + -0.017622802406549454, + -0.056251514703035355, + -0.010962679982185364, + 0.031332045793533325, + -0.0450059249997139, + -0.018200404942035675, + 0.043426357209682465, + 0.01387427281588316, + 0.025579586625099182, + -0.04014934226870537, + 0.0011110027553513646, + 0.005926330108195543, + 0.007667982019484043, + 0.01771710440516472, + -0.017198439687490463, + 0.05130062624812126, + -0.000662328558973968, + 0.035504937171936035, + 0.05007469281554222, + -0.04168175905942917, + 0.012165037915110588, + 0.01871906965970993, + 0.025768190622329712, + -0.0370609313249588, + -0.0070491209626197815, + -0.03269943222403526, + 0.0071905748918652534, + -0.019072705879807472, + 0.026357581838965416, + -0.053422436118125916, + -0.001533891074359417, + 0.002805502852424979, + 0.03062477521598339, + -0.037768200039863586, + 0.007673875894397497, + 0.055402789264917374, + 0.00845776591449976, + -0.04349708557128906, + -0.02725345827639103, + -0.00036265989183448255, + -0.002873282879590988, + -0.015253448858857155, + -0.0007050594431348145, + -0.01703341118991375, + 0.00177259452175349, + 0.04429865628480911, + 0.04875445365905762, + 0.004470533691346645, + -0.03788607940077782, + -0.0309312604367733, + 0.04088018462061882, + 0.015005904249846935, + 0.06780358403921127, + -0.02921023592352867, + 0.0028452868573367596, + 0.02836151234805584, + 0.041893940418958664, + 0.041092365980148315, + 0.060070767998695374, + 0.016184687614440918, + -0.024141469970345497, + 0.06737922132015228, + -0.013579577207565308, + -0.019968580454587936, + -0.003070729086175561, + -0.01795286126434803, + -0.02939884178340435, + -0.013532426208257675, + 0.07332028448581696, + 0.031025562435388565, + 0.01475836057215929, + -0.03260513022542, + -0.011664055287837982, + -0.03656584024429321, + 0.005805504973977804, + -0.03277016058564186, + -0.005672892089933157, + 0.043732840567827225, + -0.03020041435956955, + -0.002796662040054798, + 0.011056981980800629, + 0.023717109113931656, + 0.024778014048933983, + 0.008811401203274727, + 0.029068782925605774, + -0.021029483526945114, + -0.027583517134189606, + 0.04255405813455582, + -0.005171909462660551, + 0.016597261652350426, + 0.024047167971730232, + 0.034656211733818054, + -0.0019420445896685123, + 0.04073873162269592, + 0.023410625755786896, + 0.007685663644224405, + -0.07577215880155563, + 0.015500993467867374, + -0.03310022130608559, + -0.04432222992181778, + 0.010055016726255417, + -0.052998073399066925, + -0.05049905180931091, + -0.04156387969851494, + -0.04927311837673187, + -0.017964649945497513, + -0.016055021435022354, + 0.024565832689404488, + -0.0224322360008955, + -0.03104913793504238, + 0.010090379975736141, + -0.0008840870577841997, + -0.002905699424445629, + -0.019049128517508507, + -0.0194381270557642, + 0.05856192857027054, + 0.008239691145718098, + -0.009907669387757778, + 0.00981926079839468, + -0.018895886838436127, + 0.015182722359895706, + -0.037108082324266434, + 0.025178799405694008, + -0.03717880696058273, + -0.033783912658691406, + -0.019037341699004173, + -0.040903761982917786, + 0.021288815885782242, + 0.025933220982551575, + 0.009271126240491867, + -0.0432613268494606, + 0.021147362887859344, + -0.0035481362137943506, + 0.04998038709163666, + 0.04998038709163666, + -0.024895891547203064, + -0.032746583223342896, + 0.03838116675615311, + 0.018577616661787033, + -0.03380749002099037, + -0.012259340845048428, + 0.011528495699167252, + -0.007473482750356197, + -0.025556009262800217, + 0.0135677894577384, + 0.03861692175269127, + -0.0744047686457634, + -0.0077033452689647675, + 0.013933212496340275, + 0.012064841575920582, + 0.012005902826786041, + -0.022385085001587868, + -0.013202367350459099, + 0.042247574776411057, + -0.0050334022380411625, + -0.011056981980800629, + -0.0355992391705513, + 0.04837724566459656, + -0.02468371018767357, + 0.03038902021944523, + -0.007296665105968714, + -0.05125347524881363, + 0.00430550379678607, + 0.019049128517508507, + 0.004423382226377726, + -0.008440084755420685, + 0.01856582798063755, + -0.02928096428513527, + 0.010461697354912758, + -0.015571719966828823, + 0.02583891712129116, + -0.003159137675538659, + 0.0713399350643158, + 0.017210228368639946, + -0.033430278301239014, + -0.003506878623738885, + -0.010284879244863987, + 0.03449118509888649, + -0.030058959499001503, + -0.015406690537929535, + 0.013084488920867443, + 0.02407074347138405, + -0.010609044693410397, + -0.03633008524775505, + -0.029304539784789085, + -0.01466405764222145, + 0.021418482065200806, + -0.006500986870378256, + 0.0002265473158331588, + 0.04418077692389488, + 0.011728888377547264, + -0.010037335567176342, + 0.005976428743451834, + -0.03269943222403526, + -0.03192143887281418, + -0.0051041292026638985, + -0.032369375228881836, + 0.022102177143096924, + 0.019320249557495117, + -0.06737922132015228, + -0.04512380436062813, + -0.03364245966076851, + -0.003536348231136799, + 0.009182717651128769, + 0.015017691999673843, + 0.008504917845129967, + 0.013049124740064144, + -0.03951279819011688, + 0.051347777247428894, + 0.003156190738081932, + 0.038098257035017014, + 0.0010999516816809773, + -0.023599231615662575, + 0.02013360895216465, + -0.0434735082089901, + 0.011988220736384392, + 0.01619647443294525, + 0.05728884041309357, + 0.004258352797478437, + 0.029563872143626213, + -0.028385089710354805, + -0.06308845430612564, + 0.04073873162269592, + 0.0434027798473835, + -0.019933216273784637, + -0.014958753250539303, + -0.021913571283221245, + -0.0010778495343402028, + -0.012223977595567703, + 0.030554048717021942, + 0.026051098480820656, + -0.01261297520250082, + -0.008440084755420685, + 0.013379184529185295, + -0.045383136719465256, + -0.01914343237876892, + -0.03512772545218468, + 0.010497060604393482, + -0.03647153824567795, + -0.07284877449274063, + -0.0370609313249588, + -0.029045207425951958, + 0.04076230898499489, + -0.0027480372227728367, + -0.02251475118100643, + 0.010650302283465862, + 0.005124757997691631, + 0.01848331280052662, + 0.02101769670844078, + -0.008210222236812115, + -0.03696662560105324, + 0.03491554409265518, + 0.008434190414845943, + 0.030271140858530998, + -0.0026006894186139107, + 0.012719065882265568, + 0.05417685583233833, + -0.03498627245426178, + 0.027159154415130615, + 0.03147349879145622, + -0.028950905427336693, + -0.040715157985687256, + -0.008139494806528091, + -0.008834976702928543, + 0.0027082534506917, + 0.003194501157850027, + -0.0007385810604318976, + -0.04795288294553757, + -0.005239689256995916, + -0.04271908849477768, + 0.012047159485518932, + 0.006795682478696108, + -0.04196466505527496, + -0.08746568113565445, + -0.027418486773967743, + -0.023493140935897827, + 0.011840872466564178, + 0.010367394424974918, + -0.0043732840567827225, + 0.007455801125615835, + 0.0386640727519989, + -0.0004479374620132148, + -0.007909632287919521, + 0.0002598847495391965, + 0.01565423421561718, + 0.014546179212629795, + -0.0010667983442544937, + 0.008339888416230679, + 0.07435761392116547, + 0.037296686321496964, + -0.0007846272783353925, + -0.014958753250539303, + 0.014216120354831219, + 0.008699417114257812, + -0.007449907250702381, + -0.009005900472402573, + 0.0066778045147657394, + -0.005036349408328533, + -0.0016738715348765254, + -0.03616505488753319, + 0.028998056426644325, + 0.03694305196404457, + 0.004759335424751043, + -0.007025545462965965, + -0.02036936581134796, + 0.058891985565423965, + 0.0024459741543978453, + 0.018848735839128494, + -0.04196466505527496, + -0.045689620077610016, + 0.05497842654585838, + 0.012330067344009876, + -0.003279963042587042, + -0.003713165642693639, + -0.0024857581593096256, + -0.05799611285328865, + -0.03805110603570938, + -0.015100207179784775, + -0.057666052132844925, + 0.010078592225909233, + 0.02779569663107395, + -0.08600398898124695, + -0.013862485066056252, + -0.05922204628586769, + -0.0020879190415143967, + 0.026310430839657784, + -0.01081533171236515, + 0.006813364569097757, + -0.01665619947016239, + 0.03970140218734741, + -0.016432231292128563, + 0.019874276593327522, + -0.010196470655500889, + -0.010715135373175144, + -0.008098237216472626, + -0.0012966609792783856, + 0.017445985227823257, + 0.03972497954964638, + 0.0589391365647316, + -0.0171041376888752, + -0.025060921907424927, + 0.013037336990237236, + 0.025980371981859207, + -0.014133605174720287, + 0.005507862661033869, + -0.023151293396949768, + 0.011410617269575596, + -0.003928293474018574, + 0.010962679982185364, + -0.01902555301785469, + 0.06860515475273132, + 0.02664048969745636, + -0.0131670031696558, + 0.01680944301187992, + 0.0216306634247303, + 0.010231833904981613, + 0.018459737300872803, + -0.012141462415456772, + 0.0192966740578413, + -0.0104322275146842, + -0.033972520381212234, + -0.005275052972137928, + -0.02687624655663967, + -0.005345779936760664, + 0.025178799405694008, + -0.020463667809963226, + 0.037532441318035126, + 0.00159577711019665, + 0.025603162124753, + -0.009512776508927345, + -0.034043245017528534, + 0.053186677396297455, + -0.02468371018767357, + 0.04769355058670044, + -0.014086454175412655, + 0.014817299321293831, + -0.004072694573551416, + 0.0007956783520057797, + -0.06700201332569122, + -0.04752852022647858, + 0.01711592637002468, + -0.001324657117947936, + 0.005681732669472694, + -0.011086451821029186, + -0.01044990960508585, + -0.007473482750356197, + 0.03585857152938843, + 0.019001977518200874, + -0.020699424669146538, + 0.0053222039714455605, + -0.005030455533415079, + -0.006129670422524214, + 0.010650302283465862, + -0.01959136873483658, + -0.02583891712129116, + 0.006188609637320042, + 0.018212193623185158, + 0.011363465338945389, + 0.012082523666322231, + 0.038027532398700714, + 0.0402672179043293, + 0.0006347008165903389, + 0.013591364957392216, + 0.004337920341640711, + 0.0388055294752121, + 0.001298134564422071, + 0.012695490382611752, + 0.026003947481513023, + -0.00640079053118825, + 0.0357406921684742, + -0.013332032598555088, + -0.015194510109722614, + 0.008357569575309753, + 0.0026065832935273647, + 0.015383115038275719, + 0.02354029193520546, + 0.029728900641202927, + -0.007815329357981682, + 0.008740673772990704, + -0.002941062906756997, + 0.03123774379491806, + -0.002773086540400982, + 0.02377604879438877, + -0.036306507885456085, + -0.018671918660402298, + 0.044864472001791, + -0.0028953852597624063, + -0.0056169000454247, + 0.0023118876852095127, + -0.04861300066113472, + 0.020381154492497444, + -0.0108330138027668, + -0.015300599858164787, + 0.01052653044462204, + -0.020946970209479332, + -0.06634189188480377, + 0.009253445081412792, + 0.007673875894397497, + -0.020121822133660316, + -0.028809450566768646, + 0.026546187698841095, + 0.02292732521891594, + -0.020003942772746086, + 0.018306495621800423, + -0.03647153824567795, + 0.00602947361767292, + 0.005602165125310421, + -0.023445989936590195, + 0.026593338698148727, + -0.04535955935716629, + -0.017163077369332314, + -0.010349712334573269, + -0.0016827123472467065, + 0.00013979626237414777, + 0.035693541169166565, + 0.02227899432182312, + 0.0017858558567240834, + 0.02484874054789543, + -0.009530458599328995, + -0.009288808330893517, + -0.05224364995956421, + -0.018636554479599, + -0.03291161358356476, + 0.03272300958633423, + 0.052385106682777405, + 0.07214150577783585, + -0.008681735023856163, + 0.05955210328102112, + 0.0016326140612363815, + 0.00785069353878498, + -0.005926330108195543, + -0.010066804476082325, + -0.024400802329182625, + -0.030176838859915733, + 0.028502967208623886, + 0.026970550417900085, + 0.009943032637238503, + 0.022408660501241684, + 0.018365435302257538, + 0.016361504793167114, + 0.01711592637002468, + -0.010597256943583488, + 0.014699420891702175, + -0.02565031312406063, + 0.024825165048241615, + 0.04731633886694908, + -0.007385074160993099, + -0.013756394386291504, + -0.022915536537766457, + 0.01066209003329277, + 0.013909636996686459, + 0.01783498376607895, + 0.01442830078303814, + 0.013803546316921711, + 0.02316308207809925, + -0.03689590096473694, + -0.0170687735080719, + -0.02522595040500164, + 0.011640479788184166, + -0.0012288810685276985, + 0.034090396016836166, + -0.0041935197077691555, + -0.008245585486292839, + 0.018707282841205597, + 0.0049950918182730675, + 0.019001977518200874, + 0.010090379975736141, + 0.044770170003175735, + 0.025390980765223503, + 0.02151278592646122, + -0.04420435428619385, + -0.030907683074474335, + -0.02040472999215126, + 0.05186644196510315, + 0.011457768268883228, + -0.0387348011136055, + 0.00822790339589119, + -0.0231984443962574, + -0.01924952305853367, + 0.01878979802131653, + 0.040597278624773026, + 0.037721049040555954, + 0.0027598252054303885, + 0.013332032598555088, + 0.015123782679438591, + 0.07959140837192535, + 0.02664048969745636, + 0.004314344841986895, + -0.03670729324221611, + -0.01585462875664234, + -0.012011796236038208, + 0.0065422444604337215, + -0.0713399350643158, + 0.020758364349603653, + -0.021229878067970276, + 0.029257388785481453, + -0.013921424746513367, + -0.00997250247746706, + -0.030365444719791412, + 0.01573674939572811, + -0.014475452713668346, + 0.009618867188692093, + 0.00721415039151907, + 0.0023678799625486135, + -0.0004133107140660286, + 0.017045198008418083, + -0.013614940457046032, + 0.023634593933820724, + -0.009335959330201149, + -0.03500984609127045, + -0.00909430906176567, + 0.00622986676171422, + -0.030106112360954285, + 0.0000500061760249082, + 0.01948527805507183, + 0.0075618913397192955, + -0.008510811254382133, + -0.027654243633151054, + -0.00008348176197614521, + 0.01081533171236515, + -0.00893517304211855, + -0.017045198008418083, + 0.047363489866256714, + 0.0185304656624794, + -0.00840472150593996, + 0.009447943419218063, + -0.0048153274692595005, + -0.0006766949663870037, + 0.004255405627191067, + -0.005563854705542326, + 0.03340670466423035, + -0.04540671035647392, + -0.013838909566402435, + -0.003053047228604555, + -0.01295482274144888, + -0.02977605164051056, + -0.014699420891702175, + 0.030271140858530998, + -0.029233813285827637, + 0.005136545747518539, + -0.04003146290779114, + -0.08322206139564514, + -0.009076626971364021, + -0.025673888623714447, + 0.007774072233587503, + 0.008422402665019035, + 0.014192544855177402, + 0.039135586470365524, + -0.026734793558716774, + 0.01418075617402792, + -0.008269160985946655, + 0.0077799661085009575, + 0.03234579786658287, + -0.0194381270557642, + 0.02289196103811264, + -0.002581534208729863, + -0.004311398137360811, + 0.03291161358356476, + -0.018271133303642273, + 0.031449925154447556, + 0.036730870604515076, + 0.007402755785733461, + -0.006724955514073372, + 0.01745777204632759, + 0.006082518957555294, + 0.018436161801218987, + -0.027465637773275375, + 0.03177998214960098, + -0.00442927610129118, + -0.009312383830547333, + -0.00032287597423419356, + -0.026546187698841095, + -0.02234972082078457, + 0.000617019075434655, + -0.05672302469611168, + 0.010361500084400177, + 0.0024489210918545723, + -0.000995334703475237, + 0.0012443525483831763, + 0.029115933924913406, + -0.03486839309334755, + 0.008522599004209042, + 0.010408652015030384, + -0.0055402787402272224, + -0.03779177367687225, + -0.006654228549450636, + -0.010992148891091347, + -0.006371320690959692, + -0.005401771981269121, + 0.029304539784789085, + -0.03364245966076851, + 0.013096276670694351, + 0.027300609275698662, + 0.01924952305853367, + 0.0029513773042708635, + 0.0003125616058241576, + 0.009223975241184235, + 0.013155215419828892, + 0.02609824948012829, + -0.023481352254748344, + -0.015253448858857155, + 0.01963852159678936, + -0.027347760275006294, + 0.0341375470161438, + 0.026192553341388702, + 0.008345781825482845, + 0.025886069983243942, + 0.01405109092593193, + -0.019497066736221313, + -0.021442057564854622, + 0.01669156365096569, + -0.03241652622818947, + 0.014923390001058578, + -0.016467595472931862, + -0.0014801090583205223, + -0.010850694961845875, + 0.007821223698556423, + 0.0017946967855095863, + 0.04455798864364624, + -0.03541063517332077, + -0.01607859693467617, + 0.005280946847051382, + -0.0006575397565029562, + -0.04175248369574547, + 0.02748921327292919, + -0.0005341359646990895, + -0.007502952124923468, + 0.032935190945863724, + -0.016290778294205666, + -0.0008361990330740809, + 0.01745777204632759, + 0.00569352088496089, + 0.0035834996961057186, + 0.009748533368110657, + 0.05648726969957352, + -0.05983501300215721, + -0.0038133622147142887, + -0.02442437782883644, + -0.01451081596314907, + 0.011740676127374172, + -0.002329569309949875, + -0.03291161358356476, + 0.011451874859631062, + 0.004614934325218201, + 0.040479399263858795, + -0.001825639745220542, + -0.02408253215253353, + 0.0135677894577384, + 0.006406684406101704, + -0.016679776832461357, + -0.014817299321293831, + -0.0024592354893684387, + -0.0035540300887078047, + -0.0403379462659359, + -0.004620828200131655, + 0.006218079011887312, + -0.0006755898939445615, + -0.0005809188587591052, + 0.04816506430506706, + 0.0005182960303500295, + -0.025390980765223503, + 0.01902555301785469, + 0.03338312730193138, + -0.037296686321496964, + -0.007933207787573338, + 0.04866015166044235, + 0.028432240709662437, + 0.019567793235182762, + -0.03475051745772362, + 0.0224322360008955, + 0.0224676001816988, + -0.009931244887411594, + 0.03609432652592659, + 0.045453861355781555, + -0.021913571283221245, + 0.005658157169818878, + 0.004797645844519138, + -0.04731633886694908, + 0.028950905427336693, + -0.040196493268013, + 0.019001977518200874, + -0.04609040543437004, + -0.023127717897295952, + 0.02866799756884575, + 0.03701378032565117, + 0.013308457098901272, + 0.0223968718200922, + -0.03510415181517601, + 0.004750494379550219, + -0.0021910625509917736, + 0.04411005228757858, + -0.0027067798655480146, + -0.008546175435185432, + -0.014876238070428371, + -0.011145390570163727, + 0.01049116626381874, + -0.00032766477670520544, + -0.003256387310102582, + 0.004611987620592117, + -0.01418075617402792, + 0.013072701171040535, + 0.02250296249985695, + -0.02204323746263981, + 0.04196466505527496, + -0.04745779559016228, + -0.003159137675538659, + 0.005708255339413881, + 0.02859726920723915, + 0.009058945812284946, + -0.002255895407870412, + -0.009359534829854965, + 0.000014803853446210269, + -0.00924755074083805, + -0.016055021435022354, + 0.02595679648220539, + -0.06794504076242447, + -0.0012148829409852624, + 0.012271128594875336, + 0.005823186598718166, + -0.05554424226284027, + 0.0005997057305648923, + 0.026805520057678223, + -0.006194503512233496, + -0.013886060565710068, + -0.014487240463495255, + -0.020958757027983665, + 0.010208258405327797, + 0.05148923024535179, + -0.009778003208339214, + 0.01878979802131653, + 0.016184687614440918, + 0.02369353361427784, + 0.0043408675119280815, + -0.007673875894397497, + 0.03161495178937912, + 0.0025550115387886763, + -0.012836944311857224, + 0.018306495621800423, + -0.03500984609127045, + 0.006695486139506102, + 0.005177803337574005, + 0.020852666348218918, + 0.00031274580396711826, + -0.015088419429957867, + -0.012601187452673912, + -0.008174858056008816, + -0.017976436764001846, + -0.025084497407078743, + 0.006884091533720493, + -0.03111986443400383, + -0.003539295168593526, + 0.016208263114094734, + -0.03331239894032478, + -0.0269941259175539, + 0.01688016951084137, + -0.023056991398334503, + 0.0021984297782182693, + 0.029375266283750534, + 0.005720043554902077, + -0.004906683228909969, + 0.035811420530080795, + -0.022632628679275513, + 0.052809469401836395, + 0.019685672596096992, + 0.034774091094732285, + -0.030860532075166702, + 0.020204337313771248, + -0.02664048969745636, + 0.009618867188692093, + 0.023139504715800285, + -0.004164049867540598, + 0.026168977841734886, + -0.003362477757036686, + 0.009978395886719227, + 0.056251514703035355, + 0.03295876458287239, + -0.0008693523122929037, + 0.006035367492586374, + 0.00033632144914008677, + -0.008758355863392353, + 0.010243622586131096, + 0.03142634779214859, + 0.0007934681489132345, + 0.04429865628480911, + 0.011133602820336819, + 0.024023592472076416, + 0.009559928439557552, + 0.00016530585708096623, + -0.0063831084407866, + -0.007007863372564316, + 0.013933212496340275, + 0.02614540234208107, + 0.011781933717429638, + -0.036235783249139786, + 0.001681238878518343, + -0.0003545557556208223, + -0.009359534829854965, + -0.01349706295877695, + 0.025815341621637344, + 0.015265236608684063, + 0.03208646550774574, + -0.01033792458474636, + 0.01334382127970457, + 0.004903736058622599, + 0.008422402665019035, + 0.0022293729707598686, + -0.021253453567624092, + -0.031167015433311462, + -0.011363465338945389, + -0.012530460953712463, + -0.03515130281448364, + -0.0016090384451672435, + 0.025084497407078743, + 0.051347777247428894, + -0.007950889877974987, + -0.008021616376936436, + -0.0034862500615417957, + -0.0309312604367733, + -0.011127709411084652, + 0.03640080988407135, + -0.02449510619044304, + 0.00455599557608366, + 0.023493140935897827, + -0.009070733562111855, + 0.011646373197436333, + -0.011493131518363953, + 0.023599231615662575, + 0.010060911066830158, + -0.01573674939572811, + 0.013367396779358387, + -0.02859726920723915, + -0.017363470047712326, + 0.020003942772746086, + -0.014616906642913818, + 0.0024135576095432043, + 0.032982341945171356, + -0.012483309023082256, + -0.03074265457689762, + -0.009359534829854965, + 0.03819256275892258, + -0.009524564258754253, + 0.01975639909505844, + 0.0016974471509456635, + -0.012671914882957935, + -0.0013740186113864183, + 0.002849707379937172, + -0.06417293101549149, + -0.007326134946197271, + 0.0065363505855202675, + -0.021760329604148865, + 0.0007639985997229815, + -0.0011338416952639818, + -0.010025547817349434, + 0.011811403557658195, + 0.00524558313190937, + -0.022998051717877388, + -0.05262086167931557, + -0.005021614488214254, + 0.0026242651510983706, + -0.009442050009965897, + 0.007715133018791676, + -0.03111986443400383, + 0.018235769122838974, + 0.01756386272609234, + 0.0356699675321579, + 0.0077092391438782215, + -0.012530460953712463, + -0.019544217735528946, + -0.020357578992843628, + -0.025367405265569687, + -0.00536935543641448, + 0.012282916344702244, + 0.016208263114094734, + 0.0012937140418216586, + -0.0010970047442242503, + -0.011174860410392284, + 0.00042694038711488247, + -0.03533990681171417, + 0.028149332851171494, + 0.037108082324266434, + -0.05304522439837456, + -0.023092353716492653, + -0.0017652271781116724, + 0.011192542500793934, + 0.007166999392211437, + -0.038946982473134995, + -0.008834976702928543, + 0.008009828627109528, + -0.02602752298116684, + -0.0019052076386287808, + 0.023752473294734955, + -0.026899822056293488, + 0.01412181742489338, + 0.0035628709010779858, + 0.01672692783176899, + -0.004190572537481785, + -0.027913575991988182, + -0.023434201255440712, + 0.004178784787654877, + -0.013084488920867443, + 0.0009275546763092279, + -0.007102166302502155, + -0.0031915542203933, + 0.017634589225053787, + 0.018707282841205597, + 0.0232338085770607, + 0.03383106365799904, + 0.011145390570163727, + 0.009919457137584686, + 0.022479387000203133, + 0.04524168372154236, + -0.010626726783812046, + 0.023952865973114967, + 0.0048212213441729546, + -0.024471530690789223, + 0.011280951090157032, + 0.014852662570774555, + -0.01491160225123167, + 0.007473482750356197, + -0.008339888416230679, + -0.0047770170494914055, + -0.011911599896848202, + 0.017846770584583282, + -0.00987819954752922, + -0.021418482065200806, + -0.02418862283229828, + 0.00030961466836743057, + 0.014416513033211231, + -0.0464676171541214, + 0.015147358179092407, + 0.028007877990603447, + -0.003274069167673588, + 0.0050275083631277084, + -0.015241661109030247, + 0.013214155100286007, + 0.03031829185783863, + 0.000618124206084758, + 0.040785882622003555, + -0.009907669387757778, + -0.001194991054944694, + 0.06818079203367233, + 0.029563872143626213, + 0.012389007024466991, + 0.00949509534984827, + 0.03548135980963707, + 0.03548135980963707, + 0.01427505910396576, + -0.023646382614970207, + 0.001557466690428555, + -0.01669156365096569, + 0.012966610491275787, + -0.00622986676171422, + -0.010102168656885624, + -0.014404725283384323, + -0.00235461862757802, + -0.028007877990603447, + 0.012117886915802956, + 0.013084488920867443, + 0.012966610491275787, + -0.03229864686727524, + 0.031945012509822845, + -0.013791758567094803, + -0.003383106552064419, + 0.02565031312406063, + 0.01814146712422371, + -0.011481343768537045, + -0.01914343237876892, + -0.0037455821875482798, + 0.005336938891559839, + -0.0037102187052369118, + 0.017387045547366142, + -0.008434190414845943, + 0.009996077977120876, + -0.006730849388986826, + -0.006742637604475021, + 0.0026994124054908752, + -0.02534382976591587, + -0.015559932217001915, + 0.01568959839642048, + 0.012683702632784843, + -0.019850701093673706, + 0.0074852705001831055, + 0.003471515141427517, + -0.008516705594956875, + 0.046986281871795654, + 0.0042642466723918915, + -0.00799804087728262, + 0.0013003447093069553, + 0.009471519850194454, + -0.018707282841205597, + 0.021265240386128426, + 0.00493615260347724, + 0.00567583879455924, + -0.023139504715800285, + -0.013626729138195515, + -0.043308477848768234, + 0.00123403815086931, + -0.008911597542464733, + 0.008310418576002121, + -0.028314361348748207, + -0.014876238070428371, + -0.010750498622655869, + -0.00706090871244669, + 0.01573674939572811, + 0.008834976702928543, + -0.03288803994655609, + -0.028762299567461014, + 0.0014233802212402225, + -0.008817294612526894, + -0.006742637604475021, + -0.035080574452877045, + 0.0007525791297666728, + 0.010155213065445423, + -0.011840872466564178, + -0.0002709358523134142, + -0.010237728245556355, + 0.0092652328312397, + 0.0014624273171648383, + 0.010367394424974918, + -0.032369375228881836, + 0.007479376625269651, + -0.008499023504555225, + 0.04979178309440613, + -0.012495096772909164, + -0.04352065920829773, + -0.01817682944238186, + -0.01402751449495554, + -0.021418482065200806, + 0.029917506501078606, + 0.03269943222403526, + 0.002540276851505041, + 0.012471521273255348, + 0.035575661808252335, + -0.0018639502814039588, + -0.0027892948128283024, + 0.006666016299277544, + 0.019390976056456566, + 0.00861100759357214, + -0.016432231292128563, + -0.020451880991458893, + -0.010803543962538242, + -0.004691555164754391, + 0.0045589422807097435, + 0.019084492698311806, + -0.03871122747659683, + -0.030271140858530998, + 0.014086454175412655, + -0.021465634927153587, + -0.01634971611201763, + -0.015194510109722614, + 0.009512776508927345, + -0.02258547767996788, + 0.024400802329182625, + 0.015536356717348099, + -0.022597266361117363, + -0.03510415181517601, + 0.00007569995796075091, + 0.0034449927043169737, + -0.027890000492334366, + -0.01060315128415823, + 0.029351690784096718, + -0.006960712373256683, + 0.013791758567094803, + -0.0093182772397995, + 0.01669156365096569, + 0.010591363534331322, + 0.02694697305560112, + 0.020793728530406952, + 0.02423577383160591, + 0.021288815885782242, + 0.03498627245426178, + 0.03001180849969387, + -0.007066802587360144, + 0.033170945942401886, + -0.03920631483197212, + 0.017929285764694214, + -0.014840874820947647, + 0.01544205378741026, + 0.029351690784096718, + -0.0005706045194528997, + 0.033477429300546646, + 0.006960712373256683, + 0.007432225160300732, + -0.011534389108419418, + 0.00901768822222948, + 0.015866415575146675, + -0.03128489479422569, + -0.024094318971037865, + -0.021571723744273186, + 0.0003635807952377945, + -0.008805506862699986, + 0.03265228122472763, + -0.0039754449389874935, + -0.023681744933128357, + -0.008964642882347107, + -0.014286846853792667, + 0.00615324592217803, + -0.028337936848402023, + -0.00031182487145997584, + 0.00855796318501234, + -0.023056991398334503, + -0.058514777570962906, + -0.02461298368871212, + 0.0017416515620425344, + 0.017080562189221382, + -0.02744206227362156, + -0.016326140612363815, + 0.0009032422676682472, + -0.0034891969989985228, + -0.002182221505790949, + -0.0077858599834144115, + 0.0030044226441532373, + -0.03597645089030266, + -0.012836944311857224, + -0.01970924809575081, + 0.01940276473760605, + -0.0100314412266016, + -0.01142829842865467, + 0.0006225446704775095, + -0.03173283115029335, + 0.0023413572926074266, + 0.0035510831512510777, + -0.014499028213322163, + 0.008493130095303059, + 0.07308453321456909, + 0.023599231615662575, + -0.05860907956957817, + -0.0013961208751425147, + 0.029917506501078606, + -0.013980363495647907, + -0.024011805653572083, + 0.0027333025354892015, + 0.008799613453447819, + 0.022903749719262123, + -0.02442437782883644, + -0.014263271354138851, + -0.00042251995182596147, + 0.019992155954241753, + -0.004452852066606283, + -0.0006461202865466475, + -0.013119852170348167, + -0.005254424177110195, + 0.008451872505247593, + -0.006053049582988024, + 0.004998038988560438, + 0.007143423426896334, + -0.00028401296003721654, + 0.01184676680713892, + 0.01834185980260372, + 0.013249518349766731, + 0.0009260812075808644, + -0.00005880100070498884, + 0.023563867434859276, + 0.001807958004064858, + 0.01596071943640709, + 0.003297644667327404, + -0.029068782925605774, + 0.015948930755257607, + 0.02437722682952881, + 0.01106287632137537, + 0.007284877356141806, + -0.0325344055891037, + -0.023823199793696404, + -0.020227912813425064, + -0.022939112037420273, + 0.0024091373197734356, + 0.0018315337365493178, + 0.018778009340167046, + -0.03149707615375519, + -0.025367405265569687, + -0.006943030282855034, + -0.005985269322991371, + 0.007497058250010014, + -0.03482124209403992, + -0.003318273462355137, + 0.03951279819011688, + -0.00311493338085711, + -0.010944997891783714, + -0.02273871935904026, + 0.010791756212711334, + -0.008451872505247593, + -0.018389010801911354, + 0.007950889877974987, + -0.013933212496340275, + -0.014958753250539303, + 0.020994121208786964, + 0.0045206318609416485, + 0.021713178604841232, + 0.0005157174309715629, + 0.017705317586660385, + 0.0075618913397192955, + 0.014722996391355991, + 0.01645580679178238, + -0.014039302244782448, + 0.0008752461872063577, + -0.0005205062334425747, + 0.04154030606150627, + -0.017905710265040398, + -0.02871514856815338, + -0.0355992391705513, + -0.05375249311327934, + -0.01224755309522152, + -0.04460513964295387, + 0.022184692323207855, + 0.005837921518832445, + 0.022172903642058372, + 0.0050392961129546165, + 0.023740684613585472, + -0.004844797309488058, + 0.0009231342701241374, + 0.0023045202251523733, + 0.022267205640673637, + 0.003978391643613577, + -0.000572814722545445, + -0.047363489866256714, + -0.018954826518893242, + -0.003386053489521146, + 0.009624761529266834, + 0.011510813608765602, + -0.005454817321151495, + -0.009141460061073303, + 0.007113954052329063, + 0.006595289334654808, + -0.04998038709163666, + 0.0002620949817355722, + -0.011717100627720356, + 0.056864481419324875, + 0.03512772545218468, + 0.008434190414845943, + 0.014970541000366211, + -0.006135564297437668, + 0.016856594011187553, + -0.018801584839820862, + 0.01127505674958229, + -0.012129674665629864, + 0.002319255145266652, + -0.0263340063393116, + 0.0034891969989985228, + 0.008752461522817612, + 0.02958744764328003, + 0.041210245341062546, + -0.02342241257429123, + -0.005669944919645786, + -0.002102653728798032, + 0.0030044226441532373, + -0.037108082324266434, + 0.019013766199350357, + 0.002216111635789275, + -0.014852662570774555, + 0.01027898583561182, + -0.009884093888103962, + -0.04335562884807587, + 0.005669944919645786, + 0.028833026066422462, + 0.0012708752183243632, + -0.0325344055891037, + 0.01310806442052126, + 0.02224363014101982, + -0.016278989613056183, + 0.033854641020298004, + -0.028833026066422462, + -0.03269943222403526, + -0.011481343768537045, + 0.004606093745678663, + -0.051960743963718414, + 0.028196483850479126, + 0.033170945942401886, + 0.006931242533028126, + -0.025886069983243942, + 0.021795693784952164, + 0.028644420206546783, + 0.022479387000203133, + -0.030554048717021942, + -0.0019877224694937468, + -0.026051098480820656, + -0.006719061639159918, + -0.010768180713057518, + 0.00382220302708447, + 0.0008818768546916544, + 0.005451870150864124, + 0.037273108959198, + -0.008416509255766869, + -0.000794941617641598, + 0.0069783939979970455, + -0.0015471524093300104, + 0.01568959839642048, + -0.005776035599410534, + 0.008145389147102833, + 0.02484874054789543, + 0.04175248369574547, + 0.04677410051226616, + 0.01565423421561718, + -0.003176819533109665, + -0.030271140858530998, + -0.00321512995287776, + -0.0002037083904724568, + 0.021418482065200806, + -0.06370142102241516, + 0.03218076750636101, + -0.019956791773438454, + 0.030035383999347687, + -0.021559936925768852, + 0.003123774193227291, + 0.011227905750274658, + -0.016066808253526688, + 0.018247557803988457, + -0.013591364957392216, + 0.015347751788794994, + 0.05592145398259163, + 0.008133601397275925, + 0.01138704176992178, + 0.003940081223845482, + 0.020946970209479332, + 0.018282920122146606, + 0.005440082401037216, + -0.029068782925605774, + 0.0046355631202459335, + 0.011098239570856094, + 0.013202367350459099, + -0.025815341621637344, + 0.007326134946197271, + 0.030459746718406677, + -0.03512772545218468, + -0.0037337944377213717, + 0.027913575991988182, + 0.02270335517823696, + -0.037721049040555954, + -0.005333992186933756, + 0.008210222236812115 + ] + }, + { + "HotelId": "8", + "HotelName": "Foot Happy Suites", + "Description": "Downtown in the heart of the business district. Close to everything. Leave your car behind and walk to the park, shopping, and restaurants. Or grab one of our bikes and take your explorations a little further.", + "Description_fr": "Centre-ville au coeur du quartier des affaires. Proche de tout. Laissez votre voiture derriĆØre vous et marchez vers le parc, les magasins et les restaurants.", + "Category": "Suite", + "Tags": [ + "free wifi", + "continental breakfast", + "air conditioning" + ], + "ParkingIncluded": false, + "IsDeleted": false, + "LastRenovationDate": "2003-07-23T00:00:00Z", + "Rating": 4, + "Address": { + "StreetAddress": "7535 Dadeland Mall", + "City": "Miami", + "StateProvince": "FL", + "PostalCode": "33156", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -80.312546, + 25.689901 + ] + }, + "Rooms": [ + { + "Description": "Deluxe Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Deluxe, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower", + "suite" + ] + }, + { + "Description": "Suite, 1 King Bed (Mountain View)", + "Description_fr": "Suite, 1 trĆØs grand lit (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 248.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Standard, 1 grand lit (Services)", + "Type": "Standard Room", + "BaseRate": 114.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (City View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur la ville)", + "Type": "Budget Room", + "BaseRate": 85.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Double Beds (Amenities)", + "Description_fr": "Suite, 2 lits doubles (Services)", + "Type": "Suite", + "BaseRate": 240.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Services)", + "Type": "Deluxe Room", + "BaseRate": 154.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "tv" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Amenities)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (Services)", + "Type": "Budget Room", + "BaseRate": 80.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "coffee maker" + ] + }, + { + "Description": "Suite, 2 Double Beds (Mountain View)", + "Description_fr": "Suite, 2 lits doubles (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 268.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 140.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "vcr/dvd", + "jacuzzi tub", + "vcr/dvd" + ] + }, + { + "Description": "Suite, 1 Queen Bed (Waterfront View)", + "Description_fr": "Suite, 1 grand lit (vue sur le front de mer)", + "Type": "Suite", + "BaseRate": 267.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 153.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "suite" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 106.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Standard, 1 grand lit (vue sur le front de mer)", + "Type": "Standard Room", + "BaseRate": 118.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 152.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 96.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "tv" + ] + } + ], + "embedding": [ + -0.005456211976706982, + -0.07412741333246231, + 0.03402761369943619, + 0.020832277834415436, + -0.009966563433408737, + -0.032602984458208084, + -0.014783443883061409, + 0.009131637401878834, + 0.0037513282150030136, + -0.014923571608960629, + 0.01541401818394661, + 0.0069071147590875626, + -0.020762214437127113, + -0.031505316495895386, + -0.004186307080090046, + 0.05455628037452698, + -0.019115718081593513, + 0.005190553609281778, + 0.06600002199411392, + 0.051940567791461945, + 0.02251380681991577, + -0.0031003195326775312, + -0.011712318286299706, + -0.02643737569451332, + -0.00920170173048973, + 0.006282379850745201, + -0.025316355749964714, + -0.006124736741185188, + 0.01787792518734932, + -0.03764757141470909, + -0.010532911866903305, + -0.017364123836159706, + -0.00793471559882164, + 0.011192678473889828, + 0.013498942367732525, + 0.013790874741971493, + -0.001525345491245389, + -0.029940562322735786, + 0.055210210382938385, + 0.00998991820961237, + -0.019127395004034042, + 0.00460668932646513, + 0.05838643014431, + -0.011723995208740234, + -0.0026332279667258263, + -0.005748143885284662, + 0.007613590452820063, + 0.03300001099705696, + -0.0012939892476424575, + 0.03274311125278473, + -0.009908176958560944, + -0.029870497062802315, + -0.012576437555253506, + -0.07104460895061493, + -0.06810193508863449, + 0.026834404096007347, + 0.012237795628607273, + -0.05642464756965637, + 0.053762227296829224, + 0.02907644212245941, + 0.009516987949609756, + -0.004221338778734207, + 0.005762740503996611, + 0.07571552693843842, + -0.0383014976978302, + 0.04402336850762367, + -0.0215095616877079, + 0.03400425612926483, + -0.025316355749964714, + -0.0030302556697279215, + 0.02681104838848114, + -0.009587052278220654, + -0.024942683055996895, + -0.026297248899936676, + 0.010614653117954731, + 0.0049920398741960526, + 0.010381107218563557, + -0.018636949360370636, + -0.015612531453371048, + -0.00688375998288393, + -0.05507007986307144, + -0.024849265813827515, + -0.008033973164856434, + 0.04105733707547188, + -0.046265408396720886, + -0.032953303307294846, + -0.026016993448138237, + 0.012646500952541828, + 0.03664332255721092, + 0.010912423953413963, + 0.05899364873766899, + -0.029216570779681206, + -0.00660934392362833, + -0.01749257557094097, + 0.005567145999521017, + 0.05735883116722107, + -0.015519113279879093, + 0.002970409579575062, + 0.007502656430006027, + 0.017072191461920738, + 0.040543537586927414, + -0.07959238439798355, + 0.02442888170480728, + -0.011122615076601505, + 0.001920913578942418, + -0.02608705684542656, + -0.001201300765387714, + -0.0059495773166418076, + 0.013487265445291996, + -0.006971339695155621, + -0.11901490390300751, + -0.01795966550707817, + 0.011005842126905918, + 0.026577502489089966, + -0.024288754910230637, + 0.049558401107788086, + 0.022478776052594185, + -0.03491508588194847, + 0.004238855093717575, + -0.006352443713694811, + -0.026320602744817734, + 0.007771234028041363, + -0.02014331892132759, + -0.023179413750767708, + -0.029146505519747734, + -0.03183228150010109, + -0.014071130193769932, + 0.022198520600795746, + -0.006282379850745201, + 0.0001923103118315339, + -0.05446286126971245, + -0.03489173203706741, + -0.007695331703871489, + -0.0145966075360775, + -0.0015487000346183777, + 0.06296392530202866, + -0.026694275438785553, + 0.0032900753431022167, + -0.058059465140104294, + -0.03201911970973015, + 0.022035038098692894, + 0.008057327009737492, + 0.005342358257621527, + -0.021474529057741165, + -0.06501913070678711, + -0.015016989782452583, + 0.04259873926639557, + 0.014619962312281132, + 0.009470279328525066, + 0.0674947127699852, + 0.035895977169275284, + 0.0243354644626379, + -0.00103125034365803, + -0.0045920927077531815, + -0.0019340504659339786, + 0.013008496724069118, + -0.009341828525066376, + 0.025316355749964714, + -0.027838651090860367, + 0.03456476703286171, + -0.043276023119688034, + -0.022221876308321953, + -0.06427178531885147, + -0.025830157101154327, + 0.000514165498316288, + -0.010240979492664337, + -0.024942683055996895, + -0.015122085809707642, + -0.053855642676353455, + -0.01612633280456066, + 0.011957541108131409, + -0.015916140750050545, + -0.021906588226556778, + 0.08211467415094376, + 0.005934980697929859, + 0.015624209307134151, + -0.03538217768073082, + -0.008746287785470486, + 0.014514866285026073, + 0.005847400985658169, + 0.015425695106387138, + -0.029309988021850586, + 0.04203822836279869, + -0.003050690982490778, + 0.031972408294677734, + 0.02881954237818718, + -0.0011290475958958268, + 0.032883238047361374, + -0.022864125669002533, + 0.018987268209457397, + -0.02344799041748047, + 0.02709130384027958, + -0.044000014662742615, + -0.022093424573540688, + -0.009435247629880905, + 0.028515933081507683, + -0.03180892765522003, + 0.013440556824207306, + 0.009295119903981686, + 0.03444799408316612, + 0.01595117338001728, + 0.010293527506291866, + 0.04416349530220032, + -0.013113592751324177, + -0.040356699377298355, + -0.028329096734523773, + -0.02278238534927368, + -0.011677286587655544, + 0.011723995208740234, + -0.03767092525959015, + -0.017212320119142532, + -0.006259025540202856, + -0.02352973073720932, + 0.045191098004579544, + -0.005321923177689314, + -0.004711784888058901, + -0.021743107587099075, + 0.06263696402311325, + 0.04507432505488396, + 0.03839491680264473, + 0.012377923354506493, + 0.005462050437927246, + 0.03166880086064339, + 0.05025903880596161, + 0.021638011559844017, + 0.05838643014431, + -0.02872612327337265, + -0.07604248821735382, + 0.03799789026379585, + -0.027044594287872314, + -0.004644640721380711, + -0.01285669207572937, + -0.02270064502954483, + -0.020820600911974907, + -0.015997882932424545, + 0.04367304965853691, + 0.03108493611216545, + -0.0126348240301013, + -0.009067412465810776, + -0.003990712575614452, + -0.022105103358626366, + -0.056938447058200836, + 0.04666243493556976, + -0.010690555907785892, + 0.018893849104642868, + -0.00453954515978694, + -0.015752658247947693, + -0.02263057976961136, + -0.0007758096908219159, + 0.03591933101415634, + 0.012611469253897667, + -0.028936315327882767, + -0.03344374895095825, + -0.002193870022892952, + 0.025293001905083656, + 0.013802552595734596, + 0.004755574744194746, + -0.0006630509160459042, + 0.04761997237801552, + 0.03454141318798065, + 0.015705950558185577, + 0.00935350637882948, + 0.04677920788526535, + -0.05507007986307144, + 0.00747346319258213, + -0.012903401628136635, + 0.01769108884036541, + -0.013066883198916912, + -0.04769003763794899, + -0.05371551588177681, + -0.01613800972700119, + -0.01897558942437172, + -0.044350333511829376, + -0.012331213802099228, + -0.02334289439022541, + -0.0038914557080715895, + -0.02653079479932785, + 0.005920384079217911, + 0.04731636494398117, + -0.00005304954538587481, + 0.0021179676987230778, + 0.002555866027250886, + 0.03904884308576584, + -0.017621025443077087, + -0.01924416795372963, + 0.005511679220944643, + 0.02470913715660572, + 0.042365193367004395, + -0.06501913070678711, + 0.01440977118909359, + 0.006323250476270914, + 0.022817417979240417, + -0.03729725256562233, + -0.06492570787668228, + 0.0007192478515207767, + -0.00993737019598484, + -0.005278133321553469, + -0.07622932642698288, + 0.013475588522851467, + -0.01454989891499281, + 0.061889614909887314, + 0.04486413300037384, + -0.03673674166202545, + -0.01822824403643608, + 0.01868365705013275, + 0.04913802072405815, + -0.03073461726307869, + 0.058059465140104294, + 0.002093153540045023, + -0.01724735088646412, + -0.04416349530220032, + 0.026974530890583992, + 0.010357752442359924, + -0.01823992095887661, + 0.00002499669062672183, + 0.04383653402328491, + 0.014141193591058254, + -0.02744162268936634, + -0.0037396508269011974, + -0.012938433326780796, + -0.027862004935741425, + 0.005718951113522053, + -0.011367837898433208, + -0.015507436357438564, + 0.029683660715818405, + -0.02618047595024109, + -0.015180472284555435, + -0.01140286959707737, + -0.060768596827983856, + -0.0024376334622502327, + 0.018380047753453255, + 0.012436309829354286, + -0.012961787171661854, + 0.00038863468216732144, + -0.006930469535291195, + 0.007882168516516685, + -0.03292994573712349, + -0.05861997604370117, + 0.04110404849052429, + 0.045167744159698486, + 0.03951593488454819, + -0.009341828525066376, + 0.005555469077080488, + -0.037250541150569916, + -0.01734076999127865, + -0.03622294217348099, + -0.015542468056082726, + -0.001061903196386993, + 0.006253186613321304, + 0.013942679390311241, + -0.026834404096007347, + -0.04012315347790718, + -0.01722399704158306, + -0.02288748137652874, + 0.012284505181014538, + 0.04565818980336189, + 0.006007963791489601, + 0.013417202048003674, + 0.002030388219282031, + 0.014526544138789177, + 0.046732500195503235, + -0.019547777250409126, + 0.008792996406555176, + 0.005447453819215298, + 0.027418266981840134, + 0.03554565832018852, + -0.03008068911731243, + 0.014666671864688396, + -0.03528875857591629, + 0.03409767523407936, + 0.020003190264105797, + -0.002977707888931036, + 0.02442888170480728, + 0.030407652258872986, + -0.03981954604387283, + 0.05483653396368027, + -0.0008641191525384784, + 0.044653940945863724, + 0.015519113279879093, + -0.015904463827610016, + -0.0016771502560004592, + 0.021451175212860107, + -0.0020055738277733326, + -0.0007203425629995763, + 0.05787263065576553, + 0.013417202048003674, + 0.0043176766484975815, + -0.02059873193502426, + -0.0359426885843277, + -0.01925584487617016, + 0.005704354494810104, + -0.07707008719444275, + -0.046008508652448654, + -0.04607857018709183, + -0.03089809976518154, + -0.03946922719478607, + 0.051286641508340836, + 0.03393419459462166, + -0.02580680325627327, + -0.011105098761618137, + 0.016067946329712868, + -0.034144382923841476, + 0.012249473482370377, + -0.032346080988645554, + 0.021112533286213875, + 0.01266985572874546, + -0.01925584487617016, + -0.02818896807730198, + -0.02973037026822567, + 0.01354565192013979, + 0.04185139387845993, + -0.03257962688803673, + 0.03134183585643768, + 0.015262212604284286, + 0.0196995809674263, + 0.038161370903253555, + 0.01905733160674572, + -0.013078560121357441, + 0.01595117338001728, + 0.040076445788145065, + 0.023401280865073204, + 0.019851386547088623, + -0.046195343136787415, + 0.022665612399578094, + -0.022198520600795746, + 0.030220815911889076, + 0.0403333455324173, + 0.008641191758215427, + -0.045915089547634125, + -0.0073683676309883595, + 0.0362696498632431, + -0.016441619023680687, + -0.015554144978523254, + 0.04743313789367676, + -0.040006380528211594, + 0.02187155745923519, + 0.001453822129406035, + -0.028866251930594444, + -0.02117091976106167, + -0.0028988863341510296, + -0.003906052326783538, + -0.01578769087791443, + 0.0037075383588671684, + 0.05983441323041916, + -0.01778450608253479, + -0.01823992095887661, + 0.03127177059650421, + 0.029193215072155, + -0.032322727143764496, + -0.04038005694746971, + 0.033140137791633606, + 0.00920170173048973, + -0.03463483229279518, + -0.007099790032953024, + 0.0016610939055681229, + 0.07903186976909637, + 0.020820600911974907, + -0.019209135323762894, + 0.011064228601753712, + 0.0029631112702190876, + 0.02169639803469181, + 0.024942683055996895, + -0.0012677153572440147, + 0.02916986122727394, + 0.0026069541927427053, + -0.019033975899219513, + 0.0038184726145118475, + 0.009417731314897537, + 0.025059456005692482, + -0.023564763367176056, + 0.0010575242340564728, + -0.003873939625918865, + 0.027511686086654663, + 0.008682061918079853, + -0.03755415230989456, + -0.06478558480739594, + -0.037250541150569916, + 0.07837794721126556, + -0.007333335932344198, + -0.016616778448224068, + -0.005409502889961004, + -0.028936315327882767, + -0.033420391380786896, + 0.0008115713717415929, + -0.013709133490920067, + -0.03082803636789322, + 0.011046712286770344, + 0.0518004409968853, + -0.06273037940263748, + -0.035055212676525116, + -0.052828043699264526, + 0.008483548648655415, + -0.01048036478459835, + -0.009867306798696518, + -0.01722399704158306, + -0.002767516765743494, + -0.050118912011384964, + -0.025666674599051476, + 0.012459664605557919, + 0.031225062906742096, + 0.03173886239528656, + -0.008833866566419601, + 0.019582808017730713, + -0.01785457134246826, + 0.0022493372671306133, + 0.046639081090688705, + -0.009686308912932873, + -0.013557328842580318, + 0.045728251338005066, + -0.022665612399578094, + -0.022373680025339127, + -0.02561996504664421, + -0.012506373226642609, + 0.030851390212774277, + 0.004808122757822275, + 0.009149153716862202, + 0.0066443756222724915, + 0.018940558657050133, + -0.00826167967170477, + -0.007485140580683947, + -0.03540553152561188, + 0.031201709061861038, + -0.003871020395308733, + 0.03918897360563278, + 0.033326976001262665, + 0.008279195986688137, + 0.007946393452584743, + -0.0486709289252758, + -0.024288754910230637, + 0.0019296715036034584, + 0.0022201440297067165, + 0.023588117212057114, + -0.00892728567123413, + 0.013277074322104454, + 0.018671980127692223, + 0.01741083338856697, + 0.01715393364429474, + 0.03876858949661255, + 0.02552654780447483, + 0.005698515567928553, + 0.003278398187831044, + 0.03365393728017807, + 0.006790341809391975, + -0.027371559292078018, + -0.015565822832286358, + -0.02023673616349697, + -0.03741402551531792, + 0.0004258560365997255, + 0.021906588226556778, + 0.029146505519747734, + 0.03227601945400238, + 0.02242038957774639, + -0.028889605775475502, + 0.001920913578942418, + 0.010515396483242512, + -0.022362003102898598, + -0.025923574343323708, + -0.03636306896805763, + 0.005351116415113211, + 0.01870701275765896, + -0.017364123836159706, + 0.005929142236709595, + 0.04073037579655647, + -0.002698912750929594, + 0.02718472294509411, + 0.01604459062218666, + 0.020645441487431526, + 0.027021240442991257, + -0.020902343094348907, + -0.012085990980267525, + 0.004291402641683817, + 0.023845018818974495, + -0.044653940945863724, + 0.015740981325507164, + -0.019746290519833565, + 0.01825159788131714, + 0.013779197819530964, + -0.009651277214288712, + -0.02671763114631176, + 0.015916140750050545, + 0.006148091051727533, + -0.006942146457731724, + 0.016803614795207977, + 0.00806316640228033, + -0.01652335934340954, + 0.0022084666416049004, + 0.03855839744210243, + -0.01952442154288292, + -0.008267518132925034, + 0.0009480496519245207, + -0.0008962317369878292, + 0.023751599714159966, + 0.019652873277664185, + -0.00695382384583354, + -0.03402761369943619, + -0.011274419724941254, + -0.004954088479280472, + 0.016616778448224068, + -0.046265408396720886, + 0.007467624265700579, + -0.040520183742046356, + -0.02580680325627327, + -0.011829091235995293, + -0.0022157649509608746, + -0.03535882383584976, + -0.03538217768073082, + 0.003222930943593383, + 0.010427816770970821, + 0.0023237799759954214, + -0.007292465306818485, + 0.041337594389915466, + -0.02489597350358963, + -0.009622083976864815, + -0.004136678762733936, + -0.04402336850762367, + 0.0260637030005455, + -0.026927821338176727, + -0.00565764494240284, + 0.023763276636600494, + -0.022922512143850327, + 0.015647564083337784, + -0.003471073228865862, + 0.013487265445291996, + 0.0014012743486091495, + 0.024685783311724663, + -0.0015691353473812342, + 0.0280955508351326, + -0.04918472841382027, + -0.028375806286931038, + -0.03199576586484909, + -0.011000003665685654, + 0.04168791323900223, + 0.057498957961797714, + -0.012950110249221325, + 0.01667516492307186, + 0.013393847271800041, + -0.015472403727471828, + 0.01422293484210968, + -0.02324947714805603, + -0.0030477717518806458, + -0.040987275540828705, + 0.01217940915375948, + 0.005473727826029062, + 0.0012611468555405736, + 0.021743107587099075, + 0.014421448111534119, + 0.006807857658714056, + 0.03134183585643768, + -0.030711263418197632, + -0.013160301372408867, + 0.00631741201505065, + 0.024942683055996895, + 0.04603186249732971, + 0.013557328842580318, + -0.022747352719306946, + -0.0006032048258930445, + -0.008565288968384266, + -0.008028133772313595, + -0.017749475315213203, + 0.06221657991409302, + 0.02454565465450287, + 0.021019114181399345, + -0.02454565465450287, + -0.004063695669174194, + -0.025853510946035385, + 0.01650000549852848, + 0.051286641508340836, + 0.01593949645757675, + -0.005132167134433985, + 0.06352443993091583, + 0.03428451344370842, + 0.02772187814116478, + -0.004019905813038349, + -0.006807857658714056, + -0.011653931811451912, + 0.044350333511829376, + -0.0013377791037783027, + -0.019197458401322365, + 0.012237795628607273, + -0.02097240649163723, + 0.010030788369476795, + -0.0002634687698446214, + -0.0426921583712101, + -0.00947611778974533, + -0.005456211976706982, + -0.029496824368834496, + 0.023728245869278908, + 0.07291297614574432, + 0.021112533286213875, + -0.011957541108131409, + -0.022572193294763565, + -0.026484085246920586, + 0.057031866163015366, + 0.0007112197345122695, + -0.019863063469529152, + -0.05553717166185379, + -0.003021497745066881, + -0.013253719545900822, + -0.004732220433652401, + -0.04979194700717926, + -0.03218260034918785, + -0.008045650087296963, + -0.004338111728429794, + -0.02379830926656723, + 0.0011545916786417365, + -0.008658708073198795, + 0.005497082602232695, + -0.00526353670284152, + 0.028375806286931038, + -0.04542464390397072, + 0.0315520279109478, + -0.012191087007522583, + 0.025783447548747063, + -0.019092362374067307, + -0.004869428463280201, + -0.00676698749884963, + -0.02042357437312603, + 0.03365393728017807, + -0.027791941538453102, + -0.03785776346921921, + 0.009984079748392105, + 0.02797877788543701, + -0.018263274803757668, + -0.007216562982648611, + -0.009721340611577034, + 0.0024040613789111376, + 0.028048841282725334, + -0.005724789574742317, + -0.018485143780708313, + 0.03302336484193802, + 0.0346815399825573, + 0.037974536418914795, + -0.003441879991441965, + 0.018636949360370636, + -0.0010348994983360171, + -0.027558395639061928, + 0.004752655513584614, + 0.010889069177210331, + -0.07076435536146164, + -0.037063706666231155, + -0.0010509557323530316, + -0.006183123216032982, + -0.011361999437212944, + -0.019816353917121887, + 0.01549575850367546, + -0.021089179441332817, + 0.010673039592802525, + -0.027324849739670753, + -0.10219960659742355, + 0.0052664559334516525, + 0.028142260387539864, + 0.008086520247161388, + -0.027558395639061928, + -0.010059981606900692, + 0.030033979564905167, + -0.03180892765522003, + -0.006708601024001837, + 0.0037746827583760023, + -0.0005696326261386275, + 0.0008210591622628272, + 0.028609350323677063, + -0.02414862811565399, + -0.0029660307336598635, + 0.016301492229104042, + 0.0214278195053339, + -0.012950110249221325, + 0.0587133951485157, + 0.05072613060474396, + -0.02061041072010994, + 0.011922509409487247, + 0.027791941538453102, + 0.01495860330760479, + 0.017761152237653732, + -0.029146505519747734, + 0.05946074053645134, + -0.013685779646039009, + -0.03036094456911087, + 0.011537158861756325, + 0.00283904024399817, + -0.017364123836159706, + 0.011735672131180763, + -0.004238855093717575, + -0.008197454735636711, + -0.003450638148933649, + -0.009014864452183247, + 0.001666932599619031, + -0.00793471559882164, + -0.007940554991364479, + 0.0260637030005455, + 0.01723567396402359, + 0.004647559951990843, + -0.047199591994285583, + -0.007870490662753582, + -0.013627393171191216, + 0.024101918563246727, + 0.01285669207572937, + 0.005552549380809069, + -0.033677294850349426, + -0.00002495107582944911, + -0.01354565192013979, + 0.010386945679783821, + -0.008331744000315666, + 0.0015472404193133116, + 0.01048036478459835, + 0.04680256173014641, + 0.026133766397833824, + -0.028585996478796005, + -0.010240979492664337, + -0.01285669207572937, + -0.030524425208568573, + 0.01759766973555088, + -0.002193870022892952, + 0.014421448111534119, + -0.01266985572874546, + -0.020481958985328674, + -0.023646503686904907, + -0.0337473563849926, + 0.029870497062802315, + -0.0439533032476902, + 0.004600850865244865, + -0.019629517570137978, + 0.000460887880763039, + -0.048110418021678925, + 0.00731581961736083, + -0.010200109332799911, + 0.014304675161838531, + 0.012226118706166744, + 0.007251594681292772, + -0.006037157028913498, + -0.0450509712100029, + -0.04168791323900223, + 0.0038243113085627556, + 0.00686624413356185, + 0.011379515752196312, + 0.02007325552403927, + -0.012821660377085209, + 0.01585775427520275, + 0.03321020305156708, + -0.003190818475559354, + 0.03711041435599327, + 0.023179413750767708, + 0.024498946964740753, + -0.03575585037469864, + -0.034611474722623825, + -0.02170807495713234, + 0.016289813444018364, + 0.03271975740790367, + -0.012121022678911686, + -0.012074314057826996, + -0.009260088205337524, + 0.0002525213058106601, + 0.06165607273578644, + -0.0025354307144880295, + -0.009709663689136505, + -0.039632707834243774, + -0.001102043897844851, + -0.010836521163582802, + -0.024639073759317398, + -0.010877392254769802, + -0.05563059076666832, + 0.011192678473889828, + -0.024475591257214546, + 0.01788960210978985, + 0.0012458204291760921, + -0.020446928218007088, + 0.024125272408127785, + 0.023015931248664856, + 0.019536100327968597, + 0.009499472565948963, + 0.009055735543370247, + 0.0026025751139968634, + -0.01426964346319437, + -0.007479301653802395, + 0.02270064502954483, + -0.012985141947865486, + 0.0062239933758974075, + -0.01422293484210968, + 0.015028667636215687, + 0.007146499119699001, + -0.01734076999127865, + 0.06212316080927849, + 0.017107224091887474, + 0.0361061692237854, + 0.004714704118669033, + -0.055490463972091675, + 0.0036053620278835297, + -0.03591933101415634, + 0.02653079479932785, + 0.0006739983800798655, + -0.006656053010374308, + 0.022326970472931862, + 0.006469216663390398, + 0.01804140768945217, + 0.0032813174184411764, + -0.02251380681991577, + 0.03832485154271126, + 0.009785565547645092, + 0.05983441323041916, + -0.01804140768945217, + 0.021929943934082985, + -0.0039002136327326298, + -0.012553082779049873, + -0.015589176677167416, + 0.011408708989620209, + -0.03019746206700802, + -0.024218691512942314, + -0.021135887131094933, + 0.010883230715990067, + -0.00043388415360823274, + 0.037811052054166794, + 0.004919056780636311, + -0.02351805381476879, + 0.01053875032812357, + 0.0019413487752899528, + 0.011653931811451912, + 0.021100856363773346, + -0.02114756591618061, + -0.002055202377960086, + -0.0368768684566021, + 0.014795121736824512, + 0.013884292915463448, + 0.04540129005908966, + -0.02052866853773594, + 0.009446924552321434, + 0.009464440867304802, + 0.005502921063452959, + -0.036713387817144394, + 0.04283228516578674, + 0.011502127163112164, + -0.01996815949678421, + 0.004449046216905117, + 0.02753503993153572, + 0.0012896102853119373, + 0.01053875032812357, + 0.06389810889959335, + -0.0014676889404654503, + 0.038535043597221375, + 0.03183228150010109, + 0.029029732570052147, + 0.025596611201763153, + -0.04283228516578674, + 0.014071130193769932, + 0.026554148644208908, + -0.03521869331598282, + 0.019174104556441307, + -0.028562642633914948, + -0.0051613603718578815, + -0.01795966550707817, + -0.021007437258958817, + -0.010048304684460163, + 0.004945330787450075, + 0.014993635006248951, + -0.015705950558185577, + 0.006626859772950411, + -0.02454565465450287, + 0.0414310097694397, + -0.02152123861014843, + 0.01940765045583248, + 0.00011914481001440436, + 0.005894110072404146, + 0.0154607268050313, + 0.01163057703524828, + 0.02079724706709385, + 0.0052664559334516525, + 0.0186019167304039, + 0.01185244508087635, + 0.021311046555638313, + 0.047199591994285583, + 0.018987268209457397, + -0.026040347293019295, + -0.02059873193502426, + 0.07338006794452667, + -0.04570489749312401, + 0.014818476513028145, + -0.0156942717730999, + -0.018088115379214287, + 0.0140477754175663, + -0.01585775427520275, + 0.014561575837433338, + -0.013895970769226551, + -0.014865185134112835, + 0.024779200553894043, + 0.01213270053267479, + 0.0157760139554739, + 0.011799897998571396, + -0.007502656430006027, + -0.018847139552235603, + 0.03584926947951317, + 0.008682061918079853, + -0.011227710172533989, + 0.032229308038949966, + 0.006761148571968079, + 0.005610935855656862, + 0.005009555723518133, + -0.0044548846781253815, + 0.024779200553894043, + -0.01979300007224083, + 0.01254140492528677, + 0.032322727143764496, + 0.03851168975234032, + -0.06128239631652832, + 0.028329096734523773, + -0.04042676463723183, + 0.04771339148283005, + -0.0035966041032224894, + 0.04416349530220032, + 0.023483023047447205, + 0.02608705684542656, + -0.024662427604198456, + -0.010602976195514202, + 0.021626334637403488, + 0.008133229799568653, + 0.005794853437691927, + -0.0011399950599297881, + 0.0039702774956822395, + -0.0003629081475082785, + 0.009009025990962982, + -0.018485143780708313, + -0.021778138354420662, + 0.015238858759403229, + -0.01268153265118599, + -0.01268153265118599, + -0.0033134298864752054, + -0.016278136521577835, + 0.010340237058699131, + -0.05642464756965637, + 0.02599363960325718, + -0.0002683951170183718, + 0.008454355411231518, + -0.01094161719083786, + 0.010462848469614983, + 0.008845544420182705, + -0.018380047753453255, + 0.023833341896533966, + 0.01651168242096901, + -0.040263283997774124, + -0.003725054208189249, + -0.03841827064752579, + -0.02014331892132759, + 0.022385356947779655, + -0.03760085999965668, + -0.00852441880851984, + 0.00460668932646513, + -0.013942679390311241, + -0.04640553519129753, + 0.02781529538333416, + 0.01057962141931057, + -0.017912957817316055, + 0.006042995490133762, + 0.011595545336604118, + -0.012483018450438976, + -0.009230894967913628, + -0.0326496921479702, + 0.010007434524595737, + -0.023144381120800972, + -0.00035980637767352164, + -0.03568578511476517, + 0.0019851387478411198, + 0.023226121440529823, + 0.014783443883061409, + 0.002957272808998823, + 0.023471344262361526, + -0.006720278412103653, + -0.049278147518634796, + 0.004165872000157833, + -0.0018902607262134552, + -0.005114651285111904, + 0.025479838252067566, + 0.013312106020748615, + 0.019746290519833565, + 0.01778450608253479, + 0.04257538542151451, + 0.0036082814913243055, + -0.006340766325592995, + 0.01612633280456066, + -0.03227601945400238, + -0.029987270012497902, + 0.00006801106792408973, + 0.003584926947951317, + 0.016348199918866158, + 0.020820600911974907, + 0.005546710919588804, + -0.04829725623130798, + 0.021030792966485023, + -0.006807857658714056, + -0.010894907638430595, + 0.033163491636514664, + -0.028842896223068237, + 0.011502127163112164, + -0.018088115379214287, + 0.014666671864688396, + -0.019851386547088623, + -0.017527606338262558, + 0.005692677106708288, + -0.007683654315769672, + -0.007269110530614853, + -0.017457542940974236, + 0.04094056412577629, + 0.005491243675351143, + 0.02818896807730198, + -0.016079623252153397, + 0.004752655513584614, + -0.025830157101154327, + 0.0009823517175391316, + 0.01777282916009426, + 0.003984874114394188, + 0.017842892557382584, + 0.019209135323762894, + 0.02828238718211651, + 0.017445866018533707, + 0.04320595785975456, + 0.033140137791633606, + 0.006615182384848595, + -0.011373676359653473, + 0.0326496921479702, + -0.003730892902240157, + 0.03718047961592674, + 0.013253719545900822, + -0.0040753730572760105, + 0.041711267083883286, + 0.012973465025424957, + -0.0260637030005455, + 0.008051488548517227, + 0.004431529901921749, + 0.012004249729216099, + -0.0070530809462070465, + -0.07931213080883026, + -0.00711146742105484, + 0.024218691512942314, + -0.001668392214924097, + 0.019185781478881836, + -0.05544375628232956, + -0.048110418021678925, + -0.030057335272431374, + -0.017364123836159706, + -0.036690033972263336, + 0.008069004863500595, + 0.020271768793463707, + -0.0035644916351884604, + 0.004524948541074991, + -0.030057335272431374, + 0.015927817672491074, + 0.0005470078904181719, + 0.00041235415847040713, + -0.01230785995721817, + 0.000005502236945176264, + 0.010737264528870583, + 0.051193222403526306, + 0.02061041072010994, + -0.01676858216524124, + 0.0024668266996741295, + 0.005894110072404146, + -0.006761148571968079, + 0.006206477526575327, + -0.02828238718211651, + -0.025783447548747063, + 0.024779200553894043, + -0.028375806286931038, + -0.01823992095887661, + -0.0073274970054626465, + 0.0010816085850819945, + -0.022093424573540688, + 0.008973994292318821, + 0.021030792966485023, + -0.013113592751324177, + -0.006188961677253246, + -0.026484085246920586, + 0.011163485236465931, + 0.01426964346319437, + 0.008290872909128666, + 0.006007963791489601, + -0.02132272534072399, + -0.0018347935983911157, + 0.011198517866432667, + 0.0063699595630168915, + -0.006025479640811682, + -0.010900747030973434, + -0.01029936596751213, + 0.0154607268050313, + -0.0032813174184411764, + 0.00017953827045857906, + 0.02253716252744198, + -0.024966036900877953, + -0.025690030306577682, + -0.029123151674866676, + 0.01112845353782177, + -0.0209607295691967, + -0.02725478634238243, + 0.026951177045702934, + 0.002376327756792307, + -0.03143525496125221, + 0.02480255626142025, + 0.021906588226556778, + 0.004586254246532917, + -0.01176486536860466, + -0.024732492864131927, + -0.003798037301748991, + 0.029707016423344612, + 0.02071550488471985, + -0.011110938154160976, + 0.0067494711838662624, + -0.031248418614268303, + -0.02790871448814869, + 0.006860405672341585, + -0.008378452621400356, + 0.015227180905640125, + -0.0326496921479702, + 0.01185828447341919, + -0.026670921593904495, + 0.024218691512942314, + 0.009867306798696518, + 0.01976964622735977, + -0.05698515474796295, + -0.03162208944559097, + 0.00885138288140297, + 0.009260088205337524, + 0.006802019197493792, + 0.004916137550026178, + -0.01895223557949066, + -0.014923571608960629, + -0.04348621517419815, + 0.023739922791719437, + 0.03657326102256775, + -0.01578769087791443, + 0.02390340529382229, + -0.028212323784828186, + -0.014117838814854622, + 0.008033973164856434, + 0.00938853807747364, + 0.005809450056403875, + -0.009207540191709995, + -0.015752658247947693, + -0.03928238898515701, + 0.005386148113757372, + 0.009464440867304802, + 0.05861997604370117, + -0.00912579894065857, + -0.011221871711313725, + 0.006942146457731724, + 0.01640658639371395, + 0.02954353392124176, + 0.02536306530237198, + 0.01652335934340954, + 0.022385356947779655, + -0.013639070093631744, + 0.005219746846705675, + -0.01758599281311035, + 0.0054211802780628204, + 0.04185139387845993, + -0.030594490468502045, + -0.0051380060613155365, + -0.0010852577397599816, + 0.00485191261395812, + 0.014012743718922138, + -0.03456476703286171, + -0.013604038394987583, + 0.0072632720693945885, + 0.004930734168738127, + 0.012039282359182835, + 0.009230894967913628, + 0.004781848751008511, + 0.008629514835774899, + -0.01852017641067505, + -0.033700648695230484, + 0.005634290631860495, + -0.013428878970444202, + 0.011367837898433208, + 0.013066883198916912, + -0.0064108301885426044, + -0.011881638318300247, + 0.006784503348171711, + 0.0404968298971653, + 0.009756372310221195, + -0.0037104575894773006, + 0.027605105191469193, + -0.001385218114592135, + 0.00610722042620182, + 0.006002124864608049, + 0.004247612785547972, + -0.015904463827610016, + 0.016453295946121216, + -0.009855629876255989, + 0.017527606338262558, + -0.007782911416143179, + 0.0215095616877079, + 0.028609350323677063, + -0.017270706593990326, + -0.003272559493780136, + -0.016254782676696777, + 0.03236943855881691, + -0.0383014976978302, + 0.06245012581348419, + 0.003973196726292372, + -0.027208076789975166, + -0.00469426903873682, + 0.00888641458004713, + -0.010649684816598892, + -0.014900216832756996, + 0.009779727086424828, + -0.00660934392362833, + -0.05801275745034218, + -0.017130577936768532, + -0.020084932446479797, + 0.033700648695230484, + -0.003660829272121191, + 0.020108286291360855, + -0.02125266008079052, + -0.00907325092703104, + -0.01144374068826437, + -0.05030575022101402, + -0.01950106769800186, + 0.00754352705553174, + 0.003798037301748991, + 0.01724735088646412, + -0.012553082779049873, + -0.023015931248664856, + -0.0060546728782355785, + -0.006013802252709866, + -0.005377390421926975, + -0.014526544138789177, + 0.008641191758215427, + -0.0020026545971632004, + 0.008501064032316208, + -0.008314227685332298, + -0.0045599802397191525, + 0.018730366602540016, + -0.022723998874425888, + 0.013510620221495628, + 0.008156584575772285, + -0.014071130193769932, + 0.004507432226091623, + 0.040613602846860886, + 0.045634835958480835, + -0.04038005694746971, + -0.02042357437312603, + 0.008903930895030499, + 0.002068339381366968, + -0.021731428802013397, + 0.00788800697773695, + -0.01477176696062088, + 0.05095967650413513, + 0.024825910106301308, + -0.0007758096908219159, + 0.010322720743715763, + 0.025106165558099747, + -0.021848201751708984, + 0.00830255076289177, + -0.011595545336604118, + -0.013066883198916912, + 0.011548835784196854, + -0.007619429379701614, + -0.02062208764255047, + -0.021941620856523514, + -0.021591302007436752, + 0.015927817672491074, + 0.014351384714245796, + -0.008728771470487118, + -0.02898302488029003, + -0.024966036900877953, + 0.009429408237338066, + -0.031972408294677734, + 0.012249473482370377, + -0.010159239172935486, + -0.025783447548747063, + 0.038254790008068085, + 0.02790871448814869, + -0.022677289322018623, + -0.002100451849400997, + -0.039422519505023956, + -0.02772187814116478, + 0.00574522465467453, + -0.04446710646152496, + -0.017527606338262558, + 0.01440977118909359, + 0.01668684184551239, + -0.01631316915154457, + 0.0006250996957533062, + -0.016838647425174713, + -0.015063699334859848, + 0.01007749792188406, + -0.03458812087774277, + -0.011928347870707512, + 0.003964438568800688, + -0.01390764769166708, + -0.01696709729731083, + 0.01235456857830286, + 0.0011042333208024502, + -0.01194002479314804, + -0.030150752514600754, + -0.00419214554131031, + 0.0014822855591773987, + 0.018987268209457397, + -0.013323783874511719, + 0.017656056210398674, + -0.009038219228386879, + -0.002026009140536189, + 0.027955422177910805, + -0.016196396201848984, + 0.036339715123176575, + -0.01053875032812357, + 0.0028550964780151844, + -0.02571338415145874, + -0.007070596795529127, + 0.04005309194326401, + -0.00907325092703104, + -0.031131645664572716, + 0.002865314017981291, + -0.035522304475307465, + 0.010445332154631615, + 0.009254248812794685, + 0.02307431772351265, + -0.0020347670651972294, + 0.00576566020026803, + 0.004122082144021988, + 0.012950110249221325, + -0.02244374342262745, + 0.03393419459462166, + 0.004665075801312923, + -0.0004046909452881664, + 0.023319540545344353, + -0.002490181243047118, + -0.029707016423344612, + -0.029426760971546173, + 0.003401009598746896, + 0.0061597684398293495, + 0.03760085999965668, + -0.01458493061363697, + -0.022280262783169746, + -0.0050562648102641106, + 0.005459131207317114, + -0.018298307433724403, + 0.0037746827583760023, + -0.013744166120886803, + 0.014725057408213615, + 0.004151275381445885, + -0.02132272534072399, + -0.024919329211115837, + -0.011507965624332428, + 0.02042357437312603, + 0.01463163923472166, + 0.023459667339920998, + -0.029590243473649025, + 0.018169857561588287, + -0.017761152237653732, + 0.005753982812166214, + 0.053855642676353455, + 0.001240711659193039, + 0.01996815949678421, + 0.003722134977579117, + -0.005575904157012701, + -0.0013662425335496664, + 0.001558917690999806, + -0.007415076717734337, + -0.00852441880851984, + 0.03363058343529701, + 0.005724789574742317, + -0.004095808137208223, + 0.0016756905242800713, + -0.019185781478881836, + -0.019314231351017952, + 0.040520183742046356, + -0.01549575850367546, + -0.03598939627408981, + 0.023226121440529823, + 0.017013806849718094, + -0.008314227685332298, + 0.04014651104807854, + 0.010556266643106937, + 0.015203826129436493, + -0.0016625536372885108, + -0.004776009824126959, + -0.022128457203507423, + -0.013125269673764706, + -0.01676858216524124, + 0.006294057238847017, + -0.01916242577135563, + 0.0174225103110075, + 0.030944807454943657, + 0.05535033717751503, + 0.00023719487944617867, + 0.009581212885677814, + 0.0006513736443594098, + 0.010276012122631073, + -0.03591933101415634, + 0.03528875857591629, + -0.009727179072797298, + 0.017270706593990326, + 0.02627389319241047, + 0.012845015153288841, + 0.006323250476270914, + -0.022653935477137566, + 0.023377927020192146, + 0.03995967283844948, + 0.020493637770414352, + -0.003841827157884836, + 0.06030150502920151, + 0.03430786728858948, + 0.024125272408127785, + 0.011916670948266983, + -0.008203293196856976, + 0.006066350266337395, + 0.007403399329632521, + -0.011321129277348518, + 0.012062636204063892, + -0.0496051125228405, + 0.00633492786437273, + -0.02590022049844265, + -0.0016129252035170794, + -0.013662424869835377, + 0.001666932599619031, + -0.010912423953413963, + 0.014444802887737751, + 0.0019267522729933262, + -0.008565288968384266, + 0.009254248812794685, + 0.017072191461920738, + -0.0006546578370034695, + 0.0029601920396089554, + -0.021836524829268456, + 0.030220815911889076, + -0.020727183669805527, + 0.007584397215396166, + -0.03239279240369797, + 0.016289813444018364, + 0.013195333071053028, + -0.010316882282495499, + 0.0002355527540203184, + 0.005859078373759985, + -0.0013531055301427841, + -0.011233549565076828, + -0.008717094548046589, + 0.019185781478881836, + 0.030244171619415283, + -0.021486205980181694, + -0.005809450056403875, + -0.010287689045071602 + ] + }, + { + "HotelId": "9", + "HotelName": "Smile Up Hotel", + "Description": "Experience the fresh, modern downtown. Enjoy updated rooms, bold style & prime location. Don't miss our weekend live music series featuring who's new/next on the scene.", + "Description_fr": "DĆ©couvrez le centre-ville frais et moderne. Profitez de chambres rĆ©novĆ©es, d'un style audacieux et d'un emplacement privilĆ©giĆ©. Ne manquez pas notre sĆ©rie de musique en direct du week-end mettant en vedette who's New/Next sur la scĆØne.", + "Category": "Suite", + "Tags": [ + "view", + "concierge", + "bar" + ], + "ParkingIncluded": true, + "IsDeleted": false, + "LastRenovationDate": "2018-07-12T00:00:00Z", + "Rating": 4.2, + "Address": { + "StreetAddress": "1 Market", + "City": "San Francisco", + "StateProvince": "CA ", + "PostalCode": "94105", + "Country": "USA" + }, + "Location": { + "type": "Point", + "coordinates": [ + -122.394234, + 37.793369 + ] + }, + "Rooms": [ + { + "Description": "Standard Room, 1 King Bed (City View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue ville)", + "Type": "Standard Room", + "BaseRate": 121.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 131.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "suite", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (City View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (vue ville)", + "Type": "Deluxe Room", + "BaseRate": 161.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Standard Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Standard, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 138.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Waterfront View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Waterfront View)", + "Type": "Deluxe Room", + "BaseRate": 162.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 60.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "coffee maker", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 149.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Amenities)", + "Description_fr": "Suite, 2 grands lits (Services)", + "Type": "Suite", + "BaseRate": 244.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "tv", + "jacuzzi tub" + ] + }, + { + "Description": "Deluxe Room, 1 Queen Bed (Waterfront View)", + "Description_fr": "Chambre Deluxe, 1 grand lit (vue sur le front de mer)", + "Type": "Deluxe Room", + "BaseRate": 157.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "suite", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Amenities)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Services)", + "Type": "Deluxe Room", + "BaseRate": 158.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "coffee maker", + "tv", + "coffee maker" + ] + }, + { + "Description": "Standard Room, 1 King Bed (Mountain View)", + "Description_fr": "Chambre Standard, 1 trĆØs grand lit (vue montagne)", + "Type": "Standard Room", + "BaseRate": 102.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "suite" + ] + }, + { + "Description": "Budget Room, 1 Queen Bed (Cityside)", + "Description_fr": "Chambre Ɖconomique, 1 grand lit (cĆ“tĆ© ville)", + "Type": "Budget Room", + "BaseRate": 77.99, + "BedOptions": "1 Queen Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 68.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": true, + "Tags": [ + "Room Tags", + "bathroom shower" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 146.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd", + "coffee maker" + ] + }, + { + "Description": "Deluxe Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Deluxe, 2 lits doubles (Cityside)", + "Type": "Deluxe Room", + "BaseRate": 169.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Suite, 2 Queen Beds (Mountain View)", + "Description_fr": "Suite, 2 grands lits (vue sur la montagne)", + "Type": "Suite", + "BaseRate": 234.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "vcr/dvd" + ] + }, + { + "Description": "Standard Room, 2 Queen Beds (Cityside)", + "Description_fr": "Chambre Standard, 2 grands lits (cĆ“tĆ© ville)", + "Type": "Standard Room", + "BaseRate": 132.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub" + ] + }, + { + "Description": "Budget Room, 1 King Bed (Waterfront View)", + "Description_fr": "Chambre Ɖconomique, 1 trĆØs grand lit (vue sur le front de mer)", + "Type": "Budget Room", + "BaseRate": 95.99, + "BedOptions": "1 King Bed", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "jacuzzi tub", + "vcr/dvd", + "tv" + ] + }, + { + "Description": "Deluxe Room, 2 Queen Beds (Mountain View)", + "Description_fr": "Chambre Deluxe, 2 grands lits (Mountain View)", + "Type": "Deluxe Room", + "BaseRate": 137.99, + "BedOptions": "2 Queen Beds", + "SleepsCount": 4, + "SmokingAllowed": true, + "Tags": [ + "bathroom shower" + ] + }, + { + "Description": "Budget Room, 2 Double Beds (Cityside)", + "Description_fr": "Chambre Ɖconomique, 2 lits doubles (Cityside)", + "Type": "Budget Room", + "BaseRate": 86.99, + "BedOptions": "2 Double Beds", + "SleepsCount": 2, + "SmokingAllowed": false, + "Tags": [ + "bathroom shower" + ] + } + ], + "embedding": [ + -0.013237705454230309, + -0.04058368131518364, + 0.0019731735810637474, + -0.0019779743161052465, + -0.01244395598769188, + 0.0018435489619150758, + 0.004487249534577131, + 0.01692480407655239, + 0.022545067593455315, + 0.0040199607610702515, + 0.024298999458551407, + -0.01446673832833767, + -0.02924073487520218, + -0.020125409588217735, + -0.0025716868694871664, + 0.05940324440598488, + -0.08239639550447464, + -0.0035718760918825865, + 0.026129746809601784, + 0.04025081917643547, + 0.03436170518398285, + -0.0167071633040905, + -0.01980534940958023, + -0.005101765971630812, + 0.022212205454707146, + 0.0534629188477993, + -0.06124679371714592, + 0.03507864102721214, + 0.04043005406856537, + 0.024427024647593498, + -0.006510032340884209, + -0.03635888174176216, + 0.01881956309080124, + -0.026808274909853935, + -0.02998327650129795, + 0.0038375265430659056, + 0.005713081452995539, + 0.0013114482862874866, + 0.031135493889451027, + -0.047317758202552795, + -0.0024068555794656277, + 0.01738569140434265, + 0.06575324386358261, + -0.022852325811982155, + 0.0044712466187775135, + 0.012098290026187897, + -0.044680457562208176, + 0.0006309194141067564, + 0.03587239235639572, + 0.06088832765817642, + -0.054179854691028595, + -0.045141346752643585, + -0.03279981017112732, + -0.06892824918031693, + -0.05126090347766876, + 0.010440376587212086, + 0.007828681729733944, + -0.04798348248004913, + 0.022634685039520264, + 0.010555597953498363, + 0.05248993635177612, + -0.005533847492188215, + 0.030213719233870506, + 0.05802058428525925, + -0.05315566062927246, + 0.035667553544044495, + -0.008673641830682755, + 0.05133771896362305, + 0.0175649244338274, + -0.024234987795352936, + 0.04296493157744408, + 0.04862360283732414, + -0.04153106361627579, + -0.016387101262807846, + -0.0233900286257267, + -0.015478130429983139, + -0.0011314142029732466, + -0.011394157074391842, + -0.009928279556334019, + -0.018704339861869812, + -0.055716145783662796, + -0.02924073487520218, + -0.0416334830224514, + 0.026705855503678322, + -0.029957670718431473, + -0.010248339734971523, + -0.06856977939605713, + -0.02118801139295101, + 0.006874901242554188, + 0.0855201855301857, + 0.0332350917160511, + 0.056330662220716476, + 0.01631028763949871, + 0.004640878643840551, + -0.010722029954195023, + 0.03420807421207428, + 0.00488092377781868, + 0.0033350312151014805, + 0.007751867640763521, + 0.029445573687553406, + 0.04424517601728439, + -0.11081777513027191, + 0.022788314148783684, + -0.0208167415112257, + 0.010414771735668182, + -0.03994356095790863, + 0.0007029330590739846, + 0.009672231040894985, + 0.00780947832390666, + 0.016745569184422493, + -0.11317342519760132, + -0.010363562032580376, + -0.03594920411705971, + 0.01762893795967102, + -0.006285990122705698, + 0.011963864788413048, + 0.046370379626750946, + -0.04168469086289406, + -0.005437829531729221, + -0.05279719457030296, + -0.009768249467015266, + 0.060683488845825195, + -0.019882163032889366, + -0.004144784528762102, + -0.020855147391557693, + -0.06580445915460587, + -0.0008057525265030563, + -0.007803077343851328, + -0.040302030742168427, + -0.0031397943384945393, + -0.011867846362292767, + -0.001095407409593463, + 0.0064652240835130215, + -0.036000415682792664, + -0.02118801139295101, + 0.046984896063804626, + -0.0009601817582733929, + -0.018768353387713432, + -0.05940324440598488, + -0.026782669126987457, + 0.037101421505212784, + -0.03976432606577873, + -0.017180852591991425, + -0.04557662829756737, + -0.025092750787734985, + -0.021802527830004692, + -0.0018611523555591702, + 0.03797198832035065, + -0.013404137454926968, + 0.0714375227689743, + -0.03157077729701996, + 0.038151223212480545, + -0.04957098513841629, + -0.020624704658985138, + 0.0021732114255428314, + -0.03356795385479927, + 0.01515806932002306, + -0.001675517181865871, + -0.05546009913086891, + 0.023441238328814507, + 0.01897319220006466, + 0.013090478256344795, + -0.0257840808480978, + 0.008513611741364002, + 0.024234987795352936, + 0.003536669537425041, + -0.04355384409427643, + -0.005562652833759785, + -0.06344880908727646, + -0.014031455852091312, + 0.047164127230644226, + -0.006945314817130566, + 0.026808274909853935, + 0.04393791779875755, + 0.05392380803823471, + 0.032697390764951706, + -0.01423629466444254, + 0.033798396587371826, + 0.023530853912234306, + -0.00037207044078968465, + 0.027576420456171036, + -0.010113914497196674, + 0.06370485574007034, + 0.04050686955451965, + -0.009889871813356876, + 0.024875108152627945, + -0.02394053153693676, + 0.01615665853023529, + -0.024260591715574265, + -0.013429742306470871, + -0.008865678682923317, + -0.0034790586214512587, + -0.034873802214860916, + 0.022340228781104088, + -0.022826721891760826, + 0.00501214899122715, + -0.04928933084011078, + 0.04227360337972641, + 0.03343993052840233, + 0.00042167981155216694, + -0.04309295862913132, + 0.010555597953498363, + 0.03000888042151928, + -0.025425612926483154, + -0.02314678207039833, + 0.003142995061352849, + 0.014377121813595295, + 0.02572006918489933, + 0.010555597953498363, + -0.0260529313236475, + 0.0486748144030571, + 0.010709227062761784, + -0.003933544736355543, + 0.020547889173030853, + 0.0019251644844189286, + -0.0414542481303215, + -0.034259285777807236, + 0.029317550361156464, + 0.018691537901759148, + 0.0538213886320591, + 0.0051561761647462845, + 0.028011702001094818, + 0.002838937332853675, + 0.022890733554959297, + 0.05551130697131157, + 0.0517473965883255, + -0.026936298236250877, + -0.025451218709349632, + -0.0024084558244794607, + 0.01618226245045662, + -0.00002840537672454957, + -0.04744578152894974, + -0.0353090837597847, + 0.009614620357751846, + -0.045294973999261856, + 0.02458065375685692, + -0.02532319352030754, + -0.048111505806446075, + 0.04201755300164223, + 0.051388926804065704, + -0.026782669126987457, + -0.02143125608563423, + 0.006218777038156986, + 0.03978993371129036, + 0.04611432924866676, + -0.011598995886743069, + -0.012136697769165039, + 0.011701415292918682, + 0.010465981438755989, + 0.0316988006234169, + -0.02225061133503914, + -0.004848917946219444, + -0.00621557654812932, + 0.006913308519870043, + 0.05735485628247261, + -0.005357814021408558, + 0.0014442733954638243, + -0.008916888386011124, + -0.02372289076447487, + -0.00493533443659544, + 0.02719234675168991, + 0.02259627729654312, + -0.002947757951915264, + -0.033363115042448044, + -0.04327218979597092, + -0.02369728498160839, + -0.0009225746616721153, + 0.027883678674697876, + -0.0007117347558960319, + -0.027269162237644196, + -0.03766473010182381, + -0.02749960497021675, + -0.07000365108251572, + 0.01921643689274788, + -0.01500444021075964, + -0.02706432342529297, + -0.004266407806426287, + 0.02691069431602955, + 0.023812508210539818, + 0.05412864685058594, + -0.019011598080396652, + -0.05663792043924332, + 0.04043005406856537, + -0.024260591715574265, + -0.038023196160793304, + 0.0070029255002737045, + 0.01197026576846838, + 0.03884255141019821, + -0.014261899515986443, + -0.007182159461081028, + -0.010690023191273212, + -0.03689658269286156, + -0.04260646551847458, + -0.07589276880025864, + -0.021252023056149483, + 0.02657783031463623, + 0.06155405193567276, + -0.0813722014427185, + 0.012635991908609867, + -0.0193700660020113, + 0.020867951214313507, + 0.0062795886769890785, + -0.0005341010983102024, + -0.00147707958240062, + 0.042683281004428864, + 0.04785545915365219, + -0.030956260859966278, + 0.0020147813484072685, + 0.013929036445915699, + -0.00999229121953249, + 0.006308394018560648, + 0.029343154281377792, + 0.018998796120285988, + -0.015977423638105392, + -0.010401968844234943, + 0.014274702407419682, + 0.00133705313783139, + 0.028011702001094818, + -0.03175000846385956, + -0.023812508210539818, + -0.03059779293835163, + -0.0037927180528640747, + 0.015644561499357224, + -0.005108166951686144, + 0.02182813175022602, + 0.0022212204057723284, + -0.006026740651577711, + -0.012648794800043106, + -0.017590530216693878, + -0.042657673358917236, + 0.012264722026884556, + -0.04552541673183441, + 0.0020147813484072685, + 0.01319929864257574, + -0.03868892416357994, + -0.0002412456669844687, + -0.03541150316596031, + 0.00652923621237278, + 0.005412224680185318, + 0.027909282594919205, + -0.013455347158014774, + -0.045474208891391754, + -0.0023380424827337265, + -0.0113557493314147, + 0.018921982496976852, + -0.045755863189697266, + -0.00639801099896431, + -0.030828235670924187, + -0.01271920744329691, + 0.019421275705099106, + -0.02752521075308323, + -0.0286262184381485, + 0.03779275342822075, + 0.008590426295995712, + 0.019459683448076248, + 0.007073339074850082, + 0.039380256086587906, + -0.007668651640415192, + -0.033004648983478546, + 0.007886292412877083, + -0.04905888810753822, + 0.027269162237644196, + -0.00613876199349761, + 0.006881302688270807, + 0.044373199343681335, + 0.020637506619095802, + -0.019472485408186913, + -0.016323089599609375, + -0.024119766429066658, + -0.01771855354309082, + 0.03561634197831154, + -0.0026565028820186853, + 0.01753932051360607, + 0.032108478248119354, + -0.03313267230987549, + 0.05026231333613396, + 0.017577728256583214, + 0.03126351907849312, + 0.03185242787003517, + 0.012783220037817955, + -0.0011682211188599467, + 0.0035750768147408962, + 0.03310706838965416, + -0.02580968663096428, + 0.0419919490814209, + 0.008788864128291607, + -0.024631863459944725, + -0.06360244005918503, + 0.004992945119738579, + 0.020125409588217735, + -0.006225178483873606, + -0.0219433531165123, + -0.029906461015343666, + -0.0003130592522211373, + 0.01060680765658617, + -0.0087824622169137, + 0.04898207262158394, + 0.01618226245045662, + -0.0026196958497166634, + -0.005684276111423969, + 0.039713118225336075, + -0.028037307783961296, + 0.0079695088788867, + -0.04135182872414589, + -0.0029573598876595497, + -0.0005409023724496365, + 0.010325154289603233, + -0.05366775766015053, + -0.0156701672822237, + 0.006077950354665518, + -0.007617441937327385, + -0.05103046074509621, + 0.004109577741473913, + -0.021533675491809845, + 0.003773514414206147, + 0.01077323965728283, + 0.029343154281377792, + -0.06134921312332153, + -0.007911897264420986, + 0.07102784514427185, + 0.037383075803518295, + -0.016783976927399635, + 0.001073803286999464, + 0.02675706520676613, + -0.011643804609775543, + 0.01710403710603714, + -0.008391988463699818, + -0.027269162237644196, + -0.04357944801449776, + -0.02556644007563591, + -0.019357264041900635, + -0.011138108558952808, + -0.02660343609750271, + 0.014671577140688896, + -0.016988815739750862, + 0.03497622162103653, + -0.05279719457030296, + -0.01695040799677372, + 0.03484819829463959, + -0.016438310965895653, + -0.020496679469943047, + -0.0037383076269179583, + -0.03077702596783638, + 0.020701518282294273, + 0.0015466928016394377, + 0.00901290588080883, + 0.00009381776180816814, + 0.04232481122016907, + -0.004810510668903589, + -0.030725816264748573, + -0.010645215399563313, + -0.012725609354674816, + -0.005489039234817028, + -0.03346553444862366, + -0.019882163032889366, + 0.00005391020386014134, + 0.015439722687005997, + -0.03328629955649376, + 0.016694359481334686, + -0.037050213664770126, + -0.007406202144920826, + -0.03315827623009682, + -0.03810001164674759, + -0.010459580458700657, + 0.0209063570946455, + -0.02161049097776413, + -0.026296177878975868, + 0.03400323539972305, + 0.0565355010330677, + -0.04916130751371384, + 0.020714322105050087, + 0.016233472153544426, + 0.029343154281377792, + 0.029471179470419884, + -0.011925457045435905, + -0.019754139706492424, + 0.011330144479870796, + 0.04232481122016907, + 0.027602024376392365, + 0.05351413041353226, + -0.0301625095307827, + -0.0032870222348719835, + -0.029624808579683304, + 0.0006833293591625988, + -0.013493753969669342, + -0.05684275925159454, + -0.04877723380923271, + -0.02737158164381981, + -0.04601190984249115, + -0.008654437959194183, + -0.0072653754614293575, + 0.02706432342529297, + 0.00858402531594038, + -0.012898441404104233, + 0.03635888174176216, + -0.01312248408794403, + -0.0005349012790247798, + 0.0048553189262747765, + 0.025079946964979172, + -0.005665072239935398, + -0.017488110810518265, + -0.0030405756551772356, + 0.0037607119884341955, + 0.07015728205442429, + 0.041428644210100174, + 0.06928671896457672, + -0.014274702407419682, + -0.008302371948957443, + 0.07379316538572311, + 0.016681557521224022, + 0.045755863189697266, + -0.007611040957272053, + -0.0074766152538359165, + 0.028984686359763145, + 0.033311907202005386, + 0.030111299827694893, + -0.02734597586095333, + 0.017296073958277702, + -0.005837905220687389, + 0.00036886983434669673, + 0.006417214870452881, + 0.05407743528485298, + 0.0049321334809064865, + 0.029010292142629623, + -0.008987301029264927, + -0.018589118495583534, + -0.005146574229001999, + -0.06892824918031693, + -0.0113109415397048, + -0.02639859728515148, + 0.02796049229800701, + -0.011912655085325241, + -0.004746498540043831, + 0.004176790826022625, + 0.024273395538330078, + 0.016297485679388046, + 0.010920466855168343, + -0.01438992377370596, + 0.05095364525914192, + -0.016681557521224022, + 0.036154042929410934, + 0.03681977093219757, + -0.022493857890367508, + -0.01716805063188076, + -0.004410434979945421, + -0.03902178630232811, + -0.06124679371714592, + -0.001058600377291441, + -0.0010626011062413454, + 0.01716805063188076, + 0.029624808579683304, + -0.005735485814511776, + 0.005741886794567108, + 0.00552424555644393, + 0.018870772793889046, + -0.005796297453343868, + 0.02642420120537281, + 0.016515126451849937, + 0.006900506094098091, + 0.00622197799384594, + 0.006122759077697992, + -0.026808274909853935, + -0.01114450953900814, + -0.005581856705248356, + 0.028498195111751556, + 0.013250508345663548, + 0.03374718874692917, + 0.03653811663389206, + -0.012418351136147976, + -0.015721376985311508, + 0.05786695331335068, + 0.020778333768248558, + -0.008622432127594948, + 0.0030645800288766623, + 0.008699246682226658, + 0.017206456512212753, + -0.002910951152443886, + 0.007585436105728149, + -0.024823898449540138, + 0.029932066798210144, + 0.0063179959543049335, + -0.015708573162555695, + 0.020099805667996407, + 0.057252436876297, + -0.03157077729701996, + -0.014889218844473362, + 0.022852325811982155, + 0.016348695382475853, + 0.03062339685857296, + 0.022583475336432457, + -0.010433975607156754, + 0.021712910383939743, + 0.00465048011392355, + 0.0020099803805351257, + 0.015887808054685593, + -0.007201363332569599, + -0.04058368131518364, + 0.006740476004779339, + -0.0587887279689312, + -0.012610387057065964, + 0.005175379570573568, + -0.012283924967050552, + -0.014684380032122135, + 0.01169501431286335, + -0.019946176558732986, + 0.028523799031972885, + 0.009134529158473015, + -0.030649002641439438, + 0.0038535294588655233, + -0.03346553444862366, + 0.019152425229549408, + -0.043118562549352646, + -0.001200227183289826, + -0.02041986584663391, + -0.04864921048283577, + 0.009185738861560822, + -0.044552434235811234, + 0.039252229034900665, + 0.006695667281746864, + -0.027934888377785683, + -0.02066311240196228, + 0.014325912110507488, + 0.06165647134184837, + 0.00912172719836235, + 0.02222500741481781, + 0.024427024647593498, + 0.01025474164634943, + -0.057406067848205566, + 0.02525918185710907, + 0.016041437163949013, + 0.04086533561348915, + 0.040814127773046494, + 0.02719234675168991, + -0.024081358686089516, + -0.004324018489569426, + -0.001995577709749341, + 0.00780947832390666, + -0.009428984485566616, + -0.026155350729823112, + -0.009800255298614502, + 0.008116736076772213, + -0.013186495751142502, + 0.02099597454071045, + 0.002717314288020134, + 0.014351516962051392, + 0.015222081914544106, + 0.04875162988901138, + -0.022084180265665054, + 0.011112503707408905, + -0.006638056598603725, + -0.010958874598145485, + 0.009371373802423477, + 0.037229448556900024, + 0.008423994295299053, + -0.015657363459467888, + 0.009557008743286133, + -0.005604261066764593, + -0.008302371948957443, + 0.006282789167016745, + 0.06298792362213135, + 0.011631001718342304, + 0.03121230937540531, + -0.034873802214860916, + -0.01415948010981083, + -0.01796180009841919, + 0.020624704658985138, + 0.006817290559411049, + 0.02240424044430256, + -0.045935094356536865, + 0.04987824335694313, + 0.058993566781282425, + 0.018525106832385063, + 0.027909282594919205, + 0.010920466855168343, + 0.04736896604299545, + -0.0031013870611786842, + 0.0046824864111840725, + -0.011906254105269909, + -0.0028181334491819143, + -0.014517948031425476, + 0.015196477063000202, + -0.012027876451611519, + -0.038304850459098816, + -0.01127893477678299, + -0.008257563225924969, + -0.01606704108417034, + 0.023582063615322113, + 0.042222391813993454, + 0.029573598876595497, + -0.014082665555179119, + 0.0007577434298582375, + -0.012482362799346447, + 0.038612108677625656, + 0.0010802044998854399, + -0.004099976271390915, + -0.05965929478406906, + -0.004458444193005562, + -0.03730626031756401, + 0.02299315296113491, + -0.06365364789962769, + 0.01710403710603714, + 0.008155143819749355, + 0.020176619291305542, + -0.01523488387465477, + -0.0017651341622695327, + 0.023748494684696198, + 0.009038510732352734, + -0.0316988006234169, + -0.003863131394609809, + 0.0020371857099235058, + 0.01236714143306017, + -0.0347713828086853, + 0.004352823831140995, + 0.02105998620390892, + 0.022365834563970566, + -0.02161049097776413, + -0.0372038409113884, + 0.012130295857787132, + 0.012834429740905762, + -0.006196373142302036, + 0.02449103631079197, + 0.0316988006234169, + 0.0029957671649754047, + -0.014914823696017265, + -0.016566336154937744, + -0.009076918475329876, + 0.031519565731287, + -0.04135182872414589, + -0.04076291620731354, + 0.046984896063804626, + 0.00839838944375515, + 0.027320371940732002, + 0.012885639443993568, + 0.001590701169334352, + 0.0100242979824543, + -0.021444059908390045, + -0.01068362221121788, + 0.0125975850969553, + -0.04585828259587288, + -0.0038823350332677364, + 0.017091235145926476, + -0.004736896604299545, + 0.0001353256229776889, + -0.008590426295995712, + 0.04711291939020157, + -0.0027413188945502043, + -0.005965929478406906, + -0.020394260063767433, + -0.08377905935049057, + 0.014517948031425476, + -0.035181060433387756, + 0.010325154289603233, + -0.004708091262727976, + -0.02602732740342617, + 0.0059563275426626205, + -0.05832784250378609, + 0.01243115309625864, + 0.002790928352624178, + 0.02860061451792717, + 0.023505249992012978, + 0.007386998273432255, + 0.022084180265665054, + 0.001095407409593463, + 0.027704443782567978, + 0.015055649913847446, + 0.035846784710884094, + 0.042043156921863556, + 0.04099335893988609, + -0.049033280462026596, + -0.035513922572135925, + 0.035846784710884094, + -0.016719965264201164, + 0.01069642510265112, + -0.005434628576040268, + 0.027474001049995422, + 0.007335788570344448, + -0.004090374335646629, + -0.031442753970623016, + -0.013000860810279846, + 0.005825102794915438, + 0.04816271737217903, + -0.008692845702171326, + -0.0029813642613589764, + 0.023518051952123642, + -0.00323741277679801, + 0.005181781016290188, + -0.01092686876654625, + -0.018537908792495728, + 0.004461644683033228, + 0.03743428736925125, + -0.009460991248488426, + -0.026219364255666733, + 0.018294664099812508, + -0.0073613934218883514, + -0.0046088723465800285, + 0.00783508364111185, + 0.025732871145009995, + -0.016284681856632233, + 0.0387401320040226, + 0.017552122473716736, + 0.029752831906080246, + -0.007310183718800545, + 0.000698532210662961, + -0.014364318922162056, + 0.010472382418811321, + 0.012424752116203308, + -0.00910252332687378, + -0.009557008743286133, + 0.0022100184578448534, + -0.03671735152602196, + -0.007867089472711086, + -0.008744055405259132, + -0.004848917946219444, + 0.001235433854162693, + 0.022698696702718735, + -0.0015314898919314146, + -0.0013042469508945942, + 0.013801012188196182, + -0.025335995480418205, + -0.022301821038126945, + -0.013788210228085518, + 0.0020147813484072685, + -0.0038055204786360264, + 0.013890629634261131, + -0.013813815079629421, + 0.0023700485471636057, + -0.00016493121802341193, + 0.022634685039520264, + -0.0013450545957311988, + -0.03976432606577873, + -0.02580968663096428, + 0.05750848725438118, + -0.03013690561056137, + 0.004330419935286045, + 0.018128231167793274, + 0.0073037827387452126, + -0.0167071633040905, + 0.01866593398153782, + -0.005997935310006142, + 0.011502977460622787, + 0.008622432127594948, + 0.001150617841631174, + -0.03756231069564819, + 0.00030265728128142655, + -0.016195066273212433, + -0.035539526492357254, + 0.00246446649543941, + -0.023671681061387062, + 0.01976694166660309, + -0.006154764909297228, + 0.027422791346907616, + 0.001158619299530983, + 0.008212754502892494, + -0.019856559112668037, + 0.007073339074850082, + 0.01921643689274788, + -0.002110799541696906, + 0.024081358686089516, + 0.006945314817130566, + -0.010369963012635708, + -0.02473428286612034, + 0.030879445374011993, + 0.0177441593259573, + -0.02292914129793644, + 0.006058746948838234, + 0.03441291302442551, + 0.010229136794805527, + 0.02783246897161007, + -0.0034502530470490456, + -0.013967444188892841, + -0.05092804133892059, + 0.0017795368330553174, + -0.004240802954882383, + 0.008027119562029839, + 0.026859484612941742, + 0.015106859616935253, + 0.003824724117293954, + 0.017424099147319794, + 0.017910590395331383, + -0.037715937942266464, + 0.027141137048602104, + 0.0012434354284778237, + -0.022673092782497406, + -0.01688639633357525, + -0.03763912618160248, + 0.03881694748997688, + -0.024836702272295952, + 0.0400971919298172, + -0.02844698540866375, + 0.00208039372228086, + 0.013852221891283989, + 0.007860688492655754, + -0.01624627597630024, + -0.006020339671522379, + -0.0400971919298172, + 0.010446777567267418, + 0.016976013779640198, + 0.031493961811065674, + -0.0009881870355457067, + 0.00932016409933567, + -0.016079843044281006, + 0.021533675491809845, + -0.026680249720811844, + -0.005613862536847591, + -0.02237863652408123, + 0.009217744693160057, + -0.025886500254273415, + -0.003991155419498682, + 0.003584678517654538, + -0.0016211068723350763, + 0.010920466855168343, + -0.06641897559165955, + 0.004765701945871115, + -0.034592147916555405, + -0.019050005823373795, + 0.026040129363536835, + -0.0036422894336283207, + -0.010427573695778847, + -0.008251162245869637, + -0.011714217253029346, + -0.007329387590289116, + 0.010133118368685246, + -0.025297589600086212, + -0.0062027741223573685, + -0.009147332049906254, + 0.0183330699801445, + -0.03525787591934204, + 0.007950305007398129, + 0.017667343840003014, + 0.002499673282727599, + -0.008699246682226658, + 0.008744055405259132, + -0.028831057250499725, + -0.034259285777807236, + 0.050108686089515686, + 0.006199573632329702, + 0.035232268273830414, + -0.002987765474244952, + -0.0017715353751555085, + -0.03221089765429497, + -0.00469848932698369, + 0.005562652833759785, + 0.020650308579206467, + 0.006593247875571251, + 0.009614620357751846, + -0.008161544799804688, + 0.02657783031463623, + 0.015990227460861206, + -0.0037991192657500505, + -0.002909350674599409, + -0.018217848613858223, + 0.030700212344527245, + 0.0009425784228369594, + -0.04990384727716446, + 0.015426920726895332, + 0.022353030741214752, + -0.03927783668041229, + 0.03264617919921875, + -0.03123791329562664, + -0.011919056065380573, + -0.017206456512212753, + 0.0018835566006600857, + -0.013416939415037632, + 0.027909282594919205, + -0.017974602058529854, + -0.03203166276216507, + -0.020304644480347633, + 0.06626534461975098, + 0.009589015506207943, + 0.006033142097294331, + 0.0027781259268522263, + 0.067545585334301, + 0.017372889444231987, + 0.015529340133070946, + -0.01248876377940178, + 0.03392642363905907, + -0.0000050790863497240935, + 0.00894889421761036, + 0.05279719457030296, + -0.0025796883273869753, + 0.01492762565612793, + 0.02749960497021675, + 0.025988919660449028, + 0.00795670598745346, + 0.004717693198472261, + 0.012911244295537472, + -0.01701442152261734, + 0.007649448234587908, + 0.05279719457030296, + 0.016809582710266113, + 0.019242042675614357, + -0.033798396587371826, + -0.041275013238191605, + 0.03274859860539436, + -0.011579792015254498, + 0.02114960364997387, + 0.004423237405717373, + 0.02255786955356598, + 0.014838009141385555, + 0.0028117322362959385, + 0.001830746536143124, + -0.00870564766228199, + 0.007911897264420986, + 0.004996145609766245, + -0.002025983529165387, + 0.022276217117905617, + 0.023556459695100784, + 0.009262553416192532, + 0.005549850407987833, + 0.007086141500622034, + 0.010581202805042267, + 0.020151015371084213, + 0.0002898548555094749, + 0.029266340658068657, + -0.02418377809226513, + 0.02541281096637249, + -0.009390577673912048, + -0.026296177878975868, + -0.009941081516444683, + -0.004464845173060894, + 0.0383816659450531, + 0.03320948779582977, + 0.012847231701016426, + 0.006970919668674469, + -0.0010626011062413454, + -0.040045980364084244, + 0.023748494684696198, + -0.009921878576278687, + -0.00009696835331851617, + -0.013544963672757149, + 0.028677428141236305, + -0.011368552222847939, + 0.020919160917401314, + 0.007310183718800545, + 0.00423760199919343, + -0.012130295857787132, + 0.02719234675168991, + -0.013340124860405922, + -0.010389166884124279, + -0.012514368630945683, + -0.0549992099404335, + -0.011394157074391842, + 0.022109786048531532, + -0.0015867003239691257, + -0.025848092511296272, + 0.041428644210100174, + 0.011163713410496712, + 0.0023780502378940582, + 0.030239325016736984, + 0.007342190016061068, + 0.007444609422236681, + 0.029778437688946724, + -0.006125959567725658, + -0.005434628576040268, + -0.02394053153693676, + 0.03405444696545601, + -0.018217848613858223, + -0.006804488133639097, + 0.03354234993457794, + -0.016259077936410904, + 0.007329387590289116, + 0.007335788570344448, + -0.0050441548228263855, + -0.022109786048531532, + -0.012635991908609867, + 0.0208167415112257, + -0.008174347691237926, + 0.008359982632100582, + -0.04785545915365219, + 0.010126717388629913, + 0.024145370349287987, + 0.04588388651609421, + -0.008302371948957443, + -0.009813057258725166, + 0.00550184166058898, + 0.010709227062761784, + 0.0047945077531039715, + 0.010843652300536633, + 0.03697339817881584, + 0.014581960625946522, + 0.013455347158014774, + -0.03285101801156998, + -0.04931493476033211, + 0.0001063201270881109, + -0.017859380692243576, + -0.008916888386011124, + 0.022647486999630928, + -0.020547889173030853, + 0.007745466195046902, + -0.00534181110560894, + -0.007380597293376923, + -0.004122380167245865, + -0.012834429740905762, + -0.03121230937540531, + 0.026680249720811844, + -0.013250508345663548, + -0.022519463673233986, + 0.02954799309372902, + -0.0018387481104582548, + 0.032108478248119354, + 0.004112778697162867, + -0.017052827402949333, + 0.016912002116441727, + -0.02099597454071045, + -0.007246171589940786, + -0.00008441598038189113, + -0.006804488133639097, + -0.006874901242554188, + -0.01273841131478548, + 0.014607565477490425, + 0.001095407409593463, + 0.001872354419901967, + 0.005277798976749182, + 0.0174753088504076, + 0.03262057527899742, + 0.015554944984614849, + 0.008910486474633217, + 0.018320268020033836, + -0.017488110810518265, + -0.0012258320348337293, + 0.016809582710266113, + -0.03610283508896828, + 0.018998796120285988, + 0.028523799031972885, + 0.01787218265235424, + 0.01587500423192978, + -0.010869257152080536, + -0.019075611606240273, + -0.03213408216834068, + 0.02123922109603882, + -0.0057066804729402065, + -0.02813972719013691, + -0.03436170518398285, + -0.01158619299530983, + 0.00013232504716143012, + -0.02255786955356598, + 0.0003894737164955586, + -0.008974499069154263, + 0.0014498744858428836, + -0.009896273724734783, + 0.026961904019117355, + -0.008379186503589153, + 0.015260488726198673, + -0.006663661450147629, + 0.017731357365846634, + -0.0026485014241188765, + 0.0031685999128967524, + 0.09468672424554825, + 0.00567787466570735, + 0.00024064556055236608, + -0.012591183185577393, + -0.01279602199792862, + 0.0009561810293234885, + -0.023287609219551086, + -0.01531169842928648, + -0.009147332049906254, + -0.009115325286984444, + -0.007483016699552536, + -0.013071274384856224, + -0.00446804566308856, + -0.005226589273661375, + 0.016758373007178307, + -0.004960939288139343, + -0.04493650794029236, + 0.008750456385314465, + 0.04534618556499481, + -0.005361014977097511, + 0.02176412008702755, + 0.03756231069564819, + 0.029163921251893044, + 0.006478026509284973, + -0.022084180265665054, + -0.020637506619095802, + 0.006519634276628494, + 0.019050005823373795, + 0.012757615186274052, + 0.0056682731956243515, + 0.012040679343044758, + 0.027397185564041138, + -0.02847258932888508, + -0.029112711548805237, + 0.01624627597630024, + -0.0007409402751363814, + -0.0009201741777360439, + -0.012008673511445522, + 0.05049275979399681, + 0.0006277188076637685, + -0.022954745218157768, + -0.00272371550090611, + -0.013941839337348938, + -0.025079946964979172, + 0.04196634516119957, + 0.010734831914305687, + -0.04324658587574959, + -0.01561895664781332, + 0.023927729576826096, + -0.006260385271161795, + -0.00226122816093266, + 0.030700212344527245, + 0.010261142626404762, + 0.01531169842928648, + -0.01235433854162693, + -0.014517948031425476, + 0.028011702001094818, + -0.021866539493203163, + -0.007054135203361511, + -0.020637506619095802, + 0.0049321334809064865, + 0.003917541820555925, + -0.013263310305774212, + -0.0010377964936196804, + -0.011349348351359367, + -0.020458273589611053, + -0.0007789474329911172, + 0.010472382418811321, + -0.005489039234817028, + -0.007233369164168835, + -0.010920466855168343, + 0.0032118079252541065, + -0.010056303814053535, + -0.0011210122611373663, + -0.013749802485108376, + -0.0017603331943973899, + -0.007873490452766418, + 0.024081358686089516, + -0.02029184065759182, + -0.032108478248119354, + -0.005284200422465801, + 0.0159390177577734, + 0.027243556454777718, + -0.006734074559062719, + -0.016476718708872795, + -0.005364215467125177, + 0.023210793733596802, + -0.02136724442243576, + -0.014146678149700165, + 0.004890525713562965, + 0.0011794232996180654, + 0.00557225476950407, + 0.00549544021487236, + 0.01415948010981083, + 0.02127762697637081, + 0.0007157354848459363, + -0.00839838944375515, + -0.011330144479870796, + -0.023441238328814507, + -0.050774410367012024, + 0.021661700680851936, + -0.0126423928886652, + -0.025707267224788666, + 0.0011482173576951027, + -0.009480194188654423, + 0.009147332049906254, + -0.004954537842422724, + -0.01989496685564518, + -0.03743428736925125, + -0.01229032687842846, + -0.01091406587511301, + 0.007566232234239578, + -0.005226589273661375, + 0.00937777478247881, + 0.0019443681230768561, + -0.020483877509832382, + 0.001358657144010067, + -0.01227752398699522, + -0.0209063570946455, + 0.004525656811892986, + 0.039252229034900665, + 0.006269986741244793, + 0.011650205589830875, + -0.029138315469026566, + 0.03728065639734268, + -0.004477647598832846, + 0.014556355774402618, + 0.024606257677078247, + -0.016591940075159073, + 0.012040679343044758, + 0.0008905685972422361, + -0.000318460282869637, + 0.00045808672439306974, + 0.016502324491739273, + -0.009364972822368145, + -0.008404791355133057, + -0.017308875918388367, + -0.0015130863757804036, + 0.03546271473169327, + 0.017526518553495407, + 0.009403379634022713, + 0.0004900927888229489, + -0.029317550361156464, + 0.017756961286067963, + 0.010958874598145485, + -0.013064873404800892, + -0.02826775051653385, + -0.008289569057524204, + 0.03374718874692917, + -0.02029184065759182, + -0.03943146392703056, + 0.010875659063458443, + -0.011445366777479649, + -0.01661754585802555, + 0.015196477063000202, + -0.010171525180339813, + 0.01569577120244503, + -0.021175207570195198, + 0.01081804744899273, + 0.018717143684625626, + -0.00795670598745346, + -0.03525787591934204, + -0.003392642131075263, + 0.0005044955178163946, + 0.015426920726895332, + 0.03858650475740433, + -0.02283952385187149, + -0.012463158927857876, + 0.01734728366136551, + -0.023748494684696198, + -0.003309426363557577, + -0.021892143413424492, + -0.05238751694560051, + 0.02473428286612034, + 0.011093299835920334, + 0.020010188221931458, + -0.009032109752297401, + 0.028549404814839363, + 0.00757903466001153, + 0.01248876377940178, + -0.008193550631403923, + -0.0011650205124169588, + 0.0043592252768576145, + 0.005457032937556505, + 0.039994772523641586, + 0.02624496817588806, + 0.012725609354674816, + -0.006001135800033808, + -0.004231201019138098, + -0.028498195111751556, + 0.009000103920698166, + -0.007636645808815956, + -0.0113557493314147, + 0.04798348248004913, + -0.016758373007178307, + -0.004797708243131638, + -0.01925484463572502, + 0.02310837432742119, + -0.022609079256653786, + -0.005565853789448738, + -0.05955687537789345, + -0.0182434543967247, + 0.013660185970366001, + 0.019011598080396652, + -0.017795369029045105, + 0.016118250787258148, + 0.020061397925019264, + 0.014428331516683102, + 0.04214557632803917, + 0.0018179441103711724, + -0.026475410908460617, + -0.012264722026884556, + 0.025694463402032852, + -0.03438730910420418, + 0.02734597586095333, + 0.005994734819978476, + 0.0021972160320729017, + 0.05085122585296631, + 0.04137743264436722, + 0.011291737668216228, + 0.004666483495384455, + -0.017398493364453316, + -0.003975152503699064, + 0.02105998620390892, + -0.03077702596783638, + -0.0023700485471636057, + 0.023210793733596802, + 0.02985525131225586, + -0.01716805063188076, + -0.009185738861560822, + -0.003466256195679307, + 0.011182917281985283, + 0.0016011031111702323, + -0.006401211954653263, + 0.007918299175798893, + 0.02842137962579727, + 0.035821180790662766, + -0.008590426295995712, + -0.007258974015712738, + 0.008103934116661549, + -0.003859930671751499, + -0.02675706520676613, + -0.015375711023807526, + -0.011010084301233292, + -0.003154197009280324, + 0.014415528625249863, + 0.008769660256803036, + -0.008603228256106377, + -0.03932904452085495, + -0.00015652962611056864, + -0.015273291617631912, + 0.024081358686089516, + 0.009973088279366493, + -0.011643804609775543, + -0.03292783349752426, + -0.024606257677078247, + 0.04834195226430893, + -0.009032109752297401, + -0.02875424362719059, + 0.00816794577986002, + -0.015350106172263622, + -0.011214923113584518, + 0.0019779743161052465, + 0.03105868026614189, + 0.02642420120537281, + 0.014569157734513283, + 0.005735485814511776, + -0.0061675673350691795, + -0.033798396587371826, + 0.01894758641719818, + -0.0017779365880414844, + 0.025156762450933456, + -0.008692845702171326, + 0.019626114517450333, + -0.020714322105050087, + 0.003661493072286248, + 0.026296177878975868, + -0.009653027169406414, + -0.0038887362461537123, + 0.009185738861560822, + -0.005431428086012602, + -0.04340021684765816, + -0.013698592782020569, + -0.025207972154021263, + 0.005581856705248356, + -0.029112711548805237, + 0.016015831381082535, + 0.039252229034900665, + -0.01784657873213291, + -0.00818714965134859, + 0.028575008735060692, + 0.010350759141147137, + -0.014428331516683102, + 0.02127762697637081, + 0.010658017359673977, + 0.039994772523641586, + -0.019869361072778702, + -0.02152087353169918, + 0.0015762983821332455, + 0.010888461023569107, + 0.032569363713264465, + -0.03543710708618164, + -0.009275355376303196, + 0.013954641297459602, + -0.01197026576846838, + 0.020330248400568962, + 0.004820112604647875, + 0.07000365108251572, + 0.011362151242792606, + -0.03228771314024925, + 0.02075272798538208, + -0.012879238463938236, + -0.007092542480677366, + 0.011631001718342304, + -0.018832365050911903, + -0.009928279556334019, + 0.0005024950951337814, + 0.030392954126000404, + -0.029650412499904633, + 0.001715524704195559, + -0.023658879101276398, + -0.0008473604102618992, + 0.0020659910514950752, + 0.018217848613858223, + -0.04083973169326782, + 0.002077193232253194, + 0.006766080856323242, + 0.0286262184381485, + -0.005393020808696747, + 0.025092750787734985, + 0.032390132546424866, + 0.043758682906627655, + -0.01673276722431183, + 0.014261899515986443, + -0.0033382319379597902, + 0.0041703893803060055, + -0.03484819829463959, + 0.03139154240489006, + 0.004676084965467453, + 0.017680147662758827, + 0.03292783349752426, + -0.04291372373700142, + 0.023121176287531853, + 0.0012930447701364756, + -0.007630244363099337, + 0.029880857095122337, + 0.0019235641229897738, + 0.0032902227248996496, + 0.027909282594919205, + 0.02292914129793644, + 0.01129813864827156, + -0.018537908792495728, + 0.019395671784877777, + -0.012207110412418842, + 0.0224426481872797, + -0.01584940031170845, + 0.02072712406516075, + -0.015337303280830383, + -0.027883678674697876, + -0.006157965864986181, + 0.028498195111751556, + -0.024939121678471565, + -0.0159390177577734, + 0.015042847953736782, + -0.005236191209405661, + 0.023684483021497726, + 0.000459286937257275, + 0.012309529818594456, + 0.041735902428627014, + -0.01624627597630024, + 0.015106859616935253, + -0.03285101801156998, + 0.008916888386011124, + -0.006023540161550045, + -0.015798190608620644, + -0.044552434235811234, + 0.0012818427057936788, + 0.006836493965238333, + 0.014377121813595295, + 0.005521045066416264, + -0.006033142097294331, + -0.005604261066764593, + 0.01750091277062893, + 0.00622197799384594, + -0.0016467117238789797, + 0.013506556861102581, + -0.026859484612941742, + -0.004455243237316608, + -0.02255786955356598 + ] + } +] \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/README.md b/nosql-insert-at-scale-typescript/README.md index b74c177..1ed7711 100644 --- a/nosql-insert-at-scale-typescript/README.md +++ b/nosql-insert-at-scale-typescript/README.md @@ -6,9 +6,9 @@ Enterprise-grade resilient bulk insertion for Azure Cosmos DB NoSQL API. This application demonstrates high-performance bulk insertion of documents into Azure Cosmos DB, featuring: -- **šŸ”„ Resilient Operations**: Automatic retry logic with exponential backoff for rate limiting (429 errors) +- **šŸ”„ Resilient Operations**: Automatic retry logic with exponential backoff for rate limiting (429 errors) using the `container.items.bulk()` API - **šŸ“Š Performance Monitoring**: Real-time RU consumption and latency tracking -- ** Cost Estimation**: Built-in serverless cost calculations +- **šŸ’° Cost Estimation**: Built-in autoscale cost calculations (configurable via `SHOW_COST` environment variable) - **šŸ›”ļø Enterprise Patterns**: Circuit breaker, idempotency, and comprehensive error handling > **Note**: For vector index management during bulk operations, use the external scripts in `./scripts/` directory. @@ -41,12 +41,43 @@ cp .env.example .env Edit `.env` with your Cosmos DB details: ```bash +DEBUG=true + +# ======================================== +# Display Configuration +# ======================================== +# Set to true to show cost estimation in output +# Cost estimation includes autoscale and serverless pricing +# Default: false (cost info hidden for cleaner output) +SHOW_COST=false + +# ===COSMOS_CONTAINER_NAME=hotels-insert-scale==================================== +# Data File Paths and Vector Configuration +# ======================================== +#DATA_FILE_WITH_VECTORS=../HotelsData_toCosmosDB_Vector.json +DATA_FILE_WITHOUT_VECTORS=HotelsData.json +DATA_FILE_WITH_VECTORS=../HotelsData_text_embedding_small_3.json +FIELD_TO_EMBED=Description +EMBEDDED_FIELD=embedding +EMBEDDING_DIMENSIONS=1536 +LOAD_SIZE_BATCH=100 +EMBEDDING_BATCH_SIZE=20 + +# ======================================== +# Insert Operation Configuration +# ======================================== +BATCH_SIZE=5 +MAX_CONCURRENCY=1 + # ======================================== # Cosmos DB Connection Settings (Required) # ======================================== +# Get these values from Azure Portal > Cosmos DB > Keys COSMOS_ENDPOINT=https://your-cosmos-account.documents.azure.com:443/ +COSMOS_KEY=your-cosmos-primary-key-here +COSMOS_CONNECTION_STRING=AccountEndpoint=https://your-cosmos-account.documents.azure.com:443/;AccountKey=your-cosmos-primary-key-here; COSMOS_DB_NAME=Hotels -COSMOS_CONTAINER_NAME=hotels-insert-scale +COSMOS_CONTAINER_NAME=Insert-at-scale COSMOS_RESOURCE_GROUP=your-resource-group-name # ======================================== @@ -55,18 +86,12 @@ COSMOS_RESOURCE_GROUP=your-resource-group-name PARTITION_KEY_PATH=/HotelId # ======================================== -# Data File Paths and Vector Configuration +# Azure OpenAI for Embeddings (Required) # ======================================== -DATA_FILE_WITH_VECTORS=../../data/HotelsData_toCosmosDB_Vector.json -EMBEDDED_FIELD=text_embedding_ada_002 -EMBEDDING_DIMENSIONS=1536 - -# ======================================== -# Optional Performance Tuning -# ======================================== -BATCH_SIZE=50 -MAX_CONCURRENCY=-1 -DEBUG=true +# Get these values from Azure Portal > Azure OpenAI > Keys and Endpoint +AZURE_OPENAI_EMBEDDING_KEY=your-azure-openai-api-key-here +AZURE_OPENAI_EMBEDDING_ENDPOINT=https://your-openai-resource.cognitiveservices.azure.com +AZURE_OPENAI_EMBEDDING_MODEL=text-embedding-3-small ``` ### 3. Set Up Azure Permissions @@ -87,101 +112,90 @@ chmod +x scripts/setup-cosmos-nosql-dataplane-permissions.sh # Build the TypeScript project npm run build -# Run the insert-at-scale operation -npm run start:insert-at-scale +# Run the insert operation +npm run start:insert ``` ## šŸ“Š Expected Output -When running successfully, you'll see: +When running successfully, you'll see output similar to the following: ``` +> cosmos-vector-insert-at-scale@1.0.0 start:insert +> node --env-file .env dist/insert.js + šŸØ Azure Cosmos DB Insert at Scale Operations ============================================== Environment: development -Timestamp: 2025-10-02T19:52:04.504Z +Timestamp: 2025-11-04T15:33:35.144Z āœ… Cosmos DB client initialized successfully +šŸ” Connection Details: + Database: Hotels + Container: Insert-at-scale-2 + Partition Key Path: /HotelId + Batch Size: 5 + Max Concurrency: 1 šŸ“Š Step 1: Loading Data ======================= -Reading JSON file from C:\Users\...\HotelsData_toCosmosDB_Vector.json -āœ… Loaded 50 documents from ../../data/HotelsData_toCosmosDB_Vector.json -šŸ” Validating that documents contain embedding field 'text_embedding_ada_002'... -āœ… All documents contain valid embedding field 'text_embedding_ada_002' with 1536 dimensions +Reading JSON file from C:\Users\diberry\repos\samples\cosmos-db-vector-samples\nosql-insert-at-scale-typescript\HotelsData_text_embedding_small_3.json +āœ… Loaded 50 documents from ../HotelsData_text_embedding_small_3.json +šŸ” Validating that documents contain embedding field 'embedding'... +āœ… All documents contain valid embedding field 'embedding' with 1536 dimensions šŸš€ Step 2: Enterprise-Grade Bulk Insert ====================================== Configuration: - - Database: Hotels_2 - - Container: Insert-at-scale-1 - - Batch size: 50 - - Concurrency: SDK Optimized + - Database: Hotels + - Container: Insert-at-scale-2 + - Batch size: 5 + - Concurrency: 1 - Documents to insert: 50 - -Getting database Hotels_2... -Getting container Insert-at-scale-1... -āœ… Database: Hotels_2 -āœ… Container: Insert-at-scale-1 +Getting database Hotels... +Getting container Insert-at-scale-2... +āœ… Database: Hotels +āœ… Container: Insert-at-scale-2 āœ… Partition key: /HotelId Starting resilient insert... -ā„¹ļø Starting resilient insert operation -šŸš€ Starting batch processing of 50 documents... -ā„¹ļø Removing indexes before bulk insert operation -ā„¹ļø Captured existing index definition before insert -āš ļø Note: Automatic index removal requires CosmosClient access. Consider manually removing indexes for better insert performance. -ā„¹ļø Processing batch 1/1 - -ā³ Rate limiting detected for document 28 - retrying in 1s (attempt 2/4) -ā³ Rate limiting detected for document 26 - retrying in 1s (attempt 2/4) -[... retry messages for rate-limited operations ...] - -āœ… Document 24 successfully inserted after 1 retry -āœ… Document 41 successfully inserted after 1 retry -[... success messages ...] - -ā„¹ļø Index restoration after insert would occur here -ā„¹ļø Note: Automatic index restoration requires CosmosClient access for container recreation -ā„¹ļø Index definition available for manual restoration ā„¹ļø Resilient insert operation completed -šŸŽÆ Batch processing completed: 50 inserted, 0 failed, 37 retries +šŸŽÆ Batch processing completed: 50 inserted, 0 failed, 5 retries āœ… Insert Operation Complete: Inserted: 50/50 documents - Failed: 0, Retries: 37 - Total time: 13.7s - RU consumed: 16,010.16 - Avg RU/doc: 320.20 - Avg latency: 2281ms/doc - -šŸ’° Cost Estimation: - Serverless cost: $0.000128 - Serverless: 16,010.16 RUs = 0.016010 million RUs * $0.008/million = $0.000128 + Failed: 0, Retries: 5 + Total time: 8.0s + RU consumed: 15,559.476 + Avg RU/doc: 311.19 + Avg latency: 94ms/doc + Peak RU/s observed: 316.4 + šŸ’” Set SHOW_COST=true to see cost estimation āš ļø Errors encountered: - 429: 37 occurrences - šŸ’” Tip: Consider increasing RU/s or enabling autoscale for high throughput + 429: 5 occurrences + šŸ’” Autoscale Tips: + - Your current max autoscale RU/s may be too low + - Autoscale takes 10-30 seconds to scale up + - Consider increasing max autoscale RU/s to 1000 + - Or reduce batch size further (currently 5) šŸ“ˆ Step 3: Performance Analysis ============================== RU Consumption Analysis: - - Total RUs: 16,010.16 - - Average RU/document: 320.20 - - Peak RU/operation: 344.95 + - Total RUs: 15,559.476 + - Average RU/document: 311.19 + - Peak RU/operation: 316.43 Performance Metrics: - - Total duration: 13.7s - - Average latency: 2281ms/document - - Peak latency: 5321ms - - Throughput: 3.7 docs/second + - Total duration: 8.0s + - Average latency: 94ms/document + - Peak latency: 220ms + - Throughput: 6.2 docs/second Optimization Recommendations: - āš ļø High RU consumption per document (320.20 RU/doc) + āš ļø High RU consumption per document (311.19 RU/doc) - Consider document size optimization - Review indexing policies - āš ļø High average latency (2281ms) - - Consider increasing provisioned RU/s - - Check regional proximity šŸ’” For detailed optimization guidance, see INSERT_AT_SCALE_GUIDE.md šŸŽ‰ All Operations Completed Successfully! @@ -205,43 +219,66 @@ Optimization Recommendations: | Variable | Required | Default | Description | |----------|----------|---------|-------------| +| **Required Variables** | | | | | `COSMOS_ENDPOINT` | āœ… | - | Your Cosmos DB account endpoint | | `COSMOS_DB_NAME` | āœ… | `Hotels` | Database name | -| `COSMOS_CONTAINER_NAME` | āœ… | `hotels-insert-scale` | Container name | +| `COSMOS_CONTAINER_NAME` | āœ… | `Insert-at-scale` | Container name | | `COSMOS_RESOURCE_GROUP` | āœ… | - | Azure resource group (for RBAC setup) | | `PARTITION_KEY_PATH` | āœ… | `/HotelId` | Partition key path | -| `DATA_FILE_WITH_VECTORS` | āœ… | `../../data/HotelsData_toCosmosDB_Vector.json` | Path to data file | -| `EMBEDDED_FIELD` | āŒ | `text_embedding_ada_002` | Embedding field name | +| `AZURE_OPENAI_EMBEDDING_KEY` | āœ… | - | Azure OpenAI API key | +| `AZURE_OPENAI_EMBEDDING_ENDPOINT` | āœ… | - | Azure OpenAI service endpoint | +| **Optional Configuration** | | | | +| `DEBUG` | āŒ | `false` | Enable debug logging | +| `SHOW_COST` | āŒ | `false` | Display cost estimation information | +| `DATA_FILE_WITHOUT_VECTORS` | āŒ | `HotelsData.json` | Path to data file without vectors | +| `DATA_FILE_WITH_VECTORS` | āŒ | `../HotelsData_text_embedding_small_3.json` | Path to data file with vectors | +| `FIELD_TO_EMBED` | āŒ | `Description` | Field name to create embeddings for | +| `EMBEDDED_FIELD` | āŒ | `embedding` | Embedding field name | | `EMBEDDING_DIMENSIONS` | āŒ | `1536` | Vector dimensions | -| `BATCH_SIZE` | āŒ | `50` | Documents per batch | -| `MAX_CONCURRENCY` | āŒ | `-1` | Max concurrent operations | +| `LOAD_SIZE_BATCH` | āŒ | `100` | Batch size for loading data | +| `EMBEDDING_BATCH_SIZE` | āŒ | `20` | Batch size for embedding creation | +| `BATCH_SIZE` | āŒ | `5` | Documents per batch | +| `MAX_CONCURRENCY` | āŒ | `1` | Max concurrent operations | | `COSMOS_KEY` | āŒ | - | Primary key (if not using passwordless) | +| `COSMOS_CONNECTION_STRING` | āŒ | - | Full connection string (alternative to endpoint/key) | +| `AZURE_OPENAI_EMBEDDING_MODEL` | āŒ | `text-embedding-3-small` | Embedding model to use | ### Performance Tuning -- **Batch Size**: Start with 50, adjust based on document size and RU capacity -- **Concurrency**: Use `-1` for SDK optimization, or specify max concurrent operations -- **RU Provisioning**: Monitor 429 errors and scale RU/s accordingly +- **Batch Size**: Start with 5, adjust based on document size and RU capacity +- **RU Provisioning**: Autoscale is recommended for variable workloads - monitor 429 errors and adjust max RU/s accordingly +- **Cost Monitoring**: Set `SHOW_COST=true` to see detailed autoscale cost estimations and recommendations + +### Bulk Operations API + +This application uses Azure Cosmos DB's `container.items.bulk()` API which provides: +- **Improved Performance**: Optimized batch processing with automatic parallelization +- **Enhanced Retry Logic**: Built-in resilience for transient failures +- **Better Resource Utilization**: More efficient RU consumption patterns +- **Comprehensive Error Handling**: Detailed error reporting and recovery strategies ## šŸ› ļø Available Scripts | Script | Command | Description | |--------|---------|-------------| | **Build** | `npm run build` | Compile TypeScript to JavaScript | -| **Run** | `npm run start:insert-at-scale` | Execute the bulk insert operation | +| **Insert at Scale** | `npm run start:insert-at-scale` | Execute the bulk insert operation | +| **Delete All** | `npm run start:delete` | Delete all documents from container | +| **Insert Sample** | `npm run start:insert` | Insert sample data (smaller dataset) | ## šŸ“ Project Structure ``` nosql-insert-at-scale-typescript/ ā”œā”€ā”€ src/ -│ ā”œā”€ā”€ insert-at-scale.ts # Main application entry point +│ ā”œā”€ā”€ insert-at-scale.ts # Main bulk insert application +│ ā”œā”€ā”€ insert.ts # Sample insert operations +│ ā”œā”€ā”€ delete.ts # Bulk delete operations │ └── utils/ │ ā”œā”€ā”€ cosmos-operations.ts # Database and container operations -│ ā”œā”€ā”€ cosmos-resiliency.ts # Resilient insert with retry logic +│ ā”œā”€ā”€ cosmos-resiliency.ts # Resilient operations with all type definitions │ ā”œā”€ā”€ metrics.ts # Performance monitoring -│ ā”œā”€ā”€ resilience-interfaces.ts # Type definitions -│ └── utils.ts # Common utilities +│ └── utils.ts # Common utilities and cost calculations ā”œā”€ā”€ scripts/ │ ā”œā”€ā”€ setup-cosmos-nosql-dataplane-permissions.sh # RBAC setup script │ └── README.md # Script documentation @@ -305,17 +342,32 @@ Enable detailed logging: DEBUG=true ``` +### Cost Display + +Control cost estimation display: +```bash +# Add to .env +SHOW_COST=true # Show detailed autoscale cost calculations +SHOW_COST=false # Hide cost information (default) +``` + ## šŸ“Š Performance Optimization -### RU Consumption +### RU Consumption and Autoscale - **High RU/doc (>300)**: Consider document size reduction or index optimization -- **429 Errors**: Increase provisioned RU/s or enable autoscale -- **Cost Control**: Monitor serverless costs with built-in estimation +- **429 Errors**: Normal during high-throughput operations; autoscale handles these automatically +- **Autoscale Benefits**: Automatically adjusts RU/s based on demand, provides cost efficiency for variable workloads +- **Cost Monitoring**: Use `SHOW_COST=true` to get detailed monthly cost estimates and autoscale recommendations ### Latency Optimization -- **High Latency (>2000ms)**: Check region proximity and RU provisioning -- **Batch Tuning**: Adjust `BATCH_SIZE` based on document size -- **Concurrency**: Fine-tune `MAX_CONCURRENCY` for your workload +- **High Latency (>2000ms)**: Check region proximity and autoscale max RU/s configuration +- **Batch Tuning**: Adjust `BATCH_SIZE` based on document size (larger docs = smaller batches) + +### New `container.items.bulk()` API Benefits +- **Improved Throughput**: Up to 30% better performance compared to legacy bulk operations +- **Automatic Parallelization**: SDK optimizes parallel execution based on partition distribution +- **Enhanced Error Handling**: Better granular error reporting and retry strategies +- **Resource Efficiency**: More efficient RU consumption patterns ### Vector Index Management - **External Scripts**: Use `./scripts/remove-vector-indexes.sh` before bulk insert and `./scripts/restore-vector-indexes.sh` after diff --git a/nosql-insert-at-scale-typescript/docs/output/delete.txt b/nosql-insert-at-scale-typescript/docs/output/delete.txt new file mode 100644 index 0000000..64ba112 --- /dev/null +++ b/nosql-insert-at-scale-typescript/docs/output/delete.txt @@ -0,0 +1,245 @@ +> cosmos-vector-insert-at-scale@1.0.0 start:delete +> node --env-file .env dist/delete.js + +šŸ—‘ļø Azure Cosmos DB Delete All Documents Operations +================================================== +Environment: development +Timestamp: 2025-11-04T15:34:35.535Z +āœ… Cosmos DB client initialized successfully +šŸ” Connection Details: + Database: Hotels + Container: Insert-at-scale-2 + Partition Key Path: /HotelId + Batch Size: 5 + Max Concurrency: 1 +Getting database Hotels... +Getting container Insert-at-scale-2... +āœ… Database: Hotels +āœ… Container: Insert-at-scale-2 +āœ… Partition key: /HotelId + +šŸ“Š Step 1: Querying All Documents +================================== +šŸ” Querying document references from container... +āœ… Found 100 document references + +āš ļø WARNING: This will delete ALL 100 documents in the container! + Database: Hotels + Container: Insert-at-scale-2 + This action cannot be undone. + + Proceeding with deletion in 3 seconds... + +šŸ—‘ļø Step 2: Enterprise-Grade Bulk Delete +======================================= +Configuration: + - Database: Hotels + - Container: Insert-at-scale-2 + - Batch size: 5 + - Concurrency: 1 + - Documents to delete: 100 + +Starting resilient delete... +ā„¹ļø Starting resilient delete operation +ā„¹ļø Starting resilient delete operation +šŸš€ Starting batch processing of 100 documents... +ā„¹ļø Processing batch 1/20 +šŸ“¦ Processing document group 1/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 2/20 +šŸ“¦ Processing document group 2/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document 299cf84c-078e-41bc-acc0-3c0fb781db04 successfully deleted after 1 retry +ā„¹ļø Processing batch 3/20 +šŸ“¦ Processing document group 3/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 4/20 +šŸ“¦ Processing document group 4/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document 0ee4eef7-a2ca-4e46-8f09-b3e89340d87c successfully deleted after 1 retry +ā„¹ļø Processing batch 5/20 +šŸ“¦ Processing document group 5/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 6/20 +šŸ“¦ Processing document group 6/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document 71a41b46-b651-48dc-8305-615df91beb32 successfully deleted after 1 retry +ā„¹ļø Processing batch 7/20 +šŸ“¦ Processing document group 7/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 8/20 +šŸ“¦ Processing document group 8/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document bf76bea2-87ab-4ac4-9410-bb722aca083f successfully deleted after 1 retry +ā„¹ļø Processing batch 9/20 +šŸ“¦ Processing document group 9/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 10/20 +šŸ“¦ Processing document group 10/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document de7a105c-ac80-4f66-ab83-6f0f59dcf9a9 successfully deleted after 1 retry +ā„¹ļø Processing batch 11/20 +šŸ“¦ Processing document group 11/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 12/20 +šŸ“¦ Processing document group 12/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document 46e06ff7-7a87-4c01-b42a-c1bbeee10dbc successfully deleted after 1 retry +ā„¹ļø Processing batch 13/20 +šŸ“¦ Processing document group 13/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 14/20 +šŸ“¦ Processing document group 14/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document c8c396f3-5fdf-4983-bbb8-13fbc68ccaee successfully deleted after 1 retry +ā„¹ļø Processing batch 15/20 +šŸ“¦ Processing document group 15/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 16/20 +šŸ“¦ Processing document group 16/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document 13a43873-a6f4-4a55-8508-fcf837d6f500 successfully deleted after 1 retry +ā„¹ļø Processing batch 17/20 +šŸ“¦ Processing document group 17/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 18/20 +šŸ“¦ Processing document group 18/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document ac9c01cd-4306-4650-9e41-91a6a66be884 successfully deleted after 1 retry +ā„¹ļø Processing batch 19/20 +šŸ“¦ Processing document group 19/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 5 } +ā„¹ļø Processing batch 20/20 +šŸ“¦ Processing document group 20/20 (5 documents)... +šŸ“‹ Bulk delete completed for document group with 5 operations + Response length: 5 + Status code summary: { '204': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk delete completed for document group with 1 operations + Response length: 1 + Status code summary: { '204': 1 } +āœ… Document bedf98d6-7351-4633-ba02-2f7c2b50ac77 successfully deleted after 1 retry +ā„¹ļø Resilient delete operation completed +šŸŽÆ Batch processing completed: 100 deleted, 0 failed, 10 retries +ā„¹ļø Resilient delete operation completed + +āœ… Delete Operation Complete: + Deleted: 100/100 documents + Failed: 0, Retries: 10 + Total time: 14.4s + RU consumed: 30,791.238 + Avg RU/doc: 307.91 + Avg latency: 39ms/doc + Peak RU/s observed: 313.1 + šŸ’” Set SHOW_COST=true to see cost estimation + +āš ļø Errors encountered: + 429: 10 occurrences + šŸ’” Autoscale Tips: + - Your current max autoscale RU/s may be too low + - Consider increasing max autoscale RU/s to 1000 + - Or reduce batch size further (currently 5) + +šŸ“ˆ Step 3: Performance Analysis +=============================== +RU Consumption Analysis: + - Total RUs: 30,791.238 + - Average RU/document: 307.91 + - Peak RU/operation: 313.14 + +Performance Metrics: + - Total duration: 14.3s + - Average latency: 39ms/document + - Peak latency: 114ms + - Throughput: 7.0 docs/second + +Optimization Recommendations: + āš ļø High RU consumption per document (307.91 RU/doc) + - Consider optimizing query patterns + āš ļø Rate limiting detected - consider increasing batch delays + šŸ’” For detailed optimization guidance, see documentation + +šŸŽ‰ All Operations Completed Successfully! +======================================== +āœ… 100 documents deleted with resilience +āœ… Performance metrics captured + +šŸ“š Summary: + - Container has been cleared of all documents + - Delete operation completed with retry logic + - RU consumption tracked and analyzed +āœ… Cosmos DB client disposed successfully \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/docs/output/insert.txt b/nosql-insert-at-scale-typescript/docs/output/insert.txt new file mode 100644 index 0000000..de1b4c6 --- /dev/null +++ b/nosql-insert-at-scale-typescript/docs/output/insert.txt @@ -0,0 +1,159 @@ +> cosmos-vector-insert-at-scale@1.0.0 start:insert +> node --env-file .env dist/insert.js + +šŸØ Azure Cosmos DB Insert at Scale Operations +============================================== +Environment: development +Timestamp: 2025-11-04T15:33:35.144Z +āœ… Cosmos DB client initialized successfully +šŸ” Connection Details: + Database: Hotels + Container: Insert-at-scale-2 + Partition Key Path: /HotelId + Batch Size: 5 + Max Concurrency: 1 + +šŸ“Š Step 1: Loading Data +======================= +Reading JSON file from C:\Users\diberry\repos\samples\cosmos-db-vector-samples\nosql-insert-at-scale-typescript\HotelsData_text_embedding_small_3.json +āœ… Loaded 50 documents from ../HotelsData_text_embedding_small_3.json +šŸ” Validating that documents contain embedding field 'embedding'... +āœ… All documents contain valid embedding field 'embedding' with 1536 dimensions + +šŸš€ Step 2: Enterprise-Grade Bulk Insert +====================================== +Configuration: + - Database: Hotels + - Container: Insert-at-scale-2 + - Batch size: 5 + - Concurrency: 1 + - Documents to insert: 50 +Getting database Hotels... +Getting container Insert-at-scale-2... +āœ… Database: Hotels +āœ… Container: Insert-at-scale-2 +āœ… Partition key: /HotelId + +Starting resilient insert... +ā„¹ļø Starting resilient insert operation +šŸš€ Starting batch processing of 50 documents... +ā„¹ļø Processing batch 1/10 +šŸ“¦ Processing document group 1/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 5 } +ā„¹ļø Processing batch 2/10 +šŸ“¦ Processing document group 2/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 5 } +ā„¹ļø Processing batch 3/10 +šŸ“¦ Processing document group 3/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 5 } +ā„¹ļø Processing batch 4/10 +šŸ“¦ Processing document group 4/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 4, '429': 1 } +ā³ Rate limiting detected - retrying 1 documents in 1s (attempt 2/4) +šŸ“‹ Bulk operation completed for document group with 1 operations + Response length: 1 + Status code summary: { '201': 1 } +āœ… Document 27 successfully inserted after 1 retry +ā„¹ļø Processing batch 5/10 +šŸ“¦ Processing document group 5/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 5 } +ā„¹ļø Processing batch 6/10 +šŸ“¦ Processing document group 6/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 5 } +ā„¹ļø Processing batch 7/10 +šŸ“¦ Processing document group 7/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 3, '429': 2 } +ā³ Rate limiting detected - retrying 2 documents in 1s (attempt 2/4) +šŸ“‹ Bulk operation completed for document group with 2 operations + Response length: 2 + Status code summary: { '201': 2 } +āœ… Document 4 successfully inserted after 1 retry +āœ… Document 40 successfully inserted after 1 retry +ā„¹ļø Processing batch 8/10 +šŸ“¦ Processing document group 8/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 5 } +ā„¹ļø Processing batch 9/10 +šŸ“¦ Processing document group 9/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 5 } +ā„¹ļø Processing batch 10/10 +šŸ“¦ Processing document group 10/10 (5 documents)... +šŸ“‹ Bulk operation completed for document group with 5 operations + Response length: 5 + Status code summary: { '201': 3, '429': 2 } +ā³ Rate limiting detected - retrying 2 documents in 1s (attempt 2/4) +šŸ“‹ Bulk operation completed for document group with 2 operations + Response length: 2 + Status code summary: { '201': 2 } +āœ… Document 8 successfully inserted after 1 retry +āœ… Document 9 successfully inserted after 1 retry +ā„¹ļø Resilient insert operation completed +šŸŽÆ Batch processing completed: 50 inserted, 0 failed, 5 retries + +āœ… Insert Operation Complete: + Inserted: 50/50 documents + Failed: 0, Retries: 5 + Total time: 8.0s + RU consumed: 15,559.476 + Avg RU/doc: 311.19 + Avg latency: 94ms/doc + Peak RU/s observed: 316.4 + šŸ’” Set SHOW_COST=true to see cost estimation + +āš ļø Errors encountered: + 429: 5 occurrences + šŸ’” Autoscale Tips: + - Your current max autoscale RU/s may be too low + - Autoscale takes 10-30 seconds to scale up + - Consider increasing max autoscale RU/s to 1000 + - Or reduce batch size further (currently 5) + +šŸ“ˆ Step 3: Performance Analysis +============================== +RU Consumption Analysis: + - Total RUs: 15,559.476 + - Average RU/document: 311.19 + - Peak RU/operation: 316.43 + +Performance Metrics: + - Total duration: 8.0s + - Average latency: 94ms/document + - Peak latency: 220ms + - Throughput: 6.2 docs/second + +Optimization Recommendations: + āš ļø High RU consumption per document (311.19 RU/doc) + - Consider document size optimization + - Review indexing policies + šŸ’” For detailed optimization guidance, see INSERT_AT_SCALE_GUIDE.md + +šŸŽ‰ All Operations Completed Successfully! +======================================== +āœ… 50 documents inserted with resilience +āœ… Performance metrics captured + +šŸ“š Next Steps: + - Review the performance metrics above + - Adjust batch sizes and concurrency based on your RU provisioning + - Implement the patterns in your production workloads + - Monitor RU consumption and optimize accordingly + +šŸ“– For detailed documentation, see INSERT_AT_SCALE_GUIDE.md +āœ… Cosmos DB client disposed successfully \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/package-lock.json b/nosql-insert-at-scale-typescript/package-lock.json new file mode 100644 index 0000000..edad974 --- /dev/null +++ b/nosql-insert-at-scale-typescript/package-lock.json @@ -0,0 +1,762 @@ +{ + "name": "cosmos-vector-insert-at-scale", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "cosmos-vector-insert-at-scale", + "version": "1.0.0", + "dependencies": { + "@azure/cosmos": "^4.5.1", + "@azure/identity": "^4.11.1", + "openai": "^6.7.0", + "uuid": "^13.0.0" + }, + "devDependencies": { + "@types/node": "^24.6.0", + "@types/uuid": "^10.0.0", + "typescript": "^5.9.3" + } + }, + "node_modules/@azure-rest/core-client": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@azure-rest/core-client/-/core-client-2.5.1.tgz", + "integrity": "sha512-EHaOXW0RYDKS5CFffnixdyRPak5ytiCtU7uXDcP/uiY+A6jFRwNGzzJBiznkCzvi5EYpY+YWinieqHb0oY916A==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.1.2", + "@azure/core-auth": "^1.10.0", + "@azure/core-rest-pipeline": "^1.22.0", + "@azure/core-tracing": "^1.3.0", + "@typespec/ts-http-runtime": "^0.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/abort-controller": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz", + "integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==", + "license": "MIT", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-auth": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.10.1.tgz", + "integrity": "sha512-ykRMW8PjVAn+RS6ww5cmK9U2CyH9p4Q88YJwvUslfuMmN98w/2rdGRLPqJYObapBCdzBVeDgYWdJnFPFb7qzpg==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.1.2", + "@azure/core-util": "^1.13.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/core-client": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.10.1.tgz", + "integrity": "sha512-Nh5PhEOeY6PrnxNPsEHRr9eimxLwgLlpmguQaHKBinFYA/RU9+kOYVOQqOrTsCL+KSxrLLl1gD8Dk5BFW/7l/w==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.1.2", + "@azure/core-auth": "^1.10.0", + "@azure/core-rest-pipeline": "^1.22.0", + "@azure/core-tracing": "^1.3.0", + "@azure/core-util": "^1.13.0", + "@azure/logger": "^1.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/core-http-compat": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@azure/core-http-compat/-/core-http-compat-2.3.1.tgz", + "integrity": "sha512-az9BkXND3/d5VgdRRQVkiJb2gOmDU8Qcq4GvjtBmDICNiQ9udFmDk4ZpSB5Qq1OmtDJGlQAfBaS4palFsazQ5g==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.1.2", + "@azure/core-client": "^1.10.0", + "@azure/core-rest-pipeline": "^1.22.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/core-lro": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.7.2.tgz", + "integrity": "sha512-0YIpccoX8m/k00O7mDDMdJpbr6mf1yWo2dfmxt5A8XVZVVMz2SSKaEbMCeJRvgQ0IaSlqhjT47p4hVIRRy90xw==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.0.0", + "@azure/core-util": "^1.2.0", + "@azure/logger": "^1.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-paging": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/@azure/core-paging/-/core-paging-1.6.2.tgz", + "integrity": "sha512-YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA==", + "license": "MIT", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/core-rest-pipeline": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.22.1.tgz", + "integrity": "sha512-UVZlVLfLyz6g3Hy7GNDpooMQonUygH7ghdiSASOOHy97fKj/mPLqgDX7aidOijn+sCMU+WU8NjlPlNTgnvbcGA==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.1.2", + "@azure/core-auth": "^1.10.0", + "@azure/core-tracing": "^1.3.0", + "@azure/core-util": "^1.13.0", + "@azure/logger": "^1.3.0", + "@typespec/ts-http-runtime": "^0.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/core-tracing": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.3.1.tgz", + "integrity": "sha512-9MWKevR7Hz8kNzzPLfX4EAtGM2b8mr50HPDBvio96bURP/9C+HjdH3sBlLSNNrvRAr5/k/svoH457gB5IKpmwQ==", + "license": "MIT", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/core-util": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.13.1.tgz", + "integrity": "sha512-XPArKLzsvl0Hf0CaGyKHUyVgF7oDnhKoP85Xv6M4StF/1AhfORhZudHtOyf2s+FcbuQ9dPRAjB8J2KvRRMUK2A==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.1.2", + "@typespec/ts-http-runtime": "^0.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/cosmos": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@azure/cosmos/-/cosmos-4.7.0.tgz", + "integrity": "sha512-a8OV7E41u/ZDaaaDAFdqTTiJ7c82jZc/+ot3XzNCIIilR25NBB+1ixzWQOAgP8SHRUIKfaUl6wAPdTuiG9I66A==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.1.2", + "@azure/core-auth": "^1.9.0", + "@azure/core-rest-pipeline": "^1.19.1", + "@azure/core-tracing": "^1.2.0", + "@azure/core-util": "^1.11.0", + "@azure/keyvault-keys": "^4.9.0", + "@azure/logger": "^1.1.4", + "fast-json-stable-stringify": "^2.1.0", + "priorityqueuejs": "^2.0.0", + "semaphore": "^1.1.0", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/identity": { + "version": "4.13.0", + "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-4.13.0.tgz", + "integrity": "sha512-uWC0fssc+hs1TGGVkkghiaFkkS7NkTxfnCH+Hdg+yTehTpMcehpok4PgUKKdyCH+9ldu6FhiHRv84Ntqj1vVcw==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.0.0", + "@azure/core-auth": "^1.9.0", + "@azure/core-client": "^1.9.2", + "@azure/core-rest-pipeline": "^1.17.0", + "@azure/core-tracing": "^1.0.0", + "@azure/core-util": "^1.11.0", + "@azure/logger": "^1.0.0", + "@azure/msal-browser": "^4.2.0", + "@azure/msal-node": "^3.5.0", + "open": "^10.1.0", + "tslib": "^2.2.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/keyvault-common": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@azure/keyvault-common/-/keyvault-common-2.0.0.tgz", + "integrity": "sha512-wRLVaroQtOqfg60cxkzUkGKrKMsCP6uYXAOomOIysSMyt1/YM0eUn9LqieAWM8DLcU4+07Fio2YGpPeqUbpP9w==", + "license": "MIT", + "dependencies": { + "@azure/abort-controller": "^2.0.0", + "@azure/core-auth": "^1.3.0", + "@azure/core-client": "^1.5.0", + "@azure/core-rest-pipeline": "^1.8.0", + "@azure/core-tracing": "^1.0.0", + "@azure/core-util": "^1.10.0", + "@azure/logger": "^1.1.4", + "tslib": "^2.2.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/keyvault-keys": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@azure/keyvault-keys/-/keyvault-keys-4.10.0.tgz", + "integrity": "sha512-eDT7iXoBTRZ2n3fLiftuGJFD+yjkiB1GNqzU2KbY1TLYeXeSPVTVgn2eJ5vmRTZ11978jy2Kg2wI7xa9Tyr8ag==", + "license": "MIT", + "dependencies": { + "@azure-rest/core-client": "^2.3.3", + "@azure/abort-controller": "^2.1.2", + "@azure/core-auth": "^1.9.0", + "@azure/core-http-compat": "^2.2.0", + "@azure/core-lro": "^2.7.2", + "@azure/core-paging": "^1.6.2", + "@azure/core-rest-pipeline": "^1.19.0", + "@azure/core-tracing": "^1.2.0", + "@azure/core-util": "^1.11.0", + "@azure/keyvault-common": "^2.0.0", + "@azure/logger": "^1.1.4", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@azure/logger": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.3.0.tgz", + "integrity": "sha512-fCqPIfOcLE+CGqGPd66c8bZpwAji98tZ4JI9i/mlTNTlsIWslCfpg48s/ypyLxZTump5sypjrKn2/kY7q8oAbA==", + "license": "MIT", + "dependencies": { + "@typespec/ts-http-runtime": "^0.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@azure/msal-browser": { + "version": "4.26.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-4.26.0.tgz", + "integrity": "sha512-Ie3SZ4IMrf9lSwWVzzJrhTPE+g9+QDUfeor1LKMBQzcblp+3J/U1G8hMpNSfLL7eA5F/DjjPXkATJ5JRUdDJLA==", + "license": "MIT", + "dependencies": { + "@azure/msal-common": "15.13.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-common": { + "version": "15.13.1", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.13.1.tgz", + "integrity": "sha512-vQYQcG4J43UWgo1lj7LcmdsGUKWYo28RfEvDQAEMmQIMjSFufvb+pS0FJ3KXmrPmnWlt1vHDl3oip6mIDUQ4uA==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-node": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-3.8.1.tgz", + "integrity": "sha512-HszfqoC+i2C9+BRDQfuNUGp15Re7menIhCEbFCQ49D3KaqEDrgZIgQ8zSct4T59jWeUIL9N/Dwiv4o2VueTdqQ==", + "license": "MIT", + "dependencies": { + "@azure/msal-common": "15.13.1", + "jsonwebtoken": "^9.0.0", + "uuid": "^8.3.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@azure/msal-node/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@types/node": { + "version": "24.10.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.0.tgz", + "integrity": "sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/uuid": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typespec/ts-http-runtime": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@typespec/ts-http-runtime/-/ts-http-runtime-0.3.1.tgz", + "integrity": "sha512-SnbaqayTVFEA6/tYumdF0UmybY0KHyKwGPBXnyckFlrrKdhWFrL3a2HIPXHjht5ZOElKGcXfD2D63P36btb+ww==", + "license": "MIT", + "dependencies": { + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "license": "BSD-3-Clause" + }, + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "license": "MIT", + "dependencies": { + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "license": "MIT", + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "license": "MIT" + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "license": "MIT", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "license": "MIT", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jsonwebtoken": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", + "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", + "license": "MIT", + "dependencies": { + "jws": "^3.2.2", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + } + }, + "node_modules/jwa": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.2.tgz", + "integrity": "sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==", + "license": "MIT", + "dependencies": { + "buffer-equal-constant-time": "^1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jws": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", + "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "license": "MIT", + "dependencies": { + "jwa": "^1.4.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==", + "license": "MIT" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==", + "license": "MIT" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" + }, + "node_modules/lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "license": "MIT" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/open": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz", + "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", + "license": "MIT", + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "wsl-utils": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/openai": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/openai/-/openai-6.7.0.tgz", + "integrity": "sha512-mgSQXa3O/UXTbA8qFzoa7aydbXBJR5dbLQXCRapAOtoNT+v69sLdKMZzgiakpqhclRnhPggPAXoniVGn2kMY2A==", + "license": "Apache-2.0", + "bin": { + "openai": "bin/cli" + }, + "peerDependencies": { + "ws": "^8.18.0", + "zod": "^3.25 || ^4.0" + }, + "peerDependenciesMeta": { + "ws": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, + "node_modules/priorityqueuejs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/priorityqueuejs/-/priorityqueuejs-2.0.0.tgz", + "integrity": "sha512-19BMarhgpq3x4ccvVi8k2QpJZcymo/iFUcrhPd4V96kYGovOdTsWwy7fxChYi4QY+m2EnGBWSX9Buakz+tWNQQ==", + "license": "MIT" + }, + "node_modules/run-applescript": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz", + "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/semaphore": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semaphore/-/semaphore-1.1.0.tgz", + "integrity": "sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/uuid": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-13.0.0.tgz", + "integrity": "sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist-node/bin/uuid" + } + }, + "node_modules/wsl-utils": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz", + "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==", + "license": "MIT", + "dependencies": { + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/nosql-insert-at-scale-typescript/package.json b/nosql-insert-at-scale-typescript/package.json index c82f48f..868a175 100644 --- a/nosql-insert-at-scale-typescript/package.json +++ b/nosql-insert-at-scale-typescript/package.json @@ -5,11 +5,14 @@ "type": "module", "scripts": { "build": "tsc", - "start:insert-at-scale": "node --env-file .env dist/insert-at-scale.js" + "start:create-embeddings": "node --env-file .env dist/create-embeddings.js", + "start:insert": "node --env-file .env dist/insert.js", + "start:delete": "node --env-file .env dist/delete.js" }, "dependencies": { "@azure/cosmos": "^4.5.1", "@azure/identity": "^4.11.1", + "openai": "^6.7.0", "uuid": "^13.0.0" }, "devDependencies": { diff --git a/nosql-insert-at-scale-typescript/src/create-embeddings.ts b/nosql-insert-at-scale-typescript/src/create-embeddings.ts new file mode 100644 index 0000000..6610209 --- /dev/null +++ b/nosql-insert-at-scale-typescript/src/create-embeddings.ts @@ -0,0 +1,132 @@ +/** + * Module for creating embedding vectors using OpenAI API + * Supports text embedding models for generating embeddings + * that can be used with Cosmos DB MongoDB vCore vector search + */ +import * as path from "node:path"; +import { AzureOpenAI } from "openai"; +import { Embedding } from "openai/resources"; +import { readFileReturnJson, writeFileJson, JsonData } from "./utils/utils.js"; + +// ESM specific features - create __dirname equivalent +import { fileURLToPath } from "node:url"; +import { dirname } from "node:path"; +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +const apiKey = process.env.AZURE_OPENAI_EMBEDDING_KEY; +const apiVersion = process.env.AZURE_OPENAI_EMBEDDING_API_VERSION; +const endpoint = process.env.AZURE_OPENAI_EMBEDDING_ENDPOINT; +console.log(`Using OpenAI endpoint: ${endpoint}`); +const deployment = process.env.AZURE_OPENAI_EMBEDDING_MODEL!; + +const dataWithVectors = process.env.DATA_FILE_WITH_VECTORS!; +const dataWithoutVectors = process.env.DATA_FILE_WITHOUT_VECTORS!; +const fieldToEmbed = process.env.FIELD_TO_EMBED! || "description"; +const newEmbeddedField = process.env.EMBEDDED_FIELD! || deployment; +const batchSize = parseInt(process.env.EMBEDDING_BATCH_SIZE || '16', 10); + +// Define a reusable delay function +async function delay(ms: number = 200): Promise { + await new Promise(resolve => setTimeout(resolve, ms)); +} + +export async function createEmbeddings(client: AzureOpenAI, model: string, inputItems: string[]): Promise { + const response = await client.embeddings.create({ + model, + input: inputItems + }); + + if (!response.data || response.data.length === 0) { + throw new Error(`No embedding data returned`); + } + return response.data; +} + +export async function processEmbeddingBatch( + client: AzureOpenAI, + model: string, + fieldToEmbed: string, + newEmbeddedField: string, + maxEmbeddings: number, + items: T[] + +): Promise { + if (!Array.isArray(items) || items.length === 0) { + throw new Error("Items must be a non-empty array"); + } + + if (!fieldToEmbed) { + throw new Error("Field to embed must be specified"); + } + + const itemsWithEmbeddings: T[] = []; + maxEmbeddings = maxEmbeddings || items.length; + + // Process in batches to avoid rate limits and memory issues + for (let i = 0; i < maxEmbeddings; i += batchSize) { + const batchEnd = Math.min(i + batchSize, items.length); + console.log(`Processing batch: ${i} to ${batchEnd - 1} (of ${items.length} items)`); + + const batchItems = items.slice(i, batchEnd); + const textsToEmbed = batchItems.map(item => { + if (!item[fieldToEmbed]) { + console.warn(`Item is missing the field to embed: ${fieldToEmbed}`); + return ""; // Provide a fallback value to prevent API errors + } + return item[fieldToEmbed]; + }); + + try { + const embeddings = await createEmbeddings(client, model, textsToEmbed); + + embeddings.forEach((embeddingData, index) => { + const originalItem = batchItems[index]; + const newItem = { + ...originalItem, + [newEmbeddedField]: embeddingData.embedding + }; + itemsWithEmbeddings.push(newItem); + }); + + // Add a small delay between batches to avoid rate limiting + if (batchEnd < items.length) { + await delay(); + } + } catch (error) { + console.error(`Error generating embeddings for batch ${i}:`, error); + throw error; + } + } + + return itemsWithEmbeddings; +} + + +try { + + const client = new AzureOpenAI( { + apiKey, + apiVersion, + endpoint, + deployment + }); + + const data = await readFileReturnJson(path.join(__dirname, "..", dataWithoutVectors!)); + const model = deployment; + const maxEmbeddings = data.length; + + const embeddings = await processEmbeddingBatch( + client, + model, + fieldToEmbed, + newEmbeddedField, + maxEmbeddings, + data + ); + + await writeFileJson(path.join(__dirname, "..", dataWithVectors!), embeddings); + +} catch (error) { + console.error(`Failed to save embeddings to file: ${(error as Error).message}`); +} \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/src/delete.ts b/nosql-insert-at-scale-typescript/src/delete.ts new file mode 100644 index 0000000..751c0aa --- /dev/null +++ b/nosql-insert-at-scale-typescript/src/delete.ts @@ -0,0 +1,302 @@ +/** + * Azure Cosmos DB Delete All Documents Operations + * + * This example demonstrates: + * 1. Querying all documents in a container + * 2. Enterprise-grade resilient bulk deletion + * 3. Performance monitoring and optimization + * 4. Error handling and retry patterns + * + * Key Features: Robust retry logic, RU scaling guidance, bulk delete operations, + * performance monitoring, and Azure best practices implementation. + */ +import { fileURLToPath } from "node:url"; +import { dirname } from "node:path"; + +// Utils imports +import { getClientsPasswordless, calculateServerlessRUCost, calculateAutoscaleRUCost, shouldShowCost } from './utils/utils.js'; +import { + ensureDatabaseAndContainer, + queryAllDocumentRefs +} from './utils/cosmos-operations.js'; +import { resilientDelete, DEFAULT_INSERT_CONFIG, InsertConfig, InsertResult } from './utils/cosmos-resiliency.js'; +import { Container, CosmosClient } from '@azure/cosmos'; +import { MetricsCollector } from './utils/metrics.js'; + +// ESM support +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +// Configuration +const config = { + // Database settings + databaseName: process.env.COSMOS_DB_NAME || 'Hotels', + containerName: process.env.COSMOS_CONTAINER_NAME || 'hotels-insert-scale', + partitionKeyPath: process.env.PARTITION_KEY_PATH || '/HotelId', + + // Delete settings + batchSize: parseInt(process.env.BATCH_SIZE || '100', 10), // Larger batch for deletes + maxConcurrency: parseInt(process.env.MAX_CONCURRENCY || '-1', 10) +}; + +// ------------------------------------------- +// Document Query Functions +// ------------------------------------------- + +/** + * Query all documents in the container + */ +async function queryAllDocuments(container: Container): Promise<{ id: string, partitionKey: any }[]> { + console.log('\nšŸ“Š Step 1: Querying All Documents'); + console.log('=================================='); + + try { + const documentRefs = await queryAllDocumentRefs(container, config.partitionKeyPath); + + if (documentRefs.length === 0) { + console.log(`ā„¹ļø Container is already empty`); + } + + return documentRefs; + } catch (error) { + console.error(`āŒ Failed to query documents:`, error); + throw error; + } +} + +// ------------------------------------------- +// Delete Functions +// ------------------------------------------- + +/** + * Step 2: Perform resilient bulk delete + */ +async function performResilientDelete(client: CosmosClient, documentRefs: { id: string, partitionKey: any }[]): Promise { + console.log('\nšŸ—‘ļø Step 2: Enterprise-Grade Bulk Delete'); + console.log('======================================='); + + if (documentRefs.length === 0) { + console.log('ā„¹ļø No documents to delete'); + return { + total: 0, + inserted: 0, // Using 'inserted' for 'deleted' to maintain interface consistency + failed: 0, + retried: 0, + metrics: { + totalRu: 0, + totalDurationMs: 0, + maxRu: 0, + avgRuPerDoc: 0, + avgLatencyMs: 0, + maxLatencyMs: 0, + errorCounts: {} + }, + metricsCollector: new MetricsCollector() + }; + } + + // Configuration for resilient delete + const deleteConfig: InsertConfig = { + ...DEFAULT_INSERT_CONFIG, + batchSize: config.batchSize, + maxConcurrency: config.maxConcurrency, + partitionKeyPath: config.partitionKeyPath + }; + + console.log(`Configuration:`); + console.log(` - Database: ${config.databaseName}`); + console.log(` - Container: ${config.containerName}`); + console.log(` - Batch size: ${deleteConfig.batchSize}`); + console.log(` - Concurrency: ${deleteConfig.maxConcurrency === -1 ? 'SDK Optimized' : deleteConfig.maxConcurrency}`); + console.log(` - Documents to delete: ${documentRefs.length}`); + + // Get container + const container = client.database(config.databaseName).container(config.containerName); + + // Perform resilient bulk delete + console.log(`\nStarting resilient delete...`); + const startTime = Date.now(); + + const result = await resilientDelete(container, documentRefs, deleteConfig); + const totalTime = Date.now() - startTime; + + // Display comprehensive results + console.log(`\nāœ… Delete Operation Complete:`); + console.log(` Deleted: ${result.inserted}/${documentRefs.length} documents`); // Using 'inserted' for 'deleted' + console.log(` Failed: ${result.failed}, Retries: ${result.retried}`); + console.log(` Total time: ${(totalTime / 1000).toFixed(1)}s`); + console.log(` RU consumed: ${result.metrics.totalRu.toLocaleString()}`); + console.log(` Avg RU/doc: ${result.metrics.avgRuPerDoc.toFixed(2)}`); + console.log(` Avg latency: ${result.metrics.avgLatencyMs.toFixed(0)}ms/doc`); + + // Show cost estimation for autoscale (only if SHOW_COST=true) + if (shouldShowCost()) { + const peakRUsPerSecond = Math.ceil(result.metrics.maxRu); + + console.log(`\nšŸ’° Cost Estimation (Delete Operation):`); + + // Calculate autoscale cost based on observed usage + const autoscaleCost = calculateAutoscaleRUCost({ + maxAutoscaleRUs: Math.max(peakRUsPerSecond * 2, 1000), + totalRUsConsumed: result.metrics.totalRu, + days: 30, + regionCount: 1, + averageUtilizationPercent: 60 + }); + + console.log(` Estimated autoscale cost: $${autoscaleCost.estimatedCost.toFixed(2)}/month`); + console.log(` Peak RU/s observed: ${result.metrics.maxRu.toFixed(1)}`); + + // Also show serverless comparison + const serverlessCost = calculateServerlessRUCost({ + totalRUs: result.metrics.totalRu, + regionCount: 1 + }); + + console.log(` Serverless comparison: $${serverlessCost.estimatedCost.toFixed(6)} (this operation only)`); + } else { + console.log(` Peak RU/s observed: ${result.metrics.maxRu.toFixed(1)}`); + console.log(` šŸ’” Set SHOW_COST=true to see cost estimation`); + } + + // Show errors if any occurred + if (Object.keys(result.metrics.errorCounts).length > 0) { + console.log(`\nāš ļø Errors encountered:`); + for (const [errorCode, count] of Object.entries(result.metrics.errorCounts)) { + console.log(` ${errorCode}: ${count} occurrences`); + } + if (result.metrics.errorCounts['429']) { + const peakRUsPerSecond = Math.ceil(result.metrics.maxRu); + console.log(` šŸ’” Autoscale Tips:`); + console.log(` - Your current max autoscale RU/s may be too low`); + console.log(` - Consider increasing max autoscale RU/s to ${Math.max(peakRUsPerSecond * 3, 1000)}`); + console.log(` - Or reduce batch size further (currently ${config.batchSize})`); + } + } + + return result; +} + +// ------------------------------------------- +// Performance Analysis Functions +// ------------------------------------------- + +/** + * Step 3: Show performance analysis + */ +async function showPerformanceAnalysis(deleteResult: InsertResult): Promise { + console.log('\nšŸ“ˆ Step 3: Performance Analysis'); + console.log('==============================='); + + console.log(`RU Consumption Analysis:`); + console.log(` - Total RUs: ${deleteResult.metrics.totalRu.toLocaleString()}`); + console.log(` - Average RU/document: ${deleteResult.metrics.avgRuPerDoc.toFixed(2)}`); + console.log(` - Peak RU/operation: ${deleteResult.metrics.maxRu.toFixed(2)}`); + + console.log(`\nPerformance Metrics:`); + console.log(` - Total duration: ${(deleteResult.metrics.totalDurationMs / 1000).toFixed(1)}s`); + console.log(` - Average latency: ${deleteResult.metrics.avgLatencyMs.toFixed(0)}ms/document`); + console.log(` - Peak latency: ${deleteResult.metrics.maxLatencyMs || 0}ms`); + + if (deleteResult.inserted > 0) { // Using 'inserted' field for 'deleted' + const throughput = deleteResult.inserted / (deleteResult.metrics.totalDurationMs / 1000); + console.log(` - Throughput: ${throughput.toFixed(1)} docs/second`); + } + + console.log(`\nOptimization Recommendations:`); + if (deleteResult.metrics.avgRuPerDoc > 10) { + console.log(` āš ļø High RU consumption per document (${deleteResult.metrics.avgRuPerDoc.toFixed(2)} RU/doc)`); + console.log(` - Consider optimizing query patterns`); + } + if (deleteResult.metrics.errorCounts && deleteResult.metrics.errorCounts['429']) { + console.log(` āš ļø Rate limiting detected - consider increasing batch delays`); + } + console.log(` šŸ’” For detailed optimization guidance, see documentation`); +} + +// ------------------------------------------- +// Main Function +// ------------------------------------------- + +async function main(): Promise { + console.log('šŸ—‘ļø Azure Cosmos DB Delete All Documents Operations'); + console.log('=================================================='); + console.log(`Environment: ${process.env.NODE_ENV || 'development'}`); + console.log(`Timestamp: ${new Date().toISOString()}`); + + try { + // Initialize Cosmos DB client + const { dbClient } = getClientsPasswordless(); + + if (!dbClient) { + throw new Error('āŒ Cosmos DB client is not configured properly. Please check your Cosmos DB environment variables.'); + } + + console.log('āœ… Cosmos DB client initialized successfully'); + + // Debug: Show connection details (without sensitive info) + console.log(`šŸ” Connection Details:`); + console.log(` Database: ${config.databaseName}`); + console.log(` Container: ${config.containerName}`); + console.log(` Partition Key Path: ${config.partitionKeyPath}`); + console.log(` Batch Size: ${config.batchSize}`); + console.log(` Max Concurrency: ${config.maxConcurrency === -1 ? 'SDK Optimized' : config.maxConcurrency}`); + + // Ensure database and container exist + await ensureDatabaseAndContainer( + dbClient, + config.databaseName, + config.containerName, + config.partitionKeyPath + ); + + const container = dbClient.database(config.databaseName).container(config.containerName); + + // Step 1: Query all documents + const documentRefs = await queryAllDocuments(container); + + if (documentRefs.length === 0) { + console.log('\nāœ… Container is already empty - nothing to delete'); + return; + } + + // Confirmation prompt simulation (in real scenario, you might want actual user input) + console.log(`\nāš ļø WARNING: This will delete ALL ${documentRefs.length} documents in the container!`); + console.log(` Database: ${config.databaseName}`); + console.log(` Container: ${config.containerName}`); + console.log(` This action cannot be undone.`); + console.log(`\n Proceeding with deletion in 3 seconds...`); + + // 3 second delay for safety + await new Promise(resolve => setTimeout(resolve, 3000)); + + // Step 2: Perform resilient bulk delete + const deleteResult = await performResilientDelete(dbClient, documentRefs); + + // Step 3: Show performance analysis + await showPerformanceAnalysis(deleteResult); + + console.log('\nšŸŽ‰ All Operations Completed Successfully!'); + console.log('========================================'); + console.log(`āœ… ${deleteResult.inserted} documents deleted with resilience`); // Using 'inserted' field for 'deleted' + console.log(`āœ… Performance metrics captured`); + + console.log(`\nšŸ“š Summary:`); + console.log(` - Container has been cleared of all documents`); + console.log(` - Delete operation completed with retry logic`); + console.log(` - RU consumption tracked and analyzed`); + + // Properly dispose of Cosmos client to allow clean process termination + if (dbClient) { + await dbClient.dispose(); + console.log('āœ… Cosmos DB client disposed successfully'); + } + + } catch (error) { + console.error("āŒ Fatal error in delete operations:", error); + process.exit(1); + } +} + +// Execute main function +main().catch(console.error); \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/src/insert-at-scale.ts b/nosql-insert-at-scale-typescript/src/insert.ts similarity index 77% rename from nosql-insert-at-scale-typescript/src/insert-at-scale.ts rename to nosql-insert-at-scale-typescript/src/insert.ts index a7e7766..b4cedbb 100644 --- a/nosql-insert-at-scale-typescript/src/insert-at-scale.ts +++ b/nosql-insert-at-scale-typescript/src/insert.ts @@ -16,12 +16,11 @@ import { fileURLToPath } from "node:url"; import { dirname } from "node:path"; // Utils imports -import { JsonData, readFileReturnJson, getClientsPasswordless, calculateRUCost } from './utils/utils.js'; +import { JsonData, readFileReturnJson, getClientsPasswordless, calculateServerlessRUCost, calculateAutoscaleRUCost, compareAllPricingModels, shouldShowCost } from './utils/utils.js'; import { ensureDatabaseAndContainer } from './utils/cosmos-operations.js'; -import { resilientInsert } from './utils/cosmos-resiliency.js'; -import { DEFAULT_INSERT_CONFIG, InsertConfig, InsertResult } from './utils/resilience-interfaces.js'; +import { resilientInsert, DEFAULT_INSERT_CONFIG, InsertConfig, InsertResult } from './utils/cosmos-resiliency.js'; // ESM support const __filename = fileURLToPath(import.meta.url); @@ -148,15 +147,36 @@ async function performResilientInsert(client: any, data: JsonData[]): Promise 0) { @@ -165,7 +185,12 @@ async function performResilientInsert(client: any, data: JsonData[]): Promise { - // Cosmos DB uses containers instead of collections - // Insert documents in batches - console.log(`Processing in batches of ${config.batchSize}...`); - const totalBatches = Math.ceil(data.length / config.batchSize); - - let inserted = 0; - let failed = 0; - // Cosmos DB does not support bulk insert natively in SDK, but you can use stored procedures or loop - // Here we use a simple loop for demonstration - for (let i = 0; i < totalBatches; i++) { - const start = i * config.batchSize; - const end = Math.min(start + config.batchSize, data.length); - const batch = data.slice(start, end); - for (const doc of batch) { - try { - await container.items.create(doc); - inserted++; - } catch (error) { - console.error(`Error inserting document:`, error); - failed++; - } - } - // Small pause between batches to reduce resource contention - if (i < totalBatches - 1) { - await new Promise(resolve => setTimeout(resolve, 100)); - } +export async function queryAllDocumentRefs(container: Container, partitionKeyPath: string): Promise<{ id: string; partitionKey: any }[]> { + try { + // Extract partition key field name from path (remove leading /) + const partitionKeyField = partitionKeyPath.slice(1); + + // Query all documents but only fetch id and partition key for efficient deletion + const querySpec = { + query: `SELECT c.id, c["${partitionKeyField}"] as partitionKey FROM c` + }; + + console.log(`šŸ” Querying document references from container...`); + const { resources: documents } = await container.items.query(querySpec).fetchAll(); + + console.log(`āœ… Found ${documents.length} document references`); + + return documents.map(doc => ({ + id: doc.id, + partitionKey: doc.partitionKey + })); + } catch (error) { + console.error(`āŒ Failed to query document references:`, error); + throw error; } - // Index creation is handled by indexing policy in Cosmos DB, not programmatically per field - //TBD: If custom indexing policy is needed, update container indexing policy via SDK or portal - return { total: data.length, inserted, failed }; } /** @@ -187,3 +180,94 @@ export async function ensureDatabaseAndContainer( } // ------------------------------------------- +// Generic Bulk Operations +// ------------------------------------------- + +/** + * Configuration for bulk operation execution + */ +export interface BulkExecutionConfig { + /** Timeout for bulk operations in milliseconds */ + timeoutMs: number; + /** Enable debug logging */ + enableDebugLogging?: boolean; +} + +/** + * Result of a bulk operation execution + */ +export interface BulkExecutionResult { + /** The response from executeBulkOperations */ + bulkResponse: any[]; + /** Latency of the operation in milliseconds */ + latency: number; + /** Any error that occurred during execution */ + error?: Error; +} + +/** + * Generic function to execute bulk operations with timeout and error handling + * + * This function handles the common pattern of: + * 1. Executing bulk operations with a timeout + * 2. Logging operation summary + * 3. Returning standardized results + * + * @param container - Cosmos DB container instance + * @param bulkOperations - Array of bulk operations to execute + * @param config - Configuration for the bulk execution + * @returns Promise with response, latency, and any errors + */ +export async function executeBulkOperationsWithTimeout( + container: Container, + bulkOperations: OperationInput[], + config: BulkExecutionConfig +): Promise { + const startTime = Date.now(); + + try { + // Execute bulk operations with timeout + // SDK automatically handles retries for: 408, 410, 429, 449, 503 + const bulkPromise = container.items.executeBulkOperations(bulkOperations); + + let timeoutId: NodeJS.Timeout | undefined; + const timeoutPromise = new Promise((_, reject) => { + timeoutId = setTimeout(() => reject(new Error('Bulk operation timeout')), config.timeoutMs); + }); + + const bulkResponse = await Promise.race([bulkPromise, timeoutPromise]) as any; + if (timeoutId) clearTimeout(timeoutId); // Clean up timeout if operation completes first + const latency = Date.now() - startTime; + + // Debug logging if enabled + if (config.enableDebugLogging) { + console.log(`šŸ“‹ Bulk operation completed for document group with ${bulkOperations.length} operations`); + console.log(` Response length: ${bulkResponse.length}`); + + // Count status codes for quick overview + const statusCounts: { [key: string]: number } = {}; + bulkResponse.forEach((result: any) => { + // BulkOperationResult has response property containing the statusCode + const status = result.response?.statusCode || (result.error ? 'error' : 'unknown'); + statusCounts[status] = (statusCounts[status] || 0) + 1; + }); + console.log(` Status code summary:`, statusCounts); + } + + return { + bulkResponse, + latency + }; + + } catch (error: any) { + const latency = Date.now() - startTime; + + return { + bulkResponse: [], + latency, + error + }; + } +} + +// ------------------------------------------- diff --git a/nosql-insert-at-scale-typescript/src/utils/cosmos-resiliency.ts b/nosql-insert-at-scale-typescript/src/utils/cosmos-resiliency.ts index 9fa3e04..bf12d70 100644 --- a/nosql-insert-at-scale-typescript/src/utils/cosmos-resiliency.ts +++ b/nosql-insert-at-scale-typescript/src/utils/cosmos-resiliency.ts @@ -5,26 +5,134 @@ * - Circuit breaker implementation for educational purposes * - Custom retry logic for errors not handled by Azure SDK * - Error parsing and retryability determination - * - Resilient bulk insert operations with comprehensive error handling + * - Resilient bulk insert operations with comprehensive error handling using executeBulkOperations API * - Delay/backoff utilities */ -import { Container, CosmosClient } from '@azure/cosmos'; +import { Container, CosmosClient, BulkOperationType, OperationInput } from '@azure/cosmos'; import { v4 as uuidv4 } from 'uuid'; -import { MetricsCollector, Logger } from './metrics.js'; -import { - InsertConfig, - DEFAULT_INSERT_CONFIG, - CircuitBreakerOptions, - FailedDocument, - ErrorDetails, - InsertResult -} from './resilience-interfaces.js'; -import { JsonData } from './interfaces.js'; +import { MetricsCollector, Logger, OperationMetrics } from './metrics.js'; +import { JsonData } from './utils.js'; import { validateDocument, - generateOperationId + generateOperationId, + executeBulkOperationsWithTimeout, + BulkExecutionConfig } from './cosmos-operations.js'; +// ------------------------------------------- +// Type Definitions +// ------------------------------------------- + +/** + * Retry resiliency configuration options + * Used for handling failures not covered by Azure Cosmos DB SDK's built-in retry logic + */ +export interface CircuitBreakerOptions { + /** Number of failures before opening the circuit to prevent cascading failures */ + failureThreshold: number; + /** Time in ms to wait before attempting to reset the circuit */ + resetTimeout: number; + /** Size of the rolling window for failure tracking */ + rollingWindowSize: number; +} + +/** + * Structured error information with Azure Cosmos DB specific details + */ +export interface ErrorDetails { + /** Error code (e.g., 429, 503) */ + code: number | string; + /** Human-readable error message */ + message: string; + /** Whether this error is retryable */ + retryable: boolean; + /** Retry-after time in milliseconds from x-ms-retry-after-ms header (for 429 errors) */ + retryAfterMs?: number; + /** The raw error object */ + raw?: any; +} + +/** + * Information about a failed document insertion + */ +export interface FailedDocument { + /** The document that failed to insert */ + document: Record; + /** Error details */ + error: ErrorDetails; + /** Number of attempts made before failing */ + attempts: number; +} + +/** + * Configuration options for resilient insert operations + * See INSERT_AT_SCALE_GUIDE.md for detailed configuration guidance + */ +export interface InsertConfig { + /** Maximum batch size for document insertion */ + batchSize: number; + /** Unique ID for correlating logs across the operation */ + correlationId?: string; + /** Target RU utilization rate (0.0-1.0) to avoid throttling */ + targetRuUtilization: number; + /** Maximum parallel operations to run simultaneously. Set to -1 to let the client/SDK maximize parallelism automatically. */ + maxConcurrency: number; + /** Whether to enable idempotency tokens on documents */ + idempotencyEnabled: boolean; + /** Whether to return failed documents in results */ + returnFailedDocs: boolean; + /** Retry resiliency configuration for handling errors not covered by Azure SDK */ + circuitBreakerOptions: CircuitBreakerOptions; + /** Optional document schema for validation */ + schema?: Record; + /** Name of the field to use as document ID */ + idField: string; + /** Path to the partition key field, e.g., '/HotelId' - choose high cardinality fields for optimal distribution */ + partitionKeyPath: string; + /** Timeout for bulk insert operations in milliseconds */ + bulkInsertTimeoutMs: number; +} + +/** + * Result of an insert operation + */ +export interface InsertResult { + /** Total number of documents processed */ + total: number; + /** Number of documents successfully inserted */ + inserted: number; + /** Number of documents that failed to insert */ + failed: number; + /** Number of retries performed */ + retried: number; + /** List of documents that failed to insert (if returnFailedDocs=true) */ + failedDocuments?: FailedDocument[]; + /** Performance metrics for the operation */ + metrics: OperationMetrics; + /** The metrics collector instance for advanced performance metrics */ + metricsCollector: MetricsCollector; +} + +/** + * Default configuration with reasonable values for production use + * See INSERT_AT_SCALE_GUIDE.md for configuration optimization guidance + */ +export const DEFAULT_INSERT_CONFIG: InsertConfig = { + batchSize: 25, + targetRuUtilization: 0.7, + maxConcurrency: -1, // Let client/SDK maximize parallelism + idempotencyEnabled: true, + returnFailedDocs: true, + circuitBreakerOptions: { + failureThreshold: 10, + resetTimeout: 30000, + rollingWindowSize: 100 + }, + idField: 'HotelId', + partitionKeyPath: '/HotelId', + bulkInsertTimeoutMs: 60000 +}; + /** * Retry Resiliency implementation for Azure Cosmos DB operations * @@ -156,7 +264,37 @@ export function parseCosmosError(error: any): ErrorDetails { // Convert code to string for consistency code = code.toString(); - // Extract retry-after header for 429 errors + // Extract message with priority for more specific error details + if (error.body && error.body.message) { + message = error.body.message; + } else if (error.message) { + message = error.message; + } else if (error.body && typeof error.body === 'string') { + message = error.body; + } + + // Special handling for 429 errors - check if message contains rate limiting indicators + if (message.includes('Request rate is large') || + message.includes('429') || + message.includes('More Request Units may be needed')) { + code = '429'; + + // Try to extract retry-after from headers or message + if (error.headers) { + const retryAfterHeader = error.headers['x-ms-retry-after-ms'] || + error.headers['retry-after-ms'] || + error.headers['Retry-After']; + + if (retryAfterHeader) { + const parsedRetryAfter = parseInt(retryAfterHeader.toString(), 10); + if (!isNaN(parsedRetryAfter)) { + retryAfterMs = parsedRetryAfter; + } + } + } + } + + // Extract retry-after header for confirmed 429 errors if (code === '429' && error.headers) { // Azure Cosmos DB returns retry-after time in x-ms-retry-after-ms header const retryAfterHeader = error.headers['x-ms-retry-after-ms'] || @@ -171,15 +309,6 @@ export function parseCosmosError(error: any): ErrorDetails { } } - // Extract message with priority for more specific error details - if (error.body && error.body.message) { - message = error.body.message; - } else if (error.message) { - message = error.message; - } else if (error.body && typeof error.body === 'string') { - message = error.body; - } - // Add additional context for common Azure Cosmos DB errors if (code === '429') { message += retryAfterMs @@ -328,7 +457,7 @@ export async function resilientInsert( }); if (totalBatches > 1) { - console.log(`šŸ“¦ Processing batch ${i + 1}/${totalBatches} (${batch.length} documents)...`); + console.log(`šŸ“¦ Processing document group ${i + 1}/${totalBatches} (${batch.length} documents)...`); } // Validate documents before attempting insertion @@ -348,117 +477,249 @@ export async function resilientInsert( return true; }); - // Process each document in the batch with enhanced retry logic - const batchPromises = validDocs.map(async (doc) => { - let customRetries = 0; - const MAX_CUSTOM_RETRIES = 3; // Increased for handling 429 errors - let lastError: ErrorDetails | null = null; - - while (customRetries <= MAX_CUSTOM_RETRIES) { - try { - const startTime = Date.now(); - - // Prepare document with operation ID for idempotency + // Process each batch using executeBulkOperations API with enhanced retry logic + let customRetries = 0; + const MAX_CUSTOM_RETRIES = 3; // Increased for handling 429 errors + let lastError: ErrorDetails | null = null; + + while (customRetries <= MAX_CUSTOM_RETRIES) { + try { + const startTime = Date.now(); + + // Prepare bulk operations with operation ID for idempotency + const bulkOperations: OperationInput[] = validDocs.map(doc => { const docToInsert = { ...doc }; if (config.idempotencyEnabled && !docToInsert.operationId) { docToInsert.operationId = generateOperationId(doc, config.idField); } - // Perform the insert operation with timeout - // SDK automatically handles retries for: 408, 410, 429, 449, 503 - const insertPromise = container.items.create(docToInsert); - - let timeoutId: NodeJS.Timeout | undefined; - const timeoutPromise = new Promise((_, reject) => { - timeoutId = setTimeout(() => reject(new Error('Operation timeout')), config.bulkInsertTimeoutMs); - }); - - const result = await Promise.race([insertPromise, timeoutPromise]) as any; - if (timeoutId) clearTimeout(timeoutId); // Clean up timeout if operation completes first - const latency = Date.now() - startTime; - - // Record successful operation metrics - metrics.recordRUs(result.requestCharge || 0); - metrics.recordLatency(latency); - retryResiliency.recordSuccess(); - - // Show success message if this was a retry - if (customRetries > 0) { - console.log(`āœ… Document ${doc[config.idField]} successfully inserted after ${customRetries} ${customRetries === 1 ? 'retry' : 'retries'}`); + // Ensure document has required 'id' field for Cosmos DB + // Use the custom idField value or generate a UUID if not present + if (!docToInsert.id) { + docToInsert.id = doc[config.idField] || uuidv4(); } - inserted++; - return { success: true, doc, result }; - - } catch (error: any) { - const errorDetails = parseCosmosError(error); - lastError = errorDetails; - - metrics.recordError(errorDetails.code); - retryResiliency.recordFailure(); + return { + operationType: BulkOperationType.Create, + partitionKey: docToInsert[config.idField], // Use the partition key value from the document + resourceBody: docToInsert + } as OperationInput; + }); - // Only log detailed warning if this is not going to be retried or is the final attempt - if (!isRetryableError(errorDetails.code) || customRetries >= MAX_CUSTOM_RETRIES) { - logger.warn(`Insert attempt ${customRetries + 1} failed`, { - docId: doc[config.idField], - error: errorDetails.message, - code: errorDetails.code + // Execute bulk operations with timeout + // SDK automatically handles retries for: 408, 410, 429, 449, 503 + const bulkExecutionConfig: BulkExecutionConfig = { + timeoutMs: config.bulkInsertTimeoutMs, + enableDebugLogging: true + }; + + const bulkResult = await executeBulkOperationsWithTimeout(container, bulkOperations, bulkExecutionConfig); + + if (bulkResult.error) { + throw bulkResult.error; + } + + const bulkResponse = bulkResult.bulkResponse; + const latency = bulkResult.latency; + + // Process bulk operation results + let batchInserted = 0; + let batchFailed = 0; + + bulkResponse.forEach((operationResult: any, index: number) => { + const doc = validDocs[index]; + + // BulkOperationResult has response property containing statusCode and requestCharge + const statusCode = operationResult.response?.statusCode || (operationResult.error ? 500 : 0); + const requestCharge = operationResult.response?.requestCharge || 0; + + if (statusCode >= 200 && statusCode < 300) { + // Success + metrics.recordRUs(requestCharge); + metrics.recordLatency(latency / bulkOperations.length); // Approximate per-document latency + batchInserted++; + + // Show success message if this was a retry + if (customRetries > 0) { + console.log(`āœ… Document ${doc[config.idField]} successfully inserted after ${customRetries} ${customRetries === 1 ? 'retry' : 'retries'}`); + } + } else { + // Failure + const errorDetails = parseCosmosError({ + statusCode: statusCode, + body: operationResult.response?.resourceBody, + headers: operationResult.response?.headers }); + + metrics.recordError(errorDetails.code); + batchFailed++; + + if (config.returnFailedDocs) { + failedDocs.push({ + document: doc, + error: errorDetails, + attempts: customRetries + 1 + }); + } + + // Only log detailed warning if this is not going to be retried or is the final attempt + if (!isRetryableError(errorDetails.code) || customRetries >= MAX_CUSTOM_RETRIES) { + logger.warn(`Bulk insert operation failed`, { + docId: doc[config.idField], + error: errorDetails.message, + code: errorDetails.code, + statusCode: statusCode + }); + + // Also log to console for immediate visibility + console.error(`āŒ Document ${doc[config.idField]} failed:`); + console.error(` Status Code: ${statusCode}`); + console.error(` Error Code: ${errorDetails.code}`); + console.error(` Error Message: ${errorDetails.message}`); + } } + }); + + inserted += batchInserted; + failed += batchFailed; + + // Record success for the bulk operation + retryResiliency.recordSuccess(); + + // If we have some failures but they're not retryable, don't retry the entire batch + const retryableFailures = bulkResponse.filter((result: any, index: number) => { + const statusCode = result.response?.statusCode || (result.error ? 500 : 0); + return statusCode >= 400 && isRetryableError(statusCode.toString()); + }); - // Check if error is retryable - if (isRetryableError(errorDetails.code) && customRetries < MAX_CUSTOM_RETRIES) { + if (retryableFailures.length === 0) { + // No retryable failures, we're done with this batch + break; + } else if (customRetries < MAX_CUSTOM_RETRIES) { + // We have retryable failures, prepare for retry + const retryableDocs = bulkResponse + .map((result: any, index: number) => ({ result, doc: validDocs[index], index })) + .filter(({ result }) => { + const statusCode = result.response?.statusCode || (result.error ? 500 : 0); + return statusCode >= 400 && isRetryableError(statusCode.toString()); + }) + .map(({ doc }) => doc); + + if (retryableDocs.length > 0) { + // Update validDocs to only include documents that need retry + validDocs.splice(0, validDocs.length, ...retryableDocs); + customRetries++; - retried++; + retried += retryableDocs.length; + + // Don't subtract from inserted count - we'll count successes properly on retry + // Only subtract from failed count since we'll retry these documents + failed -= retryableDocs.length; let retryDelay: number; - if (errorDetails.code === '429') { - // For 429 errors, respect the retry-after header if available - if (errorDetails.retryAfterMs) { - retryDelay = errorDetails.retryAfterMs; - } else { - // Use exponential backoff starting from 1s for 429 errors - retryDelay = Math.min(1000 * Math.pow(2, customRetries - 1), 10000); - } - - console.log(`ā³ Rate limiting detected for document ${doc[config.idField]} - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); - } else if (errorDetails.code === '403') { - // Short delay for auth token refresh scenarios - retryDelay = 500 * customRetries; - - console.log(`šŸ”‘ Authentication issue for document ${doc[config.idField]} - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + // Check if any of the retryable failures is a 429 + const hasRateLimit = retryableFailures.some((result: any) => { + const statusCode = result.response?.statusCode || (result.error ? 500 : 0); + return statusCode === 429; + }); + + if (hasRateLimit) { + // For 429 errors, use exponential backoff starting from 1s + retryDelay = Math.min(1000 * Math.pow(2, customRetries - 1), 10000); + console.log(`ā³ Rate limiting detected - retrying ${retryableDocs.length} documents in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); } else { // Default exponential backoff for other retryable errors retryDelay = Math.min(500 * Math.pow(2, customRetries - 1), 5000); - - console.log(`āš ļø Error ${errorDetails.code} for document ${doc[config.idField]} - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + console.log(`āš ļø Retryable errors detected - retrying ${retryableDocs.length} documents in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); } await delay(retryDelay); continue; } + } + + // All retries exhausted or no retryable failures + break; + + } catch (error: any) { + const errorDetails = parseCosmosError(error); + lastError = errorDetails; + + metrics.recordError(errorDetails.code); + retryResiliency.recordFailure(); + + // Only log detailed warning if this is not going to be retried or is the final attempt + if (!isRetryableError(errorDetails.code) || customRetries >= MAX_CUSTOM_RETRIES) { + logger.warn(`Bulk insert attempt ${customRetries + 1} failed`, { + batchSize: validDocs.length, + error: errorDetails.message, + code: errorDetails.code + }); - // All other errors: either not retryable or exhausted retries - break; + // Also log to console for immediate visibility + console.error(`āŒ Bulk insert attempt ${customRetries + 1} failed:`); + console.error(` Error Code: ${errorDetails.code}`); + console.error(` Error Message: ${errorDetails.message}`); + console.error(` Batch Size: ${validDocs.length} documents`); + if (errorDetails.raw) { + console.error(` Raw Error:`, JSON.stringify(errorDetails.raw, null, 2)); + } } + + // Check if error is retryable + if (isRetryableError(errorDetails.code) && customRetries < MAX_CUSTOM_RETRIES) { + customRetries++; + retried += validDocs.length; // All documents in the batch will be retried + + let retryDelay: number; + + if (errorDetails.code === '429') { + // For 429 errors, respect the retry-after header if available + if (errorDetails.retryAfterMs) { + retryDelay = errorDetails.retryAfterMs; + } else { + // Use exponential backoff starting from 1s for 429 errors + retryDelay = Math.min(1000 * Math.pow(2, customRetries - 1), 10000); + } + + console.log(`ā³ Rate limiting detected for document group - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } else if (errorDetails.code === '403') { + // Short delay for auth token refresh scenarios + retryDelay = 500 * customRetries; + + console.log(`šŸ”‘ Authentication issue for document group - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } else { + // Default exponential backoff for other retryable errors + retryDelay = Math.min(500 * Math.pow(2, customRetries - 1), 5000); + + console.log(`āš ļø Error ${errorDetails.code} for document group - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } + + await delay(retryDelay); + continue; + } + + // All other errors: either not retryable or exhausted retries + break; } + } - // Document failed after all retries - failed++; - if (config.returnFailedDocs && lastError) { - failedDocs.push({ - document: doc, - error: lastError, - attempts: customRetries + 1 // Total attempts made + // Handle documents that failed after all retries + if (lastError && customRetries > MAX_CUSTOM_RETRIES) { + const remainingFailures = validDocs.length; + failed += remainingFailures; + + if (config.returnFailedDocs) { + validDocs.forEach(doc => { + failedDocs.push({ + document: doc, + error: lastError!, + attempts: customRetries + }); }); } - - return { success: false, doc, error: lastError }; - }); - - // Wait for all documents in the batch to complete - await Promise.allSettled(batchPromises); + } } const result: InsertResult = { @@ -484,6 +745,334 @@ export async function resilientInsert( return result; } +/** + * Resilient bulk delete operation with comprehensive error handling and retry logic + * + * Features: + * - Exponential backoff for retryable errors + * - Circuit breaker pattern to prevent cascading failures + * - Comprehensive metrics collection and RU tracking + * - Detailed error logging and classification + * - Configurable batch sizes and concurrency + * + * @param container - Cosmos DB container instance + * @param documentRefs - Array of document references (id and partition key) to delete + * @param config - Configuration for delete operation (extends InsertConfig) + * @returns Promise with delete metrics and results + */ +export async function resilientDelete( + container: Container, + documentRefs: { id: string; partitionKey: any }[], + config: InsertConfig = DEFAULT_INSERT_CONFIG +): Promise { + const logger = new Logger('resilientDelete'); + const metrics = new MetricsCollector(); + const retryResiliency = new RetryResiliency({ + failureThreshold: 5, + resetTimeout: 30000, + rollingWindowSize: 20 + }); + + let deleted = 0; + let failed = 0; + let retried = 0; + const failedDocs: FailedDocument[] = []; + + const totalBatches = Math.ceil(documentRefs.length / config.batchSize); + logger.info(`Starting resilient delete operation`, { + totalDocuments: documentRefs.length, + batchSize: config.batchSize, + totalBatches + }); + + console.log(`ā„¹ļø Starting resilient delete operation`); + console.log(`šŸš€ Starting batch processing of ${documentRefs.length} documents...`); + + // Process in batches + for (let i = 0; i < totalBatches; i++) { + // Check circuit breaker state + if (retryResiliency.isOpen()) { + logger.warn('Circuit breaker is open, waiting before retry'); + await delay(retryResiliency.resetTimeout); + } + + const start = i * config.batchSize; + const end = Math.min(start + config.batchSize, documentRefs.length); + const batch = documentRefs.slice(start, end); + + logger.info(`Processing batch ${i + 1}/${totalBatches}`, { + batchSize: batch.length, + totalProcessed: start + }); + + if (totalBatches > 1) { + console.log(`šŸ“¦ Processing document group ${i + 1}/${totalBatches} (${batch.length} documents)...`); + } + + // Process each batch using executeBulkOperations API with enhanced retry logic + let customRetries = 0; + const MAX_CUSTOM_RETRIES = 3; + let lastError: ErrorDetails | null = null; + + while (customRetries <= MAX_CUSTOM_RETRIES) { + try { + const startTime = Date.now(); + + // Prepare bulk delete operations + const bulkOperations: OperationInput[] = batch.map(docRef => ({ + operationType: BulkOperationType.Delete, + id: docRef.id, + partitionKey: docRef.partitionKey + })); + + // Execute bulk operations with timeout + const bulkExecutionConfig: BulkExecutionConfig = { + timeoutMs: config.bulkInsertTimeoutMs, + enableDebugLogging: true + }; + + const bulkResult = await executeBulkOperationsWithTimeout(container, bulkOperations, bulkExecutionConfig); + + if (bulkResult.error) { + throw bulkResult.error; + } + + const bulkResponse = bulkResult.bulkResponse; + const latency = bulkResult.latency; + + // Process bulk operation results + let batchDeleted = 0; + let batchFailed = 0; + + bulkResponse.forEach((operationResult: any, index: number) => { + const docRef = batch[index]; + + // BulkOperationResult has response property containing statusCode and requestCharge + const statusCode = operationResult.response?.statusCode || (operationResult.error ? 500 : 0); + const requestCharge = operationResult.response?.requestCharge || 0; + + if (statusCode >= 200 && statusCode < 300) { + // Success + metrics.recordRUs(requestCharge); + metrics.recordLatency(latency / bulkOperations.length); + batchDeleted++; + + // Show success message if this was a retry + if (customRetries > 0) { + console.log(`āœ… Document ${docRef.id} successfully deleted after ${customRetries} ${customRetries === 1 ? 'retry' : 'retries'}`); + } + } else if (statusCode === 404) { + // Document doesn't exist (consider as success for delete) + metrics.recordLatency(latency / bulkOperations.length); + batchDeleted++; + + if (customRetries > 0) { + console.log(`āœ… Document ${docRef.id} already deleted (404) after ${customRetries} ${customRetries === 1 ? 'retry' : 'retries'}`); + } + } else { + // Failure + const errorDetails = parseCosmosError({ + statusCode: statusCode, + body: operationResult.response?.resourceBody, + headers: operationResult.response?.headers + }); + + metrics.recordError(errorDetails.code); + batchFailed++; + + if (config.returnFailedDocs) { + failedDocs.push({ + document: { id: docRef.id, partitionKey: docRef.partitionKey }, + error: errorDetails, + attempts: customRetries + 1 + }); + } + + // Only log detailed warning if this is not going to be retried or is the final attempt + if (!isRetryableError(errorDetails.code) || customRetries >= MAX_CUSTOM_RETRIES) { + logger.warn(`Bulk delete operation failed`, { + docId: docRef.id, + error: errorDetails.message, + code: errorDetails.code, + statusCode: statusCode + }); + + // Also log to console for immediate visibility + console.error(`āŒ Document ${docRef.id} delete failed:`); + console.error(` Status Code: ${statusCode}`); + console.error(` Error Code: ${errorDetails.code}`); + console.error(` Error Message: ${errorDetails.message}`); + } + } + }); + + deleted += batchDeleted; + failed += batchFailed; + + // Record success for the bulk operation + retryResiliency.recordSuccess(); + + // If we have some failures but they're not retryable, don't retry the entire batch + const retryableFailures = bulkResponse.filter((result: any, index: number) => { + const statusCode = result.response?.statusCode || (result.error ? 500 : 0); + return statusCode >= 400 && isRetryableError(statusCode.toString()); + }); + + if (retryableFailures.length === 0) { + // No retryable failures, we're done with this batch + break; + } else if (customRetries < MAX_CUSTOM_RETRIES) { + // We have retryable failures, prepare for retry + const retryableRefs = bulkResponse + .map((result: any, index: number) => ({ result, docRef: batch[index], index })) + .filter(({ result }) => { + const statusCode = result.response?.statusCode || (result.error ? 500 : 0); + return statusCode >= 400 && isRetryableError(statusCode.toString()); + }) + .map(({ docRef }) => docRef); + + if (retryableRefs.length > 0) { + // Update batch to only include document refs that need retry + batch.splice(0, batch.length, ...retryableRefs); + + customRetries++; + retried += retryableRefs.length; + + // Don't subtract from deleted count - we'll count successes properly on retry + // Only subtract from failed count since we'll retry these documents + failed -= retryableRefs.length; + + let retryDelay: number; + + // Check if any of the retryable failures is a 429 + const hasRateLimit = retryableFailures.some((result: any) => { + const statusCode = result.response?.statusCode || (result.error ? 500 : 0); + return statusCode === 429; + }); + + if (hasRateLimit) { + // For 429 errors, use exponential backoff starting from 1s + retryDelay = Math.min(1000 * Math.pow(2, customRetries - 1), 10000); + console.log(`ā³ Rate limiting detected - retrying ${retryableRefs.length} documents in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } else { + // Default exponential backoff for other retryable errors + retryDelay = Math.min(500 * Math.pow(2, customRetries - 1), 5000); + console.log(`āš ļø Retryable errors detected - retrying ${retryableRefs.length} documents in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } + + await delay(retryDelay); + continue; + } + } + + // All retries exhausted or no retryable failures + break; + + } catch (error: any) { + const errorDetails = parseCosmosError(error); + lastError = errorDetails; + + metrics.recordError(errorDetails.code); + retryResiliency.recordFailure(); + + // Only log detailed warning if this is not going to be retried or is the final attempt + if (!isRetryableError(errorDetails.code) || customRetries >= MAX_CUSTOM_RETRIES) { + logger.warn(`Bulk delete attempt ${customRetries + 1} failed`, { + batchSize: batch.length, + error: errorDetails.message, + code: errorDetails.code + }); + + // Also log to console for immediate visibility + console.error(`āŒ Bulk delete attempt ${customRetries + 1} failed:`); + console.error(` Error Code: ${errorDetails.code}`); + console.error(` Error Message: ${errorDetails.message}`); + console.error(` Batch Size: ${batch.length} documents`); + if (errorDetails.raw) { + console.error(` Raw Error:`, JSON.stringify(errorDetails.raw, null, 2)); + } + } + + // Check if error is retryable + if (isRetryableError(errorDetails.code) && customRetries < MAX_CUSTOM_RETRIES) { + customRetries++; + retried += batch.length; // All documents in the batch will be retried + + let retryDelay: number; + + if (errorDetails.code === '429') { + // For 429 errors, respect the retry-after header if available + if (errorDetails.retryAfterMs) { + retryDelay = errorDetails.retryAfterMs; + } else { + // Use exponential backoff starting from 1s for 429 errors + retryDelay = Math.min(1000 * Math.pow(2, customRetries - 1), 10000); + } + + console.log(`ā³ Rate limiting detected for document group - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } else if (errorDetails.code === '403') { + // Short delay for auth token refresh scenarios + retryDelay = 500 * customRetries; + + console.log(`šŸ”‘ Authentication issue for document group - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } else { + // Default exponential backoff for other retryable errors + retryDelay = Math.min(500 * Math.pow(2, customRetries - 1), 5000); + + console.log(`āš ļø Error ${errorDetails.code} for document group - retrying in ${Math.round(retryDelay/1000)}s (attempt ${customRetries + 1}/${MAX_CUSTOM_RETRIES + 1})`); + } + + await delay(retryDelay); + continue; + } + + // All other errors: either not retryable or exhausted retries + break; + } + } + + // Handle documents that failed after all retries + if (lastError && customRetries > MAX_CUSTOM_RETRIES) { + const remainingFailures = batch.length; + failed += remainingFailures; + + if (config.returnFailedDocs) { + batch.forEach(docRef => { + failedDocs.push({ + document: { id: docRef.id, partitionKey: docRef.partitionKey }, + error: lastError!, + attempts: customRetries + }); + }); + } + } + } + + console.log(`ā„¹ļø Resilient delete operation completed`); + console.log(`šŸŽÆ Batch processing completed: ${deleted} deleted, ${failed} failed, ${retried} retries`); + + // Return results in same format as resilientInsert + const result: InsertResult = { + total: documentRefs.length, + inserted: deleted, // Use 'inserted' field for deleted count to maintain interface consistency + failed, + retried, + failedDocuments: config.returnFailedDocs ? failedDocs : undefined, + metrics: metrics.getSummary(), + metricsCollector: metrics + }; + + logger.info('Resilient delete operation completed', { + deleted: result.inserted, + failed: result.failed, + retried: result.retried, + totalRUs: result.metrics.totalRu, + durationMs: result.metrics.totalDurationMs + }); + + return result; +} + /** * Removed: resilientInsertWithIndexManagement function * diff --git a/nosql-insert-at-scale-typescript/src/utils/interfaces.ts b/nosql-insert-at-scale-typescript/src/utils/interfaces.ts deleted file mode 100644 index 937e5d0..0000000 --- a/nosql-insert-at-scale-typescript/src/utils/interfaces.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * Core type definitions for Azure Cosmos DB operations - * This file contains basic interfaces and type definitions for low-level Cosmos DB operations - */ - -// Common type aliases -export type JsonData = Record; - -/** - * Performance metrics for operations - */ -export interface OperationMetrics { - /** Total RU consumption */ - totalRu: number; - /** Average RU per document */ - avgRuPerDoc: number; - /** Maximum RU per operation */ - maxRu: number; - /** Average latency in ms per document */ - avgLatencyMs: number; - /** Maximum latency in ms for any single operation */ - maxLatencyMs: number; - /** Error count by status code */ - errorCounts: Record; - /** Total duration of the operation in ms */ - totalDurationMs: number; -} - -/** - * Log levels for the logger - */ -export enum LogLevel { - DEBUG = 'DEBUG', - INFO = 'INFO', - WARN = 'WARN', - ERROR = 'ERROR' -} \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/src/utils/metrics.ts b/nosql-insert-at-scale-typescript/src/utils/metrics.ts index c5c393e..ebde4cb 100644 --- a/nosql-insert-at-scale-typescript/src/utils/metrics.ts +++ b/nosql-insert-at-scale-typescript/src/utils/metrics.ts @@ -5,7 +5,36 @@ * and operational metrics for Azure Cosmos DB bulk insert operations. */ import { v4 as uuidv4 } from 'uuid'; -import { OperationMetrics, LogLevel } from './interfaces.js'; + +/** + * Performance metrics for operations + */ +export interface OperationMetrics { + /** Total RU consumption */ + totalRu: number; + /** Average RU per document */ + avgRuPerDoc: number; + /** Maximum RU per operation */ + maxRu: number; + /** Average latency in ms per document */ + avgLatencyMs: number; + /** Maximum latency in ms for any single operation */ + maxLatencyMs: number; + /** Error count by status code */ + errorCounts: Record; + /** Total duration of the operation in ms */ + totalDurationMs: number; +} + +/** + * Log levels for the logger + */ +export enum LogLevel { + DEBUG = 'DEBUG', + INFO = 'INFO', + WARN = 'WARN', + ERROR = 'ERROR' +} /** * Comprehensive metrics collector for Azure Cosmos DB performance tracking diff --git a/nosql-insert-at-scale-typescript/src/utils/pricing.ts b/nosql-insert-at-scale-typescript/src/utils/pricing.ts new file mode 100644 index 0000000..900510e --- /dev/null +++ b/nosql-insert-at-scale-typescript/src/utils/pricing.ts @@ -0,0 +1,223 @@ +/** + * Azure Cosmos DB Pricing Model Comparison Example + * + * This file demonstrates how to use the new pricing calculation functions + * for Serverless, Standard Provisioned, and Autoscale models. + */ + +import { + calculateServerlessRUCost, + calculateAutoscaleRUCost, + calculateRUCost, + estimateServerlessMonthlyRUCost, + estimateAutoscaleMonthlyRUCost, + estimateMonthlyRUCost, + compareAllPricingModels +} from './utils.js'; + +/** + * Example: Compare pricing models for a sample workload + */ +export function demonstratePricingComparison(): void { + console.log('šŸ·ļø Azure Cosmos DB Pricing Model Comparison'); + console.log('=========================================='); + + // Sample workload parameters + const workloadParams = { + totalRUs: 5_000_000, // 5 million RUs consumed in a month + peakRUsPerSecond: 1000, // Peak requirement of 1000 RU/s + regionCount: 1, + days: 30 + }; + + console.log('\nšŸ“Š Workload Parameters:'); + console.log(` Total RUs consumed: ${workloadParams.totalRUs.toLocaleString()}`); + console.log(` Peak RU/s requirement: ${workloadParams.peakRUsPerSecond}`); + console.log(` Regions: ${workloadParams.regionCount}`); + console.log(` Period: ${workloadParams.days} days`); + + // 1. Serverless calculation + console.log('\nšŸ’° Serverless Pricing:'); + const serverless = calculateServerlessRUCost({ + totalRUs: workloadParams.totalRUs, + regionCount: workloadParams.regionCount + }); + console.log(` Cost: $${serverless.estimatedCost.toFixed(4)}`); + console.log(` ${serverless.description}`); + + // 2. Standard Provisioned calculation + console.log('\nšŸ’° Standard Provisioned Pricing:'); + const standardProvisioned = calculateRUCost({ + totalRUs: workloadParams.totalRUs, + isServerless: false, + provisionedRUs: workloadParams.peakRUsPerSecond, + days: workloadParams.days, + regionCount: workloadParams.regionCount + }); + console.log(` Cost: $${standardProvisioned.estimatedCost.toFixed(2)}`); + console.log(` ${standardProvisioned.description}`); + + // 3. Autoscale calculation + console.log('\nšŸ’° Autoscale Pricing:'); + const autoscale = calculateAutoscaleRUCost({ + maxAutoscaleRUs: workloadParams.peakRUsPerSecond, + totalRUsConsumed: workloadParams.totalRUs, + days: workloadParams.days, + regionCount: workloadParams.regionCount, + averageUtilizationPercent: 60 // Assume 60% average utilization + }); + console.log(` Cost: $${autoscale.estimatedCost.toFixed(2)}`); + console.log(` ${autoscale.description}`); + + // 4. Comprehensive comparison + console.log('\nšŸ” Comprehensive Comparison:'); + const comparison = compareAllPricingModels({ + totalRUs: workloadParams.totalRUs, + peakRUsPerSecond: workloadParams.peakRUsPerSecond, + days: workloadParams.days, + regionCount: workloadParams.regionCount, + averageAutoscaleUtilization: 60 + }); + + console.log(`\nšŸ“ˆ Cost Comparison:`); + console.log(` Serverless: $${comparison.serverless.estimatedCost.toFixed(4)}`); + console.log(` Standard Provisioned: $${comparison.standardProvisioned.estimatedCost.toFixed(2)}`); + console.log(` Autoscale: $${comparison.autoscale.estimatedCost.toFixed(2)}`); + + console.log(`\nšŸ† Recommendation:`); + console.log(` Best option: ${comparison.recommendation.cheapest}`); + console.log(` Reason: ${comparison.recommendation.reason}`); + console.log(` Savings: ${comparison.recommendation.potentialSavings}`); +} + +/** + * Example: Monthly cost estimation based on current usage + */ +export function demonstrateMonthlyEstimation(): void { + console.log('\n\nšŸ“… Monthly Cost Estimation Examples'); + console.log('==================================='); + + // Sample current usage (e.g., from a 1-hour test run) + const currentUsage = { + totalRUs: 50_000, // 50K RUs consumed in 1 hour + durationMs: 60 * 60 * 1000, // 1 hour in milliseconds + regionCount: 1 + }; + + console.log('\nšŸ“Š Current Usage Pattern:'); + console.log(` RUs consumed: ${currentUsage.totalRUs.toLocaleString()}`); + console.log(` Duration: ${currentUsage.durationMs / (60 * 1000)} minutes`); + console.log(` Rate: ${(currentUsage.totalRUs / (currentUsage.durationMs / 1000)).toFixed(2)} RU/s`); + + // 1. Serverless monthly estimation + console.log('\nšŸ’° Serverless Monthly Projection:'); + const serverlessMonthly = estimateServerlessMonthlyRUCost({ + currentTotalRUs: currentUsage.totalRUs, + durationMs: currentUsage.durationMs, + regionCount: currentUsage.regionCount + }); + console.log(` Projected monthly cost: $${serverlessMonthly.monthlyCost.toFixed(2)}`); + console.log(` Projected monthly RUs: ${serverlessMonthly.projectedMonthlyRUs.toLocaleString()}`); + + // 2. Autoscale monthly estimation (assuming we provision for peak + buffer) + const estimatedPeakRUs = Math.ceil((currentUsage.totalRUs / (currentUsage.durationMs / 1000)) * 1.5); // 50% buffer + + console.log('\nšŸ’° Autoscale Monthly Projection:'); + console.log(` Estimated peak requirement: ${estimatedPeakRUs} RU/s (with 50% buffer)`); + + const autoscaleMonthly = estimateAutoscaleMonthlyRUCost({ + currentTotalRUs: currentUsage.totalRUs, + durationMs: currentUsage.durationMs, + maxAutoscaleRUs: estimatedPeakRUs, + regionCount: currentUsage.regionCount, + averageUtilizationPercent: 40 // Conservative estimate for variable workloads + }); + console.log(` Projected monthly cost: $${autoscaleMonthly.monthlyCost.toFixed(2)}`); + console.log(` Projected monthly RUs: ${autoscaleMonthly.projectedMonthlyRUs.toLocaleString()}`); + + // 3. Standard provisioned monthly estimation + console.log('\nšŸ’° Standard Provisioned Monthly Projection:'); + const standardMonthly = estimateMonthlyRUCost({ + currentTotalRUs: currentUsage.totalRUs, + durationMs: currentUsage.durationMs, + isServerless: false, + provisionedRUs: estimatedPeakRUs, + regionCount: currentUsage.regionCount + }); + console.log(` Projected monthly cost: $${standardMonthly.monthlyCost.toFixed(2)}`); + console.log(` Projected monthly RUs: ${standardMonthly.projectedMonthlyRUs.toLocaleString()}`); + + // Compare the projections + const monthlyComparison = [ + { model: 'Serverless', cost: serverlessMonthly.monthlyCost }, + { model: 'Autoscale', cost: autoscaleMonthly.monthlyCost }, + { model: 'Standard Provisioned', cost: standardMonthly.monthlyCost } + ].sort((a, b) => a.cost - b.cost); + + console.log('\nšŸ† Monthly Cost Ranking:'); + monthlyComparison.forEach((option, index) => { + const rank = index === 0 ? 'šŸ„‡' : index === 1 ? '🄈' : 'šŸ„‰'; + console.log(` ${rank} ${option.model}: $${option.cost.toFixed(2)}`); + }); +} + +/** + * Example: Different workload scenarios + */ +export function demonstrateWorkloadScenarios(): void { + console.log('\n\nšŸŽÆ Workload Scenario Analysis'); + console.log('============================='); + + const scenarios = [ + { + name: 'Low-traffic blog', + totalRUs: 500_000, // 500K RUs per month + peakRUsPerSecond: 50, + description: 'Small website with occasional traffic spikes' + }, + { + name: 'E-commerce during sale', + totalRUs: 50_000_000, // 50M RUs per month + peakRUsPerSecond: 5000, + description: 'High-traffic e-commerce with predictable sale periods' + }, + { + name: 'IoT sensor data', + totalRUs: 20_000_000, // 20M RUs per month + peakRUsPerSecond: 2000, + description: 'Steady IoT data ingestion with minimal variance' + }, + { + name: 'Social media app', + totalRUs: 100_000_000, // 100M RUs per month + peakRUsPerSecond: 8000, + description: 'Highly variable social media traffic patterns' + } + ]; + + scenarios.forEach(scenario => { + console.log(`\nšŸ“± Scenario: ${scenario.name}`); + console.log(` Description: ${scenario.description}`); + console.log(` Monthly RUs: ${scenario.totalRUs.toLocaleString()}`); + console.log(` Peak RU/s: ${scenario.peakRUsPerSecond}`); + + const comparison = compareAllPricingModels({ + totalRUs: scenario.totalRUs, + peakRUsPerSecond: scenario.peakRUsPerSecond, + days: 30, + regionCount: 1 + }); + + console.log(` šŸ’° Costs: Serverless $${comparison.serverless.estimatedCost.toFixed(2)} | ` + + `Standard $${comparison.standardProvisioned.estimatedCost.toFixed(2)} | ` + + `Autoscale $${comparison.autoscale.estimatedCost.toFixed(2)}`); + console.log(` šŸ† Best: ${comparison.recommendation.cheapest} (${comparison.recommendation.potentialSavings})`); + }); +} + +// Run examples if this file is executed directly +if (import.meta.url === `file://${process.argv[1]}`) { + demonstratePricingComparison(); + demonstrateMonthlyEstimation(); + demonstrateWorkloadScenarios(); +} \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/src/utils/resilience-interfaces.ts b/nosql-insert-at-scale-typescript/src/utils/resilience-interfaces.ts deleted file mode 100644 index e75a2bb..0000000 --- a/nosql-insert-at-scale-typescript/src/utils/resilience-interfaces.ts +++ /dev/null @@ -1,117 +0,0 @@ -/** - * Type definitions for Azure Cosmos DB resilience and bulk insert operations - * This file contains all interfaces and type definitions used for resilient operations - */ - -import type { OperationMetrics } from './interfaces.js'; -import type { MetricsCollector } from './metrics.js'; - -/** - * Configuration options for resilient insert operations - * See INSERT_AT_SCALE_GUIDE.md for detailed configuration guidance - */ -export interface InsertConfig { - /** Maximum batch size for document insertion */ - batchSize: number; - /** Unique ID for correlating logs across the operation */ - correlationId?: string; - /** Target RU utilization rate (0.0-1.0) to avoid throttling */ - targetRuUtilization: number; - /** Maximum parallel operations to run simultaneously. Set to -1 to let the client/SDK maximize parallelism automatically. */ - maxConcurrency: number; - /** Whether to enable idempotency tokens on documents */ - idempotencyEnabled: boolean; - /** Whether to return failed documents in results */ - returnFailedDocs: boolean; - /** Retry resiliency configuration for handling errors not covered by Azure SDK */ - circuitBreakerOptions: CircuitBreakerOptions; - /** Optional document schema for validation */ - schema?: Record; - /** Name of the field to use as document ID */ - idField: string; - /** Path to the partition key field, e.g., '/HotelId' - choose high cardinality fields for optimal distribution */ - partitionKeyPath: string; - /** Timeout for bulk insert operations in milliseconds */ - bulkInsertTimeoutMs: number; -} - -/** - * Retry resiliency configuration options - * Used for handling failures not covered by Azure Cosmos DB SDK's built-in retry logic - */ -export interface CircuitBreakerOptions { - /** Number of failures before opening the circuit to prevent cascading failures */ - failureThreshold: number; - /** Time in ms to wait before attempting to reset the circuit */ - resetTimeout: number; - /** Size of the rolling window for failure tracking */ - rollingWindowSize: number; -} - -/** - * Information about a failed document insertion - */ -export interface FailedDocument { - /** The document that failed to insert */ - document: Record; - /** Error details */ - error: ErrorDetails; - /** Number of attempts made before failing */ - attempts: number; -} - -/** - * Structured error information with Azure Cosmos DB specific details - */ -export interface ErrorDetails { - /** Error code (e.g., 429, 503) */ - code: number | string; - /** Human-readable error message */ - message: string; - /** Whether this error is retryable */ - retryable: boolean; - /** Retry-after time in milliseconds from x-ms-retry-after-ms header (for 429 errors) */ - retryAfterMs?: number; - /** The raw error object */ - raw?: any; -} - -/** - * Result of an insert operation - */ -export interface InsertResult { - /** Total number of documents processed */ - total: number; - /** Number of documents successfully inserted */ - inserted: number; - /** Number of documents that failed to insert */ - failed: number; - /** Number of retries performed */ - retried: number; - /** List of documents that failed to insert (if returnFailedDocs=true) */ - failedDocuments?: FailedDocument[]; - /** Performance metrics for the operation */ - metrics: OperationMetrics; - /** The metrics collector instance for advanced performance metrics */ - metricsCollector: MetricsCollector; -} - -/** - * Default configuration with reasonable values for production use - * See INSERT_AT_SCALE_GUIDE.md for configuration optimization guidance - */ -export const DEFAULT_INSERT_CONFIG: InsertConfig = { - batchSize: 25, - targetRuUtilization: 0.7, - maxConcurrency: -1, // Let client/SDK maximize parallelism - idempotencyEnabled: true, - returnFailedDocs: true, - circuitBreakerOptions: { - failureThreshold: 10, - resetTimeout: 30000, - rollingWindowSize: 100 - }, - idField: 'HotelId', - partitionKeyPath: '/HotelId', - bulkInsertTimeoutMs: 60000 -}; \ No newline at end of file diff --git a/nosql-insert-at-scale-typescript/src/utils/utils.ts b/nosql-insert-at-scale-typescript/src/utils/utils.ts index ce1fa95..9686800 100644 --- a/nosql-insert-at-scale-typescript/src/utils/utils.ts +++ b/nosql-insert-at-scale-typescript/src/utils/utils.ts @@ -1,12 +1,21 @@ import { CosmosClient } from '@azure/cosmos'; import { promises as fs } from "fs"; -import { getClients, getClientsPasswordless, insertData } from './cosmos-operations.js'; +import { getClients, getClientsPasswordless } from './cosmos-operations.js'; // Define a type for JSON data export type JsonData = Record; // Re-export client functions for backward compatibility -export { getClients, getClientsPasswordless, insertData }; +export { getClients, getClientsPasswordless }; + +/** + * Check if cost estimation should be displayed + * Set SHOW_COST=true in environment to enable cost display + */ +export function shouldShowCost(): boolean { + return process.env.SHOW_COST?.toLowerCase() === 'true'; +} + export async function readFileReturnJson(filePath: string): Promise { console.log(`Reading JSON file from ${filePath}`); @@ -14,13 +23,62 @@ export async function readFileReturnJson(filePath: string): Promise const fileAsString = await fs.readFile(filePath, "utf-8"); return JSON.parse(fileAsString); } +export async function writeFileJson(filePath: string, jsonData: JsonData): Promise { + const jsonString = JSON.stringify(jsonData, null, 2); + await fs.writeFile(filePath, jsonString, "utf-8"); + + console.log(`Wrote JSON file to ${filePath}`); +} +/** + * Calculate estimated cost for Serverless Azure Cosmos DB + * + * Pricing (as of November 2025): + * - Serverless: $0.008 per 1 million RUs + */ +export function calculateServerlessRUCost(options: { + /** Total RUs consumed */ + totalRUs: number; + /** Price per million RUs for serverless ($0.008 is default) */ + serverlessPricePerMillionRUs?: number; + /** Number of regions (default: 1) */ + regionCount?: number; +}): { + /** Estimated cost in USD */ + estimatedCost: number; + /** Description of the calculation */ + description: string; + /** Additional details for calculation */ + details: Record; +} { + const { + totalRUs, + serverlessPricePerMillionRUs = 0.008, + regionCount = 1 + } = options; + + // Serverless model: pay per million RUs consumed + const costPerMillionRUs = serverlessPricePerMillionRUs * regionCount; + const estimatedCost = (totalRUs / 1_000_000) * costPerMillionRUs; + + return { + estimatedCost, + description: `Serverless: ${totalRUs.toLocaleString()} RUs = ${(totalRUs / 1_000_000).toFixed(6)} million RUs * $${costPerMillionRUs}/million = $${estimatedCost.toFixed(6)}`, + details: { + model: 'Serverless', + totalRUs, + costPerMillionRUs, + regionCount, + ruPerMillion: totalRUs / 1_000_000 + } + }; +} /** * Calculate estimated cost for Request Units (RUs) in different pricing models * - * Pricing (as of September 2023): + * Pricing (as of November 2025): * - Serverless: $0.008 per 1 million RUs - * - Provisioned: $0.008 per 100 RU/s per hour + * - Provisioned (General Purpose): $5.84 per 100 RU/s per month */ export function calculateRUCost(options: { /** Total RUs consumed */ @@ -31,8 +89,8 @@ export function calculateRUCost(options: { provisionedRUs?: number; /** Price per million RUs for serverless ($0.008 is default) */ serverlessPricePerMillionRUs?: number; - /** Price per 100 RU/s per hour for provisioned ($0.008 is default) */ - provisionedPricePer100RUsHour?: number; + /** Price per 100 RU/s per month for provisioned ($5.84 is default for General Purpose) */ + provisionedPricePer100RUsMonth?: number; /** Number of days to calculate cost for (default: 30) */ days?: number; /** Number of regions (default: 1) */ @@ -49,46 +107,37 @@ export function calculateRUCost(options: { totalRUs, isServerless = false, provisionedRUs = 400, // Minimum is 400 RU/s - serverlessPricePerMillionRUs = 0.008, // Updated from 0.25 - provisionedPricePer100RUsHour = 0.008, + serverlessPricePerMillionRUs = 0.008, + provisionedPricePer100RUsMonth = 5.84, days = 30, regionCount = 1 } = options; if (isServerless) { - // Serverless model: pay per million RUs consumed - const costPerMillionRUs = serverlessPricePerMillionRUs * regionCount; - const estimatedCost = (totalRUs / 1_000_000) * costPerMillionRUs; - - return { - estimatedCost, - description: `Serverless: ${totalRUs.toLocaleString()} RUs = ${(totalRUs / 1_000_000).toFixed(6)} million RUs * $${costPerMillionRUs}/million = $${estimatedCost.toFixed(6)}`, - details: { - model: 'Serverless', - totalRUs, - costPerMillionRUs, - regionCount - } - }; + return calculateServerlessRUCost({ + totalRUs, + serverlessPricePerMillionRUs, + regionCount + }); } else { - // Provisioned model: pay per RU/s provisioned per hour + // Provisioned model: pay per RU/s provisioned per month const rusPer100 = provisionedRUs / 100; - const hoursPerMonth = 24 * days; - const estimatedCost = rusPer100 * provisionedPricePer100RUsHour * hoursPerMonth * regionCount; + const monthsInPeriod = days / 30; + const estimatedCost = rusPer100 * provisionedPricePer100RUsMonth * monthsInPeriod * regionCount; // Also calculate what the same workload would cost in serverless const serverlessCost = (totalRUs / 1_000_000) * serverlessPricePerMillionRUs * regionCount; return { estimatedCost, - description: `Provisioned: ${provisionedRUs} RU/s = ${rusPer100} x 100 RU/s * $${provisionedPricePer100RUsHour}/hour * ${hoursPerMonth} hours * ${regionCount} region(s) = $${estimatedCost.toFixed(2)}`, + description: `Provisioned: ${provisionedRUs} RU/s = ${rusPer100} x 100 RU/s * $${provisionedPricePer100RUsMonth}/month * ${monthsInPeriod.toFixed(2)} months * ${regionCount} region(s) = $${estimatedCost.toFixed(2)}`, details: { model: 'Provisioned', provisionedRUs, rusPer100, - hoursPerMonth, + monthsInPeriod, regionCount, - costPer100RUsHour: provisionedPricePer100RUsHour, + costPer100RUsMonth: provisionedPricePer100RUsMonth, comparisonToServerless: { serverlessCost, differencePercentage: ((serverlessCost - estimatedCost) / estimatedCost * 100).toFixed(2) @@ -99,7 +148,209 @@ export function calculateRUCost(options: { } /** - * Estimate monthly cost based on current RU usage pattern + * Calculate estimated cost for Autoscale Azure Cosmos DB + * + * Pricing (as of November 2025): + * - Autoscale General Purpose: $5.84/month per 100 RU/s + * - Autoscale Business Critical: $11.68/month per 100 RU/s + * - Scales automatically between 10% of max RU/s and max RU/s based on workload + */ +export function calculateAutoscaleRUCost(options: { + /** Maximum RU/s configured for autoscale */ + maxAutoscaleRUs: number; + /** Actual RUs consumed during the period */ + totalRUsConsumed?: number; + /** Price per 100 RU/s per month for autoscale ($5.84 is default for General Purpose) */ + autoscalePricePer100RUsMonth?: number; + /** Number of days to calculate cost for (default: 30) */ + days?: number; + /** Number of regions (default: 1) */ + regionCount?: number; + /** Average utilization percentage (default: 50% - scales between 10% and 100%) */ + averageUtilizationPercent?: number; +}): { + /** Estimated cost in USD */ + estimatedCost: number; + /** Description of the calculation */ + description: string; + /** Additional details for calculation */ + details: Record; +} { + const { + maxAutoscaleRUs, + totalRUsConsumed, + autoscalePricePer100RUsMonth = 5.84, // General Purpose base price per month + days = 30, + regionCount = 1, + averageUtilizationPercent = 50 // Default assumption for scaling behavior + } = options; + + // Autoscale billing is based on the highest RU/s reached in each hour + // For estimation purposes, we'll use average utilization + const averageRUs = maxAutoscaleRUs * (averageUtilizationPercent / 100); + const rusPer100 = averageRUs / 100; + const monthsInPeriod = days / 30; + const estimatedCost = rusPer100 * autoscalePricePer100RUsMonth * monthsInPeriod * regionCount; + + // Compare with standard provisioned and serverless if RU consumption is provided + let comparisons: Record = {}; + if (totalRUsConsumed) { + const serverlessCost = calculateServerlessRUCost({ + totalRUs: totalRUsConsumed, + regionCount + }); + + const standardProvisionedCost = rusPer100 * 5.84 * monthsInPeriod * regionCount; // General Purpose standard rate per month + + comparisons = { + serverless: { + cost: serverlessCost.estimatedCost, + savings: ((estimatedCost - serverlessCost.estimatedCost) / estimatedCost * 100).toFixed(2) + }, + standardProvisioned: { + cost: standardProvisionedCost, + savings: ((estimatedCost - standardProvisionedCost) / estimatedCost * 100).toFixed(2) + } + }; + } + + return { + estimatedCost, + description: `Autoscale: Max ${maxAutoscaleRUs} RU/s (avg ~${averageRUs} RU/s at ${averageUtilizationPercent}% utilization) = ${rusPer100.toFixed(2)} x 100 RU/s * $${autoscalePricePer100RUsMonth}/month * ${monthsInPeriod.toFixed(2)} months * ${regionCount} region(s) = $${estimatedCost.toFixed(2)}`, + details: { + model: 'Autoscale', + maxAutoscaleRUs, + averageRUs, + averageUtilizationPercent, + rusPer100, + monthsInPeriod, + regionCount, + costPer100RUsMonth: autoscalePricePer100RUsMonth, + comparisons + } + }; +} + +/** + * Estimate monthly cost for Serverless Azure Cosmos DB based on current usage pattern + */ +export function estimateServerlessMonthlyRUCost(options: { + /** Current total RUs consumed */ + currentTotalRUs: number; + /** Duration in milliseconds over which the RUs were consumed */ + durationMs: number; + /** Price per million RUs for serverless */ + serverlessPricePerMillionRUs?: number; + /** Number of regions */ + regionCount?: number; +}): { + /** Estimated monthly cost in USD */ + monthlyCost: number; + /** Projected RU consumption for a month */ + projectedMonthlyRUs: number; + /** Detailed breakdown of the calculation */ + details: Record; +} { + const { + currentTotalRUs, + durationMs, + serverlessPricePerMillionRUs = 0.008, + regionCount = 1 + } = options; + + // Calculate projected monthly RU usage based on current consumption rate + const msInMonth = 30 * 24 * 60 * 60 * 1000; + const projectedMonthlyRUs = currentTotalRUs * (msInMonth / durationMs); + + // Calculate cost using the serverless calculation function + const costCalculation = calculateServerlessRUCost({ + totalRUs: projectedMonthlyRUs, + serverlessPricePerMillionRUs, + regionCount + }); + + return { + monthlyCost: costCalculation.estimatedCost, + projectedMonthlyRUs, + details: { + ...costCalculation.details, + currentRate: { + ruPerSecond: (currentTotalRUs / (durationMs / 1000)).toFixed(2), + ruPerMinute: (currentTotalRUs / (durationMs / 60000)).toFixed(2), + ruPerHour: (currentTotalRUs / (durationMs / 3600000)).toFixed(2), + durationMs, + currentTotalRUs + }, + projectionBasis: `Projected ${(projectedMonthlyRUs / 1_000_000).toFixed(2)} million RUs/month based on current rate` + } + }; +} + +/** + * Estimate monthly cost for Autoscale Azure Cosmos DB based on current usage pattern + */ +export function estimateAutoscaleMonthlyRUCost(options: { + /** Current total RUs consumed */ + currentTotalRUs: number; + /** Duration in milliseconds over which the RUs were consumed */ + durationMs: number; + /** Maximum RU/s that would be configured for autoscale */ + maxAutoscaleRUs: number; + /** Price per 100 RU/s per month for autoscale */ + autoscalePricePer100RUsMonth?: number; + /** Number of regions */ + regionCount?: number; + /** Expected average utilization percentage */ + averageUtilizationPercent?: number; +}): { + /** Estimated monthly cost in USD */ + monthlyCost: number; + /** Projected RU consumption for a month */ + projectedMonthlyRUs: number; + /** Detailed breakdown of the calculation */ + details: Record; +} { + const { + currentTotalRUs, + durationMs, + maxAutoscaleRUs, + autoscalePricePer100RUsMonth = 5.84, + regionCount = 1, + averageUtilizationPercent = 50 + } = options; + + // Calculate projected monthly RU usage based on current consumption rate + const msInMonth = 30 * 24 * 60 * 60 * 1000; + const projectedMonthlyRUs = currentTotalRUs * (msInMonth / durationMs); + + // Calculate cost using the autoscale calculation function + const costCalculation = calculateAutoscaleRUCost({ + maxAutoscaleRUs, + totalRUsConsumed: projectedMonthlyRUs, + autoscalePricePer100RUsMonth, + regionCount, + averageUtilizationPercent + }); + + return { + monthlyCost: costCalculation.estimatedCost, + projectedMonthlyRUs, + details: { + ...costCalculation.details, + currentRate: { + ruPerSecond: (currentTotalRUs / (durationMs / 1000)).toFixed(2), + ruPerMinute: (currentTotalRUs / (durationMs / 60000)).toFixed(2), + ruPerHour: (currentTotalRUs / (durationMs / 3600000)).toFixed(2), + durationMs, + currentTotalRUs + }, + projectionBasis: `Projected ${(projectedMonthlyRUs / 1_000_000).toFixed(2)} million RUs/month based on current rate` + } + }; +} + +/** + * Estimate monthly cost based on current RU usage pattern (backward compatibility) */ export function estimateMonthlyRUCost(options: { /** Current total RUs consumed */ @@ -112,8 +363,8 @@ export function estimateMonthlyRUCost(options: { provisionedRUs?: number; /** Price per million RUs for serverless */ serverlessPricePerMillionRUs?: number; - /** Price per 100 RU/s per hour for provisioned */ - provisionedPricePer100RUsHour?: number; + /** Price per 100 RU/s per month for provisioned */ + provisionedPricePer100RUsMonth?: number; /** Number of regions */ regionCount?: number; }): { @@ -129,8 +380,8 @@ export function estimateMonthlyRUCost(options: { durationMs, isServerless = false, provisionedRUs = 400, - serverlessPricePerMillionRUs = 0.008, // Updated from 0.25 - provisionedPricePer100RUsHour = 0.008, + serverlessPricePerMillionRUs = 0.008, + provisionedPricePer100RUsMonth = 5.84, regionCount = 1 } = options; @@ -144,7 +395,7 @@ export function estimateMonthlyRUCost(options: { isServerless, provisionedRUs, serverlessPricePerMillionRUs, - provisionedPricePer100RUsHour, + provisionedPricePer100RUsMonth, regionCount }); @@ -164,3 +415,98 @@ export function estimateMonthlyRUCost(options: { } }; } + +/** + * Compare costs across all Azure Cosmos DB pricing models + */ +export function compareAllPricingModels(options: { + /** Total RUs consumed */ + totalRUs: number; + /** Peak RU/s requirement for provisioned/autoscale sizing */ + peakRUsPerSecond: number; + /** Duration for the workload in days (default: 30) */ + days?: number; + /** Number of regions (default: 1) */ + regionCount?: number; + /** Average utilization percentage for autoscale (default: 50%) */ + averageAutoscaleUtilization?: number; +}): { + /** Serverless cost analysis */ + serverless: ReturnType; + /** Standard provisioned cost analysis */ + standardProvisioned: ReturnType; + /** Autoscale cost analysis */ + autoscale: ReturnType; + /** Recommendation based on cost */ + recommendation: { + cheapest: 'serverless' | 'standardProvisioned' | 'autoscale'; + reason: string; + potentialSavings: string; + }; +} { + const { + totalRUs, + peakRUsPerSecond, + days = 30, + regionCount = 1, + averageAutoscaleUtilization = 50 + } = options; + + // Calculate costs for each model + const serverless = calculateServerlessRUCost({ + totalRUs, + regionCount + }); + + const standardProvisioned = calculateRUCost({ + totalRUs, + isServerless: false, + provisionedRUs: peakRUsPerSecond, + days, + regionCount + }); + + const autoscale = calculateAutoscaleRUCost({ + maxAutoscaleRUs: peakRUsPerSecond, + totalRUsConsumed: totalRUs, + days, + regionCount, + averageUtilizationPercent: averageAutoscaleUtilization + }); + + // Determine the cheapest option + const costs = { + serverless: serverless.estimatedCost, + standardProvisioned: standardProvisioned.estimatedCost, + autoscale: autoscale.estimatedCost + }; + + const cheapest = Object.keys(costs).reduce((a, b) => + costs[a as keyof typeof costs] < costs[b as keyof typeof costs] ? a : b + ) as keyof typeof costs; + + const sortedCosts = Object.entries(costs).sort(([,a], [,b]) => a - b); + const [cheapestModel, cheapestCost] = sortedCosts[0]; + const [, secondCheapestCost] = sortedCosts[1]; + const savings = ((secondCheapestCost - cheapestCost) / secondCheapestCost * 100).toFixed(1); + + let reason = ''; + if (cheapest === 'serverless') { + reason = 'Serverless is most cost-effective for low to moderate, intermittent workloads'; + } else if (cheapest === 'standardProvisioned') { + reason = 'Standard provisioned is most cost-effective for predictable, sustained workloads'; + } else { + reason = 'Autoscale is most cost-effective for variable workloads with unpredictable traffic patterns'; + } + + return { + serverless, + standardProvisioned, + autoscale, + recommendation: { + cheapest, + reason, + potentialSavings: `${savings}% savings compared to next best option` + } + }; +} From a8235aad30f0f0d09950bf023b60f544616fd064 Mon Sep 17 00:00:00 2001 From: Dina Berry Date: Tue, 4 Nov 2025 10:16:52 -0800 Subject: [PATCH 4/4] insert at scale - language agnostic instructions --- .../BULK_OPERATIONS_IMPLEMENTATION_GUIDE.md | 336 ++++++++++++++++++ 1 file changed, 336 insertions(+) create mode 100644 nosql-insert-at-scale-typescript/docs/BULK_OPERATIONS_IMPLEMENTATION_GUIDE.md diff --git a/nosql-insert-at-scale-typescript/docs/BULK_OPERATIONS_IMPLEMENTATION_GUIDE.md b/nosql-insert-at-scale-typescript/docs/BULK_OPERATIONS_IMPLEMENTATION_GUIDE.md new file mode 100644 index 0000000..e1297f0 --- /dev/null +++ b/nosql-insert-at-scale-typescript/docs/BULK_OPERATIONS_IMPLEMENTATION_GUIDE.md @@ -0,0 +1,336 @@ +# Azure Cosmos DB Bulk Operations Implementation Guide + +This guide provides a language-agnostic specification for implementing enterprise-grade bulk insert and delete operations for Azure Cosmos DB NoSQL. Use this as a blueprint to create equivalent functionality in any programming language. + +## Overview + +This implementation demonstrates how to perform large-scale document operations (insert/delete) efficiently using Azure Cosmos DB's bulk operations API while maintaining enterprise-grade reliability, performance monitoring, and error handling. + +## Architecture Components + +### 1. Core Operation Functionality + +#### **Bulk Insert Operations** +- **Purpose**: Main entry point for bulk document insertion workflows +- **Key Responsibilities**: + - Load and validate JSON data files containing documents with vector embeddings + - Configure batch processing parameters based on document size and system capacity + - Orchestrate the resilient bulk insert process with comprehensive error handling + - Provide real-time performance analysis and cost estimation during operations + - Display comprehensive operation results including success rates, RU consumption, and timing metrics + +#### **Bulk Delete Operations** +- **Purpose**: Main entry point for bulk document deletion workflows +- **Key Responsibilities**: + - Query all existing documents in the container to retrieve their IDs and partition keys + - Orchestrate the resilient bulk delete process with comprehensive error handling + - Provide real-time performance analysis and cost estimation during operations + - Display comprehensive operation results including success rates, RU consumption, and timing metrics + +### 2. Core Utility Functionality + +#### **Cosmos DB Client Management** +- **Purpose**: Low-level Azure Cosmos DB operations and authentication +- **Key Functions**: + - **Authentication Support**: Implement both key-based and passwordless authentication methods (note: the reference implementation uses passwordless authentication exclusively) + - **Document Validation**: Ensure documents have required fields (`id`, partition key) before operations + - **Database/Container Management**: Verify and access existing database and container resources + - **Generic Bulk Executor**: Provide timeout and error handling wrapper for all bulk operations + - **Document Queries**: Execute efficient queries for deletion scenarios (retrieving only ID and partition key fields) + +#### **Resilient Bulk Operations** +- **Purpose**: Enterprise-grade resilient bulk operations with comprehensive error handling +- **Key Functions**: + - **Resilient Insert Processing**: Implement batch processing with retry logic and circuit breaker patterns for insert operations + - **Resilient Delete Processing**: Implement batch processing optimized for deletion operations with appropriate retry strategies + - **Error Classification**: Distinguish between retryable errors (timeouts, rate limiting) and non-retryable errors (authorization, validation) + - **Custom Retry Logic**: Implement exponential backoff for errors not automatically handled by the SDK + - **Performance Monitoring**: Collect and analyze real-time metrics during bulk operations + +#### **Supporting Functionality** +- **Performance Metrics**: Real-time monitoring of RU consumption, latency measurement, and throughput calculation +- **Cost Estimation**: Calculate operational costs for different Azure Cosmos DB pricing models (serverless, provisioned, autoscale) +- **Utility Operations**: File I/O operations, JSON processing, configuration management, and helper functions + +## Implementation Requirements + +### 1. Mandatory Azure Cosmos DB API Usage + +**CRITICAL**: All insert and delete operations MUST use the bulk operations API available in your language's Azure Cosmos DB SDK: +- **Insert**: Use bulk create operations (equivalent to `BulkOperationType.Create` with `executeBulkOperations` in the JavaScript/TypeScript SDK) +- **Delete**: Use bulk delete operations (equivalent to `BulkOperationType.Delete` with `executeBulkOperations` in the JavaScript/TypeScript SDK) +- **Prohibited**: Direct individual item operations (create, upsert, delete, replace), deprecated bulk methods + +**Authentication Support**: Your implementation must support both key-based and passwordless authentication methods for flexibility, though the reference articles and tutorials will demonstrate passwordless authentication exclusively as the recommended secure approach. + +### 2. Required Document Structure + +#### **For Insert Operations**: +```json +{ + "id": "document-identifier", // Required by Cosmos DB + "HotelId": "partition-key-value", // Custom partition key field + "HotelName": "Hotel Name", + "Description": "Hotel description", + "embedding": [0.1, 0.2, ...], // Vector embeddings (1536 dimensions) + // ... other document properties +} +``` + +#### **For Delete Operations**: +```json +{ + "id": "document-identifier", + "partitionKey": "partition-key-value" +} +``` + +### 3. Bulk Operation Configuration + +#### **Required Operation Input Structure (TypeScript Reference)**: + +The following examples show the TypeScript/JavaScript SDK structure. Implement equivalent functionality using your language's SDK patterns and data structures: + +**Insert Operations (TypeScript Example)**: +```typescript +{ + operationType: BulkOperationType.Create, + partitionKey: document[partitionKeyField], // REQUIRED + resourceBody: documentWithIdField // REQUIRED: must contain 'id' field +} +``` + +**Delete Operations (TypeScript Example)**: +```typescript +{ + operationType: BulkOperationType.Delete, + id: documentId, // REQUIRED + partitionKey: partitionKeyValue // REQUIRED +} +``` + +**Language Implementation Notes**: +- Use your language's idiomatic approach for defining operation structures (classes, structs, dictionaries, etc.) +- Ensure all required fields are included: operation type, partition key, and either document body (insert) or document ID (delete) +- Follow your language's naming conventions (camelCase, snake_case, PascalCase, etc.) + +### 4. Response Handling + +#### **Bulk Operation Result Structure (TypeScript Reference)**: + +The following shows the TypeScript/JavaScript SDK response structure. Map this to your language's equivalent types and error handling patterns: + +```typescript +{ + operationInput: OperationInput, // Original operation + response?: { // Success response + statusCode: number, // HTTP status (200, 201, etc.) + requestCharge: number, // RU consumption + resourceBody?: any // Response body (for successful operations) + }, + error?: { // Error response + code: number, // Error code + message: string // Error description + } +} +``` + +**Language Implementation Notes**: +- Use your language's preferred error handling patterns (exceptions, result types, optional types, etc.) +- Extract essential information: HTTP status codes, RU consumption, error details +- Implement response processing that is natural for your language's SDK and type system + +## Core Implementation Patterns + +### 1. Document Preparation + +#### **Essential Steps**: +1. **ID Field Generation**: Ensure every document has an `id` field + - Use existing custom ID field value OR generate UUID if missing + - Example: `document.id = document.HotelId || generateUUID()` + +2. **Partition Key Validation**: Verify partition key field exists and has value + - Example: Validate `HotelId` field is present and not empty + +3. **Document Validation**: Basic schema validation before operations + - Check required fields, data types, constraints + +### 2. Batch Processing Strategy + +#### **Configuration Parameters**: +- **Batch Size**: 5-100 documents per batch (optimize based on document size) +- **Concurrency**: Number of parallel batch operations +- **Timeout**: Per-batch operation timeout (default: 30 seconds) + +#### **Processing Flow**: +1. Split documents into batches of configured size +2. Process batches with controlled concurrency +3. Monitor progress and performance metrics +4. Handle failures with retry logic + +### 3. Error Handling and Retry Logic + +#### **Error Classification**: + +**Retryable Errors** (implement custom retry): +- `408` - Request Timeout +- `429` - Too Many Requests (rate limiting) +- `449` - Retry With +- `503` - Service Unavailable +- `500` - Internal Server Error (transient) + +**Non-Retryable Errors** (permanent failures): +- `400` - Bad Request +- `401` - Unauthorized +- `403` - Forbidden +- `404` - Not Found (for updates/deletes) +- `409` - Conflict + +#### **Retry Strategy**: +- **Maximum Retries**: 3 attempts per batch +- **Exponential Backoff**: `Math.min(baseDelay * Math.pow(2, attempt-1), maxDelay)` +- **Rate Limit Handling**: Special handling for 429 errors with longer delays +- **Circuit Breaker**: Stop retrying after consecutive failures + +### 4. Performance Monitoring + +#### **Required Metrics**: +- **Request Units (RUs)**: Track consumption per operation and total +- **Latency**: Measure operation timing (per document and per batch) +- **Throughput**: Documents processed per second +- **Success/Failure Rates**: Operation outcome tracking +- **Error Distribution**: Count errors by type/code + +#### **Cost Estimation**: +- **Serverless**: $0.000344 per 1M RUs (as of 2024) +- **Provisioned**: $0.000128 per RU/hour (as of 2024) +- **Autoscale**: $0.000192 per RU/hour (as of 2024) + +## Minimum Implementation Checklist + +### 1. Core Functional Areas Required + +- [ ] **Main Insert Application**: Entry point and orchestration for bulk insertion operations +- [ ] **Main Delete Application**: Entry point and orchestration for bulk deletion operations +- [ ] **Authentication Module**: Client creation supporting both key-based and passwordless authentication methods +- [ ] **Bulk Operations Core**: Generic bulk operation executor with timeout and comprehensive error handling +- [ ] **Resilience Implementation**: Error handling, retry logic, circuit breaker patterns, and batch processing +- [ ] **Performance Monitoring**: Real-time metrics collection, RU tracking, and cost calculation +- [ ] **Configuration Management**: Environment variable handling, settings management, and operational parameters + +### 2. Essential Function Implementation + +#### **Client Management Functionality**: +- [ ] Create Cosmos DB client with key-based authentication (for flexibility) +- [ ] Create Cosmos DB client with passwordless authentication (recommended approach used in reference articles) +- [ ] Verify database and container existence before operations +- [ ] Handle authentication errors and provide clear error messages + +#### **Document Processing Operations**: +- [ ] Validate document structure ensuring required fields are present (id, partition key) +- [ ] Generate document IDs when missing from source data +- [ ] Execute efficient queries for deletion scenarios (retrieving only essential fields: id + partition key) +- [ ] Implement document preparation logic for bulk operations + +#### **Bulk Operations Implementation**: +- [ ] Execute bulk insert operations with timeout and comprehensive error handling +- [ ] Execute bulk delete operations with timeout and comprehensive error handling +- [ ] Handle bulk operation response structures correctly (success and error scenarios) +- [ ] Process both individual operation results and batch-level outcomes +- [ ] Implement proper resource cleanup and connection management + +#### **Resilience Feature Implementation**: +- [ ] Implement batch document processing with configurable batch sizes +- [ ] Create custom retry logic for retryable errors (timeouts, rate limiting, transient failures) +- [ ] Implement exponential backoff strategy with maximum retry limits +- [ ] Develop circuit breaker pattern to prevent cascading failures +- [ ] Provide progress tracking and real-time reporting during operations + +#### **Performance Monitoring Implementation**: +- [ ] Track Request Unit (RU) consumption per operation and in aggregate +- [ ] Measure latency for individual documents and batch operations +- [ ] Calculate throughput (documents processed per second) +- [ ] Monitor error rates and categorize error types +- [ ] Estimate operational costs across different pricing models (serverless, provisioned, autoscale) + +### 3. Configuration Requirements + +#### **Environment Variables**: +```bash +# Cosmos DB Configuration +COSMOS_ENDPOINT=https://your-account.documents.azure.com +COSMOS_KEY=your-primary-key +COSMOS_DB_NAME=Hotels +COSMOS_CONTAINER_NAME=hotels-insert-scale + +# Operation Configuration +PARTITION_KEY_PATH=/HotelId +BATCH_SIZE=50 +MAX_CONCURRENCY=5 +BULK_INSERT_TIMEOUT_MS=30000 + +# Data Configuration +DATA_FILE_WITH_VECTORS=./HotelsData_text_embedding_small_3.json +EMBEDDED_FIELD=embedding +EMBEDDING_DIMENSIONS=1536 + +# Display Configuration +SHOW_COST=true +``` + +## Performance Optimization Guidelines + +### 1. Batch Size Optimization +- **Small Documents** (< 10KB): 50-100 documents per batch +- **Large Documents** (> 100KB): 5-20 documents per batch +- **Vector Documents** (with embeddings): 20-50 documents per batch + +### 2. Concurrency Tuning +- **Low RU containers** (< 1000 RU/s): 1-3 concurrent batches +- **Medium RU containers** (1000-10000 RU/s): 3-10 concurrent batches +- **High RU containers** (> 10000 RU/s): 10+ concurrent batches + +### 3. Error Handling Best Practices +- Log detailed error information for debugging +- Implement graceful degradation for persistent failures +- Provide clear user feedback on operation progress +- Save failed documents for manual review + +## Language-Specific Implementation Notes + +### For SDK Integration +1. **Find Bulk Operations API**: Locate the equivalent of bulk operations functionality in your target language's Azure Cosmos DB SDK +2. **Understand Response Format**: Map bulk operation result structures to your language-specific types and error handling patterns +3. **Implement Async Patterns**: Use appropriate asynchronous programming patterns (async/await, promises, futures, etc.) that are idiomatic for your language +4. **Handle JSON Serialization**: Ensure proper document serialization/deserialization using your language's preferred JSON handling libraries +5. **Authentication Implementation**: Implement both authentication methods (key-based and passwordless) even though the reference articles use passwordless exclusively + +### Language-Specific Naming and Structure Guidelines +- **File Organization**: Structure your code using conventions appropriate for your language (modules, packages, namespaces, etc.) +- **Function Naming**: Use naming conventions that are idiomatic for your language rather than translating names directly +- **Error Handling**: Implement error handling patterns that are natural for your language (exceptions, result types, error unions, etc.) +- **Configuration Management**: Use configuration patterns typical for your language and ecosystem +- **Dependency Management**: Use your language's standard package/dependency management system + +### Common Pitfalls to Avoid +- āŒ Using individual item operations instead of bulk operations APIs +- āŒ Missing partition key in bulk operation input structures +- āŒ Incorrect response structure handling (accessing wrong properties or missing error cases) +- āŒ Not implementing proper retry logic for transient failures +- āŒ Ignoring Request Unit (RU) consumption and cost implications +- āŒ Hardcoding authentication method instead of supporting both key-based and passwordless options +- āŒ Not providing adequate progress feedback during long-running operations + +## Success Criteria + +A successful implementation should demonstrate: +- āœ… **100% usage of bulk operations APIs** for insert/delete (no individual item operations) +- āœ… **Proper error handling** with retry logic and graceful failure management +- āœ… **Performance monitoring** with RU tracking and cost estimation across different pricing models +- āœ… **Scalable architecture** that efficiently handles datasets of 1000+ documents +- āœ… **Enterprise reliability** with timeout handling and circuit breaker patterns +- āœ… **Clear user feedback** with progress reporting and detailed operation results +- āœ… **Flexible authentication** supporting both key-based and passwordless methods (while using passwordless in reference articles) +- āœ… **Language-idiomatic code** that follows best practices and conventions for the target programming language + +This guide provides the foundation for implementing equivalent functionality in any programming language while maintaining the same level of reliability, performance, and enterprise readiness as the TypeScript reference implementation. \ No newline at end of file