Repository: facebookresearch/personal-timeline Branch: main Commit: ff74564b0548 Files: 244 Total size: 67.8 MB Directory structure: gitextract_2gnihnj2/ ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DATASET.md ├── LICENSE ├── NEW_DATASOURCE.md ├── README.md ├── conf/ │ └── ingest.conf ├── docker-compose.yml ├── notebooks/ │ ├── extract_narration_tutorial.ipynb │ ├── object_detection_tutorial.ipynb │ └── ocr_tutorial.ipynb ├── sample_data/ │ ├── books.csv │ ├── books.sampled.csv │ ├── books.sampled.json │ ├── config.ini │ ├── create_db.sql │ ├── episodes.csv │ ├── episodes.json │ ├── exercise.sampled.csv │ ├── exercise.sampled.json │ ├── photos.sampled.csv │ ├── photos.sampled.json │ ├── places.sampled.csv │ ├── places.sampled.json │ ├── purchase.sampled.csv │ ├── purchase.sampled.json │ ├── streaming.sampled.csv │ ├── streaming.sampled.json │ ├── trips.sampled.csv │ ├── trips.sampled.json │ ├── views_idx.csv │ └── views_metadata.txt └── src/ ├── __init__.py ├── common/ │ ├── __init__.py │ ├── bootstrap/ │ │ └── data_source.json │ ├── generate_persona.py │ ├── geo_helper.py │ ├── objects/ │ │ ├── EntryTypes.py │ │ ├── LLEntry_obj.py │ │ ├── __init__.py │ │ ├── derive_attributes.py │ │ └── import_configs.py │ ├── persistence/ │ │ ├── __init__.py │ │ ├── key_value_db.py │ │ └── personal_data_db.py │ ├── user_info.json │ └── util.py ├── frontend/ │ ├── Dockerfile │ ├── README.md │ ├── __init__.py │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ ├── requirements.txt │ └── src/ │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Constants.js │ ├── index.css │ ├── index.js │ ├── map/ │ │ ├── GoogleMapComponent.js │ │ └── PlaceInfo.js │ ├── reportWebVitals.js │ ├── service/ │ │ └── DigitalDataImportor.js │ ├── setupTests.js │ └── timeline/ │ ├── EpiTimeline.js │ ├── builders.js │ ├── constants.js │ └── utils.js ├── ingest/ │ ├── Dockerfile │ ├── __init__.py │ ├── create_episodes.py │ ├── derive_episodes.py │ ├── enrichment/ │ │ ├── __init__.py │ │ ├── find_jpegs.py │ │ ├── geo_enrichment.py │ │ ├── image_deduplication.py │ │ ├── image_enrichment.py │ │ └── socratic/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── process.ipynb │ │ ├── prompts/ │ │ │ ├── __init__.py │ │ │ ├── categories_places365.txt │ │ │ ├── extract_text_features.py │ │ │ ├── openimage-classnames.csv │ │ │ ├── place365-classnames.txt │ │ │ ├── tencent-ml-classnames.txt │ │ │ └── tencent-ml-images.txt │ │ ├── requirements.txt │ │ └── socratic.py │ ├── export/ │ │ ├── __init__.py │ │ └── export_entities.py │ ├── importers/ │ │ ├── __init__.py │ │ ├── create_amazon_LLEntries.py │ │ ├── create_apple_health_LLEntries.py │ │ ├── create_facebook_LLEntries.py │ │ ├── create_google_photo_LLEntries.py │ │ ├── create_googlemaps_LLEntries.py │ │ ├── generic_importer.py │ │ ├── generic_importer_workflow.py │ │ └── photo_importer_base.py │ ├── ingestion_startup.sh │ ├── offline_processing.py │ └── workflow.py ├── init.py ├── init.sh ├── qa/ │ ├── Dockerfile │ ├── README.md │ ├── chatgpt_engine.py │ ├── posttext/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── config.ini │ │ ├── data/ │ │ │ └── TimelineQA/ │ │ │ ├── dense-100/ │ │ │ │ ├── annual_medical_care-log.csv │ │ │ │ ├── config.ini │ │ │ │ ├── create_db.sql │ │ │ │ ├── daily_chat-log.csv │ │ │ │ ├── daily_exercise-log.csv │ │ │ │ ├── daily_meal-log.csv │ │ │ │ ├── daily_read-log.csv │ │ │ │ ├── daily_watchtv-log.csv │ │ │ │ ├── marriages-log.csv │ │ │ │ ├── monthly_pet_care-log.csv │ │ │ │ ├── moves-log.csv │ │ │ │ ├── persona.json │ │ │ │ ├── timeline-dense.csv │ │ │ │ ├── timeline.json │ │ │ │ ├── travel-log.csv │ │ │ │ ├── travel_dining-log.csv │ │ │ │ ├── travel_places_visited-log.csv │ │ │ │ ├── views_idx.csv │ │ │ │ ├── views_metadata.txt │ │ │ │ ├── weekly_bakeorcook-log.csv │ │ │ │ ├── weekly_dating-log.csv │ │ │ │ ├── weekly_grocery-log.csv │ │ │ │ └── weekly_hobby-log.csv │ │ │ ├── medium-100/ │ │ │ │ ├── annual_medical_care-log.csv │ │ │ │ ├── config.ini │ │ │ │ ├── create_db.sql │ │ │ │ ├── daily_chat-log.csv │ │ │ │ ├── daily_exercise-log.csv │ │ │ │ ├── daily_meal-log.csv │ │ │ │ ├── daily_read-log.csv │ │ │ │ ├── daily_watchtv-log.csv │ │ │ │ ├── marriages-log.csv │ │ │ │ ├── monthly_pet_care-log.csv │ │ │ │ ├── moves-log.csv │ │ │ │ ├── persona.json │ │ │ │ ├── timeline-medium.csv │ │ │ │ ├── timeline.json │ │ │ │ ├── travel-log.csv │ │ │ │ ├── travel_dining-log.csv │ │ │ │ ├── travel_places_visited-log.csv │ │ │ │ ├── views_idx.csv │ │ │ │ ├── views_metadata.txt │ │ │ │ ├── weekly_bakeorcook-log.csv │ │ │ │ ├── weekly_dating-log.csv │ │ │ │ ├── weekly_grocery-log.csv │ │ │ │ └── weekly_hobby-log.csv │ │ │ └── sparse-100/ │ │ │ ├── annual_medical_care-log.csv │ │ │ ├── config.ini │ │ │ ├── create_db.sql │ │ │ ├── daily_chat-log.csv │ │ │ ├── daily_exercise-log.csv │ │ │ ├── daily_meal-log.csv │ │ │ ├── daily_read-log.csv │ │ │ ├── daily_watchtv-log.csv │ │ │ ├── marriages-log.csv │ │ │ ├── monthly_pet_care-log.csv │ │ │ ├── moves-log.csv │ │ │ ├── persona.json │ │ │ ├── results/ │ │ │ │ ├── q1-result.csv │ │ │ │ ├── q10-result.csv │ │ │ │ ├── q11-result.csv │ │ │ │ ├── q12-result.csv │ │ │ │ ├── q13-result.csv │ │ │ │ ├── q14-result.csv │ │ │ │ ├── q15-result.csv │ │ │ │ ├── q16-result.csv │ │ │ │ ├── q17-result.csv │ │ │ │ ├── q18-result.csv │ │ │ │ ├── q19-result.csv │ │ │ │ ├── q2-result.csv │ │ │ │ ├── q20-result.csv │ │ │ │ ├── q21-result.csv │ │ │ │ ├── q22-result.csv │ │ │ │ ├── q23-result.csv │ │ │ │ ├── q24-result.csv │ │ │ │ ├── q25-result.csv │ │ │ │ ├── q26-result.csv │ │ │ │ ├── q27-result.csv │ │ │ │ ├── q28-result.csv │ │ │ │ ├── q29-result.csv │ │ │ │ ├── q3-result.csv │ │ │ │ ├── q30-result.csv │ │ │ │ ├── q31-result.csv │ │ │ │ ├── q32-result.csv │ │ │ │ ├── q33-result.csv │ │ │ │ ├── q34-result.csv │ │ │ │ ├── q35-result.csv │ │ │ │ ├── q36-result.csv │ │ │ │ ├── q37-result.csv │ │ │ │ ├── q38-result.csv │ │ │ │ ├── q39-result.csv │ │ │ │ ├── q4-result.csv │ │ │ │ ├── q40-result.csv │ │ │ │ ├── q41-result.csv │ │ │ │ ├── q42-result.csv │ │ │ │ ├── q5-result.csv │ │ │ │ ├── q6-result.csv │ │ │ │ ├── q7-result.csv │ │ │ │ ├── q8-result.csv │ │ │ │ ├── q9-result.csv │ │ │ │ └── queries.csv │ │ │ ├── timeline.csv.txt │ │ │ ├── timeline.json │ │ │ ├── travel-log.csv │ │ │ ├── travel_dining-log.csv │ │ │ ├── travel_places_visited-log.csv │ │ │ ├── views_idx.csv │ │ │ ├── views_metadata.txt │ │ │ ├── weekly_bakeorcook-log.csv │ │ │ ├── weekly_dating-log.csv │ │ │ ├── weekly_grocery-log.csv │ │ │ └── weekly_hobby-log.csv │ │ ├── newqueryfile.csv │ │ ├── requirements.txt │ │ ├── server.py │ │ ├── src/ │ │ │ ├── posttext.py │ │ │ ├── retrieval_qa.py │ │ │ ├── views_qa.py │ │ │ └── views_util.py │ │ └── util/ │ │ ├── create_metadata_idx.py │ │ ├── data2vectorstore.py │ │ ├── digital_data2vectorstore.py │ │ ├── jsontimeline2csv.py │ │ ├── setup.py │ │ └── table2text.py │ ├── qa_engine.py │ ├── server.py │ └── view_engine.py └── requirements.txt ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ .idea/* *__pycache__* *.pkl *.pt *.db *.pyc static/* personal-data env/ ================================================ FILE: .gitmodules ================================================ [submodule "BLIP"] path = BLIP url = https://github.com/salesforce/BLIP.git ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies within all project spaces, and it also applies when an individual is representing the project or its community in public spaces. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. This Code of Conduct also applies outside the project spaces when there is a reasonable belief that an individual's behavior may have a negative impact on the project or its community. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at . All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to personal-timeline We want to make contributing to this project as easy and transparent as possible. ## Pull Requests We actively welcome your pull requests. 1. Fork the repo and create your branch from `main`. 2. If you've added code that should be tested, add tests. 3. If you've changed APIs, update the documentation. 4. Ensure the test suite passes. 5. Make sure your code lints. 6. If you haven't already, complete the Contributor License Agreement ("CLA"). ## Contributor License Agreement ("CLA") In order to accept your pull request, we need you to submit a CLA. You only need to do this once to work on any of Meta's open source projects. Complete your CLA here: ## Issues We use GitHub issues to track public bugs. Please ensure your description is clear and has sufficient instructions to be able to reproduce the issue. Meta has a [bounty program](https://www.facebook.com/whitehat/) for the safe disclosure of security bugs. In those cases, please go through the process outlined on that page and do not file a public issue. ## License By contributing to TimelineBuilder, you agree that your contributions will be licensed under the LICENSE file in the root directory of this source tree. ================================================ FILE: DATASET.md ================================================ # Personal timeline dataset This dataset is a sample of ~2 months of one of our own member’s personal digital services data self-collected and anonymized. The digital services include: * Books: Amazon Kindle and Libby, 93 records in total * Purchase: Amazon, 95 records in total * Streaming: Spotify, 111 records in total * Exercise: Apple Watch, 33 records in total * Photos: Google Photos, 325 records in total * Places: Geo locations (lat/long and addresses) from the Google photos metadata, 467 records in total All raw data were downloaded from the service providers following our data importer instructions. ## How we anonymize the data * *Books, purchase, streaming*: we reviewed each individual records * *Places (all location, address data)*: We anonymize near-home location data by a distance-preserving random project to a high-dimensional space then project back the points to 2D. We use reverse geo-coding to label the addresses of those points. For locations that are not near-home, we verified that all addresses are public space. * *Images*: We anonymize photos by replacing them with images generated using an AI-generation tool, DALL-E. We use object and place detection to generate captions of the raw images, and use the caption as the image generation prompt (e.g., “A realistic photo for egg tart in the kitchen”). We manually removed all images with people from the output. ## How this dataset can be used We intend to use this dataset to demostrate question-answer systems over digital service data. With the underlying data, the QA system, such as a personalized version of ChatGPT, should be able to answer questions such as: * “When was the last time I visited Japan”, * “Show me some photos of plants in my neighborhood”, * “How many times I exercise during the month X”, etc. ## Example records Books: | time | book_name | img_url | id | |--------------------|---------------------|-----------------------------------------------------------------------------------------------|----------| | 2022-12-19 4:37:00 | I Am a Strange Loop | https://img1.od-cdn.com/ImageType-100/0887-1/{A6AA81F6-9242-4793-8AB0-A5C8B5DBDB66}Img100.jpg | books_26 | Exercise: | start_time | end_time | textDescription | duration | distance | calories | outdoor | temperature | id | |---------------------------|---------------------------|---------------------------|-------------|----------|----------|---------|-------------|-------------| | 2019-03-02 08:00:34-08:00 | 2019-03-02 08:39:59 -0800 | 08:00: running 39 minutes | 39.40743217 | 0 | 0 | 1 | | exercise_35 | Photos: | start_time | end_time | textDescription | address | lat | long | details | img_url | |---------------------------|---------------------------|-------------------|---------------------------------------------------------------------------|---------|----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------| | 2019-03-28 20:38:13+09:00 | 2019-03-28 20:38:13+09:00 | from Google Photo | Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan | 35.6644 | 139.7301 | {'objects': ['Tsukudani', 'Scroll', 'Document', 'Receipt', 'Homework', 'paper', 'menu', 'date', 'sheet, flat solid', 'shoji'], 'places': ['restaurant', 'hotel room', 'archive', 'sushi bar', 'restaurant kitchen'], 'tags': ['document']} | digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6955.HEIC.compressed.jpg | Purchase: | time | purchase_id | productName | productPrice | productQuantity | id | |---------------------|---------------------|---------------------------------------------------------|--------------|-----------------|------------| | 2022-07-26 16:29:16 | 114-9774413-4401831 | Dr. Earth 713 Organic 9 Fruit Tree Fertilizer, 12-Pound | 22.53 | 1 | purchase_0 | | 2022-07-26 16:28:27 | 114-9230659-7782623 | Miracle-Gro Citrus, Avocado, & Mango Food, 20 lb. | 15.4 | 1 | purchase_1 | Streaming: | start_time | end_time | artist | track | playtimeMs | spotify_link | id | |---------------------|---------------------|---------------------|--------------------------------------------------------------------|------------|--------------|-------------| | 2022-05-31 11:35:00 | 2022-05-31 11:35:00 | Lex Fridman Podcast | #282 – David Buss: Sex, Dating, Relationships, and Sex Differences | 18000 | | streaming_0 | Places: | start_time | end_time | TextDescription | start_address | start_lat | start_long | end_address | end_lat | end_long | id | |------------|----------|-----------------|---------------|-----------|------------|-------------|---------|----------|----| | 2019-04-20 13:02:58-07:00 | 2019-04-20 13:02:58-07:00 | Texas Home on Greg Street | 2966, Greg Street, Randall County, Texas, 79015, United States | 35.03744471122455 | -101.90857274320028 | 2966, Greg Street, Randall County, Texas, 79015, United States | 35.03744471122455 | -101.90857274320028 | places_27422 | ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: NEW_DATASOURCE.md ================================================ # Adding a New Data Source There are two ways to add a new data source depending on the complexity of input. If you have a simple non-nested CSV or JSON file, it's quite straightforward and can be done by updating some configurations. For more complex cases, writing a custom importer is required. Information on both scenarios is detailed below. ## Adding Data Source Configs [data_source.json](src/common/bootstrap/data_source.json) keeps track of all sources and should be updated irrespective of the path you choose to add the new source. This file contains a list of all data sources that are processed by the importer. In code, these configs are deserialized to class structure defined in [import_configs.py](src/common/objects/import_configs.py). - Refer to [Class Hierarchy](src/common/objects/import_configs.py) to properly add an entry to [data_source.json](src/common/bootstrap/data_source.json). Give a unique source ID to your data source. ## Simple Non-nested CSV and JSONs If you have a simple non-nested CSV or JSON file, you can simply use the generic CSV/JSON importer provided once the new data source is configured properly. Steps to follow: - Follow steps in "Adding Data Source Configs" section to update [data_source.json](src/common/bootstrap/data_source.json) file. - Rerun [init.py](src/init.py) to create source directory for new sources. - Add data files to source directory. - Make sure `ingest_new_data` is set to True in [ingest.conf](conf/ingest.conf) - Re-run the backend docker image to ingest data from new sources. ## More complex Inputs Write a custom importer following these guidelines - Follow steps in "Adding Data Source Configs" section to update [data_source.json](src/common/bootstrap/data_source.json) file. - Extend your custom importer from [GenericImporter](src/ingest/importers/generic_importer.py) class; implement the function `import_data` and use the configurations as appropriate to create LLEntry objects(Refer to available custom importers) - Store class file under [importers](src/ingest/importers) - Update `generic_importer_workflow.py`; add call to your class in the `if...else` loop of the `start_import` function. Alternatively, contribute to fix this class using configs. When writing new importer for Photos, you may find it useful to extend `PhotoImporter` instead of `GenericImporter`. We started with simple Photo imports so `PhotoImporter` was written to reduce code duplication. Creating `GenericImporter` was an afterthought and there is room for improving this model of extension to refactor, or even combine these two importer classes in the future. ================================================ FILE: README.md ================================================ # TimelineBuilder ## Table of Content - [Setup](#general-setup): how to set up for this repo - [Importers](#digital-data-importers): how to create LifeLog entries from several data sources. - [Downloading Digital Data](#downloading-your-personal-data) - [Running the importers](#running-the-code) - [Sample Dataset](DATASET.md): a sampled set of anonymized data for testing - [Data Visualization](#visualization-of-the-personal-timeline): a ReactJS-based visualization frontend of the personal timeline - [Question Answering](#question-answer-over-the-personal-timeline): a LLM-based QA engine over the personal timeline - [TimelineQA](#timelineqa-a-benchmark-for-question-answer-over-the-personal-timeline): a synthetic benchmark for evaluating personal timeline QA systems ## General Setup ## Step 0: Create environment 1. Install Docker Desktop from [this link](https://docs.docker.com/desktop/). 2. Follow install steps and use the Desktop app to start the docker engine. 3. Install `git-lfs` and clone the repo. You may need a conda env to do that: ``` conda create -n personal-timeline python=3.10 conda activate personal-timeline conda install -c conda-forge git-lfs git lfs install git clone https://github.com/facebookresearch/personal-timeline cd personal-timeline ``` 4. Run init script (needs python) ``` sh src/init.sh ``` This will create a bunch of files/folders/symlinks needed for running the app. This will also create a new directory under your home folder `~/personal-data`, the directory where your personal data will reside. ## Step 1: Setting up ## For Data Ingestion Ingestion configs are controlled via parameters in `conf/ingest.conf` file. The configurations are defaulted for optimized processing and don't need to be changed. You can adjust values for these parameters to run importer with a different configuration. ## For Data visualization 1. To set up a Google Map API (free), follow these [instructions](https://developers.google.com/maps/documentation/embed/quickstart#create-project). Copy the following lines to `env/frontend.env.list`: ``` GOOGLE_MAP_API= ``` 2. To embed Spotify, you need to set up a Spotify API (free) following [here](https://developer.spotify.com/dashboard/applications). You need to log in with a Spotify account, create a project, and show the `secret`. Copy the following lines to `env/frontend.env.list`: ``` SPOTIFY_TOKEN= SPOTIFY_SECRET= ``` ## For Question-Answering Set up an OpenAI API following these [instructions](https://openai.com/api/). Copy the following line to `env/frontend.env.list`: ``` OPENAI_API_KEY= ``` ## Digital Data Importers ## Downloading your personal data We currently support 9 data sources. Here is a summary table: | Digital Services | Instructions | Destinations | Use cases | |------------------|-------------------------------------------------------------------------------------|--------------------------------------------------------------------------|--------------------------------------------------------| | Apple Health | [Link](https://github.com/facebookresearch/personal-timeline#apple-health) | personal-data/apple-health | Exercise patterns, calorie counts | | Amazon | [Link](https://github.com/facebookresearch/personal-timeline#amazon) | personal-data/amazon | Product recommendation, purchase history summarization | | Amazon Kindle | [Link](https://github.com/facebookresearch/personal-timeline#amazon) | personal-data/amazon-kindle | Book recommendation | | Spotify | [Link](https://github.com/facebookresearch/personal-timeline#spotify) | personal-data/spotify | Music / streaming recommendation | | Venmo | [Link](https://github.com/facebookresearch/personal-timeline#venmo) | personal-data/venmo | Monthly spend summarization | | Libby | [Link](https://github.com/facebookresearch/personal-timeline#libby) | personal-data/libby | Book recommendation | | Google Photos | [Link](https://github.com/facebookresearch/personal-timeline#google-photos) | personal-data/google_photos | Food recommendation, Object detections, and more | | Google Location | [Link](https://github.com/facebookresearch/personal-timeline#google-photos) | personal-data/google-timeline/Location History/Semantic Location History | Location tracking / visualization | | Facebook posts | [Link](https://github.com/facebookresearch/personal-timeline#facebook-data) | personal-data/facebook | Question-Answering over FB posts / photos | If you have a different data source not listed above, follow the instructions [here](NEW_DATASOURCE.md) to add this data source to the importer. ### GOOGLE PHOTOS and GOOGLE TIMELINE 1. You can download your Google photos and location (also Gmail, map and google calendar) data from [Google Takeout](https://takeout.google.com/). 2. The download from Google Takeout would be in multiple zip files. Unzip all the files. 3. For Google photos, move all the unzipped folders inside `~/personal-data/google_photos/`. There can be any number of sub-folders under `google_photos`. 4. For Google locations, move the unzipped files to `personal-data/google-timeline/Location History/Semantic Location History`. ### FACEBOOK DATA 1. Go to [Facebook Settings](https://www.facebook.com/settings?tab=your_facebook_information) 2. Click on Download your information and download FB data in JSON format 3. Unzip the downloaded file and copy the directory `posts` sub-folder to `~/personal-data/facebook`. The `posts` folder would sit directly under the Facebook folder. ### APPLE HEALTH 1. Go to the Apple Health app on your phone and ask to export your data. This will create a file called iwatch.xml and that's the input file to the importer. 2. Move the downloaded file to this `~/personal-data/apple-health` ### AMAZON 1. Request your data from Amazon here: https://www.amazon.com/gp/help/customer/display.html?nodeId=GXPU3YPMBZQRWZK2 They say it can take up to 30 days, but it took about 2 days. They'll email you when it's ready. They separate Amazon purchases from Kindle purchases into two different directories. The file you need for Amazon purchases is Retail.OrderHistory.1.csv The file you need for Kindle purchases is Digital Items.csv 2. Move data for Amazon purchases to `~/personal-data/amazon` folder and of kindle downloads to `~/personal-data/amazon-kindle` folder ### VENMO 1. Download your data from Venmo here -- https://help.venmo.com/hc/en-us/articles/360016096974-Transaction-History 2. Move the data into `~/personal-data/venmo` folder. ### LIBBY 1. Download your data from Libby here -- https://libbyapp.com/timeline/activities. Click on `Actions` then `Export Timeline` 2. Move the data into `~/personal-data/libby` folder. ### SPOTIFY 1. Download your data from Spotify here -- https://support.spotify.com/us/article/data-rights-and-privacy-settings/ They say it can take up to 30 days, but it took about 2 days. They'll email you when it's ready. 2. Move the data into `~/personal-data/spotify` folder. # Running the code Now that we have all the data and setting in place, we can either run individual steps or the end-to-end system. This will import your photo data to SQLite (this is what will go into the episodic database), build summaries and make data available for visualization and search. Running the Ingestion container will add two types of file to `~/personal-data/app_data` folder - Import your data to an SQLite DB named `raw_data.db` - Export your personal data into csv files such as `books.csv`, `exercise.csv`, etc. ### Option 1: To run the pipeline end-to-end (with frontend and QA backend), simply run ``` docker-compose up -d --build ``` ### Option 2: You can also run ingestion, visualization, and the QA engine separately. To start data ingestion, use ``` docker-compose up -d backend --build ``` ## Check progress Once the docker command is run, you can see running containers for backend and frontend in the docker for Mac UI. Copy the container Id for ingest and see logs by running the following command: ``` docker logs -f ``` ## Visualization of the personal timeline To start the visualization frontend: ``` docker-compose up -d frontend --build ``` Running the Frontend will start a ReactJS UI at `http://localhost:3000`. See [here](src/frontend/) for more details. We provide an anonymized digital data [dataset](sample_data/) for testing the UI and QA system, see [here](DATASET.md) for more details. ![Timeline Visualization](ui.png) ## Question Answer over the personal timeline The QA engine is based on PostText, a QA system for answering queries that require computing aggregates over personal data. PostText Reference --- [https://arxiv.org/abs/2306.01061](https://arxiv.org/abs/2306.01061): ``` @article{tan2023posttext, title={Reimagining Retrieval Augmented Language Models for Answering Queries}, author={Wang-Chiew Tan and Yuliang Li and Pedro Rodriguez and Richard James and Xi Victoria Lin and Alon Halevy and Scott Yih}, journal={arXiv preprint:2306.01061}, year={2023}, } ``` To start the QA engine, run: ``` docker-compose up -d qa --build ``` The QA engine will be running on a flask server inside a docker container at `http://localhost:8085`. See [here](src/qa) for more details. ![QA Engine](qa.png) There are 3 options for the QA engine. * *ChatGPT*: uses OpenAI's gpt-3.5-turbo [API](https://platform.openai.com/docs/models/overview) without the personal timeline as context. It answers world knowledge question such as `what is the GDP of US in 2021` but not personal questions. * *Retrieval-based*: answers question by retrieving the top-k most relevant episodes from the personal timeline as the LLM's context. It can answer questions over the personal timeline such as `show me some plants in my neighborhood`. * *View-based*: translates the input question to a (customized) SQL query over tabular views (e.g., books, exercise, etc.) of the personal timeline. This QA engine is good at answering aggregate queries (`how many books did I purchase?`) and min/max queries (`when was the last time I travel to Japan`). Example questions you may try: * `Show me some photos of plants in my neighborhood` * `Which cities did I visit when I traveled to Japan?` * `How many books did I purchase in April?` ## TimelineQA: a benchmark for Question Answer over the personal timeline TimelineQA is a synthetic benchmark for accelerating progress on querying personal timelines. TimelineQA generates lifelogs of imaginary people. The episodes in the lifelog range from major life episodes such as high school graduation to those that occur on a daily basis such as going for a run. We have evaluated SOTA models for atomic and multi-hop QA on the benchmark. Please check out the TimelineQA github [repo](https://github.com/facebookresearch/TimelineQA) and the TimelineQA paper --- [https://arxiv.org/abs/2306.01061](https://arxiv.org/abs/2306.01061): ``` @article{tan2023timelineqa, title={TimelineQA: A Benchmark for Question Answering over Timelines}, author={Tan, Wang-Chiew and Dwivedi-Yu, Jane and Li, Yuliang and Mathias, Lambert and Saeidi, Marzieh and Yan, Jing Nathan and Halevy, Alon Y}, journal={arXiv preprint arXiv:2306.01069}, year={2023} } ``` ## License The codebase is licensed under the [Apache 2.0 license](LICENSE). ## Contributing See [contributing](CONTRIBUTING.md) and the [code of conduct](CODE_OF_CONDUCT.md). ## Contributor Attribution We'd like to thank the following contributors for their contributions to this project: - [Tripti Singh](https://github.com/tripti-singh) - Design and implementation of the sqlite DB backend - Designing a pluggable data import and enrichment layer and building the pipeline orchestrator. - Importers for all six [data sources](​​https://github.com/facebookresearch/personal-timeline#digital-data-importers) - Generic csv and json data sources importer with [instructions](https://github.com/facebookresearch/personal-timeline/blob/main/NEW_DATASOURCE.md) - Dockerization - Contributing in Documentation - [Wang-Chiew Tan](https://github.com/wangchiew) - Implementation of the [PostText](https://arxiv.org/abs/2306.01061) query engine - [Pierre Moulon](https://github.com/SeaOtocinclus) for providing open-sourcing guidelines and suggestions ================================================ FILE: conf/ingest.conf ================================================ # incremental_* if True, will only process data that was not processed previously. # When false, it will re-process all data. Useful when there is new logic that requires re-compute of everything from beginning. ingest_new_data=True incremental_geo_enrich=True incremental_image_enrich=True incremental_export=False # export_enriched_data_to_json=True enriched_data_to_json=True ================================================ FILE: docker-compose.yml ================================================ version: "3.9" services: frontend: build: context: . dockerfile: src/frontend/Dockerfile ports: - "3000:3000" volumes: - ./personal-data/:/app/personal-data/ environment: - APP_DATA_DIR=/app/personal-data/app_data env_file: - env/frontend.env.list qa: build: context: . dockerfile: src/qa/Dockerfile ports: - "8085:8085" volumes: - ./personal-data/:/app/personal-data/ environment: - APP_DATA_DIR=/app/personal-data/app_data env_file: - env/frontend.env.list backend: build: context: . dockerfile: src/ingest/Dockerfile volumes: - ./personal-data/:/app/personal-data/ environment: - APP_DATA_DIR=/app/personal-data/app_data env_file: - env/frontend.env.list - conf/ingest.conf ================================================ FILE: notebooks/extract_narration_tutorial.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "id": "fb140897", "metadata": { "id": "fb140897" }, "source": [ "# Extract Narrations and Audio Captions Tutorial\n", "\n", "In this tutorial, you will be extracting video narrations through an auto-narration model, LaViLa, as well as audio captions through speech-to-text model, WhisperX. Finally, you will be able to interact with the extracted narrations and captions using langchain.\n", "\n", "### Notebook stuck?\n", "Note that because of Jupyter issues, sometimes the code may stuck at visualization. We recommend **restart the kernels** and try again to see if the issue is resolved." ] }, { "cell_type": "markdown", "id": "l5LlycOs75bf", "metadata": { "id": "l5LlycOs75bf" }, "source": [ "## Step 1. Install Project Aria Tools\n", "Run the following cell to install Project Aria Tools for reading Aria recordings in .vrs format" ] }, { "cell_type": "code", "execution_count": null, "id": "Yt5CoQlp8Cxw", "metadata": { "id": "Yt5CoQlp8Cxw" }, "outputs": [], "source": [ "# Specifics for Google Colab\n", "google_colab_env = 'google.colab' in str(get_ipython())\n", "print(\"Running from Google Colab, installing projectaria_tools\")\n", "!pip install projectaria-tools" ] }, { "cell_type": "markdown", "id": "Tv0I3ajm7TyH", "metadata": { "id": "Tv0I3ajm7TyH" }, "source": [ "## Step 2. Prepare an Aria recording\n", "\n", "\n", "### Prepare your collected Aria recording\n", "We will set the vrsfile path to your collected Aria recording.\n", "\n", "Upload your Aria recording in your Google Drive before running the cell.\n", "\n", "Here, we assume it is uploaded to **`My Drive/aria/recording.vrs`**\n", "\n", "*(You can check the content of the mounted drive by running `!ls \"/content/drive/My Drive/\"` in a cell.)*\n", "\n" ] }, { "cell_type": "code", "execution_count": null, "id": "WKyjF8fF7tA_", "metadata": { "id": "WKyjF8fF7tA_" }, "outputs": [], "source": [ "from google.colab import drive\n", "import os\n", "drive.flush_and_unmount()\n", "drive.mount('/content/drive/')\n", "my_vrs_file_path = 'aria/recording.vrs'\n", "vrsfile = \"/content/drive/My Drive/\" + my_vrs_file_path\n", "print(f\"INFO: vrsfile set to {vrsfile}\")" ] }, { "cell_type": "markdown", "id": "vZLboooc7QLQ", "metadata": { "id": "vZLboooc7QLQ" }, "source": [ "## Tip: Avoid re-installation of packages\n", "Follow the below steps to avoid re-installation of package due to Colab shutting off or restarts later when running the scripts.\n", "\n", "(1) Create a folder called “ColabNotebooks” manually in your Drive (under \"My Drive\").\n", "\n", "(2) Then, run the below cell to add the symlink path to the system path." ] }, { "cell_type": "code", "execution_count": null, "id": "vnjjSGXlc4-i", "metadata": { "id": "vnjjSGXlc4-i" }, "outputs": [], "source": [ "# This step is to save package\n", "nb_path = '/content/notebooks'\n", "os.symlink('/content/drive/My Drive/ColabNotebooks', nb_path)\n", "sys.path.insert(0,nb_path)" ] }, { "cell_type": "markdown", "id": "dHN4k57-nGBC", "metadata": { "id": "dHN4k57-nGBC" }, "source": [ "\n", "#### (Optional) Download a sample data for debugging\n", "Use this small scale sample data for testing out the dependencies." ] }, { "cell_type": "code", "execution_count": null, "id": "2aJEwVNJnDsL", "metadata": { "id": "2aJEwVNJnDsL" }, "outputs": [], "source": [ "# !curl -O -J -L \"https://github.com/facebookresearch/projectaria_tools/raw/main/data/mps_sample/sample.vrs\"\n", "# vrsfile = \"sample.vrs\"\n", "# print(f\"INFO: vrsfile set to {vrsfile}\")" ] }, { "cell_type": "markdown", "id": "8196ad05", "metadata": { "id": "8196ad05" }, "source": [ "## Step 3. Create data provider\n", "\n", "Create projectaria data_provider so you can load the content of the vrs file." ] }, { "cell_type": "code", "execution_count": null, "id": "fb04b53b", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "fb04b53b", "outputId": "72defac0-8eae-41be-afc4-44f132e39e88" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Creating data provider from /content/drive/My Drive/aria/recording_long.vrs\n" ] } ], "source": [ "from projectaria_tools.core import data_provider, calibration\n", "from projectaria_tools.core.sensor_data import TimeDomain, TimeQueryOptions\n", "from projectaria_tools.core.stream_id import RecordableTypeId, StreamId\n", "import numpy as np\n", "from matplotlib import pyplot as plt\n", "\n", "print(f\"Creating data provider from {vrsfile}\")\n", "provider = data_provider.create_vrs_data_provider(vrsfile)\n", "if not provider:\n", " print(\"Invalid vrs data provider\")" ] }, { "cell_type": "markdown", "id": "c5033225", "metadata": { "id": "c5033225" }, "source": [ "## Step 4. Display VRS rgb content in thumbnail images\n", "\n", "Goals:\n", "- Summarize a VRS using 10 image side by side, to visually inspect the collected data.\n", "\n", "Key learnings:\n", "- Image streams are identified with a Unique Identifier: stream_id\n", "- Image frames are identified with timestamps\n", "- PIL images can be created from Numpy array\n", "\n", "Customization\n", "- To change the number of sampled images, change the variable `sample_count` to a desired number.\n", "- To change the thumbnail size, change the variable `resize_ratio` to a desired value." ] }, { "cell_type": "code", "execution_count": null, "id": "933725b6", "metadata": { "id": "933725b6" }, "outputs": [], "source": [ "from PIL import Image\n", "from tqdm import tqdm\n", "\n", "sample_count = 10\n", "resize_ratio = 10\n", "\n", "rgb_stream_id = StreamId(\"214-1\")\n", "\n", "# Retrieve image size for the RGB stream\n", "time_domain = TimeDomain.DEVICE_TIME # query data based on host time\n", "option = TimeQueryOptions.CLOSEST # get data whose time [in TimeDomain] is CLOSEST to query time\n", "\n", "# Retrieve Start and End time for the given Sensor Stream Id\n", "start_time = provider.get_first_time_ns(rgb_stream_id, time_domain)\n", "end_time = provider.get_last_time_ns(rgb_stream_id, time_domain)\n", "\n", "image_config = provider.get_image_configuration(rgb_stream_id)\n", "width = image_config.image_width\n", "height = image_config.image_height\n", "\n", "thumbnail = newImage = Image.new(\n", " \"RGB\", (int(width * sample_count / resize_ratio), int(height / resize_ratio))\n", ")\n", "current_width = 0\n", "\n", "\n", "# Samples 10 timestamps\n", "sample_timestamps = np.linspace(start_time, end_time, sample_count)\n", "for sample in tqdm(sample_timestamps):\n", " image_tuple = provider.get_image_data_by_time_ns(rgb_stream_id, int(sample), time_domain, option)\n", " image_array = image_tuple[0].to_numpy_array()\n", " image = Image.fromarray(image_array)\n", " new_size = (\n", " int(image.size[0] / resize_ratio),\n", " int(image.size[1] / resize_ratio),\n", " )\n", " image = image.resize(new_size).rotate(-90)\n", " thumbnail.paste(image, (current_width, 0))\n", " current_width = int(current_width + width / resize_ratio)\n", "\n", "from IPython.display import Image\n", "display(thumbnail)" ] }, { "cell_type": "markdown", "id": "nFkss4vlaWxh", "metadata": { "id": "nFkss4vlaWxh" }, "source": [ "## Step 5. Prepare Pytorch Data Loader for Auto-Narration\n", "\n", "Here, we will be creating a pytorch data loader that outputs batches of video snippets in order to run the LaViLa auto-narration model.\n", "\n", "A **snippet** consists of a series of frames captured over a brief time span, which we will refer to as **snippet duration**.\n", "\n", "#### Step 5-1. Define Dataset" ] }, { "cell_type": "code", "execution_count": null, "id": "Kee0HuCgKUy_", "metadata": { "id": "Kee0HuCgKUy_" }, "outputs": [], "source": [ "import torch\n", "from torch.utils.data import Dataset, DataLoader\n", "from PIL import Image\n", "import torchvision.transforms as transforms\n", "import torchvision.transforms._transforms_video as transforms_video\n", "import torch.nn as nn\n", "\n", "class RGBSnippetDataset(Dataset):\n", " def __init__(self,\n", " start_time: float, # start time in the video for sampling data\n", " end_time: float, # end time in the video for sampling data\n", " snippet_dur_sec: int, # snippet duration\n", " frames_per_snippet: int, # number of frames per snippet\n", " transform=None\n", " ):\n", " self.start_time = start_time\n", " self.end_time = end_time\n", " self.snippet_dur = snippet_dur_sec * 1000000000 # duration of a snippet in nano seconds\n", " self.frames_per_snippet = frames_per_snippet # number of frames per snippet\n", " self.stride_ns = int(self.snippet_dur//frames_per_snippet)\n", " self.num_snippets = int((end_time - start_time) // self.snippet_dur)\n", " self.snippet_starts = np.arange(start_time, start_time + self.snippet_dur * self.num_snippets, self.snippet_dur)\n", "\n", " # Precompute timestamps for each snippet\n", " self.all_frame_timestamps = [np.arange(snippet_start, snippet_start + self.snippet_dur, self.stride_ns) for snippet_start in self.snippet_starts]\n", "\n", " self.rgb_stream_id = rgb_stream_id\n", " self.time_domain = time_domain\n", " self.option = option\n", " self.transform = transform\n", "\n", " def __len__(self):\n", " return self.num_snippets\n", "\n", " def __getitem__(self, idx):\n", " # returns a snippet\n", "\n", " # get timestamps of frames that belong to the current snippet idx\n", " frame_timestamps = self.all_frame_timestamps[idx]\n", "\n", " # read frames from the data provider and append to frame_list\n", " frame_list = []\n", " for timestamp in frame_timestamps:\n", " image_tuple = provider.get_image_data_by_time_ns(self.rgb_stream_id, int(timestamp), self.time_domain, self.option)\n", " image_array = image_tuple[0].to_numpy_array()\n", " frame_list.append(image_array)\n", "\n", " # append a set of images to a snippet\n", " frames = [torch.tensor(frame, dtype=torch.float32) for frame in frame_list]\n", " frames = torch.stack(frames, dim=0)\n", "\n", " if self.transform:\n", " frames = self.transform(frames)\n", "\n", " # return snippet start time and end time\n", " snippet_start = self.snippet_starts[idx]\n", " snippet_end = snippet_start + self.snippet_dur\n", "\n", " return frames, snippet_start, snippet_end\n", "\n", "class Permute(nn.Module):\n", " \"\"\"\n", " Permutation as an op\n", " \"\"\"\n", " def __init__(self, ordering):\n", " super().__init__()\n", " self.ordering = ordering\n", "\n", " def forward(self, frames):\n", " \"\"\"\n", " Args:\n", " frames in some ordering, by default (C, T, H, W)\n", " Returns:\n", " frames in the ordering that was specified\n", " \"\"\"\n", " return frames.permute(self.ordering)" ] }, { "cell_type": "markdown", "id": "N7p7uCJZKPNm", "metadata": { "id": "N7p7uCJZKPNm" }, "source": [ "#### Step 5-2. Construct Data Loader\n", "Here you can set batch size (`batch_size`) as well as customize start time, end_time for running auto-narration." ] }, { "cell_type": "code", "execution_count": null, "id": "gWvmKM_nS0Ri", "metadata": { "id": "gWvmKM_nS0Ri" }, "outputs": [], "source": [ "# Retrieve Start and End time for the given Sensor Stream Id\n", "start_time = provider.get_first_time_ns(rgb_stream_id, time_domain)\n", "end_time = provider.get_last_time_ns(rgb_stream_id, time_domain)\n", "\n", "batch_size = 2 # batch size in dataloader (Decrease/increase based on the GPU memory)\n", "image_size = 224 # image size after resizing (Do not change for LaViLa)\n", "snippet_dur_sec = 2 # duration of a snippet (We recommend values between 1-10.)\n", "frames_per_snippet = 4 # number of frames per snippet (Do not change for LaViLa)\n", "\n", "val_transform = transforms.Compose([\n", " Permute([3, 0, 1, 2]), # T H W C -> C T H W\n", " transforms.Resize(image_size),\n", " transforms_video.NormalizeVideo(mean=[108.3272985, 116.7460125, 104.09373615000001], std=[68.5005327, 66.6321579, 70.32316305]),\n", "])\n", "rgb_snippet_dataset = RGBSnippetDataset(start_time, end_time, snippet_dur_sec=snippet_dur_sec, frames_per_snippet=frames_per_snippet, transform=val_transform)\n", "snippet_dataloader = DataLoader(rgb_snippet_dataset, batch_size=batch_size, shuffle=False)" ] }, { "cell_type": "markdown", "id": "ixrGS0J0afaE", "metadata": { "id": "ixrGS0J0afaE" }, "source": [ "## Step 6. Install LaViLa auto-narration library\n", "Now that the data is prepared, let's install LaViLa library.\n", "\n", "LaViLa (Language augmented Video Language Pretraining) is a video narration model that is trained on Ego4D.\n", "It is used for generating text descriptions for your captured recordings in this tutorial.\n", "- Paper: https://arxiv.org/abs/2212.04501\n", "- Code: https://github.com/facebookresearch/LaViLa" ] }, { "cell_type": "code", "execution_count": null, "id": "7vLd1utsaqAr", "metadata": { "id": "7vLd1utsaqAr" }, "outputs": [], "source": [ "# install LaViLa as dependency\n", "!pip install git+https://github.com/zhaoyang-lv/LaViLa" ] }, { "cell_type": "markdown", "id": "9xPZVr6eMIsp", "metadata": { "id": "9xPZVr6eMIsp" }, "source": [ "## Step 7. Define helper functions for LaViLa\n", "\n", "Run the following cell for defining helper functions for (1) loading pre-trained models and tokenizers, (2) decoding generated tokens, and (3) run model on a batch of snippets." ] }, { "cell_type": "code", "execution_count": null, "id": "qFnuvPo1b3Dk", "metadata": { "id": "qFnuvPo1b3Dk" }, "outputs": [], "source": [ "import os\n", "import urllib.request\n", "from collections import OrderedDict\n", "import torch\n", "\n", "from lavila.models.models import VCLM_OPENAI_TIMESFORMER_LARGE_336PX_GPT2_XL, VCLM_OPENAI_TIMESFORMER_BASE_GPT2\n", "from lavila.models.tokenizer import MyGPT2Tokenizer\n", "\n", "DEFAULT_CHECKPOINT = 'vclm_openai_timesformer_base_gpt2_base.pt_ego4d.jobid_319630.ep_0002.md5sum_68a71f.pth'\n", "# DEFAULT_CHECKPOINT = 'vclm_openai_timesformer_large_336px_gpt2_xl.pt_ego4d.jobid_246897.ep_0003.md5sum_443263.pth'\n", "\n", "def load_models_and_transforms(num_frames=4, ckpt_name=DEFAULT_CHECKPOINT, device='cpu'):\n", " '''\n", " Helper function for loading oading pre-trained models and tokenizers\n", " '''\n", " ckpt_path = os.path.join('lavila/modelzoo/', ckpt_name)\n", " print(f\"ckpt_path: {os.path.abspath(ckpt_path)}\")\n", " os.makedirs('lavila/modelzoo/', exist_ok=True)\n", " if not os.path.exists(ckpt_path):\n", " print('downloading model to {}'.format(ckpt_path))\n", " urllib.request.urlretrieve('https://dl.fbaipublicfiles.com/lavila/checkpoints/narrator/{}'.format(ckpt_name), ckpt_path)\n", " ckpt = torch.load(ckpt_path, map_location='cpu')\n", " state_dict = OrderedDict()\n", " for k, v in ckpt['state_dict'].items():\n", " state_dict[k.replace('module.', '')] = v\n", "\n", " # instantiate the model, and load the pre-trained weights\n", " # model = VCLM_OPENAI_TIMESFORMER_LARGE_336PX_GPT2_XL(\n", " model = VCLM_OPENAI_TIMESFORMER_BASE_GPT2(\n", " text_use_cls_token=False,\n", " project_embed_dim=256,\n", " gated_xattn=True,\n", " timesformer_gated_xattn=False,\n", " freeze_lm_vclm=False, # we use model.eval() anyway\n", " freeze_visual_vclm=False, # we use model.eval() anyway\n", " num_frames=num_frames,\n", " drop_path_rate=0.\n", " )\n", " model.load_state_dict(state_dict, strict=True)\n", "\n", " device_type_str = device.type if isinstance(device, torch.device) else device\n", " if device_type_str != 'cpu':\n", " model = model.to(device)\n", " model.eval()\n", "\n", " tokenizer = MyGPT2Tokenizer('gpt2', add_bos=True)\n", " #tokenizer = MyGPT2Tokenizer('gpt2-xl', add_bos=True)\n", "\n", " return model, tokenizer\n", "\n", "\n", "def decode_one(generated_ids, tokenizer):\n", " '''\n", " Helper function for decoding generated tokens.\n", " '''\n", " # get the index of \n", " if tokenizer.eos_token_id == tokenizer.bos_token_id:\n", " if tokenizer.eos_token_id in generated_ids[1:].tolist():\n", " eos_id = generated_ids[1:].tolist().index(tokenizer.eos_token_id) + 1\n", " else:\n", " eos_id = len(generated_ids.tolist()) - 1\n", " elif tokenizer.eos_token_id in generated_ids.tolist():\n", " eos_id = generated_ids.tolist().index(tokenizer.eos_token_id)\n", " else:\n", " eos_id = len(generated_ids.tolist()) - 1\n", " generated_text_str = tokenizer.tokenizer.decode(generated_ids[1:eos_id].tolist())\n", " return generated_text_str\n", "\n", "\n", "def run_model_on_snippets(\n", " frames, model, tokenizer, device=\"cpu\", narration_max_sentences=5\n", "):\n", " '''\n", " Function for running the LaViLa model on batches of snippets.\n", " '''\n", " with torch.no_grad():\n", " image_features = model.encode_image(frames)\n", " generated_text_ids, ppls = model.generate(\n", " image_features,\n", " tokenizer,\n", " target=None, # free-form generation\n", " max_text_length=77,\n", " top_k=None,\n", " top_p=0.95, # nucleus sampling\n", " num_return_sequences=narration_max_sentences, # number of candidates: 10\n", " temperature=0.7,\n", " early_stopping=True,\n", " )\n", " output_narration = []\n", " for j in range(generated_text_ids.shape[0] // narration_max_sentences):\n", " cur_output_narration = []\n", " for k in range(narration_max_sentences):\n", " jj = j * narration_max_sentences + k\n", " generated_text_str = decode_one(generated_text_ids[jj], tokenizer)\n", " generated_text_str = generated_text_str.strip()\n", " generated_text_str = generated_text_str.replace(\"#c c\", \"#C C\")\n", " if generated_text_str in cur_output_narration:\n", " continue\n", " if generated_text_str.endswith('the'):\n", " # skip incomplete sentences\n", " continue\n", " cur_output_narration.append(generated_text_str)\n", " output_narration.append(cur_output_narration) # list of size B (batch size)\n", " return output_narration" ] }, { "cell_type": "markdown", "id": "mJ7qlnBevC06", "metadata": { "id": "mJ7qlnBevC06" }, "source": [ "## Step 8. Run LaViLa inference over vrs file\n", "Let's load the pre-traiend model and tokenizer\n" ] }, { "cell_type": "code", "execution_count": null, "id": "d7C99NViqb_a", "metadata": { "id": "d7C99NViqb_a" }, "outputs": [], "source": [ "# load the pre-traiend model and tokenizer.\n", "model, tokenizer = load_models_and_transforms(num_frames=4)\n", "\n", "# this is where the generated narration will be stored\n", "narrations_dict = {\n", " 'start_time_ns': [],\n", " 'end_time_ns': [],\n", " 'narration': [],\n", "}\n", "\n", "# use gpu if available\n", "if torch.cuda.is_available():\n", " model = model.cuda()\n", "\n", "for idx, (frames, st_ns, ed_ns) in enumerate(snippet_dataloader):\n", " if torch.cuda.is_available():\n", " frames = frames.cuda()\n", " # run inference over a batch of snippet\n", " output_narration = run_model_on_snippets(frames, model, tokenizer)\n", " # store results\n", " narrations_dict['start_time_ns'].extend(st_ns.numpy().tolist())\n", " narrations_dict['end_time_ns'].extend(ed_ns.numpy().tolist())\n", " narrations_dict['narration'].extend(output_narration)" ] }, { "cell_type": "markdown", "id": "z3pRVNe5vPIL", "metadata": { "id": "z3pRVNe5vPIL" }, "source": [ "## Step 9. Display the auto-narration results and save to csv file\n", "Make sure to change `narration_save_path` to your desired location!" ] }, { "cell_type": "code", "execution_count": null, "id": "E6nUZYKurDpO", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 238 }, "id": "E6nUZYKurDpO", "outputId": "8164a676-94d8-4c90-8d34-2b9674d60947" }, "outputs": [ { "data": { "text/html": [ "\n", "
\n", "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
start_time_nsend_time_nsnarration
0148502526450150502526450[#C C stares at the ceiling, #C C looks around...
1150502526450152502526450[#C C looks around the house, #C C looks aroun...
2152502526450154502526450[#C C adjusts the camera, #C C looks around]
3154502526450156502526450[#C C looks around]
4156502526450158502526450[#C C stands beside the door, #C C looks around]
5158502526450160502526450[#C C looks at the wall, #C C looks around, #C...
\n", "
\n", "
\n", "\n", "
\n", " \n", "\n", " \n", "\n", " \n", "
\n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", " \n", "
\n", "
\n", "
\n" ], "text/plain": [ " start_time_ns end_time_ns \\\n", "0 148502526450 150502526450 \n", "1 150502526450 152502526450 \n", "2 152502526450 154502526450 \n", "3 154502526450 156502526450 \n", "4 156502526450 158502526450 \n", "5 158502526450 160502526450 \n", "\n", " narration \n", "0 [#C C stares at the ceiling, #C C looks around... \n", "1 [#C C looks around the house, #C C looks aroun... \n", "2 [#C C adjusts the camera, #C C looks around] \n", "3 [#C C looks around] \n", "4 [#C C stands beside the door, #C C looks around] \n", "5 [#C C looks at the wall, #C C looks around, #C... " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "narration_save_path = os.path.join(os.path.dirname(vrsfile), 'auto_narration.csv')\n", "\n", "import pandas as pd\n", "df = pd.DataFrame(narrations_dict)\n", "df.to_csv(narration_save_path)\n", "display(df)" ] }, { "cell_type": "markdown", "id": "BjF3Ms0l3igG", "metadata": { "id": "BjF3Ms0l3igG" }, "source": [ "# Optional Steps for Speech2Text\n", "Proceed Step 10-14, if you have speech in your recording and would like to use it." ] }, { "cell_type": "markdown", "id": "upn5Is4AhRpm", "metadata": { "id": "upn5Is4AhRpm" }, "source": [ "## Step 10. Build VRS Tool to extract .wav file for audio captioning\n", "Whisper X can be run on .wav file. We need to install VRSTool for extracting .wav file from .vrs file." ] }, { "cell_type": "code", "execution_count": null, "id": "N5gLce1Py09s", "metadata": { "id": "N5gLce1Py09s" }, "outputs": [], "source": [ "!sudo apt-get update\n", "# Install VRS dependencies\n", "!sudo apt-get install cmake git ninja-build ccache libgtest-dev libfmt-dev libturbojpeg-dev libpng-dev\n", "!sudo apt-get install liblz4-dev libzstd-dev libxxhash-dev\n", "!sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-thread-dev libboost-chrono-dev libboost-date-time-dev\n", "# Install build dependencies\n", "!sudo apt-get install -y cmake ninja-build\n", "\n", "#clone and build\n", "!git clone https://github.com/facebookresearch/vrs.git\n", "!cmake -S vrs -B vrs/build -G Ninja\n", "!cd vrs/build; ninja vrs\n" ] }, { "cell_type": "markdown", "id": "jXN0HNZ5iGOy", "metadata": { "id": "jXN0HNZ5iGOy" }, "source": [ "## Step 11. Extract .wav file from VRS file\n", "Now that VRSTool is installed, let's extract .wav file from .vrs file.\n", "\n", "Here, the extracted .wav file is saved to the current working directory.\n", "\n", "If you anticipate this file to be re-used, change the output path using the argument `--to `\n", "\n", "*(Ignore error '[AudioExtractor][ERROR]: os::makeDirectories(folderPath_) failed: 22, Invalid argument')*" ] }, { "cell_type": "code", "execution_count": null, "id": "lSSdMm3Tz31_", "metadata": { "id": "lSSdMm3Tz31_" }, "outputs": [], "source": [ "!./vrs/build/tools/vrs/vrs extract-audio \"{vrsfile}\" --to ." ] }, { "cell_type": "markdown", "id": "Wleqb4JLkNNE", "metadata": { "id": "Wleqb4JLkNNE" }, "source": [ "## Step 12. Install Whisper X\n", "We have input data ready for Whisper X. Let's install the library.\n", "\n", "Whisper X is an automatic speech recognition method that provides word-level timestamps and speaker diarization.\n", "- Paper: https://arxiv.org/abs/2303.00747\n", "- Code: https://github.com/m-bain/whisperX" ] }, { "cell_type": "code", "execution_count": null, "id": "0Su4GYTFkPKU", "metadata": { "id": "0Su4GYTFkPKU" }, "outputs": [], "source": [ "!pip install git+https://github.com/m-bain/whisperx.git" ] }, { "cell_type": "markdown", "id": "1a2IoR3CiMxl", "metadata": { "id": "1a2IoR3CiMxl" }, "source": [ "## Step 13. Define helper functions for Whisper X\n", "Let's define some helper functions for Whisper X, this include a postprocessing function and a function to align the output to the timestamps." ] }, { "cell_type": "code", "execution_count": null, "id": "_wavV43tiSwM", "metadata": { "id": "_wavV43tiSwM" }, "outputs": [], "source": [ "import logging\n", "import os.path as osp\n", "import numpy as np\n", "import glob\n", "import os\n", "import pandas as pd\n", "import whisperx\n", "import tqdm\n", "\n", "logger = logging.getLogger(__name__)\n", "logging.basicConfig(level=logging.INFO)\n", "\n", "device = \"cuda\"\n", "\n", "def asr_tokens_to_csv(\n", " word_segments,\n", " token_csv_folder: str,\n", " starting_timestamp_s: float = 0.0,\n", "):\n", " # post process the output asr file to extract only the minimal needed content\n", "\n", " df = pd.DataFrame.from_dict(word_segments)\n", " os.makedirs(token_csv_folder, exist_ok=True)\n", "\n", " # write to wav domain:\n", " s_to_ms = int(1e3)\n", " df = df.fillna(-1)\n", " df[\"start\"] = (df[\"start\"] * s_to_ms).astype(\"int64\")\n", " df[\"end\"] = (df[\"end\"] * s_to_ms).astype(\"int64\")\n", " df_speech_wav = df.rename(\n", " columns={\"start\": \"startTime_ms\", \"end\": \"endTime_ms\", \"text\": \"written\"},\n", " )\n", " df_speech_wav.to_csv(\n", " osp.join(token_csv_folder, \"speech.csv\"), index=False, header=True\n", " )\n", "\n", " # Update ASR ms time to Aria ns time\n", " s_to_ns = int(1e9)\n", " ms_to_ns = int(1e6)\n", " df[\"start\"] = (df[\"start\"] * ms_to_ns + starting_timestamp_s * s_to_ns).astype(\n", " \"int64\"\n", " )\n", " df[\"end\"] = (df[\"end\"] * ms_to_ns + starting_timestamp_s * s_to_ns).astype(\"int64\")\n", "\n", " df_aria_domain = df.rename(\n", " columns={\"start\": \"startTime_ms\", \"end\": \"endTime_ms\", \"text\": \"written\"},\n", " )\n", " df_aria_domain.to_csv(\n", " osp.join(token_csv_folder, \"speech_aria_domain.csv\"), index=False, header=True\n", " )\n", "\n", " logging.info(f\"Generate speech.csv & speech_aria_domain.csv to {token_csv_folder}\")\n", "\n", "\n", "def run_whisperx_aria_wav(\n", " model,\n", " file_path: str,\n", " output_folder: str = \"\",\n", " batch_size = None,\n", "):\n", " \"\"\"\n", " Run whisperx model on .wav file extracted from VRS file\n", " \"\"\"\n", " starting_timestamp = file_path.split(\"-\")[-1].replace(\".wav\", \"\")\n", " starting_timestamp = float(starting_timestamp)\n", " logging.info(\"Aria Starting timestamp: {:0.3f}\".format(starting_timestamp))\n", "\n", " logging.info(f\"Transcribe the speech from wav file {file_path}.\")\n", " result = model.transcribe(file_path, batch_size=batch_size)\n", " print(f\"Transcription done.\")\n", "\n", "\n", " model_a, metadata = whisperx.load_align_model(language_code=result[\"language\"], device=device)\n", " logging.info(f\"Transcription done.\")\n", " result_aligned = whisperx.align(\n", " result[\"segments\"], model_a, metadata, file_path, device\n", " )\n", " print(f\"Alignment done.\")\n", "\n", " try:\n", " asr_tokens_to_csv(\n", " word_segments=result_aligned[\"word_segments\"],\n", " token_csv_folder=output_folder,\n", " starting_timestamp_s=starting_timestamp,\n", " )\n", " except Exception as err:\n", " logging.warning(f\"Cannot process {file_path} because {err}. Skip this recording.\")" ] }, { "cell_type": "markdown", "id": "C3q0o21rRIbm", "metadata": { "id": "C3q0o21rRIbm" }, "source": [ "\n", "## Step 14. Run Whisper X\n", "Finally, let's run Whisper X on the .wav file that we extracted.\n", "\n", "Make sure to\n", "- Change the `audio_file` to the .wav file that we extracted in Step 12.\n", "- Set the `whisper_x_output_folder` to desired location. The resulting file name is `speech_aria_domain.csv`." ] }, { "cell_type": "code", "execution_count": null, "id": "ZODeWa-ilKMJ", "metadata": { "id": "ZODeWa-ilKMJ" }, "outputs": [], "source": [ "audio_file = '231-1-0000-743.444.wav'\n", "whisper_x_output_folder = \".\"\n", "compute_type = \"float16\" # change to \"int8\" if low on GPU mem (may reduce accuracy)\n", "model = whisperx.load_model(\"large-v2\", device, compute_type=compute_type,) # language='en'\n", "batch_size = 16 # reduce if low on GPU mem, or keep it None\n", "provider = run_whisperx_aria_wav(model, audio_file, output_folder=whisper_x_output_folder, batch_size=batch_size)" ] }, { "cell_type": "code", "execution_count": null, "id": "670FaxtH1OGS", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 424 }, "id": "670FaxtH1OGS", "outputId": "dbc76cb8-2b62-4c96-e3da-2c3d42c63731" }, "outputs": [ { "data": { "text/html": [ "\n", "
\n", "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
wordstartTime_msendTime_msscore
0Awesome.7449150000007452750000000.535
1Would7458360000007459360000000.451
2you7459560000007460160000000.958
3like7460560000007461560000000.932
4some7461760000007462960000000.759
...............
222Thank9277580000009279780000000.609
223you.9279980000009281590000000.912
224Big9341700000009343300000000.652
225long9343700000009346710000000.950
226sip.9346910000009349310000000.780
\n", "

227 rows × 4 columns

\n", "
\n", "
\n", "\n", "
\n", " \n", "\n", " \n", "\n", " \n", "
\n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", " \n", "
\n", "
\n", "
\n" ], "text/plain": [ " word startTime_ms endTime_ms score\n", "0 Awesome. 744915000000 745275000000 0.535\n", "1 Would 745836000000 745936000000 0.451\n", "2 you 745956000000 746016000000 0.958\n", "3 like 746056000000 746156000000 0.932\n", "4 some 746176000000 746296000000 0.759\n", ".. ... ... ... ...\n", "222 Thank 927758000000 927978000000 0.609\n", "223 you. 927998000000 928159000000 0.912\n", "224 Big 934170000000 934330000000 0.652\n", "225 long 934370000000 934671000000 0.950\n", "226 sip. 934691000000 934931000000 0.780\n", "\n", "[227 rows x 4 columns]" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "asr_df = pd.read_csv(\"speech_aria_domain.csv\")\n", "display(asr_df)" ] }, { "cell_type": "markdown", "id": "ihTkYWNb4BAG", "metadata": { "id": "ihTkYWNb4BAG" }, "source": [ "# Optional steps for summarization example\n", "Proceed Step 15-17, if you would like to try out summarization of the narration using llm (via langchain)." ] }, { "cell_type": "markdown", "id": "SBANXKSPR1eP", "metadata": { "id": "SBANXKSPR1eP" }, "source": [ "## Step 15. Install Langchain" ] }, { "cell_type": "code", "execution_count": null, "id": "t25suH5HR5jb", "metadata": { "id": "t25suH5HR5jb" }, "outputs": [], "source": [ "!pip install langchain" ] }, { "cell_type": "markdown", "id": "temVxjVVWBw3", "metadata": { "id": "temVxjVVWBw3" }, "source": [ "## Step 16. Install OpenAI to use with Langchain" ] }, { "cell_type": "code", "execution_count": null, "id": "r6QEuPO0WFgC", "metadata": { "id": "r6QEuPO0WFgC" }, "outputs": [], "source": [ "import locale\n", "locale.getpreferredencoding = lambda: \"UTF-8\"\n", "!pip install openai" ] }, { "cell_type": "markdown", "id": "Nb6m7nHzSBy9", "metadata": { "id": "Nb6m7nHzSBy9" }, "source": [ "## Step 17. Summaraize the narration result\n" ] }, { "cell_type": "code", "execution_count": null, "id": "igRz39kKSBES", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 87 }, "id": "igRz39kKSBES", "outputId": "c4f09b38-7d0e-42a1-c451-a50c88f250c7" }, "outputs": [ { "data": { "application/vnd.google.colaboratory.intrinsic+json": { "type": "string" }, "text/plain": [ "'The summary describes a series of events with timestamps and corresponding narrations. The events involve a character named C C who is observed looking around, adjusting the camera, staring at the ceiling, standing beside the door, and looking at various objects in the room and house.'" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from langchain.chat_models import ChatOpenAI\n", "from langchain.chains.summarize import load_summarize_chain\n", "from langchain.docstore.document import Document\n", "from langchain.document_loaders.csv_loader import CSVLoader\n", "from langchain import PromptTemplate\n", "\n", "\n", "prompt_template = \"\"\" Write a concise summary (between 5 to 10 sentences) of the following text.\n", "The text is about my exhaustive timeline, where I am referred to as '#C C' or 'C C' or 'C'.\n", "Please use first person pronoun (I) in the summary, instead of 'C' or 'C C'.\n", "Please keep in mind that some observations maybe incorrect as the timeline was machine-generated.\n", "\n", "Timeline:\n", "\n", "{text}\n", "\n", "\n", "TL'DR: \"\"\"\n", "\n", "#os.environ[\"OPENAI_API_KEY\"] = \"sk-your-key\"\n", "PROMPT = PromptTemplate(template=prompt_template, input_variables=[\"text\"])\n", "llm = ChatOpenAI(temperature=0, model_name=\"gpt-3.5-turbo\")\n", "chain = load_summarize_chain(llm, chain_type=\"stuff\", prompt=PROMPT)\n", "\n", "loader = CSVLoader(file_path=narration_save_path)\n", "docs = loader.load()\n", "\n", "chain.run(docs)" ] }, { "cell_type": "markdown", "id": "oV6Tn_WACKMF", "metadata": { "id": "oV6Tn_WACKMF" }, "source": [ "## (Optional) RGBDataset\n", "\n", "The RGBDataset is a simple image pytorch dataset designed for image-based models that operate on individual frames rather than snippet inputs. Use this dataset that process single frames." ] }, { "cell_type": "code", "execution_count": null, "id": "kvAqkUzdCLPt", "metadata": { "id": "kvAqkUzdCLPt" }, "outputs": [], "source": [ "# import torch\n", "# from torch.utils.data import Dataset, DataLoader\n", "# from PIL import Image\n", "# import torchvision.transforms as transforms\n", "\n", "# class RGBDataset(Dataset):\n", "# def __init__(self, start_time, end_time, sample_count, transform=None):\n", "# self.timestamps = np.linspace(start_time, end_time, sample_count)\n", "# self.rgb_stream_id = StreamId(\"214-1\")\n", "# self.time_domain = TimeDomain.DEVICE_TIME\n", "# self.option = TimeQueryOptions.CLOSEST\n", "# self.transform = transform\n", "\n", "# def __len__(self):\n", "# return len(self.timestamps)\n", "\n", "# def __getitem__(self, idx):\n", "# timestamp = self.timestamps[idx]\n", "# image_tuple = provider.get_image_data_by_time_ns(self.rgb_stream_id, int(timestamp), self.time_domain, self.option)\n", "# image_array = image_tuple[0].to_numpy_array()\n", "# image = Image.fromarray(image_array).rotate(-90)\n", "# if self.transform:\n", "# image = self.transform(image)\n", "# return timestamp, image\n", "\n", "# val_transform = transforms.Compose([\n", "# transforms.Resize(224),\n", "# transforms.ToTensor(),\n", "# ])\n", "\n", "# rgb_dataset = RGBDataset(start_time, end_time, sample_count, transform=val_transform)\n", "# image_dataloader = DataLoader(rgb_dataset, batch_size=2, shuffle=False)\n", "# # Get the next batch of data\n", "# timestamp, image = next(iter(image_dataloader))" ] } ], "metadata": { "accelerator": "GPU", "colab": { "gpuType": "T4", "provenance": [] }, "custom": { "cells": [], "metadata": { "fileHeader": "", "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.11" } }, "nbformat": 4, "nbformat_minor": 5 }, "indentAmount": 2, "kernelspec": { "display_name": "Python 3", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.4" } }, "nbformat": 4, "nbformat_minor": 5 } ================================================ FILE: notebooks/object_detection_tutorial.ipynb ================================================ [File too large to display: 20.5 MB] ================================================ FILE: notebooks/ocr_tutorial.ipynb ================================================ { "cells": [ { "cell_type": "markdown", "id": "fb140897", "metadata": { "id": "fb140897" }, "source": [ "# OCR Tutorial\n", "\n", "In this tutorial, you will learn how to use OCR (EasyOCR) to detect text from Aria frames.\n", "\n", "\n", "### Notebook stuck?\n", "Note that because of Jupyter issues, sometimes the code may stuck at visualization. We recommend **restart the kernels** and try again to see if the issue is resolved." ] }, { "cell_type": "markdown", "source": [ "## Step 1. Install Project Aria Tools\n", "Run the following cell to install Project Aria Tools for reading Aria recordings in .vrs format" ], "metadata": { "id": "l5LlycOs75bf" }, "id": "l5LlycOs75bf" }, { "cell_type": "code", "source": [ "# Specifics for Google Colab\n", "google_colab_env = 'google.colab' in str(get_ipython())\n", "print(\"Running from Google Colab, installing projectaria_tools\")\n", "!pip install projectaria-tools" ], "metadata": { "id": "Yt5CoQlp8Cxw" }, "id": "Yt5CoQlp8Cxw", "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "## Step 2. Prepare an Aria recording\n", "\n", "We will set the vrsfile path to your collected Aria recording.\n", "\n", "Upload your Aria recording in your Google Drive before running the cell.\n", "\n", "Here, we assume it is uploaded to **`My Drive/Fridge/sample.vrs`**\n", "\n", "*(You can check the content of the mounted drive by running `!ls \"/content/drive/My Drive/\"` in a cell.)*\n", "\n" ], "metadata": { "id": "Tv0I3ajm7TyH" }, "id": "Tv0I3ajm7TyH" }, { "cell_type": "code", "source": [ "from google.colab import drive\n", "import os\n", "drive.flush_and_unmount()\n", "drive.mount('/content/drive/')\n", "my_vrs_file_path = 'Fridge/sample.vrs'\n", "vrsfile = \"/content/drive/My Drive/\" + my_vrs_file_path\n", "print(f\"INFO: vrsfile set to {vrsfile}\")" ], "metadata": { "id": "vnjjSGXlc4-i" }, "id": "vnjjSGXlc4-i", "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "id": "8196ad05", "metadata": { "id": "8196ad05" }, "source": [ "## Step 3. Create data provider\n", "\n", "Create projectaria data_provider so you can load the content of the vrs file." ] }, { "cell_type": "code", "execution_count": null, "id": "fb04b53b", "metadata": { "id": "fb04b53b" }, "outputs": [], "source": [ "from projectaria_tools.core import data_provider, calibration\n", "from projectaria_tools.core.sensor_data import TimeDomain, TimeQueryOptions\n", "from projectaria_tools.core.stream_id import RecordableTypeId, StreamId\n", "import numpy as np\n", "from matplotlib import pyplot as plt\n", "\n", "print(f\"Creating data provider from {vrsfile}\")\n", "provider = data_provider.create_vrs_data_provider(vrsfile)\n", "if not provider:\n", " print(\"Invalid vrs data provider\")" ] }, { "cell_type": "markdown", "id": "c5033225", "metadata": { "id": "c5033225" }, "source": [ "## Step 4. Display VRS rgb content in thumbnail images\n", "\n", "Goals:\n", "- Summarize a VRS using 20 image side by side, to visually inspect the collected data.\n", "\n", "Key learnings:\n", "- Image streams are identified with a Unique Identifier: stream_id\n", "- Image frames are identified with timestamps\n", "- PIL images can be created from Numpy array\n", "\n", "Customization\n", "- To change the number of sampled images, change the variable `sample_count` to a desired number.\n", "- To change the thumbnail size, change the variable `resize_ratio` to a desired value." ] }, { "cell_type": "code", "execution_count": null, "id": "933725b6", "metadata": { "id": "933725b6" }, "outputs": [], "source": [ "from PIL import Image\n", "from tqdm import tqdm\n", "\n", "sample_count = 30\n", "resize_ratio = 10\n", "\n", "rgb_stream_id = StreamId(\"214-1\")\n", "\n", "# Retrieve image size for the RGB stream\n", "time_domain = TimeDomain.DEVICE_TIME # query data based on host time\n", "option = TimeQueryOptions.CLOSEST # get data whose time [in TimeDomain] is CLOSEST to query time\n", "\n", "# Retrieve Start and End time for the given Sensor Stream Id\n", "start_time = provider.get_first_time_ns(rgb_stream_id, time_domain)\n", "end_time = provider.get_last_time_ns(rgb_stream_id, time_domain)\n", "\n", "image_config = provider.get_image_configuration(rgb_stream_id)\n", "width = image_config.image_width\n", "height = image_config.image_height\n", "\n", "thumbnail = newImage = Image.new(\n", " \"RGB\", (int(width * sample_count / resize_ratio), int(height / resize_ratio))\n", ")\n", "current_width = 0\n", "\n", "\n", "# Samples 10 timestamps\n", "sample_timestamps = np.linspace(start_time, end_time, sample_count)\n", "for sample in tqdm(sample_timestamps):\n", " image_tuple = provider.get_image_data_by_time_ns(rgb_stream_id, int(sample), time_domain, option)\n", " image_array = image_tuple[0].to_numpy_array()\n", " image = Image.fromarray(image_array)\n", " new_size = (\n", " int(image.size[0] / resize_ratio),\n", " int(image.size[1] / resize_ratio),\n", " )\n", " image = image.resize(new_size).rotate(-90)\n", " thumbnail.paste(image, (current_width, 0))\n", " current_width = int(current_width + width / resize_ratio)\n", "\n", "from IPython.display import Image\n", "display(thumbnail)" ] }, { "cell_type": "markdown", "source": [ "## Step 5. Install EasyOCR\n" ], "metadata": { "id": "eEPHeoB8kWvR" }, "id": "eEPHeoB8kWvR" }, { "cell_type": "code", "source": [ "# Install detectron2\n", "!pip install easyocr" ], "metadata": { "id": "OAkVc2HvkWO9" }, "id": "OAkVc2HvkWO9", "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "## Step 6. Run OCR\n", "\n", "Run OCR for each sampled timestamps in Step 4.\n", "\n", "- The detected text will be stored in `ocr_dict`.\n", "\n", "- You can set the image size using the `imsize` variable.\n", "\n", "- You can add list of languages to be parsed as follows:\n", "```\n", "reader = easyocr.Reader(['en', 'fr', 'ch_sim'])\n", "```\n", "For all supported languages in EasyOCR, see https://www.jaided.ai/easyocr/.\n", "\n", "- You can set the `confidence_thres` to only keep the texts that have confidences above the threshold.\n", "\n", "- The output will be in a list format, each item represents a bounding box, the text detected and confident level, respectively.\n", "```\n", "[ ([[226, 170], [414, 170], [414, 220], [226, 220]], 'Yuyuan Rd.', 0.8261902332305908),\n", " ([[79, 173], [125, 173], [125, 213], [79, 213]], 'W', 0.9848111271858215),\n", " ([[529, 173], [569, 173], [569, 213], [529, 213]], 'E', 0.8405593633651733)]\n", " ```\n" ], "metadata": { "id": "yB51eG_v72kg" }, "id": "yB51eG_v72kg" }, { "cell_type": "code", "source": [ "import easyocr\n", "from PIL import Image\n", "\n", "imsize = 3072\n", "confidence_thres = 0.2\n", "\n", "ocr_dict = {\n", " 'timestamps': [],\n", " 'texts': [],\n", " 'bboxes': [],\n", "}\n", "\n", "reader = easyocr.Reader(['en',]) # Load EasyOCR model. Only need to be called once.\n", "\n", "for sample in tqdm(sample_timestamps):\n", "\n", " # Fetch image\n", " image_tuple = provider.get_image_data_by_time_ns(rgb_stream_id, int(sample), time_domain, option)\n", " image_array = image_tuple[0].to_numpy_array()\n", " image = Image.fromarray(image_array)\n", " new_size = (imsize, imsize)\n", " image = np.asarray(image.resize(new_size).rotate(-90))\n", " result = reader.readtext(image)\n", " print(f\"result: {result}\")\n", "\n", " if result is not None:\n", " ocr_dict['timestamps'].append(sample)\n", " ocr_dict['bboxes'].append([res[0] for res in result if res[2]> confidence_thres])\n", " ocr_dict['texts'].append([res[1] for res in result if res[2]> confidence_thres])\n" ], "metadata": { "id": "Y8M3YzzW2HIz" }, "id": "Y8M3YzzW2HIz", "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "## Step 8. Display and save detected text lists\n", "\n", "### We can get ocr results for each timestamps." ], "metadata": { "id": "Aplmxisd8Hla" }, "id": "Aplmxisd8Hla" }, { "cell_type": "code", "source": [ "ocr_save_path = '/content/ocr_results.json'\n", "\n", "import pandas as pd\n", "df = pd.DataFrame(ocr_dict)\n", "df.to_json(ocr_save_path)\n", "# Set the maximum width of each column\n", "pd.set_option('display.max_colwidth', None) # Replace None with a number if needed\n", "display(df[['timestamps', 'texts']])" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 990 }, "id": "Eryl0PCE6Axr", "outputId": "3336af77-4942-4c34-e965-753c4b549728" }, "id": "Eryl0PCE6Axr", "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ " timestamps \\\n", "0 1.641293e+12 \n", "1 1.642534e+12 \n", "2 1.643776e+12 \n", "3 1.645017e+12 \n", "4 1.646258e+12 \n", "5 1.647500e+12 \n", "6 1.648741e+12 \n", "7 1.649982e+12 \n", "8 1.651224e+12 \n", "9 1.652465e+12 \n", "10 1.653707e+12 \n", "11 1.654948e+12 \n", "12 1.656189e+12 \n", "13 1.657431e+12 \n", "14 1.658672e+12 \n", "15 1.659913e+12 \n", "16 1.661155e+12 \n", "17 1.662396e+12 \n", "18 1.663638e+12 \n", "19 1.664879e+12 \n", "20 1.666120e+12 \n", "21 1.667362e+12 \n", "22 1.668603e+12 \n", "23 1.669845e+12 \n", "24 1.671086e+12 \n", "25 1.672327e+12 \n", "26 1.673569e+12 \n", "27 1.674810e+12 \n", "28 1.676051e+12 \n", "29 1.677293e+12 \n", "\n", " texts \n", "0 [] \n", "1 [] \n", "2 [] \n", "3 [] \n", "4 [AcTiVESMART, %67, 0] \n", "5 [ActiveshaRT, TECHNOLOGY, %7, Stghattng;, CAMPARI', Tomatoes] \n", "6 [ActineskaRt, 9, 3] \n", "7 [Harn, Guan, Baby Bella Mushrooms, bebe bella cham, ACTIvESMART, Technology, ladelphia, Reproductte] \n", "8 [WA, Han, and, Cancer, %7, ActiveshaRT, TECHNOLOGT, RNING:, Reproducute ] \n", "9 [MdELpha, ACTIvESMART, TECHNOLOGY] \n", "10 [%7, &, 3, 1, 1] \n", "11 [hadelphia, %at, TECHNOLOGY] \n", "12 [Qhdelpha, %2, ActiveshART, Technology, ming'] \n", "13 [4] \n", "14 [WARNING:, Cancer and Reproductive Harm, AcTiveshaRT, Technology] \n", "15 [Cancer and Reproductive, WWWP6Swarnings ca , 90v, 9, 3, NET WT 14 02 (3969), WARNING:, Harm, IRADER JOES\", ORCANIC, tuw, Tk\", TCs] \n", "16 [WARNING:, Cancer and Reproductlve Harm, ACTIvEShART, phhladelphia] \n", "17 [Cancer , AcTIVESHART, WARNING:, Herm, Reproductive [, Yand] \n", "18 [WARNING:, Cencer, Reproductive Ham, 07, PHULAdeLphia, 81102, Jnoido, 2310), otics] \n", "19 [Cancer ond, PhHLAdElphia, WARNING:, Reproductive /, Harm, WwW pGSwarnings ca gov, FR, 0, 8, 1, 8, probiotics] \n", "20 [%, WaRNING, Cancer and[, Reprodrte, TRADER JoES\", rgani s, Choices, BIOLOGIQUR, Biologiquev_, thy, Cov, ELUA, Yanio, erics, TLB, des, Produit, 0z), (16 , of USA, US:, roduce] \n", "21 [WARNING:, Cancer and Reproductive }, %, Kyrm, WW p6Swarnngs cagov, TRADER JoES\", abn, FR] \n", "22 [WARNNG, Cancet and[, QH, FR] \n", "23 [Du, %2, phuladelphia, 1, 2iotics, FIR] \n", "24 [On, WARNING;, Tand Reproductive Harm, Cancer, ca gov, Www p6Swarnings c, %7, otics] \n", "25 [PhlAdelphia, chion, gov, %7, WARNING:, Harm, Reproductive [, Tand, Cancer, p6Swarningsca , Www] \n", "26 [Ohion, WARNING:, Cancer and Reproductive Harm, wwwp6Swarnings cagov, %7, phLAdELphIa, hve, 1] \n", "27 [P7, Har, Reproductre] \n", "28 [MhLAdELphia, %2] \n", "29 [Activeshart, Technology, 8] " ], "text/html": [ "\n", "
\n", "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
timestampstexts
01.641293e+12[]
11.642534e+12[]
21.643776e+12[]
31.645017e+12[]
41.646258e+12[AcTiVESMART, %67, 0]
51.647500e+12[ActiveshaRT, TECHNOLOGY, %7, Stghattng;, CAMPARI', Tomatoes]
61.648741e+12[ActineskaRt, 9, 3]
71.649982e+12[Harn, Guan, Baby Bella Mushrooms, bebe bella cham, ACTIvESMART, Technology, ladelphia, Reproductte]
81.651224e+12[WA, Han, and, Cancer, %7, ActiveshaRT, TECHNOLOGT, RNING:, Reproducute ]
91.652465e+12[MdELpha, ACTIvESMART, TECHNOLOGY]
101.653707e+12[%7, &, 3, 1, 1]
111.654948e+12[hadelphia, %at, TECHNOLOGY]
121.656189e+12[Qhdelpha, %2, ActiveshART, Technology, ming']
131.657431e+12[4]
141.658672e+12[WARNING:, Cancer and Reproductive Harm, AcTiveshaRT, Technology]
151.659913e+12[Cancer and Reproductive, WWWP6Swarnings ca , 90v, 9, 3, NET WT 14 02 (3969), WARNING:, Harm, IRADER JOES\", ORCANIC, tuw, Tk\", TCs]
161.661155e+12[WARNING:, Cancer and Reproductlve Harm, ACTIvEShART, phhladelphia]
171.662396e+12[Cancer , AcTIVESHART, WARNING:, Herm, Reproductive [, Yand]
181.663638e+12[WARNING:, Cencer, Reproductive Ham, 07, PHULAdeLphia, 81102, Jnoido, 2310), otics]
191.664879e+12[Cancer ond, PhHLAdElphia, WARNING:, Reproductive /, Harm, WwW pGSwarnings ca gov, FR, 0, 8, 1, 8, probiotics]
201.666120e+12[%, WaRNING, Cancer and[, Reprodrte, TRADER JoES\", rgani s, Choices, BIOLOGIQUR, Biologiquev_, thy, Cov, ELUA, Yanio, erics, TLB, des, Produit, 0z), (16 , of USA, US:, roduce]
211.667362e+12[WARNING:, Cancer and Reproductive }, %, Kyrm, WW p6Swarnngs cagov, TRADER JoES\", abn, FR]
221.668603e+12[WARNNG, Cancet and[, QH, FR]
231.669845e+12[Du, %2, phuladelphia, 1, 2iotics, FIR]
241.671086e+12[On, WARNING;, Tand Reproductive Harm, Cancer, ca gov, Www p6Swarnings c, %7, otics]
251.672327e+12[PhlAdelphia, chion, gov, %7, WARNING:, Harm, Reproductive [, Tand, Cancer, p6Swarningsca , Www]
261.673569e+12[Ohion, WARNING:, Cancer and Reproductive Harm, wwwp6Swarnings cagov, %7, phLAdELphIa, hve, 1]
271.674810e+12[P7, Har, Reproductre]
281.676051e+12[MhLAdELphia, %2]
291.677293e+12[Activeshart, Technology, 8]
\n", "
\n", "
\n", "\n", "
\n", " \n", "\n", " \n", "\n", " \n", "
\n", "\n", "\n", "
\n", " \n", "\n", "\n", "\n", " \n", "
\n", "
\n", "
\n" ] }, "metadata": {} } ] }, { "cell_type": "code", "source": [], "metadata": { "id": "J0aUJiHj0DtZ" }, "id": "J0aUJiHj0DtZ", "execution_count": null, "outputs": [] } ], "metadata": { "custom": { "cells": [], "metadata": { "fileHeader": "", "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.11" } }, "nbformat": 4, "nbformat_minor": 5 }, "indentAmount": 2, "kernelspec": { "display_name": "Python 3", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.4" }, "colab": { "provenance": [], "gpuType": "T4" }, "accelerator": "GPU" }, "nbformat": 4, "nbformat_minor": 5 } ================================================ FILE: sample_data/books.csv ================================================ book_name,img_url,id,date,time I Am a Strange Loop,https://img1.od-cdn.com/ImageType-100/0887-1/{A6AA81F6-9242-4793-8AB0-A5C8B5DBDB66}Img100.jpg,books_26,2019/04/19,04:37:00 I Am a Strange Loop,https://img1.od-cdn.com/ImageType-100/0887-1/{A6AA81F6-9242-4793-8AB0-A5C8B5DBDB66}Img100.jpg,books_27,2019/04/17,04:50:00 War and Peace,https://img1.od-cdn.com/ImageType-100/0887-1/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG,books_28,2019/04/15,03:54:00 War and Peace,https://img1.od-cdn.com/ImageType-100/0887-1/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG,books_29,2019/04/05,19:23:00 War and Peace,https://img1.od-cdn.com/ImageType-100/0887-1/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG,books_30,2019/04/05,16:26:00 The Culture Map,https://img1.od-cdn.com/ImageType-100/1088-1/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg,books_31,2019/03/28,15:06:00 The Culture Map,https://img1.od-cdn.com/ImageType-100/1088-1/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg,books_32,2019/03/23,05:02:00 War and Peace,https://img1.od-cdn.com/ImageType-100/0887-1/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG,books_33,2019/03/14,16:26:00 Neuromancer,https://img1.od-cdn.com/ImageType-100/1191-1/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg,books_34,2019/03/14,16:22:00 Horse,https://img1.od-cdn.com/ImageType-100/1191-1/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg,books_35,2019/03/03,23:17:00 Exhalation,https://img1.od-cdn.com/ImageType-100/1191-1/{BBA7984E-7A18-4ADF-A1D5-FA1BE72BD5AA}Img100.jpg,books_36,2019/03/03,23:16:00 Neuromancer,https://img1.od-cdn.com/ImageType-100/1191-1/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg,books_37,2019/04/30,16:51:00 Exhalation,https://img1.od-cdn.com/ImageType-100/1191-1/{BBA7984E-7A18-4ADF-A1D5-FA1BE72BD5AA}Img100.jpg,books_38,2019/04/28,04:25:00 Give and Take,https://img1.od-cdn.com/ImageType-100/1191-1/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg,books_39,2019/04/27,13:27:00 Hallucinations,https://img1.od-cdn.com/ImageType-100/1191-1/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg,books_40,2019/04/18,11:22:00 Horse,https://img1.od-cdn.com/ImageType-100/1191-1/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg,books_41,2019/04/16,00:11:00 Think Again,https://img1.od-cdn.com/ImageType-100/1191-1/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg,books_42,2019/04/13,23:11:00 Give and Take,https://img1.od-cdn.com/ImageType-100/1191-1/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg,books_43,2019/04/10,02:24:00 Into the Magic Shop,https://img1.od-cdn.com/ImageType-100/0887-1/{3FD140F9-B7BE-42CF-AF9C-1D1E95503B30}Img100.jpg,books_44,2019/04/10,02:23:00 Good Anxiety,https://img1.od-cdn.com/ImageType-100/5054-1/{B38EC863-9C53-4816-B0A3-70960F5EE87E}Img100.jpg,books_45,2019/04/06,14:35:00 Hallucinations,https://img1.od-cdn.com/ImageType-100/1191-1/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg,books_46,2019/04/05,23:52:00 Think Again,https://img1.od-cdn.com/ImageType-100/1191-1/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg,books_47,2019/04/05,23:51:00 Neuromancer,https://img1.od-cdn.com/ImageType-100/1191-1/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg,books_48,2019/04/04,03:49:00 Into the Magic Shop,https://img1.od-cdn.com/ImageType-100/0887-1/{3FD140F9-B7BE-42CF-AF9C-1D1E95503B30}Img100.jpg,books_49,2019/04/03,20:17:00 "Healthy Brain, Happy Life",https://img1.od-cdn.com/ImageType-100/0293-1/{C964EFD7-0622-43C1-BFEC-42DB9C82A827}Img100.jpg,books_50,2019/04/03,04:23:00 Good Anxiety,https://img1.od-cdn.com/ImageType-100/5054-1/{B38EC863-9C53-4816-B0A3-70960F5EE87E}Img100.jpg,books_51,2019/04/03,04:23:00 Year of Wonders,https://img1.od-cdn.com/ImageType-100/0887-1/{C231E269-04B3-46AA-9410-49493BE8415E}Img100.jpg,books_52,2019/03/29,20:50:00 "Healthy Brain, Happy Life",https://img1.od-cdn.com/ImageType-100/0293-1/{C964EFD7-0622-43C1-BFEC-42DB9C82A827}Img100.jpg,books_53,2019/03/28,04:08:00 Year of Wonders,https://img1.od-cdn.com/ImageType-100/0887-1/{C231E269-04B3-46AA-9410-49493BE8415E}Img100.jpg,books_54,2019/03/24,20:24:00 Horse,https://img1.od-cdn.com/ImageType-100/1191-1/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg,books_55,2019/03/24,20:22:00 Hallucinations,https://img1.od-cdn.com/ImageType-100/1191-1/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg,books_56,2019/03/24,20:19:00 The River of Consciousness,https://img1.od-cdn.com/ImageType-100/1191-1/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg,books_57,2019/03/24,20:15:00 The River of Consciousness,https://img1.od-cdn.com/ImageType-100/1191-1/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg,books_58,2019/03/23,14:26:00 Originals,https://img1.od-cdn.com/ImageType-100/1191-1/{659784EB-40E0-4061-904D-17606BAD9980}Img100.jpg,books_59,2019/03/23,14:25:00 The River of Consciousness,https://img1.od-cdn.com/ImageType-100/1191-1/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg,books_60,2019/03/23,14:24:00 The River of Consciousness,https://img1.od-cdn.com/ImageType-100/1191-1/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg,books_61,2019/03/23,14:23:00 Originals,https://img1.od-cdn.com/ImageType-100/1191-1/{659784EB-40E0-4061-904D-17606BAD9980}Img100.jpg,books_62,2019/03/20,23:47:00 Give and Take,https://img1.od-cdn.com/ImageType-100/1191-1/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg,books_63,2019/03/20,23:46:00 Think Again,https://img1.od-cdn.com/ImageType-100/1191-1/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg,books_64,2019/03/20,23:46:00 Stories of Your Life and Others,https://img1.od-cdn.com/ImageType-100/1219-1/{E5634854-4A0C-4971-95FB-9C38A1A8C2DE}Img100.jpg,books_65,2019/03/20,00:21:00 "The Psychology of Money: Timeless lessons on wealth, greed, and happiness",https://img1.od-cdn.com/ImageType-100/6852-1/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG,books_66,2019/03/20,00:20:00 Stories of Your Life and Others,https://img1.od-cdn.com/ImageType-100/1219-1/{E5634854-4A0C-4971-95FB-9C38A1A8C2DE}Img100.jpg,books_67,2019/03/16,22:10:00 Einstein,https://img1.od-cdn.com/ImageType-100/5054-1/{82F07E3E-0184-4FD8-AE8D-7C359F454586}Img100.jpg,books_68,2019/03/16,22:09:00 How to Win Friends & Influence People in the Digital Age,https://img1.od-cdn.com/ImageType-100/1294-1/{6FE70C4B-92E2-43A3-82CE-C44565A042A3}Img100.jpg,books_69,2019/03/11,15:40:00 The Culture Map,https://img1.od-cdn.com/ImageType-100/1088-1/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg,books_70,2019/03/11,00:07:00 Einstein,https://img1.od-cdn.com/ImageType-100/5054-1/{82F07E3E-0184-4FD8-AE8D-7C359F454586}Img100.jpg,books_71,2019/03/05,17:07:00 1491,https://img1.od-cdn.com/ImageType-100/1191-1/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg,books_72,2019/03/05,17:04:00 "The Psychology of Money: Timeless lessons on wealth, greed, and happiness",https://img1.od-cdn.com/ImageType-100/6852-1/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG,books_73,2019/03/05,09:45:00 "The Psychology of Money: Timeless lessons on wealth, greed, and happiness",https://img1.od-cdn.com/ImageType-100/6852-1/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG,books_74,2019/04/29,18:04:00 The Psychology of Money,https://img1.od-cdn.com/ImageType-100/6645-1/{6662B07C-039F-4CEA-A4AD-08F037CC2AE3}Img100.jpg,books_75,2019/04/27,03:18:00 1491,https://img1.od-cdn.com/ImageType-100/1191-1/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg,books_76,2019/04/26,00:41:00 The Boys,https://img1.od-cdn.com/ImageType-100/7552-1/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG,books_77,2019/04/25,14:39:00 The Boys,https://img1.od-cdn.com/ImageType-100/7552-1/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG,books_78,2019/04/22,17:47:00 How to Win Friends & Influence People in the Digital Age,https://img1.od-cdn.com/ImageType-100/1294-1/{6FE70C4B-92E2-43A3-82CE-C44565A042A3}Img100.jpg,books_79,2019/04/21,15:40:00 How the World Really Works,https://img1.od-cdn.com/ImageType-100/1191-1/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg,books_80,2019/04/20,22:06:00 From Strength to Strength,https://img1.od-cdn.com/ImageType-100/1191-1/{0D269BBE-2AEA-4557-8009-11ADDBEF9E10}Img100.jpg,books_81,2019/04/18,03:50:00 How the World Really Works,https://img1.od-cdn.com/ImageType-100/1191-1/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg,books_82,2019/04/14,17:30:00 1491,https://img1.od-cdn.com/ImageType-100/1191-1/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg,books_83,2019/04/07,23:17:00 The Boys,https://img1.od-cdn.com/ImageType-100/7552-1/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG,books_84,2019/04/03,20:41:00 The Devil's Star,https://img1.od-cdn.com/ImageType-100/1191-1/{082BCD72-EA9B-450E-9784-F978EC90DE73}Img100.jpg,books_85,2019/03/28,17:36:00 The Bitcoin Standard,https://img1.od-cdn.com/ImageType-100/0128-1/{0A84F8C2-77CC-4E4D-B2AA-002F7FC1C3F7}Img100.jpg,books_86,2019/03/24,22:41:00 The Devil's Star,https://img1.od-cdn.com/ImageType-100/1191-1/{082BCD72-EA9B-450E-9784-F978EC90DE73}Img100.jpg,books_87,2019/03/07,17:36:00 Mating in Captivity,https://img1.od-cdn.com/ImageType-100/0293-1/{09F22BD0-4235-4A59-A677-82A0AF31CB3F}Img100.jpg,books_88,2019/03/06,03:51:00 How the World Really Works,https://img1.od-cdn.com/ImageType-100/1191-1/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg,books_89,2019/03/06,03:05:00 The Lincoln Highway,https://img1.od-cdn.com/ImageType-100/1191-1/{C1399BF6-5678-4BCA-8520-1DEE2527E29A}Img100.jpg,books_90,2019/03/06,03:04:00 The Three-Body Problem,https://img1.od-cdn.com/ImageType-100/1493-1/{E865FBC4-6E05-4F87-B780-728E64158A2C}Img100.jpg,books_91,2019/03/04,03:07:00 Mating in Captivity,https://img1.od-cdn.com/ImageType-100/0293-1/{09F22BD0-4235-4A59-A677-82A0AF31CB3F}Img100.jpg,books_92,2019/03/04,03:07:00 The Culture Map,https://img1.od-cdn.com/ImageType-100/1088-1/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg,books_93,2019/03/04,03:06:00 The Bitcoin Standard,https://img1.od-cdn.com/ImageType-100/0128-1/{0A84F8C2-77CC-4E4D-B2AA-002F7FC1C3F7}Img100.jpg,books_94,2019/03/03,22:41:00 The Three-Body Problem,https://img1.od-cdn.com/ImageType-100/1493-1/{E865FBC4-6E05-4F87-B780-728E64158A2C}Img100.jpg,books_95,2019/04/21,19:17:00 The Ministry for the Future,https://img1.od-cdn.com/ImageType-100/0887-1/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg,books_96,2019/04/05,18:59:00 Benjamin Franklin,https://img1.od-cdn.com/ImageType-100/5054-1/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg,books_97,2019/03/28,21:42:00 The Curious Case of Benjamin Button and Other Jazz Age Tales,https://img1.od-cdn.com/ImageType-100/1219-1/{146935CF-D64E-46E9-B63D-CFD6182F1BE4}Img100.jpg,books_98,2019/03/18,23:42:00 The House of the Spirits,https://img1.od-cdn.com/ImageType-100/5054-1/{BC0222FF-419B-4FB4-B844-CBC6128B6E7D}Img100.jpg,books_99,2019/03/18,23:41:00 The Ministry for the Future,https://img1.od-cdn.com/ImageType-100/0887-1/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg,books_100,2019/03/15,18:59:00 The Body,https://img1.od-cdn.com/ImageType-100/1191-1/{38DDDC42-8411-4192-96F7-56BE613A6F27}Img100.jpg,books_101,2019/03/08,17:18:00 Benjamin Franklin,https://img1.od-cdn.com/ImageType-100/5054-1/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg,books_102,2019/03/07,21:42:00 The Curious Case of Benjamin Button and Other Jazz Age Tales,https://img1.od-cdn.com/ImageType-100/1219-1/{146935CF-D64E-46E9-B63D-CFD6182F1BE4}Img100.jpg,books_103,2019/04/27,23:42:00 The House of the Spirits,https://img1.od-cdn.com/ImageType-100/5054-1/{BC0222FF-419B-4FB4-B844-CBC6128B6E7D}Img100.jpg,books_104,2019/04/27,23:41:00 The Ministry for the Future,https://img1.od-cdn.com/ImageType-100/0887-1/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg,books_105,2019/04/24,22:57:00 Leonardo da Vinci,https://img1.od-cdn.com/ImageType-100/5054-1/{8BD6950E-7348-44E2-8EB8-C40021DED5CE}Img100.jpg,books_106,2019/04/24,18:43:00 The Body,https://img1.od-cdn.com/ImageType-100/1191-1/{38DDDC42-8411-4192-96F7-56BE613A6F27}Img100.jpg,books_107,2019/04/17,17:18:00 Benjamin Franklin,https://img1.od-cdn.com/ImageType-100/5054-1/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg,books_108,2019/04/17,17:16:00 Leonardo da Vinci,https://img1.od-cdn.com/ImageType-100/5054-1/{8BD6950E-7348-44E2-8EB8-C40021DED5CE}Img100.jpg,books_109,2019/04/03,18:43:00 A Thousand Brains: A New Theory of Intelligence,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B08VWV2WDK&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_111,2019/04/28,16:51:51 50 Greatest Positive Psychology Quotes: A Beautiful Photo Book of The Most Inspiring Positive Psychological Quotes,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B08JFTX8D1&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_112,2019/04/20,16:51:51 Before the Coffee Gets Cold: A Novel (Before the Coffee Gets Cold Series Book 1),https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B084B6VFHG&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_113,2019/03/27,16:51:51 The Enigma of Reason,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B06XWFM3PP&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_114,2019/03/24,16:51:51 Snow Crash: A Novel,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B000FBJCJE&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_115,2019/03/12,16:51:51 The Innovators,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B00M9KA2ZM&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_267,2019/03/08,16:51:51 Life 3.0,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B0742K1G4Q&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_268,2019/03/08,16:51:51 Total Recall,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B003DKVAB2&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_269,2019/03/17,16:51:51 Discovery Trial,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B0821SC3ZP&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_270,2019/04/28,16:51:51 ================================================ FILE: sample_data/books.sampled.csv ================================================ ,Unnamed: 0,time,book_name,img_url,id 0,0,2019-04-19T04:37:00,I Am a Strange Loop,https://img1.od-cdn.com/ImageType-100/0887-1/{A6AA81F6-9242-4793-8AB0-A5C8B5DBDB66}Img100.jpg,books_26 1,1,2019-04-17T04:50:00,I Am a Strange Loop,https://img1.od-cdn.com/ImageType-100/0887-1/{A6AA81F6-9242-4793-8AB0-A5C8B5DBDB66}Img100.jpg,books_27 2,2,2019-04-15T03:54:00,War and Peace,https://img1.od-cdn.com/ImageType-100/0887-1/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG,books_28 3,3,2019-04-05T19:23:00,War and Peace,https://img1.od-cdn.com/ImageType-100/0887-1/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG,books_29 4,4,2019-04-05T16:26:00,War and Peace,https://img1.od-cdn.com/ImageType-100/0887-1/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG,books_30 5,5,2019-03-28T15:06:00,The Culture Map,https://img1.od-cdn.com/ImageType-100/1088-1/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg,books_31 6,6,2019-03-23T05:02:00,The Culture Map,https://img1.od-cdn.com/ImageType-100/1088-1/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg,books_32 7,7,2019-03-14T16:26:00,War and Peace,https://img1.od-cdn.com/ImageType-100/0887-1/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG,books_33 8,8,2019-03-14T16:22:00,Neuromancer,https://img1.od-cdn.com/ImageType-100/1191-1/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg,books_34 9,9,2019-03-03T23:17:00,Horse,https://img1.od-cdn.com/ImageType-100/1191-1/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg,books_35 10,10,2019-03-03T23:16:00,Exhalation,https://img1.od-cdn.com/ImageType-100/1191-1/{BBA7984E-7A18-4ADF-A1D5-FA1BE72BD5AA}Img100.jpg,books_36 11,11,2019-04-30T16:51:00,Neuromancer,https://img1.od-cdn.com/ImageType-100/1191-1/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg,books_37 12,12,2019-04-28T04:25:00,Exhalation,https://img1.od-cdn.com/ImageType-100/1191-1/{BBA7984E-7A18-4ADF-A1D5-FA1BE72BD5AA}Img100.jpg,books_38 13,13,2019-04-27T13:27:00,Give and Take,https://img1.od-cdn.com/ImageType-100/1191-1/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg,books_39 14,14,2019-04-18T11:22:00,Hallucinations,https://img1.od-cdn.com/ImageType-100/1191-1/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg,books_40 15,15,2019-04-16T00:11:00,Horse,https://img1.od-cdn.com/ImageType-100/1191-1/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg,books_41 16,16,2019-04-13T23:11:00,Think Again,https://img1.od-cdn.com/ImageType-100/1191-1/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg,books_42 17,17,2019-04-10T02:24:00,Give and Take,https://img1.od-cdn.com/ImageType-100/1191-1/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg,books_43 18,18,2019-04-10T02:23:00,Into the Magic Shop,https://img1.od-cdn.com/ImageType-100/0887-1/{3FD140F9-B7BE-42CF-AF9C-1D1E95503B30}Img100.jpg,books_44 19,19,2019-04-06T14:35:00,Good Anxiety,https://img1.od-cdn.com/ImageType-100/5054-1/{B38EC863-9C53-4816-B0A3-70960F5EE87E}Img100.jpg,books_45 20,20,2019-04-05T23:52:00,Hallucinations,https://img1.od-cdn.com/ImageType-100/1191-1/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg,books_46 21,21,2019-04-05T23:51:00,Think Again,https://img1.od-cdn.com/ImageType-100/1191-1/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg,books_47 22,22,2019-04-04T03:49:00,Neuromancer,https://img1.od-cdn.com/ImageType-100/1191-1/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg,books_48 23,23,2019-04-03T20:17:00,Into the Magic Shop,https://img1.od-cdn.com/ImageType-100/0887-1/{3FD140F9-B7BE-42CF-AF9C-1D1E95503B30}Img100.jpg,books_49 24,24,2019-04-03T04:23:00,"Healthy Brain, Happy Life",https://img1.od-cdn.com/ImageType-100/0293-1/{C964EFD7-0622-43C1-BFEC-42DB9C82A827}Img100.jpg,books_50 25,25,2019-04-03T04:23:00,Good Anxiety,https://img1.od-cdn.com/ImageType-100/5054-1/{B38EC863-9C53-4816-B0A3-70960F5EE87E}Img100.jpg,books_51 26,26,2019-03-29T20:50:00,Year of Wonders,https://img1.od-cdn.com/ImageType-100/0887-1/{C231E269-04B3-46AA-9410-49493BE8415E}Img100.jpg,books_52 27,27,2019-03-28T04:08:00,"Healthy Brain, Happy Life",https://img1.od-cdn.com/ImageType-100/0293-1/{C964EFD7-0622-43C1-BFEC-42DB9C82A827}Img100.jpg,books_53 28,28,2019-03-24T20:24:00,Year of Wonders,https://img1.od-cdn.com/ImageType-100/0887-1/{C231E269-04B3-46AA-9410-49493BE8415E}Img100.jpg,books_54 29,29,2019-03-24T20:22:00,Horse,https://img1.od-cdn.com/ImageType-100/1191-1/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg,books_55 30,30,2019-03-24T20:19:00,Hallucinations,https://img1.od-cdn.com/ImageType-100/1191-1/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg,books_56 31,31,2019-03-24T20:15:00,The River of Consciousness,https://img1.od-cdn.com/ImageType-100/1191-1/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg,books_57 32,32,2019-03-23T14:26:00,The River of Consciousness,https://img1.od-cdn.com/ImageType-100/1191-1/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg,books_58 33,33,2019-03-23T14:25:00,Originals,https://img1.od-cdn.com/ImageType-100/1191-1/{659784EB-40E0-4061-904D-17606BAD9980}Img100.jpg,books_59 34,34,2019-03-23T14:24:00,The River of Consciousness,https://img1.od-cdn.com/ImageType-100/1191-1/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg,books_60 35,35,2019-03-23T14:23:00,The River of Consciousness,https://img1.od-cdn.com/ImageType-100/1191-1/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg,books_61 36,36,2019-03-20T23:47:00,Originals,https://img1.od-cdn.com/ImageType-100/1191-1/{659784EB-40E0-4061-904D-17606BAD9980}Img100.jpg,books_62 37,37,2019-03-20T23:46:00,Give and Take,https://img1.od-cdn.com/ImageType-100/1191-1/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg,books_63 38,38,2019-03-20T23:46:00,Think Again,https://img1.od-cdn.com/ImageType-100/1191-1/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg,books_64 39,39,2019-03-20T00:21:00,Stories of Your Life and Others,https://img1.od-cdn.com/ImageType-100/1219-1/{E5634854-4A0C-4971-95FB-9C38A1A8C2DE}Img100.jpg,books_65 40,40,2019-03-20T00:20:00,"The Psychology of Money: Timeless lessons on wealth, greed, and happiness",https://img1.od-cdn.com/ImageType-100/6852-1/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG,books_66 41,41,2019-03-16T22:10:00,Stories of Your Life and Others,https://img1.od-cdn.com/ImageType-100/1219-1/{E5634854-4A0C-4971-95FB-9C38A1A8C2DE}Img100.jpg,books_67 42,42,2019-03-16T22:09:00,Einstein,https://img1.od-cdn.com/ImageType-100/5054-1/{82F07E3E-0184-4FD8-AE8D-7C359F454586}Img100.jpg,books_68 43,43,2019-03-11T15:40:00,How to Win Friends & Influence People in the Digital Age,https://img1.od-cdn.com/ImageType-100/1294-1/{6FE70C4B-92E2-43A3-82CE-C44565A042A3}Img100.jpg,books_69 44,44,2019-03-11T00:07:00,The Culture Map,https://img1.od-cdn.com/ImageType-100/1088-1/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg,books_70 45,45,2019-03-05T17:07:00,Einstein,https://img1.od-cdn.com/ImageType-100/5054-1/{82F07E3E-0184-4FD8-AE8D-7C359F454586}Img100.jpg,books_71 46,46,2019-03-05T17:04:00,1491,https://img1.od-cdn.com/ImageType-100/1191-1/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg,books_72 47,47,2019-03-05T09:45:00,"The Psychology of Money: Timeless lessons on wealth, greed, and happiness",https://img1.od-cdn.com/ImageType-100/6852-1/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG,books_73 48,48,2019-04-29T18:04:00,"The Psychology of Money: Timeless lessons on wealth, greed, and happiness",https://img1.od-cdn.com/ImageType-100/6852-1/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG,books_74 49,49,2019-04-27T03:18:00,The Psychology of Money,https://img1.od-cdn.com/ImageType-100/6645-1/{6662B07C-039F-4CEA-A4AD-08F037CC2AE3}Img100.jpg,books_75 50,50,2019-04-26T00:41:00,1491,https://img1.od-cdn.com/ImageType-100/1191-1/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg,books_76 51,51,2019-04-25T14:39:00,The Boys,https://img1.od-cdn.com/ImageType-100/7552-1/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG,books_77 52,52,2019-04-22T17:47:00,The Boys,https://img1.od-cdn.com/ImageType-100/7552-1/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG,books_78 53,53,2019-04-21T15:40:00,How to Win Friends & Influence People in the Digital Age,https://img1.od-cdn.com/ImageType-100/1294-1/{6FE70C4B-92E2-43A3-82CE-C44565A042A3}Img100.jpg,books_79 54,54,2019-04-20T22:06:00,How the World Really Works,https://img1.od-cdn.com/ImageType-100/1191-1/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg,books_80 55,55,2019-04-18T03:50:00,From Strength to Strength,https://img1.od-cdn.com/ImageType-100/1191-1/{0D269BBE-2AEA-4557-8009-11ADDBEF9E10}Img100.jpg,books_81 56,56,2019-04-14T17:30:00,How the World Really Works,https://img1.od-cdn.com/ImageType-100/1191-1/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg,books_82 57,57,2019-04-07T23:17:00,1491,https://img1.od-cdn.com/ImageType-100/1191-1/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg,books_83 58,58,2019-04-03T20:41:00,The Boys,https://img1.od-cdn.com/ImageType-100/7552-1/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG,books_84 59,59,2019-03-28T17:36:00,The Devil's Star,https://img1.od-cdn.com/ImageType-100/1191-1/{082BCD72-EA9B-450E-9784-F978EC90DE73}Img100.jpg,books_85 60,60,2019-03-24T22:41:00,The Bitcoin Standard,https://img1.od-cdn.com/ImageType-100/0128-1/{0A84F8C2-77CC-4E4D-B2AA-002F7FC1C3F7}Img100.jpg,books_86 61,61,2019-03-07T17:36:00,The Devil's Star,https://img1.od-cdn.com/ImageType-100/1191-1/{082BCD72-EA9B-450E-9784-F978EC90DE73}Img100.jpg,books_87 62,62,2019-03-06T03:51:00,Mating in Captivity,https://img1.od-cdn.com/ImageType-100/0293-1/{09F22BD0-4235-4A59-A677-82A0AF31CB3F}Img100.jpg,books_88 63,63,2019-03-06T03:05:00,How the World Really Works,https://img1.od-cdn.com/ImageType-100/1191-1/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg,books_89 64,64,2019-03-06T03:04:00,The Lincoln Highway,https://img1.od-cdn.com/ImageType-100/1191-1/{C1399BF6-5678-4BCA-8520-1DEE2527E29A}Img100.jpg,books_90 65,65,2019-03-04T03:07:00,The Three-Body Problem,https://img1.od-cdn.com/ImageType-100/1493-1/{E865FBC4-6E05-4F87-B780-728E64158A2C}Img100.jpg,books_91 66,66,2019-03-04T03:07:00,Mating in Captivity,https://img1.od-cdn.com/ImageType-100/0293-1/{09F22BD0-4235-4A59-A677-82A0AF31CB3F}Img100.jpg,books_92 67,67,2019-03-04T03:06:00,The Culture Map,https://img1.od-cdn.com/ImageType-100/1088-1/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg,books_93 68,68,2019-03-03T22:41:00,The Bitcoin Standard,https://img1.od-cdn.com/ImageType-100/0128-1/{0A84F8C2-77CC-4E4D-B2AA-002F7FC1C3F7}Img100.jpg,books_94 69,69,2019-04-21T19:17:00,The Three-Body Problem,https://img1.od-cdn.com/ImageType-100/1493-1/{E865FBC4-6E05-4F87-B780-728E64158A2C}Img100.jpg,books_95 70,70,2019-04-05T18:59:00,The Ministry for the Future,https://img1.od-cdn.com/ImageType-100/0887-1/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg,books_96 71,71,2019-03-28T21:42:00,Benjamin Franklin,https://img1.od-cdn.com/ImageType-100/5054-1/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg,books_97 72,72,2019-03-18T23:42:00,The Curious Case of Benjamin Button and Other Jazz Age Tales,https://img1.od-cdn.com/ImageType-100/1219-1/{146935CF-D64E-46E9-B63D-CFD6182F1BE4}Img100.jpg,books_98 73,73,2019-03-18T23:41:00,The House of the Spirits,https://img1.od-cdn.com/ImageType-100/5054-1/{BC0222FF-419B-4FB4-B844-CBC6128B6E7D}Img100.jpg,books_99 74,74,2019-03-15T18:59:00,The Ministry for the Future,https://img1.od-cdn.com/ImageType-100/0887-1/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg,books_100 75,75,2019-03-08T17:18:00,The Body,https://img1.od-cdn.com/ImageType-100/1191-1/{38DDDC42-8411-4192-96F7-56BE613A6F27}Img100.jpg,books_101 76,76,2019-03-07T21:42:00,Benjamin Franklin,https://img1.od-cdn.com/ImageType-100/5054-1/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg,books_102 77,77,2019-04-27T23:42:00,The Curious Case of Benjamin Button and Other Jazz Age Tales,https://img1.od-cdn.com/ImageType-100/1219-1/{146935CF-D64E-46E9-B63D-CFD6182F1BE4}Img100.jpg,books_103 78,78,2019-04-27T23:41:00,The House of the Spirits,https://img1.od-cdn.com/ImageType-100/5054-1/{BC0222FF-419B-4FB4-B844-CBC6128B6E7D}Img100.jpg,books_104 79,79,2019-04-24T22:57:00,The Ministry for the Future,https://img1.od-cdn.com/ImageType-100/0887-1/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg,books_105 80,80,2019-04-24T18:43:00,Leonardo da Vinci,https://img1.od-cdn.com/ImageType-100/5054-1/{8BD6950E-7348-44E2-8EB8-C40021DED5CE}Img100.jpg,books_106 81,81,2019-04-17T17:18:00,The Body,https://img1.od-cdn.com/ImageType-100/1191-1/{38DDDC42-8411-4192-96F7-56BE613A6F27}Img100.jpg,books_107 82,82,2019-04-17T17:16:00,Benjamin Franklin,https://img1.od-cdn.com/ImageType-100/5054-1/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg,books_108 83,83,2019-04-03T18:43:00,Leonardo da Vinci,https://img1.od-cdn.com/ImageType-100/5054-1/{8BD6950E-7348-44E2-8EB8-C40021DED5CE}Img100.jpg,books_109 84,84,2019-04-28T16:51:51,A Thousand Brains: A New Theory of Intelligence,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B08VWV2WDK&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_111 85,85,2019-04-20T16:51:51,50 Greatest Positive Psychology Quotes: A Beautiful Photo Book of The Most Inspiring Positive Psychological Quotes,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B08JFTX8D1&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_112 86,86,2019-03-27T16:51:51,Before the Coffee Gets Cold: A Novel (Before the Coffee Gets Cold Series Book 1),https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B084B6VFHG&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_113 87,87,2019-03-24T16:51:51,The Enigma of Reason,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B06XWFM3PP&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_114 88,88,2019-03-12T16:51:51,Snow Crash: A Novel,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B000FBJCJE&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_115 89,89,2019-03-08T16:51:51,The Innovators,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B00M9KA2ZM&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_267 90,90,2019-03-08T16:51:51,Life 3.0,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B0742K1G4Q&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_268 91,91,2019-03-17T16:51:51,Total Recall,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B003DKVAB2&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_269 92,92,2019-04-28T16:51:51,Discovery Trial,https://ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&MarketPlace=US&ASIN=B0821SC3ZP&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250,books_270 ================================================ FILE: sample_data/books.sampled.json ================================================ [ { "Unnamed: 0":0, "time":"2019-04-19T04:37:00", "book_name":"I Am a Strange Loop", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{A6AA81F6-9242-4793-8AB0-A5C8B5DBDB66}Img100.jpg", "id":"books_26" }, { "Unnamed: 0":1, "time":"2019-04-17T04:50:00", "book_name":"I Am a Strange Loop", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{A6AA81F6-9242-4793-8AB0-A5C8B5DBDB66}Img100.jpg", "id":"books_27" }, { "Unnamed: 0":2, "time":"2019-04-15T03:54:00", "book_name":"War and Peace", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG", "id":"books_28" }, { "Unnamed: 0":3, "time":"2019-04-05T19:23:00", "book_name":"War and Peace", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG", "id":"books_29" }, { "Unnamed: 0":4, "time":"2019-04-05T16:26:00", "book_name":"War and Peace", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG", "id":"books_30" }, { "Unnamed: 0":5, "time":"2019-03-28T15:06:00", "book_name":"The Culture Map", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1088-1\/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg", "id":"books_31" }, { "Unnamed: 0":6, "time":"2019-03-23T05:02:00", "book_name":"The Culture Map", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1088-1\/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg", "id":"books_32" }, { "Unnamed: 0":7, "time":"2019-03-14T16:26:00", "book_name":"War and Peace", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{97ABE6CD-7D83-475B-8278-210FB71B35DC}IMG100.JPG", "id":"books_33" }, { "Unnamed: 0":8, "time":"2019-03-14T16:22:00", "book_name":"Neuromancer", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg", "id":"books_34" }, { "Unnamed: 0":9, "time":"2019-03-03T23:17:00", "book_name":"Horse", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg", "id":"books_35" }, { "Unnamed: 0":10, "time":"2019-03-03T23:16:00", "book_name":"Exhalation", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{BBA7984E-7A18-4ADF-A1D5-FA1BE72BD5AA}Img100.jpg", "id":"books_36" }, { "Unnamed: 0":11, "time":"2019-04-30T16:51:00", "book_name":"Neuromancer", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg", "id":"books_37" }, { "Unnamed: 0":12, "time":"2019-04-28T04:25:00", "book_name":"Exhalation", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{BBA7984E-7A18-4ADF-A1D5-FA1BE72BD5AA}Img100.jpg", "id":"books_38" }, { "Unnamed: 0":13, "time":"2019-04-27T13:27:00", "book_name":"Give and Take", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg", "id":"books_39" }, { "Unnamed: 0":14, "time":"2019-04-18T11:22:00", "book_name":"Hallucinations", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg", "id":"books_40" }, { "Unnamed: 0":15, "time":"2019-04-16T00:11:00", "book_name":"Horse", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg", "id":"books_41" }, { "Unnamed: 0":16, "time":"2019-04-13T23:11:00", "book_name":"Think Again", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg", "id":"books_42" }, { "Unnamed: 0":17, "time":"2019-04-10T02:24:00", "book_name":"Give and Take", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg", "id":"books_43" }, { "Unnamed: 0":18, "time":"2019-04-10T02:23:00", "book_name":"Into the Magic Shop", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{3FD140F9-B7BE-42CF-AF9C-1D1E95503B30}Img100.jpg", "id":"books_44" }, { "Unnamed: 0":19, "time":"2019-04-06T14:35:00", "book_name":"Good Anxiety", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{B38EC863-9C53-4816-B0A3-70960F5EE87E}Img100.jpg", "id":"books_45" }, { "Unnamed: 0":20, "time":"2019-04-05T23:52:00", "book_name":"Hallucinations", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg", "id":"books_46" }, { "Unnamed: 0":21, "time":"2019-04-05T23:51:00", "book_name":"Think Again", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg", "id":"books_47" }, { "Unnamed: 0":22, "time":"2019-04-04T03:49:00", "book_name":"Neuromancer", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{7BA87BED-B3A1-4AD0-998A-CC84D7F542DA}Img100.jpg", "id":"books_48" }, { "Unnamed: 0":23, "time":"2019-04-03T20:17:00", "book_name":"Into the Magic Shop", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{3FD140F9-B7BE-42CF-AF9C-1D1E95503B30}Img100.jpg", "id":"books_49" }, { "Unnamed: 0":24, "time":"2019-04-03T04:23:00", "book_name":"Healthy Brain, Happy Life", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0293-1\/{C964EFD7-0622-43C1-BFEC-42DB9C82A827}Img100.jpg", "id":"books_50" }, { "Unnamed: 0":25, "time":"2019-04-03T04:23:00", "book_name":"Good Anxiety", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{B38EC863-9C53-4816-B0A3-70960F5EE87E}Img100.jpg", "id":"books_51" }, { "Unnamed: 0":26, "time":"2019-03-29T20:50:00", "book_name":"Year of Wonders", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{C231E269-04B3-46AA-9410-49493BE8415E}Img100.jpg", "id":"books_52" }, { "Unnamed: 0":27, "time":"2019-03-28T04:08:00", "book_name":"Healthy Brain, Happy Life", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0293-1\/{C964EFD7-0622-43C1-BFEC-42DB9C82A827}Img100.jpg", "id":"books_53" }, { "Unnamed: 0":28, "time":"2019-03-24T20:24:00", "book_name":"Year of Wonders", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{C231E269-04B3-46AA-9410-49493BE8415E}Img100.jpg", "id":"books_54" }, { "Unnamed: 0":29, "time":"2019-03-24T20:22:00", "book_name":"Horse", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{C907B706-54A2-42AA-B199-16923A150BC4}Img100.jpg", "id":"books_55" }, { "Unnamed: 0":30, "time":"2019-03-24T20:19:00", "book_name":"Hallucinations", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{84AE575E-576F-4590-A6E6-8460DE966A95}Img100.jpg", "id":"books_56" }, { "Unnamed: 0":31, "time":"2019-03-24T20:15:00", "book_name":"The River of Consciousness", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg", "id":"books_57" }, { "Unnamed: 0":32, "time":"2019-03-23T14:26:00", "book_name":"The River of Consciousness", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg", "id":"books_58" }, { "Unnamed: 0":33, "time":"2019-03-23T14:25:00", "book_name":"Originals", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{659784EB-40E0-4061-904D-17606BAD9980}Img100.jpg", "id":"books_59" }, { "Unnamed: 0":34, "time":"2019-03-23T14:24:00", "book_name":"The River of Consciousness", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg", "id":"books_60" }, { "Unnamed: 0":35, "time":"2019-03-23T14:23:00", "book_name":"The River of Consciousness", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{0FA8ED18-A311-4DDB-A67C-2EAAB5AD90EE}Img100.jpg", "id":"books_61" }, { "Unnamed: 0":36, "time":"2019-03-20T23:47:00", "book_name":"Originals", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{659784EB-40E0-4061-904D-17606BAD9980}Img100.jpg", "id":"books_62" }, { "Unnamed: 0":37, "time":"2019-03-20T23:46:00", "book_name":"Give and Take", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{D4B1BE9F-E613-4495-9EC6-4380FBBCDC91}Img100.jpg", "id":"books_63" }, { "Unnamed: 0":38, "time":"2019-03-20T23:46:00", "book_name":"Think Again", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{E53B8C11-8116-46D4-9930-66B3A1F970EB}Img100.jpg", "id":"books_64" }, { "Unnamed: 0":39, "time":"2019-03-20T00:21:00", "book_name":"Stories of Your Life and Others", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1219-1\/{E5634854-4A0C-4971-95FB-9C38A1A8C2DE}Img100.jpg", "id":"books_65" }, { "Unnamed: 0":40, "time":"2019-03-20T00:20:00", "book_name":"The Psychology of Money: Timeless lessons on wealth, greed, and happiness", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/6852-1\/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG", "id":"books_66" }, { "Unnamed: 0":41, "time":"2019-03-16T22:10:00", "book_name":"Stories of Your Life and Others", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1219-1\/{E5634854-4A0C-4971-95FB-9C38A1A8C2DE}Img100.jpg", "id":"books_67" }, { "Unnamed: 0":42, "time":"2019-03-16T22:09:00", "book_name":"Einstein", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{82F07E3E-0184-4FD8-AE8D-7C359F454586}Img100.jpg", "id":"books_68" }, { "Unnamed: 0":43, "time":"2019-03-11T15:40:00", "book_name":"How to Win Friends & Influence People in the Digital Age", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1294-1\/{6FE70C4B-92E2-43A3-82CE-C44565A042A3}Img100.jpg", "id":"books_69" }, { "Unnamed: 0":44, "time":"2019-03-11T00:07:00", "book_name":"The Culture Map", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1088-1\/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg", "id":"books_70" }, { "Unnamed: 0":45, "time":"2019-03-05T17:07:00", "book_name":"Einstein", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{82F07E3E-0184-4FD8-AE8D-7C359F454586}Img100.jpg", "id":"books_71" }, { "Unnamed: 0":46, "time":"2019-03-05T17:04:00", "book_name":"1491", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg", "id":"books_72" }, { "Unnamed: 0":47, "time":"2019-03-05T09:45:00", "book_name":"The Psychology of Money: Timeless lessons on wealth, greed, and happiness", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/6852-1\/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG", "id":"books_73" }, { "Unnamed: 0":48, "time":"2019-04-29T18:04:00", "book_name":"The Psychology of Money: Timeless lessons on wealth, greed, and happiness", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/6852-1\/{B1E07D01-EFD7-4767-88E7-5DE22657FE51}IMG100.JPG", "id":"books_74" }, { "Unnamed: 0":49, "time":"2019-04-27T03:18:00", "book_name":"The Psychology of Money", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/6645-1\/{6662B07C-039F-4CEA-A4AD-08F037CC2AE3}Img100.jpg", "id":"books_75" }, { "Unnamed: 0":50, "time":"2019-04-26T00:41:00", "book_name":"1491", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg", "id":"books_76" }, { "Unnamed: 0":51, "time":"2019-04-25T14:39:00", "book_name":"The Boys", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/7552-1\/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG", "id":"books_77" }, { "Unnamed: 0":52, "time":"2019-04-22T17:47:00", "book_name":"The Boys", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/7552-1\/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG", "id":"books_78" }, { "Unnamed: 0":53, "time":"2019-04-21T15:40:00", "book_name":"How to Win Friends & Influence People in the Digital Age", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1294-1\/{6FE70C4B-92E2-43A3-82CE-C44565A042A3}Img100.jpg", "id":"books_79" }, { "Unnamed: 0":54, "time":"2019-04-20T22:06:00", "book_name":"How the World Really Works", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg", "id":"books_80" }, { "Unnamed: 0":55, "time":"2019-04-18T03:50:00", "book_name":"From Strength to Strength", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{0D269BBE-2AEA-4557-8009-11ADDBEF9E10}Img100.jpg", "id":"books_81" }, { "Unnamed: 0":56, "time":"2019-04-14T17:30:00", "book_name":"How the World Really Works", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg", "id":"books_82" }, { "Unnamed: 0":57, "time":"2019-04-07T23:17:00", "book_name":"1491", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{A7EC6CC4-107C-4DDE-BC7E-516A916C462C}Img100.jpg", "id":"books_83" }, { "Unnamed: 0":58, "time":"2019-04-03T20:41:00", "book_name":"The Boys", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/7552-1\/{C1FC45F2-9E2D-4FA8-9EBE-72DF14121401}IMG100.JPG", "id":"books_84" }, { "Unnamed: 0":59, "time":"2019-03-28T17:36:00", "book_name":"The Devil's Star", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{082BCD72-EA9B-450E-9784-F978EC90DE73}Img100.jpg", "id":"books_85" }, { "Unnamed: 0":60, "time":"2019-03-24T22:41:00", "book_name":"The Bitcoin Standard", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0128-1\/{0A84F8C2-77CC-4E4D-B2AA-002F7FC1C3F7}Img100.jpg", "id":"books_86" }, { "Unnamed: 0":61, "time":"2019-03-07T17:36:00", "book_name":"The Devil's Star", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{082BCD72-EA9B-450E-9784-F978EC90DE73}Img100.jpg", "id":"books_87" }, { "Unnamed: 0":62, "time":"2019-03-06T03:51:00", "book_name":"Mating in Captivity", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0293-1\/{09F22BD0-4235-4A59-A677-82A0AF31CB3F}Img100.jpg", "id":"books_88" }, { "Unnamed: 0":63, "time":"2019-03-06T03:05:00", "book_name":"How the World Really Works", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{2F5C2C49-A53D-4B42-8DCF-1AD588DF5476}Img100.jpg", "id":"books_89" }, { "Unnamed: 0":64, "time":"2019-03-06T03:04:00", "book_name":"The Lincoln Highway", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{C1399BF6-5678-4BCA-8520-1DEE2527E29A}Img100.jpg", "id":"books_90" }, { "Unnamed: 0":65, "time":"2019-03-04T03:07:00", "book_name":"The Three-Body Problem", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1493-1\/{E865FBC4-6E05-4F87-B780-728E64158A2C}Img100.jpg", "id":"books_91" }, { "Unnamed: 0":66, "time":"2019-03-04T03:07:00", "book_name":"Mating in Captivity", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0293-1\/{09F22BD0-4235-4A59-A677-82A0AF31CB3F}Img100.jpg", "id":"books_92" }, { "Unnamed: 0":67, "time":"2019-03-04T03:06:00", "book_name":"The Culture Map", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1088-1\/{19D66D38-7086-4689-A5CE-A63649FEEF96}Img100.jpg", "id":"books_93" }, { "Unnamed: 0":68, "time":"2019-03-03T22:41:00", "book_name":"The Bitcoin Standard", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0128-1\/{0A84F8C2-77CC-4E4D-B2AA-002F7FC1C3F7}Img100.jpg", "id":"books_94" }, { "Unnamed: 0":69, "time":"2019-04-21T19:17:00", "book_name":"The Three-Body Problem", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1493-1\/{E865FBC4-6E05-4F87-B780-728E64158A2C}Img100.jpg", "id":"books_95" }, { "Unnamed: 0":70, "time":"2019-04-05T18:59:00", "book_name":"The Ministry for the Future", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg", "id":"books_96" }, { "Unnamed: 0":71, "time":"2019-03-28T21:42:00", "book_name":"Benjamin Franklin", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg", "id":"books_97" }, { "Unnamed: 0":72, "time":"2019-03-18T23:42:00", "book_name":"The Curious Case of Benjamin Button and Other Jazz Age Tales", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1219-1\/{146935CF-D64E-46E9-B63D-CFD6182F1BE4}Img100.jpg", "id":"books_98" }, { "Unnamed: 0":73, "time":"2019-03-18T23:41:00", "book_name":"The House of the Spirits", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{BC0222FF-419B-4FB4-B844-CBC6128B6E7D}Img100.jpg", "id":"books_99" }, { "Unnamed: 0":74, "time":"2019-03-15T18:59:00", "book_name":"The Ministry for the Future", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg", "id":"books_100" }, { "Unnamed: 0":75, "time":"2019-03-08T17:18:00", "book_name":"The Body", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{38DDDC42-8411-4192-96F7-56BE613A6F27}Img100.jpg", "id":"books_101" }, { "Unnamed: 0":76, "time":"2019-03-07T21:42:00", "book_name":"Benjamin Franklin", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg", "id":"books_102" }, { "Unnamed: 0":77, "time":"2019-04-27T23:42:00", "book_name":"The Curious Case of Benjamin Button and Other Jazz Age Tales", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1219-1\/{146935CF-D64E-46E9-B63D-CFD6182F1BE4}Img100.jpg", "id":"books_103" }, { "Unnamed: 0":78, "time":"2019-04-27T23:41:00", "book_name":"The House of the Spirits", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{BC0222FF-419B-4FB4-B844-CBC6128B6E7D}Img100.jpg", "id":"books_104" }, { "Unnamed: 0":79, "time":"2019-04-24T22:57:00", "book_name":"The Ministry for the Future", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/0887-1\/{81F5A348-EEB3-4546-BCEA-1FCFCB709C52}Img100.jpg", "id":"books_105" }, { "Unnamed: 0":80, "time":"2019-04-24T18:43:00", "book_name":"Leonardo da Vinci", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{8BD6950E-7348-44E2-8EB8-C40021DED5CE}Img100.jpg", "id":"books_106" }, { "Unnamed: 0":81, "time":"2019-04-17T17:18:00", "book_name":"The Body", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/1191-1\/{38DDDC42-8411-4192-96F7-56BE613A6F27}Img100.jpg", "id":"books_107" }, { "Unnamed: 0":82, "time":"2019-04-17T17:16:00", "book_name":"Benjamin Franklin", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{0B379166-D254-4592-B4D5-FFC2254119FB}Img100.jpg", "id":"books_108" }, { "Unnamed: 0":83, "time":"2019-04-03T18:43:00", "book_name":"Leonardo da Vinci", "img_url":"https:\/\/img1.od-cdn.com\/ImageType-100\/5054-1\/{8BD6950E-7348-44E2-8EB8-C40021DED5CE}Img100.jpg", "id":"books_109" }, { "Unnamed: 0":84, "time":"2019-04-28T16:51:51", "book_name":"A Thousand Brains: A New Theory of Intelligence", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B08VWV2WDK&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_111" }, { "Unnamed: 0":85, "time":"2019-04-20T16:51:51", "book_name":"50 Greatest Positive Psychology Quotes: A Beautiful Photo Book of The Most Inspiring Positive Psychological Quotes", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B08JFTX8D1&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_112" }, { "Unnamed: 0":86, "time":"2019-03-27T16:51:51", "book_name":"Before the Coffee Gets Cold: A Novel (Before the Coffee Gets Cold Series Book 1)", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B084B6VFHG&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_113" }, { "Unnamed: 0":87, "time":"2019-03-24T16:51:51", "book_name":"The Enigma of Reason", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B06XWFM3PP&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_114" }, { "Unnamed: 0":88, "time":"2019-03-12T16:51:51", "book_name":"Snow Crash: A Novel", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B000FBJCJE&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_115" }, { "Unnamed: 0":89, "time":"2019-03-08T16:51:51", "book_name":"The Innovators", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B00M9KA2ZM&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_267" }, { "Unnamed: 0":90, "time":"2019-03-08T16:51:51", "book_name":"Life 3.0", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B0742K1G4Q&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_268" }, { "Unnamed: 0":91, "time":"2019-03-17T16:51:51", "book_name":"Total Recall", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B003DKVAB2&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_269" }, { "Unnamed: 0":92, "time":"2019-04-28T16:51:51", "book_name":"Discovery Trial", "img_url":"https:\/\/ws-na.amazon-adsystem.com\/widgets\/q?_encoding=UTF8&MarketPlace=US&ASIN=B0821SC3ZP&ServiceVersion=20070822&ID=AsinImage&WS=1&Format=SL250", "id":"books_270" } ] ================================================ FILE: sample_data/config.ini ================================================ [embedding_model] model = text-embedding-ada-002 encoding = cl100k_base max_tokens = 8000 [Views] model_name = gpt-3.5-turbo [RAG] qa_model = text-davinci-003 temperature = 0.5 #max_tokens = 256 #top_p = 1 #frequency_penalty = 0 #presence_penalty = 0 topk = 10 [rag_prompt] prompt = "Use the following pieces of context and general knowledge to answer the question at the end. If the question cannot be answered with the context, ignore the context and answer with general knowledge. If you don't know the answer, just say that you don't know, don't try to make up an answer. \n\n{context}\n\nQuestion: {question} \nAnswer:" [sql_prompt] prompt_basic = # Table name: {tablename}\n# Table schema: {schema} # Table description: {table_desc} # # Given the above table, schema, and description, write an SQLite query to answer the following query. The format of dates is in YYYY-MM-DD. For a range between two dates d1 and d2, use 'BETWEEN d1 and d2'. # # {question} SELECT prompt = # Table name: {tablename} # Table schema: {schema} # Table description: {table_desc} # # Example rows: # # {example} # # Given the above table, schema, and description, write an SQLite query to answer the question below. The format of dates is in YYYY-MM-DD. For a range between two dates d1 and d2, use 'BETWEEN d1 and d2'. {additional_context} Avoid using the attribute eid. # # {question} SELECT [input] source_idx = episodes.pkl views_db = views_db.sqlite views_metadata = views_metadata.txt views_metadata_idx = views_idx.csv queryfile = ================================================ FILE: sample_data/create_db.sql ================================================ create table books(book_name TEXT, img_url TEXT, id TEXT PRIMARY KEY, date TEXT, time TEXT); create table purchase(purchase_id TEXT,productName TEXT,productPrice REAL,productQuantity REAL,id TEXT PRIMARY KEY,date TEXT,time TEXT); create table exercise(textDescription TEXT,duration REAL,distance REAL,calories REAL,outdoor INTEGER,temperature TEXT, id TEXT PRIMARY KEY,start_date TEXT,start_time TEXT,end_date TEXT,end_time TEXT); create table photos(textDescription TEXT,adddress TEXT,lat REAL,long REAL,details TEXT,img_url TEXT,id TEXT PRIMARY KEY,start_date TEXT,start_time TEXT,end_date TEXT,end_time TEXT); create table streaming(artist TEXT,track TEXT,playtimeMs INTEGER,spotify_link TEXT,id TEXT PRIMARY KEY,start_date TEXT,start_time TEXT,end_date TEXT,end_time TEXT); create table places(textDescription TEXT,start_address TEXT,start_lat REAL,start_long REAL,end_address TEXT,end_lat REAL,end_long REAL,id TEXT PRIMARY KEY,start_date TEXT,start_time TEXT,end_date TEXT,end_time TEXT); create table trips(textDescription TEXT,country TEXT,states_provinces TEXT,cities_towns TEXT,places TEXT,id TEXT PRIMARY KEY,start_date TEXT,start_time TEXT,end_date TEXT,end_time TEXT); .mode csv .import books.csv books --skip 1 .import purchase.csv purchase --skip 1 .import exercise.csv exercise --skip 1 .import photos.csv photos --skip 1 .import streaming.csv streaming --skip 1 .import places.csv places --skip 1 .import trips.csv trips --skip 1 ================================================ FILE: sample_data/episodes.csv ================================================ id,desc,details,date books_26,"I purchased the book ""I Am a Strange Loop"" from Amazon Kindle","I purchased the book ""I Am a Strange Loop"" from Amazon Kindle",2019-04-19T04:37:00 books_27,"I purchased the book ""I Am a Strange Loop"" from Amazon Kindle","I purchased the book ""I Am a Strange Loop"" from Amazon Kindle",2019-04-17T04:50:00 books_28,"I purchased the book ""War and Peace"" from Amazon Kindle","I purchased the book ""War and Peace"" from Amazon Kindle",2019-04-15T03:54:00 books_29,"I purchased the book ""War and Peace"" from Amazon Kindle","I purchased the book ""War and Peace"" from Amazon Kindle",2019-04-05T19:23:00 books_30,"I purchased the book ""War and Peace"" from Amazon Kindle","I purchased the book ""War and Peace"" from Amazon Kindle",2019-04-05T16:26:00 books_31,"I purchased the book ""The Culture Map"" from Amazon Kindle","I purchased the book ""The Culture Map"" from Amazon Kindle",2019-03-28T15:06:00 books_32,"I purchased the book ""The Culture Map"" from Amazon Kindle","I purchased the book ""The Culture Map"" from Amazon Kindle",2019-03-23T05:02:00 books_33,"I purchased the book ""War and Peace"" from Amazon Kindle","I purchased the book ""War and Peace"" from Amazon Kindle",2019-03-14T16:26:00 books_34,"I purchased the book ""Neuromancer"" from Amazon Kindle","I purchased the book ""Neuromancer"" from Amazon Kindle",2019-03-14T16:22:00 books_35,"I purchased the book ""Horse"" from Amazon Kindle","I purchased the book ""Horse"" from Amazon Kindle",2019-03-03T23:17:00 books_36,"I purchased the book ""Exhalation"" from Amazon Kindle","I purchased the book ""Exhalation"" from Amazon Kindle",2019-03-03T23:16:00 books_37,"I purchased the book ""Neuromancer"" from Amazon Kindle","I purchased the book ""Neuromancer"" from Amazon Kindle",2019-04-30T16:51:00 books_38,"I purchased the book ""Exhalation"" from Amazon Kindle","I purchased the book ""Exhalation"" from Amazon Kindle",2019-04-28T04:25:00 books_39,"I purchased the book ""Give and Take"" from Amazon Kindle","I purchased the book ""Give and Take"" from Amazon Kindle",2019-04-27T13:27:00 books_40,"I purchased the book ""Hallucinations"" from Amazon Kindle","I purchased the book ""Hallucinations"" from Amazon Kindle",2019-04-18T11:22:00 books_41,"I purchased the book ""Horse"" from Amazon Kindle","I purchased the book ""Horse"" from Amazon Kindle",2019-04-16T00:11:00 books_42,"I purchased the book ""Think Again"" from Amazon Kindle","I purchased the book ""Think Again"" from Amazon Kindle",2019-04-13T23:11:00 books_43,"I purchased the book ""Give and Take"" from Amazon Kindle","I purchased the book ""Give and Take"" from Amazon Kindle",2019-04-10T02:24:00 books_44,"I purchased the book ""Into the Magic Shop"" from Amazon Kindle","I purchased the book ""Into the Magic Shop"" from Amazon Kindle",2019-04-10T02:23:00 books_45,"I purchased the book ""Good Anxiety"" from Amazon Kindle","I purchased the book ""Good Anxiety"" from Amazon Kindle",2019-04-06T14:35:00 books_46,"I purchased the book ""Hallucinations"" from Amazon Kindle","I purchased the book ""Hallucinations"" from Amazon Kindle",2019-04-05T23:52:00 books_47,"I purchased the book ""Think Again"" from Amazon Kindle","I purchased the book ""Think Again"" from Amazon Kindle",2019-04-05T23:51:00 books_48,"I purchased the book ""Neuromancer"" from Amazon Kindle","I purchased the book ""Neuromancer"" from Amazon Kindle",2019-04-04T03:49:00 books_49,"I purchased the book ""Into the Magic Shop"" from Amazon Kindle","I purchased the book ""Into the Magic Shop"" from Amazon Kindle",2019-04-03T20:17:00 books_50,"I purchased the book ""Healthy Brain, Happy Life"" from Amazon Kindle","I purchased the book ""Healthy Brain, Happy Life"" from Amazon Kindle",2019-04-03T04:23:00 books_51,"I purchased the book ""Good Anxiety"" from Amazon Kindle","I purchased the book ""Good Anxiety"" from Amazon Kindle",2019-04-03T04:23:00 books_52,"I purchased the book ""Year of Wonders"" from Amazon Kindle","I purchased the book ""Year of Wonders"" from Amazon Kindle",2019-03-29T20:50:00 books_53,"I purchased the book ""Healthy Brain, Happy Life"" from Amazon Kindle","I purchased the book ""Healthy Brain, Happy Life"" from Amazon Kindle",2019-03-28T04:08:00 books_54,"I purchased the book ""Year of Wonders"" from Amazon Kindle","I purchased the book ""Year of Wonders"" from Amazon Kindle",2019-03-24T20:24:00 books_55,"I purchased the book ""Horse"" from Amazon Kindle","I purchased the book ""Horse"" from Amazon Kindle",2019-03-24T20:22:00 books_56,"I purchased the book ""Hallucinations"" from Amazon Kindle","I purchased the book ""Hallucinations"" from Amazon Kindle",2019-03-24T20:19:00 books_57,"I purchased the book ""The River of Consciousness"" from Amazon Kindle","I purchased the book ""The River of Consciousness"" from Amazon Kindle",2019-03-24T20:15:00 books_58,"I purchased the book ""The River of Consciousness"" from Amazon Kindle","I purchased the book ""The River of Consciousness"" from Amazon Kindle",2019-03-23T14:26:00 books_59,"I purchased the book ""Originals"" from Amazon Kindle","I purchased the book ""Originals"" from Amazon Kindle",2019-03-23T14:25:00 books_60,"I purchased the book ""The River of Consciousness"" from Amazon Kindle","I purchased the book ""The River of Consciousness"" from Amazon Kindle",2019-03-23T14:24:00 books_61,"I purchased the book ""The River of Consciousness"" from Amazon Kindle","I purchased the book ""The River of Consciousness"" from Amazon Kindle",2019-03-23T14:23:00 books_62,"I purchased the book ""Originals"" from Amazon Kindle","I purchased the book ""Originals"" from Amazon Kindle",2019-03-20T23:47:00 books_63,"I purchased the book ""Give and Take"" from Amazon Kindle","I purchased the book ""Give and Take"" from Amazon Kindle",2019-03-20T23:46:00 books_64,"I purchased the book ""Think Again"" from Amazon Kindle","I purchased the book ""Think Again"" from Amazon Kindle",2019-03-20T23:46:00 books_65,"I purchased the book ""Stories of Your Life and Others"" from Amazon Kindle","I purchased the book ""Stories of Your Life and Others"" from Amazon Kindle",2019-03-20T00:21:00 books_66,"I purchased the book ""The Psychology of Money: Timeless lessons on wealth, greed, and happiness"" from Amazon Kindle","I purchased the book ""The Psychology of Money: Timeless lessons on wealth, greed, and happiness"" from Amazon Kindle",2019-03-20T00:20:00 books_67,"I purchased the book ""Stories of Your Life and Others"" from Amazon Kindle","I purchased the book ""Stories of Your Life and Others"" from Amazon Kindle",2019-03-16T22:10:00 books_68,"I purchased the book ""Einstein"" from Amazon Kindle","I purchased the book ""Einstein"" from Amazon Kindle",2019-03-16T22:09:00 books_69,"I purchased the book ""How to Win Friends & Influence People in the Digital Age"" from Amazon Kindle","I purchased the book ""How to Win Friends & Influence People in the Digital Age"" from Amazon Kindle",2019-03-11T15:40:00 books_70,"I purchased the book ""The Culture Map"" from Amazon Kindle","I purchased the book ""The Culture Map"" from Amazon Kindle",2019-03-11T00:07:00 books_71,"I purchased the book ""Einstein"" from Amazon Kindle","I purchased the book ""Einstein"" from Amazon Kindle",2019-03-05T17:07:00 books_72,"I purchased the book ""1491"" from Amazon Kindle","I purchased the book ""1491"" from Amazon Kindle",2019-03-05T17:04:00 books_73,"I purchased the book ""The Psychology of Money: Timeless lessons on wealth, greed, and happiness"" from Amazon Kindle","I purchased the book ""The Psychology of Money: Timeless lessons on wealth, greed, and happiness"" from Amazon Kindle",2019-03-05T09:45:00 books_74,"I purchased the book ""The Psychology of Money: Timeless lessons on wealth, greed, and happiness"" from Amazon Kindle","I purchased the book ""The Psychology of Money: Timeless lessons on wealth, greed, and happiness"" from Amazon Kindle",2019-04-29T18:04:00 books_75,"I purchased the book ""The Psychology of Money"" from Amazon Kindle","I purchased the book ""The Psychology of Money"" from Amazon Kindle",2019-04-27T03:18:00 books_76,"I purchased the book ""1491"" from Amazon Kindle","I purchased the book ""1491"" from Amazon Kindle",2019-04-26T00:41:00 books_77,"I purchased the book ""The Boys"" from Amazon Kindle","I purchased the book ""The Boys"" from Amazon Kindle",2019-04-25T14:39:00 books_78,"I purchased the book ""The Boys"" from Amazon Kindle","I purchased the book ""The Boys"" from Amazon Kindle",2019-04-22T17:47:00 books_79,"I purchased the book ""How to Win Friends & Influence People in the Digital Age"" from Amazon Kindle","I purchased the book ""How to Win Friends & Influence People in the Digital Age"" from Amazon Kindle",2019-04-21T15:40:00 books_80,"I purchased the book ""How the World Really Works"" from Amazon Kindle","I purchased the book ""How the World Really Works"" from Amazon Kindle",2019-04-20T22:06:00 books_81,"I purchased the book ""From Strength to Strength"" from Amazon Kindle","I purchased the book ""From Strength to Strength"" from Amazon Kindle",2019-04-18T03:50:00 books_82,"I purchased the book ""How the World Really Works"" from Amazon Kindle","I purchased the book ""How the World Really Works"" from Amazon Kindle",2019-04-14T17:30:00 books_83,"I purchased the book ""1491"" from Amazon Kindle","I purchased the book ""1491"" from Amazon Kindle",2019-04-07T23:17:00 books_84,"I purchased the book ""The Boys"" from Amazon Kindle","I purchased the book ""The Boys"" from Amazon Kindle",2019-04-03T20:41:00 books_85,"I purchased the book ""The Devil's Star"" from Amazon Kindle","I purchased the book ""The Devil's Star"" from Amazon Kindle",2019-03-28T17:36:00 books_86,"I purchased the book ""The Bitcoin Standard"" from Amazon Kindle","I purchased the book ""The Bitcoin Standard"" from Amazon Kindle",2019-03-24T22:41:00 books_87,"I purchased the book ""The Devil's Star"" from Amazon Kindle","I purchased the book ""The Devil's Star"" from Amazon Kindle",2019-03-07T17:36:00 books_88,"I purchased the book ""Mating in Captivity"" from Amazon Kindle","I purchased the book ""Mating in Captivity"" from Amazon Kindle",2019-03-06T03:51:00 books_89,"I purchased the book ""How the World Really Works"" from Amazon Kindle","I purchased the book ""How the World Really Works"" from Amazon Kindle",2019-03-06T03:05:00 books_90,"I purchased the book ""The Lincoln Highway"" from Amazon Kindle","I purchased the book ""The Lincoln Highway"" from Amazon Kindle",2019-03-06T03:04:00 books_91,"I purchased the book ""The Three-Body Problem"" from Amazon Kindle","I purchased the book ""The Three-Body Problem"" from Amazon Kindle",2019-03-04T03:07:00 books_92,"I purchased the book ""Mating in Captivity"" from Amazon Kindle","I purchased the book ""Mating in Captivity"" from Amazon Kindle",2019-03-04T03:07:00 books_93,"I purchased the book ""The Culture Map"" from Amazon Kindle","I purchased the book ""The Culture Map"" from Amazon Kindle",2019-03-04T03:06:00 books_94,"I purchased the book ""The Bitcoin Standard"" from Amazon Kindle","I purchased the book ""The Bitcoin Standard"" from Amazon Kindle",2019-03-03T22:41:00 books_95,"I purchased the book ""The Three-Body Problem"" from Amazon Kindle","I purchased the book ""The Three-Body Problem"" from Amazon Kindle",2019-04-21T19:17:00 books_96,"I purchased the book ""The Ministry for the Future"" from Amazon Kindle","I purchased the book ""The Ministry for the Future"" from Amazon Kindle",2019-04-05T18:59:00 books_97,"I purchased the book ""Benjamin Franklin"" from Amazon Kindle","I purchased the book ""Benjamin Franklin"" from Amazon Kindle",2019-03-28T21:42:00 books_98,"I purchased the book ""The Curious Case of Benjamin Button and Other Jazz Age Tales"" from Amazon Kindle","I purchased the book ""The Curious Case of Benjamin Button and Other Jazz Age Tales"" from Amazon Kindle",2019-03-18T23:42:00 books_99,"I purchased the book ""The House of the Spirits"" from Amazon Kindle","I purchased the book ""The House of the Spirits"" from Amazon Kindle",2019-03-18T23:41:00 books_100,"I purchased the book ""The Ministry for the Future"" from Amazon Kindle","I purchased the book ""The Ministry for the Future"" from Amazon Kindle",2019-03-15T18:59:00 books_101,"I purchased the book ""The Body"" from Amazon Kindle","I purchased the book ""The Body"" from Amazon Kindle",2019-03-08T17:18:00 books_102,"I purchased the book ""Benjamin Franklin"" from Amazon Kindle","I purchased the book ""Benjamin Franklin"" from Amazon Kindle",2019-03-07T21:42:00 books_103,"I purchased the book ""The Curious Case of Benjamin Button and Other Jazz Age Tales"" from Amazon Kindle","I purchased the book ""The Curious Case of Benjamin Button and Other Jazz Age Tales"" from Amazon Kindle",2019-04-27T23:42:00 books_104,"I purchased the book ""The House of the Spirits"" from Amazon Kindle","I purchased the book ""The House of the Spirits"" from Amazon Kindle",2019-04-27T23:41:00 books_105,"I purchased the book ""The Ministry for the Future"" from Amazon Kindle","I purchased the book ""The Ministry for the Future"" from Amazon Kindle",2019-04-24T22:57:00 books_106,"I purchased the book ""Leonardo da Vinci"" from Amazon Kindle","I purchased the book ""Leonardo da Vinci"" from Amazon Kindle",2019-04-24T18:43:00 books_107,"I purchased the book ""The Body"" from Amazon Kindle","I purchased the book ""The Body"" from Amazon Kindle",2019-04-17T17:18:00 books_108,"I purchased the book ""Benjamin Franklin"" from Amazon Kindle","I purchased the book ""Benjamin Franklin"" from Amazon Kindle",2019-04-17T17:16:00 books_109,"I purchased the book ""Leonardo da Vinci"" from Amazon Kindle","I purchased the book ""Leonardo da Vinci"" from Amazon Kindle",2019-04-03T18:43:00 books_111,"I purchased the book ""A Thousand Brains: A New Theory of Intelligence"" from Amazon Kindle","I purchased the book ""A Thousand Brains: A New Theory of Intelligence"" from Amazon Kindle",2019-04-28T16:51:51 books_112,"I purchased the book ""50 Greatest Positive Psychology Quotes: A Beautiful Photo Book of The Most Inspiring Positive Psychological Quotes"" from Amazon Kindle","I purchased the book ""50 Greatest Positive Psychology Quotes: A Beautiful Photo Book of The Most Inspiring Positive Psychological Quotes"" from Amazon Kindle",2019-04-20T16:51:51 books_113,"I purchased the book ""Before the Coffee Gets Cold: A Novel (Before the Coffee Gets Cold Series Book 1)"" from Amazon Kindle","I purchased the book ""Before the Coffee Gets Cold: A Novel (Before the Coffee Gets Cold Series Book 1)"" from Amazon Kindle",2019-03-27T16:51:51 books_114,"I purchased the book ""The Enigma of Reason"" from Amazon Kindle","I purchased the book ""The Enigma of Reason"" from Amazon Kindle",2019-03-24T16:51:51 books_115,"I purchased the book ""Snow Crash: A Novel"" from Amazon Kindle","I purchased the book ""Snow Crash: A Novel"" from Amazon Kindle",2019-03-12T16:51:51 books_267,"I purchased the book ""The Innovators"" from Amazon Kindle","I purchased the book ""The Innovators"" from Amazon Kindle",2019-03-08T16:51:51 books_268,"I purchased the book ""Life 3.0"" from Amazon Kindle","I purchased the book ""Life 3.0"" from Amazon Kindle",2019-03-08T16:51:51 books_269,"I purchased the book ""Total Recall"" from Amazon Kindle","I purchased the book ""Total Recall"" from Amazon Kindle",2019-03-17T16:51:51 books_270,"I purchased the book ""Discovery Trial"" from Amazon Kindle","I purchased the book ""Discovery Trial"" from Amazon Kindle",2019-04-28T16:51:51 exercise_35,I exercised by 08:00: running 39 minutes ,I exercised by 08:00: running 39 minutes ,2019-03-02 08:00:34-08:00 exercise_36,I exercised by 06:55: running 25 minutes ,I exercised by 06:55: running 25 minutes ,2019-03-05 06:55:11-08:00 exercise_37,I exercised by 08:32: running 40 minutes ,I exercised by 08:32: running 40 minutes ,2019-03-07 08:32:33-08:00 exercise_38,I exercised by 07:27: running 51 minutes ,I exercised by 07:27: running 51 minutes ,2019-03-09 07:27:37-08:00 exercise_39,I exercised by 06:49: running 52 minutes ,I exercised by 06:49: running 52 minutes ,2019-03-11 06:49:09-07:00 exercise_40,I exercised by 07:22: running 40 minutes ,I exercised by 07:22: running 40 minutes ,2019-03-13 07:22:20-07:00 exercise_41,I exercised by 06:31: running 59 minutes ,I exercised by 06:31: running 59 minutes ,2019-03-15 06:31:18-07:00 exercise_42,I exercised by 07:11: running 27 minutes ,I exercised by 07:11: running 27 minutes ,2019-03-17 07:11:09-07:00 exercise_43,I exercised by 05:29: running 27 minutes ,I exercised by 05:29: running 27 minutes ,2019-03-18 05:29:42-07:00 exercise_44,I exercised by 06:34: running 54 minutes ,I exercised by 06:34: running 54 minutes ,2019-03-19 06:34:16-07:00 exercise_45,I exercised by 07:19: running 43 minutes ,I exercised by 07:19: running 43 minutes ,2019-03-21 07:19:26-07:00 exercise_46,I exercised by 09:49: running 51 minutes ,I exercised by 09:49: running 51 minutes ,2019-03-23 09:49:54-07:00 exercise_47,I exercised by 06:57: running 25 minutes ,I exercised by 06:57: running 25 minutes ,2019-03-25 06:57:57-07:00 exercise_48,I exercised by 13:16: running 25 minutes ,I exercised by 13:16: running 25 minutes ,2019-03-26 13:16:14-07:00 exercise_49,I exercised by 14:32: running 25 minutes ,I exercised by 14:32: running 25 minutes ,2019-03-28 14:32:20-07:00 exercise_50,I exercised by 14:03: running 26 minutes ,I exercised by 14:03: running 26 minutes ,2019-03-29 14:03:32-07:00 exercise_51,I exercised by 15:42: running 24 minutes ,I exercised by 15:42: running 24 minutes ,2019-03-30 15:42:25-07:00 exercise_52,I exercised by 06:48: running 24 minutes ,I exercised by 06:48: running 24 minutes ,2019-04-01 06:48:07+08:00 exercise_53,I exercised by 00:32: running 41 minutes ,I exercised by 00:32: running 41 minutes ,2019-04-04 00:32:10+08:00 exercise_54,I exercised by 06:15: running 40 minutes ,I exercised by 06:15: running 40 minutes ,2019-04-05 06:15:21-07:00 exercise_55,I exercised by 06:38: running 51 minutes ,I exercised by 06:38: running 51 minutes ,2019-04-07 06:38:31-07:00 exercise_56,I exercised by 06:27: running 39 minutes ,I exercised by 06:27: running 39 minutes ,2019-04-08 06:27:28-07:00 exercise_57,I exercised by 15:25: running 24 minutes ,I exercised by 15:25: running 24 minutes ,2019-04-10 15:25:29-07:00 exercise_58,I exercised by 07:25: running 112 minutes ,I exercised by 07:25: running 112 minutes ,2019-04-12 07:25:13-07:00 exercise_59,I exercised by 05:57: running 26 minutes ,I exercised by 05:57: running 26 minutes ,2019-04-15 05:57:30-07:00 exercise_60,I exercised by 05:18: running 27 minutes ,I exercised by 05:18: running 27 minutes ,2019-04-16 05:18:50-07:00 exercise_61,I exercised by 05:12: running 25 minutes ,I exercised by 05:12: running 25 minutes ,2019-04-18 05:12:15-07:00 exercise_62,I exercised by 05:58: running 25 minutes ,I exercised by 05:58: running 25 minutes ,2019-04-19 05:58:01-07:00 exercise_63,I exercised by 11:14: running 41 minutes ,I exercised by 11:14: running 41 minutes ,2019-04-21 11:14:15-07:00 exercise_64,I exercised by 07:56: running 41 minutes ,I exercised by 07:56: running 41 minutes ,2019-04-23 07:56:33-07:00 exercise_65,I exercised by 07:27: walking 28 minutes ,I exercised by 07:27: walking 28 minutes ,2019-04-24 07:27:16-07:00 exercise_66,I exercised by 08:43: running 52 minutes ,I exercised by 08:43: running 52 minutes ,2019-04-29 08:43:36-07:00 photos_0,"I took a photo of Performance at the performance arena (""Taking the stage."") ","I took a photo of Performance at the performance arena (""Taking the stage."") ",2019-04-18 00:01:26+00:00 photos_1,I took a photo of Egg tart at the shop bakery (Freshly-baked egg tarts!) ,I took a photo of Egg tart at the shop bakery (Freshly-baked egg tarts!) ,2019-03-31 06:58:44+00:00 photos_2,"I took a photo of Very large floating structure at the conference center (""A sea of possibilities."") ","I took a photo of Very large floating structure at the conference center (""A sea of possibilities."") ",2019-04-15 14:58:30+00:00 photos_3,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-25 15:57:11+00:00 photos_4,"I took a photo of Receipt at the clothing store of ""Texas Home on Greg Street"" (""New outfit, here I come!"") ","I took a photo of Receipt at the clothing store of ""Texas Home on Greg Street"" (""New outfit, here I come!"") ",2019-03-03 07:41:47-08:00 photos_5,"I took a photo of Receipt at the bookstore of ""Texas Home on Greg Street"" (""Booked and paid!"") ","I took a photo of Receipt at the bookstore of ""Texas Home on Greg Street"" (""Booked and paid!"") ",2019-03-03 07:42:11-08:00 photos_6,"I took a photo of Prescription drug at the pharmacy of ""Texas Home on Greg Street"" (""Filling a prescription."") ","I took a photo of Prescription drug at the pharmacy of ""Texas Home on Greg Street"" (""Filling a prescription."") ",2019-03-03 07:42:35-08:00 photos_7,"I took a photo of Boy scouts of america at the recreation room of Biking in Randall County, Texas (""Exploring new possibilities."") ","I took a photo of Boy scouts of america at the recreation room of Biking in Randall County, Texas (""Exploring new possibilities."") ",2019-03-05 19:36:00-08:00 photos_8,"I took a photo of Real estate at the residential neighborhood of ""Texas Home on Greg Street"" (""A Home for Every Family"") ","I took a photo of Real estate at the residential neighborhood of ""Texas Home on Greg Street"" (""A Home for Every Family"") ",2019-03-06 19:46:40-08:00 photos_9,"I took a photo of Hangikjöt at the sauna (""A traditional Icelandic treat in a cozy setting."") ","I took a photo of Hangikjöt at the sauna (""A traditional Icelandic treat in a cozy setting."") ",2019-03-11 16:27:43+00:00 photos_10,"I took a photo of Auditorium at the auditorium of Helium Road, Texas (""A full house."") ","I took a photo of Auditorium at the auditorium of Helium Road, Texas (""A full house."") ",2019-03-18 09:20:41-07:00 photos_11,"I took a photo of Academic conference at the conference center of Helium Road, Texas (""Exploring new ideas at the conference."") ","I took a photo of Academic conference at the conference center of Helium Road, Texas (""Exploring new ideas at the conference."") ",2019-03-18 09:31:03-07:00 photos_12,"I took a photo of Presentation at the lecture room of Helium Road, Texas (""Sharing knowledge."") ","I took a photo of Presentation at the lecture room of Helium Road, Texas (""Sharing knowledge."") ",2019-03-18 10:43:51-07:00 photos_13,"I took a photo of Presentation at the lecture room of Helium Road, Texas (""Sharing knowledge."") ","I took a photo of Presentation at the lecture room of Helium Road, Texas (""Sharing knowledge."") ",2019-03-18 10:44:49-07:00 photos_14,"I took a photo of Academic conference at the reception of Helium Road, Texas (""Gathering to learn and share knowledge."") ","I took a photo of Academic conference at the reception of Helium Road, Texas (""Gathering to learn and share knowledge."") ",2019-03-18 13:00:08-07:00 photos_15,"I took a photo of Hospital at the hospital of Helium Road, Texas (""Healing begins here."") ","I took a photo of Hospital at the hospital of Helium Road, Texas (""Healing begins here."") ",2019-03-18 15:52:33-07:00 photos_16,"I took a photo of Academic conference at the conference room of Helium Road, Texas (Academic minds come together.) ","I took a photo of Academic conference at the conference room of Helium Road, Texas (Academic minds come together.) ",2019-03-18 16:05:51-07:00 photos_17,"I took a photo of Invoice at the jail cell of ""Texas Home on Greg Street"" (""Incarcerated."") ","I took a photo of Invoice at the jail cell of ""Texas Home on Greg Street"" (""Incarcerated."") ",2019-03-19 12:32:09-07:00 photos_18,"I took a photo of Shopping list at the supermarket of Exploring Randall County, Texas (Grocery shopping time!) ","I took a photo of Shopping list at the supermarket of Exploring Randall County, Texas (Grocery shopping time!) ",2019-03-22 19:06:44-07:00 photos_19,"I took a photo of Camp at the campsite of Exploring Castro County, Texas (Exploring nature.) ","I took a photo of Camp at the campsite of Exploring Castro County, Texas (Exploring nature.) ",2019-03-23 09:36:05-07:00 photos_20,"I took a photo of Academic certificate at the archive of Exploring Seoul National University (""Achievement Recognized"") ","I took a photo of Academic certificate at the archive of Exploring Seoul National University (""Achievement Recognized"") ",2019-03-27 11:42:43+09:00 photos_21,"I took a photo of Academic certificate at the office of Exploring Seoul National University (""Achievement Recognized"") ","I took a photo of Academic certificate at the office of Exploring Seoul National University (""Achievement Recognized"") ",2019-03-27 11:42:50+09:00 photos_22,"I took a photo of Academic conference at the conference center of Exploring Seoul National University (""Exploring new ideas at the conference."") ","I took a photo of Academic conference at the conference center of Exploring Seoul National University (""Exploring new ideas at the conference."") ",2019-03-27 13:45:36+09:00 photos_23,"I took a photo of University at the conference center of Exploring Seoul National University (""Uniting for success."") ","I took a photo of University at the conference center of Exploring Seoul National University (""Uniting for success."") ",2019-03-27 13:45:47+09:00 photos_24,"I took a photo of University at the campus of Exploring Seoul National University (""Exploring the University Campus"") ","I took a photo of University at the campus of Exploring Seoul National University (""Exploring the University Campus"") ",2019-03-27 13:45:47+09:00 photos_25,I took a photo of Fish products at the fishpond of Exploring Seoul's Seocho-gu (Fresh Fish Catch!) ,I took a photo of Fish products at the fishpond of Exploring Seoul's Seocho-gu (Fresh Fish Catch!) ,2019-03-27 18:36:03+09:00 photos_26,I took a photo of Airport at the airport terminal of Incheon Int'l Airport Terminal 1 (Traveling the world.) ,I took a photo of Airport at the airport terminal of Incheon Int'l Airport Terminal 1 (Traveling the world.) ,2019-03-28 06:38:09+09:00 photos_27,"I took a photo of Toyota voltz at the industrial area (""Powering the industrial future."") ","I took a photo of Toyota voltz at the industrial area (""Powering the industrial future."") ",2019-03-28 04:34:33+00:00 photos_28,I took a photo of Tsukudani at the restaurant of Roppongi's Asahi Shokudo (Tasty Tsukudani!) ,I took a photo of Tsukudani at the restaurant of Roppongi's Asahi Shokudo (Tasty Tsukudani!) ,2019-03-28 20:38:13+09:00 photos_29,I took a photo of Nabemono at the sushi bar of Roppongi's Asahi Shokudo (Enjoying a hot pot of Nabemono.) ,I took a photo of Nabemono at the sushi bar of Roppongi's Asahi Shokudo (Enjoying a hot pot of Nabemono.) ,2019-03-28 20:47:46+09:00 photos_30,"I took a photo of Ainu cuisine at the restaurant of Roppongi's Asahi Shokudo (""Delicious Ainu cuisine!"") ","I took a photo of Ainu cuisine at the restaurant of Roppongi's Asahi Shokudo (""Delicious Ainu cuisine!"") ",2019-03-28 21:36:34+09:00 photos_31,I took a photo of Sashimi at the sushi bar of Roppongi's Asahi Shokudo (Freshly-sliced sashimi.) ,I took a photo of Sashimi at the sushi bar of Roppongi's Asahi Shokudo (Freshly-sliced sashimi.) ,2019-03-28 23:25:42+09:00 photos_32,"I took a photo of Quince dessert at the sushi bar of Roppongi's Asahi Shokudo (""A sweet treat!"") ","I took a photo of Quince dessert at the sushi bar of Roppongi's Asahi Shokudo (""A sweet treat!"") ",2019-03-28 23:25:52+09:00 photos_33,"I took a photo of Muesli at the cafeteria of Grand Hyatt Tokyo (""A healthy start to the day!"") ","I took a photo of Muesli at the cafeteria of Grand Hyatt Tokyo (""A healthy start to the day!"") ",2019-03-29 09:12:12+09:00 photos_34,"I took a photo of Taishōgoto at the asia temple of Moto-Azabu, Tokyo (""A traditional Japanese instrument."") ","I took a photo of Taishōgoto at the asia temple of Moto-Azabu, Tokyo (""A traditional Japanese instrument."") ",2019-03-29 10:08:09+09:00 photos_35,"I took a photo of Cherry blossom at the street of Aiiku Hospital in Tokyo (""Spring beauty."") ","I took a photo of Cherry blossom at the street of Aiiku Hospital in Tokyo (""Spring beauty."") ",2019-03-29 10:13:09+09:00 photos_36,"I took a photo of Koinobori at the urban canal of Exploring Naka-Meguro, Tokyo (Celebrating Children's Day in the city.) ","I took a photo of Koinobori at the urban canal of Exploring Naka-Meguro, Tokyo (Celebrating Children's Day in the city.) ",2019-03-29 10:53:41+09:00 photos_37,"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ","I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ",2019-03-29 10:54:16+09:00 photos_38,"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ","I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ",2019-03-29 10:54:15+09:00 photos_39,"I took a photo of Koinobori at the urban canal of Exploring Naka-Meguro, Tokyo (Celebrating Children's Day in the city.) ","I took a photo of Koinobori at the urban canal of Exploring Naka-Meguro, Tokyo (Celebrating Children's Day in the city.) ",2019-03-29 10:54:51+09:00 photos_40,"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ","I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ",2019-03-29 10:54:59+09:00 photos_41,"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ","I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ",2019-03-29 10:56:04+09:00 photos_42,"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ","I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (""Urban beauty."") ",2019-03-29 10:56:37+09:00 photos_43,"I took a photo of Gate at the asia temple of University of Tokyo, Tokyo (""Ancient Temple Gate"") ","I took a photo of Gate at the asia temple of University of Tokyo, Tokyo (""Ancient Temple Gate"") ",2019-03-29 12:28:58+09:00 photos_44,"I took a photo of Cherry blossom at the plaza of Tokyo's Shibadaimon (""Spring in the city."") ","I took a photo of Cherry blossom at the plaza of Tokyo's Shibadaimon (""Spring in the city."") ",2019-03-29 16:15:45+09:00 photos_45,"I took a photo of Yoga at the tower of Tokyo's Shibakoen (""Finding balance."") ","I took a photo of Yoga at the tower of Tokyo's Shibakoen (""Finding balance."") ",2019-03-29 16:23:59+09:00 photos_46,I took a photo of Picnic at the picnic area of Tokyo's Shibakoen (Enjoying a picnic in the park.) ,I took a photo of Picnic at the picnic area of Tokyo's Shibakoen (Enjoying a picnic in the park.) ,2019-03-29 16:24:07+09:00 photos_47,"I took a photo of Cherry blossom at the tower of Tokyo's Shiba Junior & Senior High School (""A touch of spring."") ","I took a photo of Cherry blossom at the tower of Tokyo's Shiba Junior & Senior High School (""A touch of spring."") ",2019-03-29 16:24:56+09:00 photos_48,"I took a photo of Cherry blossom at the tower of Tokyo's Shibakoen (""A touch of spring."") ","I took a photo of Cherry blossom at the tower of Tokyo's Shibakoen (""A touch of spring."") ",2019-03-29 16:25:06+09:00 photos_49,"I took a photo of Cherry blossom at the tower of Tokyo Prince Hotel (""A touch of spring."") ","I took a photo of Cherry blossom at the tower of Tokyo Prince Hotel (""A touch of spring."") ",2019-03-29 16:26:16+09:00 photos_50,I took a photo of Katsuobushi at the restaurant of Exploring Roppongi Hills (Freshly shaved Katsuobushi.) ,I took a photo of Katsuobushi at the restaurant of Exploring Roppongi Hills (Freshly shaved Katsuobushi.) ,2019-03-29 18:25:08+09:00 photos_51,"I took a photo of Dining room at the conference room of Exploring Roppongi Hills (""A place to gather and share ideas."") ","I took a photo of Dining room at the conference room of Exploring Roppongi Hills (""A place to gather and share ideas."") ",2019-03-29 18:25:24+09:00 photos_52,"I took a photo of Anago at the sushi bar of Exploring Roppongi Hills (""Freshly made Anago sushi!"") ","I took a photo of Anago at the sushi bar of Exploring Roppongi Hills (""Freshly made Anago sushi!"") ",2019-03-29 18:26:53+09:00 photos_53,I took a photo of Katsuobushi at the restaurant of Exploring Roppongi Hills (Freshly shaved Katsuobushi.) ,I took a photo of Katsuobushi at the restaurant of Exploring Roppongi Hills (Freshly shaved Katsuobushi.) ,2019-03-29 18:27:16+09:00 photos_54,"I took a photo of Osechi at the sushi bar of Exploring Roppongi Hills, Tokyo (Freshly prepared osechi sushi.) ","I took a photo of Osechi at the sushi bar of Exploring Roppongi Hills, Tokyo (Freshly prepared osechi sushi.) ",2019-03-29 19:20:53+09:00 photos_55,"I took a photo of Taro cake at the restaurant of Exploring Roppongi Hills, Tokyo (Delicious Taro Cake!) ","I took a photo of Taro cake at the restaurant of Exploring Roppongi Hills, Tokyo (Delicious Taro Cake!) ",2019-03-29 21:28:05+09:00 photos_56,"I took a photo of Aircraft cabin at the airplane cabin of Narita, Japan (Ready for takeoff.) ","I took a photo of Aircraft cabin at the airplane cabin of Narita, Japan (Ready for takeoff.) ",2019-03-30 14:15:37+09:00 photos_57,"I took a photo of Espressino at the coffee shop of Cama Cafe in Huashan, Taipei (Caffeine fix.) ","I took a photo of Espressino at the coffee shop of Cama Cafe in Huashan, Taipei (Caffeine fix.) ",2019-03-31 10:51:04+08:00 photos_58,"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ","I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ",2019-03-31 10:51:41+08:00 photos_59,"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ","I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ",2019-03-31 11:17:52+08:00 photos_60,"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ","I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ",2019-03-31 11:17:57+08:00 photos_61,"I took a photo of Award at the coffee shop of Cama Cafe in Huashan, Taipei (""Celebrating success!"") ","I took a photo of Award at the coffee shop of Cama Cafe in Huashan, Taipei (""Celebrating success!"") ",2019-03-31 11:23:27+08:00 photos_62,"I took a photo of Café at the sushi bar of Cama Cafe in Huashan, Taipei (Fresh sushi and drinks.) ","I took a photo of Café at the sushi bar of Cama Cafe in Huashan, Taipei (Fresh sushi and drinks.) ",2019-03-31 11:29:26+08:00 photos_63,"I took a photo of Café at the bar of Cama Cafe in Huashan, Taipei (""A cozy spot for a cup of coffee."") ","I took a photo of Café at the bar of Cama Cafe in Huashan, Taipei (""A cozy spot for a cup of coffee."") ",2019-03-31 11:29:35+08:00 photos_64,"I took a photo of Skyscraper at the skyscraper of Exploring Eslite XinYi Store (""Reaching new heights."") ","I took a photo of Skyscraper at the skyscraper of Exploring Eslite XinYi Store (""Reaching new heights."") ",2019-03-31 13:38:53+08:00 photos_65,"I took a photo of Tower running at the skyscraper of Exploring Eslite XinYi Store (""Reaching new heights."") ","I took a photo of Tower running at the skyscraper of Exploring Eslite XinYi Store (""Reaching new heights."") ",2019-03-31 13:38:56+08:00 photos_66,"I took a photo of Landmark at the tower of Exploring Taipei City Hall (""A view from the top."") ","I took a photo of Landmark at the tower of Exploring Taipei City Hall (""A view from the top."") ",2019-03-31 14:02:19+08:00 photos_67,"I took a photo of Presidential palace at the conference center of Exploring Xinglong Village, Taiwan (""The seat of power."") ","I took a photo of Presidential palace at the conference center of Exploring Xinglong Village, Taiwan (""The seat of power."") ",2019-03-31 14:07:01+08:00 photos_68,"I took a photo of Impatiens at the botanical garden of Exploring Xinglong Village, Taiwan (""A burst of color."") ","I took a photo of Impatiens at the botanical garden of Exploring Xinglong Village, Taiwan (""A burst of color."") ",2019-03-31 14:08:35+08:00 photos_69,"I took a photo of Presidential palace at the legislative chamber of ""Exploring Sun Yat-sen Memorial Hall"" (""The seat of power."") ","I took a photo of Presidential palace at the legislative chamber of ""Exploring Sun Yat-sen Memorial Hall"" (""The seat of power."") ",2019-03-31 14:11:10+08:00 photos_70,"I took a photo of White mulberry at the coffee shop of Bigtom美國冰淇淋咖啡館 in Chezeng, Taipei (""A sweet treat!"") ","I took a photo of White mulberry at the coffee shop of Bigtom美國冰淇淋咖啡館 in Chezeng, Taipei (""A sweet treat!"") ",2019-03-31 14:25:17+08:00 photos_71,"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ","I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ",2019-04-01 11:46:03+08:00 photos_72,"I took a photo of Café at the coffee shop of Cama Cafe in Huashan, Taipei (""A cup of coffee and a moment of peace."") ","I took a photo of Café at the coffee shop of Cama Cafe in Huashan, Taipei (""A cup of coffee and a moment of peace."") ",2019-04-01 11:46:13+08:00 photos_73,"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ","I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (""A cozy spot for coffee and conversation."") ",2019-04-01 11:46:18+08:00 photos_74,"I took a photo of Kaya toast at the delicatessen of Cama Cafe in Huashan, Taipei (""A classic Singaporean breakfast."") ","I took a photo of Kaya toast at the delicatessen of Cama Cafe in Huashan, Taipei (""A classic Singaporean breakfast."") ",2019-04-01 11:50:40+08:00 photos_75,"I took a photo of Café at the coffee shop of Cama Cafe in Huashan, Taipei (""A cup of coffee and a moment of peace."") ","I took a photo of Café at the coffee shop of Cama Cafe in Huashan, Taipei (""A cup of coffee and a moment of peace."") ",2019-04-01 13:05:56+08:00 photos_76,"I took a photo of Motherboard at the junkyard of Taipei's KuanHua Market (""Outdated technology discarded."") ","I took a photo of Motherboard at the junkyard of Taipei's KuanHua Market (""Outdated technology discarded."") ",2019-04-01 13:10:47+08:00 photos_77,"I took a photo of Taiwanese opera at the legislative chamber of Exploring Chiang Kai-shek Memorial Hall (""Traditional Taiwanese Opera in the Legislative Chamber"") ","I took a photo of Taiwanese opera at the legislative chamber of Exploring Chiang Kai-shek Memorial Hall (""Traditional Taiwanese Opera in the Legislative Chamber"") ",2019-04-01 14:08:24+08:00 photos_78,"I took a photo of Statue at the legislative chamber of Exploring Chiang Kai-shek Memorial Hall (""A symbol of democracy."") ","I took a photo of Statue at the legislative chamber of Exploring Chiang Kai-shek Memorial Hall (""A symbol of democracy."") ",2019-04-01 14:09:49+08:00 photos_79,"I took a photo of Statue at the legislative chamber of Taipei's Democracy Boulevard (""A symbol of democracy."") ","I took a photo of Statue at the legislative chamber of Taipei's Democracy Boulevard (""A symbol of democracy."") ",2019-04-01 14:09:52+08:00 photos_80,"I took a photo of Presidential palace at the asia temple of Exploring Chiang Kai-shek Memorial Hall (""The Presidential Palace of Asia."") ","I took a photo of Presidential palace at the asia temple of Exploring Chiang Kai-shek Memorial Hall (""The Presidential Palace of Asia."") ",2019-04-01 14:12:25+08:00 photos_81,"I took a photo of Presidential palace at the asia temple of Exploring Longtsakoo, Taiwan (""The Presidential Palace of Asia."") ","I took a photo of Presidential palace at the asia temple of Exploring Longtsakoo, Taiwan (""The Presidential Palace of Asia."") ",2019-04-01 14:13:29+08:00 photos_82,"I took a photo of Chinese architecture at the asia temple of Exploring Chiang Kai-shek Memorial Hall (""Ancient beauty."") ","I took a photo of Chinese architecture at the asia temple of Exploring Chiang Kai-shek Memorial Hall (""Ancient beauty."") ",2019-04-01 14:19:18+08:00 photos_83,"I took a photo of Chinese architecture at the asia temple of Exploring Longtsakoo, Taipei (""Ancient beauty."") ","I took a photo of Chinese architecture at the asia temple of Exploring Longtsakoo, Taipei (""Ancient beauty."") ",2019-04-01 14:32:33+08:00 photos_84,"I took a photo of Chinese architecture at the asia temple of Exploring Longtsakoo, Taiwan (""Ancient beauty."") ","I took a photo of Chinese architecture at the asia temple of Exploring Longtsakoo, Taiwan (""Ancient beauty."") ",2019-04-01 14:32:43+08:00 photos_85,"I took a photo of Presidential palace at the asia temple of Taipei's Liberty Square (""The Presidential Palace of Asia."") ","I took a photo of Presidential palace at the asia temple of Taipei's Liberty Square (""The Presidential Palace of Asia."") ",2019-04-01 14:34:37+08:00 photos_86,"I took a photo of Observation tower at the tower of Photographing Platform in Taipei (""A view from the top."") ","I took a photo of Observation tower at the tower of Photographing Platform in Taipei (""A view from the top."") ",2019-04-01 18:04:00+08:00 photos_87,"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (""A majestic view."") ","I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (""A majestic view."") ",2019-04-01 18:10:42+08:00 photos_88,"I took a photo of Landmark at the tower of Exploring Liuhe Village Trail (""A view from the top."") ","I took a photo of Landmark at the tower of Exploring Liuhe Village Trail (""A view from the top."") ",2019-04-01 18:16:02+08:00 photos_89,I took a photo of Taiwan passport at the downtown of Exploring Taipei: 梅花球場 (Exploring Taiwan.) ,I took a photo of Taiwan passport at the downtown of Exploring Taipei: 梅花球場 (Exploring Taiwan.) ,2019-04-01 18:16:44+08:00 photos_90,"I took a photo of Landmark at the tower of Exploring Xiangshan Tunnel (""A view from the top."") ","I took a photo of Landmark at the tower of Exploring Xiangshan Tunnel (""A view from the top."") ",2019-04-01 18:18:23+08:00 photos_91,"I took a photo of Landmark at the tower of Exploring Xiangshan Tunnel (""A view from the top."") ","I took a photo of Landmark at the tower of Exploring Xiangshan Tunnel (""A view from the top."") ",2019-04-01 18:18:34+08:00 photos_92,"I took a photo of Landmark at the tower of Exploring Taipei from the Xinyi District (""A view from the top."") ","I took a photo of Landmark at the tower of Exploring Taipei from the Xinyi District (""A view from the top."") ",2019-04-01 18:18:54+08:00 photos_93,"I took a photo of Taiwan passport at the downtown of Exploring Sanli Village, Taipei (Exploring Taiwan.) ","I took a photo of Taiwan passport at the downtown of Exploring Sanli Village, Taipei (Exploring Taiwan.) ",2019-04-01 18:19:16+08:00 photos_94,"I took a photo of Mount scenery at the mountain of Exploring Sanli Village, Taipei (""Majestic beauty."") ","I took a photo of Mount scenery at the mountain of Exploring Sanli Village, Taipei (""Majestic beauty."") ",2019-04-01 18:27:54+08:00 photos_95,"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (""A majestic view."") ","I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (""A majestic view."") ",2019-04-01 18:28:24+08:00 photos_96,"I took a photo of Taiwan passport at the tower of Exploring Sanli Village, Taipei (Exploring Taiwan.) ","I took a photo of Taiwan passport at the tower of Exploring Sanli Village, Taipei (Exploring Taiwan.) ",2019-04-01 18:30:30+08:00 photos_97,"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (""A majestic view."") ","I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (""A majestic view."") ",2019-04-01 18:30:38+08:00 photos_98,"I took a photo of Mount scenery at the mountain of Exploring Sanli Village, Taipei (""Majestic beauty."") ","I took a photo of Mount scenery at the mountain of Exploring Sanli Village, Taipei (""Majestic beauty."") ",2019-04-01 18:30:50+08:00 photos_99,"I took a photo of Mount scenery at the residential neighborhood of Exploring Sanli Village, Taipei (""A peaceful view."") ","I took a photo of Mount scenery at the residential neighborhood of Exploring Sanli Village, Taipei (""A peaceful view."") ",2019-04-01 18:33:02+08:00 photos_100,"I took a photo of Control tower at the tower of Photographing Platform in Taipei (""A view from the top."") ","I took a photo of Control tower at the tower of Photographing Platform in Taipei (""A view from the top."") ",2019-04-01 18:33:52+08:00 photos_101,"I took a photo of Landmark at the tower of ""Photography Platform at 101 Tower"" (""A view from the top."") ","I took a photo of Landmark at the tower of ""Photography Platform at 101 Tower"" (""A view from the top."") ",2019-04-01 18:34:03+08:00 photos_102,I took a photo of Taiwan passport at the skyscraper of Exploring Taipei: 梅花球場 (Exploring the world from Taiwan.) ,I took a photo of Taiwan passport at the skyscraper of Exploring Taipei: 梅花球場 (Exploring the world from Taiwan.) ,2019-04-01 18:34:13+08:00 photos_103,I took a photo of Taiwan passport at the tower of Exploring Taipei: 梅花球場 (Exploring Taiwan.) ,I took a photo of Taiwan passport at the tower of Exploring Taipei: 梅花球場 (Exploring Taiwan.) ,2019-04-01 18:34:18+08:00 photos_104,"I took a photo of Youtiao at the tower of Exploring Taipei: 梅花球場 (""Youtiao in the Tower"") ","I took a photo of Youtiao at the tower of Exploring Taipei: 梅花球場 (""Youtiao in the Tower"") ",2019-04-01 18:44:00+08:00 photos_105,I took a photo of Panorama at the park of Exploring Nature at 象山自然步道 (Enjoying the view.) ,I took a photo of Panorama at the park of Exploring Nature at 象山自然步道 (Enjoying the view.) ,2019-04-01 18:47:11+08:00 photos_106,"I took a photo of Tower at the tower of Exploring Taipei's Elephant Mountain Trail (""A view from the top."") ","I took a photo of Tower at the tower of Exploring Taipei's Elephant Mountain Trail (""A view from the top."") ",2019-04-01 18:54:00+08:00 photos_107,"I took a photo of Self-help book at the bookstore of Randall County, Texas (""Find your path to success."") ","I took a photo of Self-help book at the bookstore of Randall County, Texas (""Find your path to success."") ",2019-04-02 19:09:25-07:00 photos_108,"I took a photo of Self-help book at the pantry of Randall County, Texas (""Finding Solutions at Home"") ","I took a photo of Self-help book at the pantry of Randall County, Texas (""Finding Solutions at Home"") ",2019-04-02 19:10:05-07:00 photos_109,"I took a photo of Self-help book at the bookstore of Randall County, Texas (""Find your path to success."") ","I took a photo of Self-help book at the bookstore of Randall County, Texas (""Find your path to success."") ",2019-04-02 19:16:56-07:00 photos_110,"I took a photo of Invoice at the hotel room of ""Texas Home on Greg Street"" (""Hotel Room Invoice"") ","I took a photo of Invoice at the hotel room of ""Texas Home on Greg Street"" (""Hotel Room Invoice"") ",2019-04-03 08:53:44-07:00 photos_111,"I took a photo of Lupinus mutabilis at the botanical garden of ""Texas Home on Greg Street"" (""A splash of color."") ","I took a photo of Lupinus mutabilis at the botanical garden of ""Texas Home on Greg Street"" (""A splash of color."") ",2019-04-06 12:16:12-07:00 photos_112,"I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ","I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ",2019-04-06 12:16:37-07:00 photos_113,"I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ","I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ",2019-04-06 12:16:36-07:00 photos_114,"I took a photo of Fernleaf lavender at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ","I took a photo of Fernleaf lavender at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ",2019-04-06 12:17:05-07:00 photos_115,"I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ","I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ",2019-04-06 12:17:19-07:00 photos_116,"I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ","I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ",2019-04-06 12:17:32-07:00 photos_117,"I took a photo of Smoketree at the formal garden of ""Texas Home on Greg Street"" (""A tranquil oasis in the garden."") ","I took a photo of Smoketree at the formal garden of ""Texas Home on Greg Street"" (""A tranquil oasis in the garden."") ",2019-04-06 12:17:40-07:00 photos_118,"I took a photo of Fernleaf lavender at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ","I took a photo of Fernleaf lavender at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ",2019-04-10 15:59:42-07:00 photos_119,"I took a photo of Fernleaf lavender at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ","I took a photo of Fernleaf lavender at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ",2019-04-10 15:59:41-07:00 photos_120,"I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ","I took a photo of Lavandula lanata at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ",2019-04-11 16:03:08-07:00 photos_121,"I took a photo of Aesculus californica at the orchard of ""Texas Home on Greg Street"" (California Buckeye in bloom.) ","I took a photo of Aesculus californica at the orchard of ""Texas Home on Greg Street"" (California Buckeye in bloom.) ",2019-04-11 17:50:51-07:00 photos_122,"I took a photo of Calamondin at the orchard of ""Texas Home on Greg Street"" (A burst of citrus in the orchard.) ","I took a photo of Calamondin at the orchard of ""Texas Home on Greg Street"" (A burst of citrus in the orchard.) ",2019-04-11 17:50:53-07:00 photos_123,"I took a photo of Fruit tree at the orchard of ""Texas Home on Greg Street"" (""A bounty of fruit."") ","I took a photo of Fruit tree at the orchard of ""Texas Home on Greg Street"" (""A bounty of fruit."") ",2019-04-11 17:51:04-07:00 photos_124,"I took a photo of Crabapple at the orchard of ""Texas Home on Greg Street"" (""A splash of color."") ","I took a photo of Crabapple at the orchard of ""Texas Home on Greg Street"" (""A splash of color."") ",2019-04-11 17:51:03-07:00 photos_125,"I took a photo of Fernleaf lavender at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ","I took a photo of Fernleaf lavender at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ",2019-04-13 13:08:12-07:00 photos_126,"I took a photo of Fernleaf lavender at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ","I took a photo of Fernleaf lavender at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ",2019-04-13 13:23:32-07:00 photos_127,"I took a photo of Eschscholzia californica at the yard of ""Texas Home on Greg Street"" (California Poppies in bloom.) ","I took a photo of Eschscholzia californica at the yard of ""Texas Home on Greg Street"" (California Poppies in bloom.) ",2019-04-13 13:23:49-07:00 photos_128,"I took a photo of Fernleaf lavender at the yard of ""Texas Home on Greg Street"" (""Fragrant beauty."") ","I took a photo of Fernleaf lavender at the yard of ""Texas Home on Greg Street"" (""Fragrant beauty."") ",2019-04-13 13:24:21-07:00 photos_129,"I took a photo of Rock rose at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ","I took a photo of Rock rose at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ",2019-04-14 08:23:09-07:00 photos_130,"I took a photo of Rock rose at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ","I took a photo of Rock rose at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ",2019-04-14 08:23:14-07:00 photos_131,"I took a photo of Rock rose at the botanical garden of ""Texas Home on Greg Street"" (""Beauty in the Garden"") ","I took a photo of Rock rose at the botanical garden of ""Texas Home on Greg Street"" (""Beauty in the Garden"") ",2019-04-14 11:09:42-07:00 photos_132,"I took a photo of Rock rose at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ","I took a photo of Rock rose at the vegetation desert of ""Texas Home on Greg Street"" (""A splash of color in the desert."") ",2019-04-14 11:09:56-07:00 photos_133,"I took a photo of Eco hotel at the outdoor hotel of Vancouver's Canada Place (""A peaceful retreat in nature."") ","I took a photo of Eco hotel at the outdoor hotel of Vancouver's Canada Place (""A peaceful retreat in nature."") ",2019-04-14 19:19:06-07:00 photos_134,"I took a photo of Convention center at the roof garden of Vancouver's Canada Place (""A view from above."") ","I took a photo of Convention center at the roof garden of Vancouver's Canada Place (""A view from above."") ",2019-04-14 19:28:23-07:00 photos_135,"I took a photo of Cable-stayed bridge at the bridge of Exploring Gastown, Vancouver (""A modern marvel."") ","I took a photo of Cable-stayed bridge at the bridge of Exploring Gastown, Vancouver (""A modern marvel."") ",2019-04-14 20:40:40-07:00 photos_136,"I took a photo of Convention center at the outdoor hotel of Vancouver's Canada Place (""A gathering place for all."") ","I took a photo of Convention center at the outdoor hotel of Vancouver's Canada Place (""A gathering place for all."") ",2019-04-15 08:03:01-07:00 photos_137,"I took a photo of Panorama at the conference center of Vancouver's Canada Place (""A view of the conference center."") ","I took a photo of Panorama at the conference center of Vancouver's Canada Place (""A view of the conference center."") ",2019-04-15 08:03:20-07:00 photos_138,"I took a photo of Shoe at the shoe shop of Vancouver's Canada Place (""Step into style."") ","I took a photo of Shoe at the shoe shop of Vancouver's Canada Place (""Step into style."") ",2019-04-15 12:16:09-07:00 photos_139,"I took a photo of Veggie burger at the fastfood restaurant of Luxury in Gastown, Vancouver (""Tasty and healthy!"") ","I took a photo of Veggie burger at the fastfood restaurant of Luxury in Gastown, Vancouver (""Tasty and healthy!"") ",2019-04-15 12:34:01-07:00 photos_140,"I took a photo of Electric griddle at the kitchen of Gastown Nail Salon (""Cooking made easy!"") ","I took a photo of Electric griddle at the kitchen of Gastown Nail Salon (""Cooking made easy!"") ",2019-04-15 13:45:18-07:00 photos_141,"I took a photo of Food warmer at the indoor booth of Vancouver Convention Centre West (""Keeping it warm."") ","I took a photo of Food warmer at the indoor booth of Vancouver Convention Centre West (""Keeping it warm."") ",2019-04-15 13:47:29-07:00 photos_142,"I took a photo of Food dehydrator at the kitchen of Gastown Nail Salon (""Preserving the harvest."") ","I took a photo of Food dehydrator at the kitchen of Gastown Nail Salon (""Preserving the harvest."") ",2019-04-15 13:47:35-07:00 photos_143,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,2019-04-15 14:19:43-07:00 photos_144,"I took a photo of Single-origin coffee at the coffee shop of Vancouver Convention Centre West (""Freshly brewed."") ","I took a photo of Single-origin coffee at the coffee shop of Vancouver Convention Centre West (""Freshly brewed."") ",2019-04-15 14:19:45-07:00 photos_145,"I took a photo of Single-origin coffee at the coffee shop of Vancouver Convention Centre West (""Freshly brewed."") ","I took a photo of Single-origin coffee at the coffee shop of Vancouver Convention Centre West (""Freshly brewed."") ",2019-04-15 14:19:50-07:00 photos_146,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,2019-04-15 14:19:55-07:00 photos_147,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,2019-04-15 14:19:56-07:00 photos_148,I took a photo of Portafilter at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,I took a photo of Portafilter at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,2019-04-15 14:20:02-07:00 photos_149,I took a photo of Portafilter at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,I took a photo of Portafilter at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,2019-04-15 14:20:03-07:00 photos_150,I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,2019-04-15 14:20:07-07:00 photos_151,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,2019-04-15 14:20:07-07:00 photos_152,I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,2019-04-15 14:20:08-07:00 photos_153,I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ,2019-04-15 14:20:19-07:00 photos_154,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ,2019-04-15 14:20:20-07:00 photos_155,"I took a photo of Harbor at the harbor of Gastown's Bellaggio Café & Gelateria (""A peaceful view."") ","I took a photo of Harbor at the harbor of Gastown's Bellaggio Café & Gelateria (""A peaceful view."") ",2019-04-15 15:21:26-07:00 photos_156,I took a photo of Victoria day at the harbor of Vancouver's Canada Place (Celebrating Victoria Day in the harbor.) ,I took a photo of Victoria day at the harbor of Vancouver's Canada Place (Celebrating Victoria Day in the harbor.) ,2019-04-15 15:25:50-07:00 photos_157,I took a photo of Panorama at the heliport of Vancouver's Canada Place (Aerial view of the heliport.) ,I took a photo of Panorama at the heliport of Vancouver's Canada Place (Aerial view of the heliport.) ,2019-04-15 15:25:58-07:00 photos_158,"I took a photo of Stage at the indoor stage of Gastown Nail Salon (""Ready for the show!"") ","I took a photo of Stage at the indoor stage of Gastown Nail Salon (""Ready for the show!"") ",2019-04-15 18:30:43-07:00 photos_159,"I took a photo of Stage at the indoor stage of Vancouver Convention Centre West (""Ready for the show!"") ","I took a photo of Stage at the indoor stage of Vancouver Convention Centre West (""Ready for the show!"") ",2019-04-15 18:30:48-07:00 photos_160,"I took a photo of Performance at the indoor stage of Vancouver Convention Centre West (""A captivating performance."") ","I took a photo of Performance at the indoor stage of Vancouver Convention Centre West (""A captivating performance."") ",2019-04-15 18:31:20-07:00 photos_161,"I took a photo of Performance at the indoor stage of Vancouver Convention Centre West (""A captivating performance."") ","I took a photo of Performance at the indoor stage of Vancouver Convention Centre West (""A captivating performance."") ",2019-04-15 18:31:22-07:00 photos_162,"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (""Explore the possibilities with an interactive kiosk."") ","I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (""Explore the possibilities with an interactive kiosk."") ",2019-04-16 07:52:35-07:00 photos_163,"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (""Explore the possibilities with an interactive kiosk."") ","I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (""Explore the possibilities with an interactive kiosk."") ",2019-04-16 07:52:38-07:00 photos_164,"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (""Explore the possibilities with an interactive kiosk."") ","I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (""Explore the possibilities with an interactive kiosk."") ",2019-04-16 07:52:47-07:00 photos_165,"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (""Explore the possibilities with an interactive kiosk."") ","I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (""Explore the possibilities with an interactive kiosk."") ",2019-04-16 07:52:51-07:00 photos_166,"I took a photo of Presentation at the indoor stage of Vancouver Convention Centre West (""Ready to present!"") ","I took a photo of Presentation at the indoor stage of Vancouver Convention Centre West (""Ready to present!"") ",2019-04-16 10:02:50-07:00 photos_167,"I took a photo of Superfood at the coffee shop of Vancouver Convention Centre West (""Healthy and delicious!"") ","I took a photo of Superfood at the coffee shop of Vancouver Convention Centre West (""Healthy and delicious!"") ",2019-04-16 10:35:31-07:00 photos_168,"I took a photo of Microphone stand at the indoor stage of Vancouver Convention Centre West (""Ready to rock!"") ","I took a photo of Microphone stand at the indoor stage of Vancouver Convention Centre West (""Ready to rock!"") ",2019-04-16 11:33:45-07:00 photos_169,"I took a photo of Presentation at the conference room of Vancouver's Olympic Cauldron (""Sharing ideas."") ","I took a photo of Presentation at the conference room of Vancouver's Olympic Cauldron (""Sharing ideas."") ",2019-04-16 15:58:10-07:00 photos_170,"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (""Speaking to a crowd."") ","I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (""Speaking to a crowd."") ",2019-04-17 08:56:50-07:00 photos_171,"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (""Speaking to a crowd."") ","I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (""Speaking to a crowd."") ",2019-04-17 09:16:52-07:00 photos_172,"I took a photo of Ipad at the runway of Vancouver Convention Centre West (""Tech on the go."") ","I took a photo of Ipad at the runway of Vancouver Convention Centre West (""Tech on the go."") ",2019-04-17 09:51:56-07:00 photos_173,"I took a photo of Mixed-use at the skyscraper of Vancouver Convention Centre West (""Urban living at its finest."") ","I took a photo of Mixed-use at the skyscraper of Vancouver Convention Centre West (""Urban living at its finest."") ",2019-04-17 12:32:29-07:00 photos_174,"I took a photo of Pitch and putt at the performance arena of Vancouver Convention Centre West (""Putting for glory!"") ","I took a photo of Pitch and putt at the performance arena of Vancouver Convention Centre West (""Putting for glory!"") ",2019-04-17 12:35:20-07:00 photos_175,"I took a photo of Eco hotel at the conference center of Vancouver Convention Centre West (""Sustainable hospitality at its finest."") ","I took a photo of Eco hotel at the conference center of Vancouver Convention Centre West (""Sustainable hospitality at its finest."") ",2019-04-17 12:43:24-07:00 photos_176,"I took a photo of Eco hotel at the public atrium of Vancouver Convention Centre West (""A tranquil oasis in the city."") ","I took a photo of Eco hotel at the public atrium of Vancouver Convention Centre West (""A tranquil oasis in the city."") ",2019-04-17 12:43:27-07:00 photos_177,I took a photo of Academic conference at the conference room of Vancouver Convention Centre West (Academic minds come together.) ,I took a photo of Academic conference at the conference room of Vancouver Convention Centre West (Academic minds come together.) ,2019-04-17 13:44:56-07:00 photos_178,"I took a photo of Public speaking at the ocean deep underwater of Vancouver Convention Centre West (""Speaking Under the Sea"") ","I took a photo of Public speaking at the ocean deep underwater of Vancouver Convention Centre West (""Speaking Under the Sea"") ",2019-04-17 18:34:48-07:00 photos_179,"I took a photo of Presentation at the landfill of Vancouver Convention Centre West (""A stark reminder of our waste."") ","I took a photo of Presentation at the landfill of Vancouver Convention Centre West (""A stark reminder of our waste."") ",2019-04-18 09:25:03-07:00 photos_180,"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (""Speaking to the crowd."") ","I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (""Speaking to the crowd."") ",2019-04-18 11:48:54-07:00 photos_181,"I took a photo of Hardware accessory at the home theater of Vancouver Convention Centre West (""Complete the setup."") ","I took a photo of Hardware accessory at the home theater of Vancouver Convention Centre West (""Complete the setup."") ",2019-04-18 12:29:21-07:00 photos_182,"I took a photo of Public speaking at the classroom of Vancouver's Canada Place (""Learning to communicate effectively."") ","I took a photo of Public speaking at the classroom of Vancouver's Canada Place (""Learning to communicate effectively."") ",2019-04-18 16:25:56-07:00 photos_183,"I took a photo of Aerialist at the performance arena of Vancouver Convention Centre West (""Aerialist in flight."") ","I took a photo of Aerialist at the performance arena of Vancouver Convention Centre West (""Aerialist in flight."") ",2019-04-18 17:10:13-07:00 photos_184,"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (""Speaking to the crowd."") ","I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (""Speaking to the crowd."") ",2019-04-19 11:21:20-07:00 photos_185,"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (""Speaking to the crowd."") ","I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (""Speaking to the crowd."") ",2019-04-19 11:22:29-07:00 photos_186,"I took a photo of Presentation at the auditorium of Vancouver Convention Centre West (""Ready to present!"") ","I took a photo of Presentation at the auditorium of Vancouver Convention Centre West (""Ready to present!"") ",2019-04-19 11:34:21-07:00 photos_187,"I took a photo of Presentation at the indoor stage of Vancouver Convention Centre West (""Ready to present!"") ","I took a photo of Presentation at the indoor stage of Vancouver Convention Centre West (""Ready to present!"") ",2019-04-19 11:37:25-07:00 photos_188,"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (""Speaking to a crowd."") ","I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (""Speaking to a crowd."") ",2019-04-19 11:38:46-07:00 photos_189,"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (""Speaking to a crowd."") ","I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (""Speaking to a crowd."") ",2019-04-19 11:39:45-07:00 photos_190,"I took a photo of Tesla bluestar at the car interior of Old School Iron in Amarillo, TX (""Luxury at its finest."") ","I took a photo of Tesla bluestar at the car interior of Old School Iron in Amarillo, TX (""Luxury at its finest."") ",2019-04-20 11:12:11-07:00 photos_191,"I took a photo of Fernleaf lavender at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ","I took a photo of Fernleaf lavender at the formal garden of ""Texas Home on Greg Street"" (""Fragrant beauty in the formal garden."") ",2019-04-20 13:02:58-07:00 photos_192,"I took a photo of Energy bar at the pantry of ""Texas Home on Greg Street"" (""Grab and go!"") ","I took a photo of Energy bar at the pantry of ""Texas Home on Greg Street"" (""Grab and go!"") ",2019-04-20 14:04:32-07:00 photos_193,"I took a photo of Invoice at the hospital of ""Texas Home on Greg Street"" (""Medical care in progress."") ","I took a photo of Invoice at the hospital of ""Texas Home on Greg Street"" (""Medical care in progress."") ",2019-04-20 17:58:49-07:00 photos_194,"I took a photo of Invoice at the hospital room of ""Texas Home on Greg Street"" (""Medical care in progress."") ","I took a photo of Invoice at the hospital room of ""Texas Home on Greg Street"" (""Medical care in progress."") ",2019-04-20 17:58:54-07:00 photos_195,"I took a photo of Sweet pepperbush at the broadleaf forest of ""Texas Home on Greg Street"" (""A splash of color in the woods."") ","I took a photo of Sweet pepperbush at the broadleaf forest of ""Texas Home on Greg Street"" (""A splash of color in the woods."") ",2019-04-21 10:33:26-07:00 photos_196,"I took a photo of Aesculus californica at the japanese garden of ""Texas Home on Greg Street"" (""California Buckeye in bloom"") ","I took a photo of Aesculus californica at the japanese garden of ""Texas Home on Greg Street"" (""California Buckeye in bloom"") ",2019-04-21 11:39:34-07:00 photos_197,"I took a photo of Aesculus californica at the japanese garden of ""Texas Home on Greg Street"" (""California Buckeye in bloom"") ","I took a photo of Aesculus californica at the japanese garden of ""Texas Home on Greg Street"" (""California Buckeye in bloom"") ",2019-04-21 11:39:50-07:00 photos_198,"I took a photo of Smoketree at the yard of ""Texas Home on Greg Street"" (""Beautiful smoketree in the yard."") ","I took a photo of Smoketree at the yard of ""Texas Home on Greg Street"" (""Beautiful smoketree in the yard."") ",2019-04-21 11:41:20-07:00 photos_199,"I took a photo of Smoketree at the driveway of ""Texas Home on Greg Street"" (""Beautiful smoketree in the driveway."") ","I took a photo of Smoketree at the driveway of ""Texas Home on Greg Street"" (""Beautiful smoketree in the driveway."") ",2019-04-21 11:41:39-07:00 photos_200,"I took a photo of Fernleaf lavender at the driveway of ""Texas Home on Greg Street"" (""Fragrant beauty."") ","I took a photo of Fernleaf lavender at the driveway of ""Texas Home on Greg Street"" (""Fragrant beauty."") ",2019-04-23 08:14:56-07:00 photos_201,"I took a photo of Fernleaf lavender at the driveway of ""Texas Home on Greg Street"" (""Fragrant beauty."") ","I took a photo of Fernleaf lavender at the driveway of ""Texas Home on Greg Street"" (""Fragrant beauty."") ",2019-04-23 08:14:55-07:00 photos_202,"I took a photo of Receipt at the supermarket of ""Texas Home on Greg Street"" (Grocery shopping done!) ","I took a photo of Receipt at the supermarket of ""Texas Home on Greg Street"" (Grocery shopping done!) ",2019-04-23 12:25:08-07:00 photos_203,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:32:53-07:00 photos_204,"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:35:19-07:00 photos_205,"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:35:28-07:00 photos_206,"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:35:38-07:00 photos_207,"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:43:55-07:00 photos_208,"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:45:25-07:00 photos_209,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:50:35-07:00 photos_210,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:52:17-07:00 photos_211,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:52:16-07:00 photos_212,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:55:48-07:00 photos_213,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:55:59-07:00 photos_214,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:59:17-07:00 photos_215,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:59:23-07:00 photos_216,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 18:59:30-07:00 photos_217,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 19:06:22-07:00 photos_218,"I took a photo of Sunrise at the canyon of Exploring the Grand Canyon (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring the Grand Canyon (""A new day dawns."") ",2019-04-24 19:07:27-07:00 photos_219,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 19:10:19-07:00 photos_220,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 19:10:24-07:00 photos_221,"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 19:13:51-07:00 photos_222,"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 19:13:55-07:00 photos_223,"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (""Awe-inspiring beauty."") ",2019-04-24 19:15:23-07:00 photos_224,"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 19:21:41-07:00 photos_225,"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-24 19:21:48-07:00 photos_226,"I took a photo of Canyon at the canyon of Exploring Mather Point (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point (""Awe-inspiring beauty."") ",2019-04-25 05:37:52-07:00 photos_227,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-25 05:39:19-07:00 photos_228,"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (""Awe-inspiring beauty."") ",2019-04-25 05:41:32-07:00 photos_229,"I took a photo of Canyon at the canyon of Exploring Mather Point (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point (""Awe-inspiring beauty."") ",2019-04-25 05:43:36-07:00 photos_230,"I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ",2019-04-25 05:43:42-07:00 photos_231,"I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ",2019-04-25 05:44:01-07:00 photos_232,"I took a photo of Lens flare at the canyon of Exploring Mather Point (""A burst of light in the canyon."") ","I took a photo of Lens flare at the canyon of Exploring Mather Point (""A burst of light in the canyon."") ",2019-04-25 05:44:16-07:00 photos_233,"I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ",2019-04-25 05:44:18-07:00 photos_234,"I took a photo of Lens flare at the canyon of Exploring Mather Point (""A burst of light in the canyon."") ","I took a photo of Lens flare at the canyon of Exploring Mather Point (""A burst of light in the canyon."") ",2019-04-25 05:44:23-07:00 photos_235,"I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ",2019-04-25 05:45:05-07:00 photos_236,"I took a photo of Sunrise at the canyon of Exploring Yavapai Lodge Road (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring Yavapai Lodge Road (""A new day dawns."") ",2019-04-25 05:46:17-07:00 photos_237,"I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ",2019-04-25 05:46:26-07:00 photos_238,"I took a photo of Canyon at the canyon of Exploring Mather Point (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point (""Awe-inspiring beauty."") ",2019-04-25 05:47:17-07:00 photos_239,"I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ",2019-04-25 05:47:39-07:00 photos_240,"I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ","I took a photo of Sunrise at the canyon of Exploring Mather Point (""A new day dawns."") ",2019-04-25 05:47:50-07:00 photos_241,"I took a photo of Canyon at the canyon of Exploring Mather Point (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point (""Awe-inspiring beauty."") ",2019-04-25 05:47:49-07:00 photos_242,"I took a photo of Elk at the pasture of Exploring the Grand Canyon (""Majestic Elk"") ","I took a photo of Elk at the pasture of Exploring the Grand Canyon (""Majestic Elk"") ",2019-04-25 05:54:16-07:00 photos_243,"I took a photo of Grazing at the driveway of Exploring the Grand Canyon (""Enjoying the view."") ","I took a photo of Grazing at the driveway of Exploring the Grand Canyon (""Enjoying the view."") ",2019-04-25 05:54:36-07:00 photos_244,"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (""Awe-inspiring beauty."") ",2019-04-25 05:59:41-07:00 photos_245,"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (""Awe-inspiring beauty."") ",2019-04-25 06:10:13-07:00 photos_246,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-25 06:40:46-07:00 photos_247,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-25 06:43:27-07:00 photos_248,"I took a photo of Geological phenomenon at the cliff of Exploring the Grand Canyon (""Nature's Artwork"") ","I took a photo of Geological phenomenon at the cliff of Exploring the Grand Canyon (""Nature's Artwork"") ",2019-04-25 07:03:31-07:00 photos_249,"I took a photo of Canyon at the canyon of ""Exploring the Grand Canyon"" (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of ""Exploring the Grand Canyon"" (""Awe-inspiring beauty."") ",2019-04-25 07:21:47-07:00 photos_250,"I took a photo of Two needle pinyon pine at the canyon of Exploring the Grand Canyon (""A peaceful view."") ","I took a photo of Two needle pinyon pine at the canyon of Exploring the Grand Canyon (""A peaceful view."") ",2019-04-25 07:27:41-07:00 photos_251,"I took a photo of Two needle pinyon pine at the canyon of Exploring the Grand Canyon (""A peaceful view."") ","I took a photo of Two needle pinyon pine at the canyon of Exploring the Grand Canyon (""A peaceful view."") ",2019-04-25 07:27:43-07:00 photos_252,"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring the Grand Canyon (""Awe-inspiring beauty."") ",2019-04-25 08:54:45-07:00 photos_253,"I took a photo of Landscaping at the butte of Exploring Uptown Sedona (""Nature's beauty."") ","I took a photo of Landscaping at the butte of Exploring Uptown Sedona (""Nature's beauty."") ",2019-04-25 14:38:48-07:00 photos_254,"I took a photo of Landscaping at the canyon of Exploring Sedona, AZ (""Exploring nature's beauty."") ","I took a photo of Landscaping at the canyon of Exploring Sedona, AZ (""Exploring nature's beauty."") ",2019-04-25 14:39:05-07:00 photos_255,"I took a photo of Butte at the butte of Sedona Airport View (""A view of Butte from the Butte."") ","I took a photo of Butte at the butte of Sedona Airport View (""A view of Butte from the Butte."") ",2019-04-25 17:54:13-07:00 photos_256,"I took a photo of Canyon at the canyon of Exploring Sedona, AZ (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Sedona, AZ (""Awe-inspiring beauty."") ",2019-04-25 18:01:35-07:00 photos_257,"I took a photo of Canyon at the canyon of Exploring Oak Creek Dev No. 1, Sedona (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Oak Creek Dev No. 1, Sedona (""Awe-inspiring beauty."") ",2019-04-25 18:03:14-07:00 photos_258,"I took a photo of Canyon at the canyon of Exploring Sedona, AZ (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Sedona, AZ (""Awe-inspiring beauty."") ",2019-04-25 18:15:41-07:00 photos_259,"I took a photo of Panorama at the valley of Exploring Sedona, Arizona (A breathtaking view.) ","I took a photo of Panorama at the valley of Exploring Sedona, Arizona (A breathtaking view.) ",2019-04-25 18:22:55-07:00 photos_260,"I took a photo of Canyon at the canyon of ""Exploring Sedona's Airport Mesa Viewpoint"" (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of ""Exploring Sedona's Airport Mesa Viewpoint"" (""Awe-inspiring beauty."") ",2019-04-25 18:24:57-07:00 photos_261,"I took a photo of Canyon at the canyon of ""Exploring Sedona's Airport Mesa Viewpoint"" (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of ""Exploring Sedona's Airport Mesa Viewpoint"" (""Awe-inspiring beauty."") ",2019-04-25 18:25:06-07:00 photos_262,"I took a photo of Rainbow at the canyon of ""Exploring Sedona, Arizona"" (""A burst of color."") ","I took a photo of Rainbow at the canyon of ""Exploring Sedona, Arizona"" (""A burst of color."") ",2019-04-25 18:42:55-07:00 photos_263,"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ","I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ",2019-04-25 18:43:03-07:00 photos_264,"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ","I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ",2019-04-25 18:43:05-07:00 photos_265,"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ","I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ",2019-04-25 18:43:14-07:00 photos_266,"I took a photo of Rainbow at the butte of Exploring Sedona, AZ (""A burst of color."") ","I took a photo of Rainbow at the butte of Exploring Sedona, AZ (""A burst of color."") ",2019-04-25 18:43:22-07:00 photos_267,"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ","I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ",2019-04-25 18:43:39-07:00 photos_268,"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ","I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ",2019-04-25 18:43:43-07:00 photos_269,"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ","I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ",2019-04-25 18:43:58-07:00 photos_270,"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ","I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (""A burst of color."") ",2019-04-25 18:44:04-07:00 photos_271,"I took a photo of Rainbow at the canyon (""A burst of color."") ","I took a photo of Rainbow at the canyon (""A burst of color."") ",2019-04-26 00:48:52+00:00 photos_272,"I took a photo of Canyon at the canyon of Exploring Sedona's Airport Loop Trail (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Sedona's Airport Loop Trail (""Awe-inspiring beauty."") ",2019-04-25 18:53:16-07:00 photos_273,"I took a photo of Rainbow at the butte of Sedona Airport, Arizona (""A burst of color."") ","I took a photo of Rainbow at the butte of Sedona Airport, Arizona (""A burst of color."") ",2019-04-25 18:56:35-07:00 photos_274,"I took a photo of Rainbow at the butte of Sedona Airport, Arizona (""A burst of color."") ","I took a photo of Rainbow at the butte of Sedona Airport, Arizona (""A burst of color."") ",2019-04-25 18:56:37-07:00 photos_275,"I took a photo of Panorama at the valley of Exploring Sedona, AZ (A breathtaking view.) ","I took a photo of Panorama at the valley of Exploring Sedona, AZ (A breathtaking view.) ",2019-04-25 19:01:34-07:00 photos_276,"I took a photo of Arizona Cypress at the canyon of Sedona Airport View (""A majestic view."") ","I took a photo of Arizona Cypress at the canyon of Sedona Airport View (""A majestic view."") ",2019-04-25 19:08:31-07:00 photos_277,I took a photo of Panorama at the canyon of Sedona Airport View (Exploring the beauty of nature.) ,I took a photo of Panorama at the canyon of Sedona Airport View (Exploring the beauty of nature.) ,2019-04-25 19:08:41-07:00 photos_278,"I took a photo of Arizona Cypress at the butte of Sedona Airport View (""A majestic view of Arizona Cypress in the Butte."") ","I took a photo of Arizona Cypress at the butte of Sedona Airport View (""A majestic view of Arizona Cypress in the Butte."") ",2019-04-25 19:08:56-07:00 photos_279,"I took a photo of Smoketree at the patio of ""Exploring Sedona, Arizona"" (""A peaceful moment in the garden."") ","I took a photo of Smoketree at the patio of ""Exploring Sedona, Arizona"" (""A peaceful moment in the garden."") ",2019-04-26 10:42:14-07:00 photos_280,"I took a photo of Dirt road at the desert road of Exploring Arizona's Western Navajo Agency (""A journey through the desert."") ","I took a photo of Dirt road at the desert road of Exploring Arizona's Western Navajo Agency (""A journey through the desert."") ",2019-04-26 15:57:32-06:00 photos_281,I took a photo of Canyon at the desert road of Exploring Arizona's Western Navajo Agency (Exploring the desert.) ,I took a photo of Canyon at the desert road of Exploring Arizona's Western Navajo Agency (Exploring the desert.) ,2019-04-26 15:57:35-06:00 photos_282,"I took a photo of Highway at the desert road of Exploring Arizona's Western Navajo Agency (""A journey through the desert."") ","I took a photo of Highway at the desert road of Exploring Arizona's Western Navajo Agency (""A journey through the desert."") ",2019-04-26 15:58:00-06:00 photos_283,"I took a photo of Butte at the butte of Exploring Bitter Springs, Arizona (""A view of Butte from the Butte."") ","I took a photo of Butte at the butte of Exploring Bitter Springs, Arizona (""A view of Butte from the Butte."") ",2019-04-26 16:12:26-06:00 photos_284,"I took a photo of Algific talus slope at the butte of Exploring Bitter Springs, Arizona (""A unique landscape."") ","I took a photo of Algific talus slope at the butte of Exploring Bitter Springs, Arizona (""A unique landscape."") ",2019-04-26 16:12:25-06:00 photos_285,"I took a photo of Butte at the butte of Exploring Bitter Springs, Arizona (""A view of Butte from the Butte."") ","I took a photo of Butte at the butte of Exploring Bitter Springs, Arizona (""A view of Butte from the Butte."") ",2019-04-26 16:12:48-06:00 photos_286,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 23:24:16+00:00 photos_287,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 23:24:21+00:00 photos_288,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 23:25:46+00:00 photos_289,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:25:50+00:00 photos_290,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:25:49+00:00 photos_291,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:25:52+00:00 photos_292,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:25:51+00:00 photos_293,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:35:51+00:00 photos_294,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:46:16+00:00 photos_295,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:46:21+00:00 photos_296,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:46:24+00:00 photos_297,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-26 22:47:48+00:00 photos_298,I took a photo of Estonian hound at the castle (Exploring the castle.) ,I took a photo of Estonian hound at the castle (Exploring the castle.) ,2019-04-26 22:48:26+00:00 photos_299,I took a photo of Open-air museum at the outdoor museum (Exploring history in the open air.) ,I took a photo of Open-air museum at the outdoor museum (Exploring history in the open air.) ,2019-04-26 23:09:12+00:00 photos_300,I took a photo of Cortado at the coffee shop (Caffeinated and ready to go.) ,I took a photo of Cortado at the coffee shop (Caffeinated and ready to go.) ,2019-04-26 23:09:13+00:00 photos_301,I took a photo of Panorama at the harbor of Exploring Lake Powell Resort (Harbor views for days.) ,I took a photo of Panorama at the harbor of Exploring Lake Powell Resort (Harbor views for days.) ,2019-04-26 18:04:06-07:00 photos_302,"I took a photo of Dry lake at the butte of Exploring Lake Powell Resort (""A tranquil desert oasis."") ","I took a photo of Dry lake at the butte of Exploring Lake Powell Resort (""A tranquil desert oasis."") ",2019-04-27 08:00:20-07:00 photos_303,I took a photo of Web page at the canyon (Exploring the Grand Canyon.) ,I took a photo of Web page at the canyon (Exploring the Grand Canyon.) ,2019-04-27 15:32:17+00:00 photos_304,"I took a photo of Dry lake at the campsite of Exploring Lake Powell Resort (""A peaceful oasis in the desert."") ","I took a photo of Dry lake at the campsite of Exploring Lake Powell Resort (""A peaceful oasis in the desert."") ",2019-04-27 09:03:39-07:00 photos_305,"I took a photo of Dry lake at the swimming hole of Exploring Lake Powell Resort (""A peaceful oasis."") ","I took a photo of Dry lake at the swimming hole of Exploring Lake Powell Resort (""A peaceful oasis."") ",2019-04-27 09:38:35-07:00 photos_306,"I took a photo of Dry lake at the swimming hole of Exploring Wahweap's Navajo Viewpoint (""A peaceful oasis."") ","I took a photo of Dry lake at the swimming hole of Exploring Wahweap's Navajo Viewpoint (""A peaceful oasis."") ",2019-04-27 10:38:44-07:00 photos_307,"I took a photo of Cinder cone at the vegetation desert of Exploring Garfield County, Utah (""A lonely cinder cone in the desert."") ","I took a photo of Cinder cone at the vegetation desert of Exploring Garfield County, Utah (""A lonely cinder cone in the desert."") ",2019-04-27 15:47:52-06:00 photos_308,"I took a photo of Cinder cone at the canyon of Exploring Garfield County, Utah (""Awe-inspiring view."") ","I took a photo of Cinder cone at the canyon of Exploring Garfield County, Utah (""Awe-inspiring view."") ",2019-04-27 15:48:04-06:00 photos_309,"I took a photo of Window at the indoor bow window of Tropic, Utah (""A view of the outdoors."") ","I took a photo of Window at the indoor bow window of Tropic, Utah (""A view of the outdoors."") ",2019-04-27 16:17:22-06:00 photos_310,"I took a photo of Canyon at the canyon of Exploring Utah's Rim Trail (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Utah's Rim Trail (""Awe-inspiring beauty."") ",2019-04-27 17:45:04-06:00 photos_311,"I took a photo of Canyon at the canyon of Exploring Utah's Rim Trail (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Utah's Rim Trail (""Awe-inspiring beauty."") ",2019-04-27 18:00:27-06:00 photos_312,"I took a photo of Cinder cone at the canyon of Exploring Utah's Rim Trail (""Awe-inspiring view."") ","I took a photo of Cinder cone at the canyon of Exploring Utah's Rim Trail (""Awe-inspiring view."") ",2019-04-27 18:05:34-06:00 photos_313,"I took a photo of Shortstraw pine at the canyon of Exploring Utah's Queen's Garden Trail (""A peaceful escape."") ","I took a photo of Shortstraw pine at the canyon of Exploring Utah's Queen's Garden Trail (""A peaceful escape."") ",2019-04-27 18:14:23-06:00 photos_314,"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ",2019-04-27 18:20:03-06:00 photos_315,"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ",2019-04-27 18:20:12-06:00 photos_316,"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ",2019-04-27 18:27:33-06:00 photos_317,"I took a photo of American larch at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ","I took a photo of American larch at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ",2019-04-27 18:34:01-06:00 photos_318,"I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon (""Awe-inspiring beauty."") ",2019-04-28 01:43:08+00:00 photos_319,"I took a photo of Kaibab Squirrel at the watering hole of Tropic, Utah (""Taking a break."") ","I took a photo of Kaibab Squirrel at the watering hole of Tropic, Utah (""Taking a break."") ",2019-04-27 18:43:44-06:00 photos_320,"I took a photo of Organ Mountains Chipmunk at the watering hole of Tropic, Utah (""Taking a break."") ","I took a photo of Organ Mountains Chipmunk at the watering hole of Tropic, Utah (""Taking a break."") ",2019-04-27 18:43:48-06:00 photos_321,"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ","I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (""Awe-inspiring beauty."") ",2019-04-27 18:50:14-06:00 photos_322,"I took a photo of Outcrop at the cliff of Exploring Utah's Queen's Garden Trail (""A rocky outcrop in the cliff face."") ","I took a photo of Outcrop at the cliff of Exploring Utah's Queen's Garden Trail (""A rocky outcrop in the cliff face."") ",2019-04-27 19:13:37-06:00 photos_323,"I took a photo of Cinder cone at the canyon of Exploring Utah's Rim Trail (""Awe-inspiring view."") ","I took a photo of Cinder cone at the canyon of Exploring Utah's Rim Trail (""Awe-inspiring view."") ",2019-04-27 19:34:15-06:00 photos_324,"I took a photo of Single-origin coffee at the coffee shop of ""Texas Home on Greg Street"" (""Freshly brewed."") ","I took a photo of Single-origin coffee at the coffee shop of ""Texas Home on Greg Street"" (""Freshly brewed."") ",2019-04-29 11:49:07-07:00 places_27028,"I have been to Exploring Lamb County, TX","I have been to Exploring Lamb County, TX",2019-04-27 17:28:58-07:00 places_27172,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-03-03 07:41:47-08:00 places_27173,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-03-03 07:42:11-08:00 places_27174,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-03-03 07:42:35-08:00 places_27175,"I have been to ""Throwbacks Sports Bar: Amarillo's Best!""","I have been to ""Throwbacks Sports Bar: Amarillo's Best!""",2019-03-05 18:13:01-08:00 places_27176,"I have been to ""Throwbacks Sports Bar: Amarillo's Best!""","I have been to ""Throwbacks Sports Bar: Amarillo's Best!""",2019-03-05 18:13:04-08:00 places_27177,"I have been to Biking in Randall County, Texas","I have been to Biking in Randall County, Texas",2019-03-05 19:31:46-08:00 places_27178,"I have been to Biking in Randall County, Texas","I have been to Biking in Randall County, Texas",2019-03-05 19:31:47-08:00 places_27179,"I have been to Biking in Randall County, Texas","I have been to Biking in Randall County, Texas",2019-03-05 19:36:00-08:00 places_27180,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-03-06 19:46:40-08:00 places_27181,"I have been to Amarillo, Texas","I have been to Amarillo, Texas",2019-03-07 19:17:33-08:00 places_27182,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:42:28-07:00 places_27183,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:42:30-07:00 places_27184,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:42:31-07:00 places_27185,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:42:32-07:00 places_27186,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:46:32-07:00 places_27187,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:46:34-07:00 places_27188,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:47:15-07:00 places_27189,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:47:16-07:00 places_27190,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-03-10 17:47:17-07:00 places_27193,"I have been to ""Exploring Randall County, Texas""","I have been to ""Exploring Randall County, Texas""",2019-03-17 12:59:42-07:00 places_27194,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 09:20:41-07:00 places_27195,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 09:31:03-07:00 places_27196,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 10:43:51-07:00 places_27197,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 10:44:49-07:00 places_27198,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 10:46:41-07:00 places_27199,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 13:00:08-07:00 places_27200,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 13:12:49-07:00 places_27201,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 15:52:33-07:00 places_27202,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 16:05:51-07:00 places_27203,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 17:02:12-07:00 places_27204,"I have been to Helium Road, Texas","I have been to Helium Road, Texas",2019-03-18 17:02:21-07:00 places_27205,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-03-19 12:32:09-07:00 places_27206,"I have been to Exploring Randall County, Texas","I have been to Exploring Randall County, Texas",2019-03-22 19:06:44-07:00 places_27207,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-03-23 07:50:06-07:00 places_27208,"I have been to Exploring Castro County, Texas","I have been to Exploring Castro County, Texas",2019-03-23 09:36:05-07:00 places_27209,"I have been to Exploring Castro County, Texas","I have been to Exploring Castro County, Texas",2019-03-23 09:36:12-07:00 places_27210,I have been to Charlie's Furniture Amarillo,I have been to Charlie's Furniture Amarillo,2019-03-23 20:50:05-07:00 places_27211,I have been to Exploring Seoul National University,I have been to Exploring Seoul National University,2019-03-27 11:42:43+09:00 places_27212,I have been to Exploring Seoul National University,I have been to Exploring Seoul National University,2019-03-27 11:42:50+09:00 places_27213,I have been to Exploring Seoul National University,I have been to Exploring Seoul National University,2019-03-27 13:45:36+09:00 places_27214,I have been to Exploring Seoul National University,I have been to Exploring Seoul National University,2019-03-27 13:45:47+09:00 places_27215,I have been to Exploring Seoul National University,I have been to Exploring Seoul National University,2019-03-27 13:45:47+09:00 places_27216,"I have been to Yangpyeong-ro 28da-gil, Seoul","I have been to Yangpyeong-ro 28da-gil, Seoul",2019-03-27 15:47:16+09:00 places_27217,"I have been to Yangpyeong-ro 28da-gil, Seoul","I have been to Yangpyeong-ro 28da-gil, Seoul",2019-03-27 15:47:22+09:00 places_27218,"I have been to Yangpyeong-ro 28da-gil, Seoul","I have been to Yangpyeong-ro 28da-gil, Seoul",2019-03-27 15:47:29+09:00 places_27220,I have been to Exploring Seoul's Seocho-gu,I have been to Exploring Seoul's Seocho-gu,2019-03-27 18:36:03+09:00 places_27221,I have been to Incheon Int'l Airport Terminal 1,I have been to Incheon Int'l Airport Terminal 1,2019-03-28 06:38:09+09:00 places_27223,I have been to Roppongi's Asahi Shokudo,I have been to Roppongi's Asahi Shokudo,2019-03-28 20:38:13+09:00 places_27224,I have been to Roppongi's Asahi Shokudo,I have been to Roppongi's Asahi Shokudo,2019-03-28 20:47:46+09:00 places_27225,I have been to Roppongi's Asahi Shokudo,I have been to Roppongi's Asahi Shokudo,2019-03-28 21:36:34+09:00 places_27226,I have been to Roppongi's Asahi Shokudo,I have been to Roppongi's Asahi Shokudo,2019-03-28 23:25:42+09:00 places_27227,I have been to Roppongi's Asahi Shokudo,I have been to Roppongi's Asahi Shokudo,2019-03-28 23:25:52+09:00 places_27228,I have been to Grand Hyatt Tokyo,I have been to Grand Hyatt Tokyo,2019-03-29 09:12:12+09:00 places_27229,"I have been to Moto-Azabu, Tokyo","I have been to Moto-Azabu, Tokyo",2019-03-29 10:08:09+09:00 places_27230,I have been to Aiiku Hospital in Tokyo,I have been to Aiiku Hospital in Tokyo,2019-03-29 10:13:09+09:00 places_27231,"I have been to Exploring Naka-Meguro, Tokyo","I have been to Exploring Naka-Meguro, Tokyo",2019-03-29 10:53:41+09:00 places_27232,"I have been to Exploring Naka-Meguro, Tokyo","I have been to Exploring Naka-Meguro, Tokyo",2019-03-29 10:54:16+09:00 places_27233,"I have been to Exploring Naka-Meguro, Tokyo","I have been to Exploring Naka-Meguro, Tokyo",2019-03-29 10:54:15+09:00 places_27234,"I have been to Exploring Naka-Meguro, Tokyo","I have been to Exploring Naka-Meguro, Tokyo",2019-03-29 10:54:51+09:00 places_27235,"I have been to Exploring Naka-Meguro, Tokyo","I have been to Exploring Naka-Meguro, Tokyo",2019-03-29 10:54:59+09:00 places_27236,"I have been to Exploring Naka-Meguro, Tokyo","I have been to Exploring Naka-Meguro, Tokyo",2019-03-29 10:56:04+09:00 places_27237,"I have been to Exploring Naka-Meguro, Tokyo","I have been to Exploring Naka-Meguro, Tokyo",2019-03-29 10:56:37+09:00 places_27238,"I have been to University of Tokyo, Tokyo","I have been to University of Tokyo, Tokyo",2019-03-29 12:28:58+09:00 places_27239,"I have been to University of Tokyo, Tokyo","I have been to University of Tokyo, Tokyo",2019-03-29 13:04:14+09:00 places_27240,"I have been to University of Tokyo, Tokyo","I have been to University of Tokyo, Tokyo",2019-03-29 13:04:17+09:00 places_27241,I have been to Tokyo's Shibadaimon,I have been to Tokyo's Shibadaimon,2019-03-29 16:15:45+09:00 places_27242,I have been to Tokyo's Shibakoen,I have been to Tokyo's Shibakoen,2019-03-29 16:23:59+09:00 places_27243,I have been to Tokyo's Shibakoen,I have been to Tokyo's Shibakoen,2019-03-29 16:24:02+09:00 places_27244,I have been to Tokyo's Shibakoen,I have been to Tokyo's Shibakoen,2019-03-29 16:24:07+09:00 places_27245,I have been to Tokyo's Shiba Junior & Senior High School,I have been to Tokyo's Shiba Junior & Senior High School,2019-03-29 16:24:56+09:00 places_27246,I have been to Tokyo's Shibakoen,I have been to Tokyo's Shibakoen,2019-03-29 16:25:06+09:00 places_27247,I have been to Tokyo Prince Hotel,I have been to Tokyo Prince Hotel,2019-03-29 16:26:16+09:00 places_27248,I have been to Exploring Roppongi Hills,I have been to Exploring Roppongi Hills,2019-03-29 18:25:08+09:00 places_27249,I have been to Exploring Roppongi Hills,I have been to Exploring Roppongi Hills,2019-03-29 18:25:24+09:00 places_27250,I have been to Exploring Roppongi Hills,I have been to Exploring Roppongi Hills,2019-03-29 18:26:53+09:00 places_27251,I have been to Exploring Roppongi Hills,I have been to Exploring Roppongi Hills,2019-03-29 18:27:16+09:00 places_27252,"I have been to Exploring Roppongi Hills, Tokyo","I have been to Exploring Roppongi Hills, Tokyo",2019-03-29 19:20:53+09:00 places_27253,"I have been to Exploring Roppongi Hills, Tokyo","I have been to Exploring Roppongi Hills, Tokyo",2019-03-29 21:28:05+09:00 places_27254,"I have been to Narita, Japan","I have been to Narita, Japan",2019-03-30 14:15:37+09:00 places_27255,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 10:51:04+08:00 places_27256,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 10:51:41+08:00 places_27257,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 11:17:52+08:00 places_27258,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 11:17:57+08:00 places_27259,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 11:23:27+08:00 places_27260,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 11:29:26+08:00 places_27261,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 11:29:35+08:00 places_27262,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 11:46:18+08:00 places_27263,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-03-31 11:46:22+08:00 places_27264,I have been to Exploring Eslite XinYi Store,I have been to Exploring Eslite XinYi Store,2019-03-31 13:38:53+08:00 places_27265,I have been to Exploring Eslite XinYi Store,I have been to Exploring Eslite XinYi Store,2019-03-31 13:38:56+08:00 places_27266,I have been to Exploring Taipei City Hall,I have been to Exploring Taipei City Hall,2019-03-31 14:02:19+08:00 places_27267,"I have been to Exploring Xinglong Village, Taiwan","I have been to Exploring Xinglong Village, Taiwan",2019-03-31 14:07:01+08:00 places_27268,"I have been to Exploring Xinglong Village, Taiwan","I have been to Exploring Xinglong Village, Taiwan",2019-03-31 14:08:35+08:00 places_27269,"I have been to ""Exploring Sun Yat-sen Memorial Hall""","I have been to ""Exploring Sun Yat-sen Memorial Hall""",2019-03-31 14:11:10+08:00 places_27270,"I have been to Bigtom美國冰淇淋咖啡館 in Chezeng, Taipei","I have been to Bigtom美國冰淇淋咖啡館 in Chezeng, Taipei",2019-03-31 14:25:17+08:00 places_27271,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-04-01 11:46:03+08:00 places_27272,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-04-01 11:46:13+08:00 places_27273,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-04-01 11:46:18+08:00 places_27274,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-04-01 11:50:40+08:00 places_27275,"I have been to Cama Cafe in Huashan, Taipei","I have been to Cama Cafe in Huashan, Taipei",2019-04-01 13:05:56+08:00 places_27276,I have been to Taipei's KuanHua Market,I have been to Taipei's KuanHua Market,2019-04-01 13:10:47+08:00 places_27277,I have been to Exploring Chiang Kai-shek Memorial Hall,I have been to Exploring Chiang Kai-shek Memorial Hall,2019-04-01 14:08:24+08:00 places_27278,I have been to Exploring Chiang Kai-shek Memorial Hall,I have been to Exploring Chiang Kai-shek Memorial Hall,2019-04-01 14:09:49+08:00 places_27279,I have been to Taipei's Democracy Boulevard,I have been to Taipei's Democracy Boulevard,2019-04-01 14:09:52+08:00 places_27280,I have been to Exploring Chiang Kai-shek Memorial Hall,I have been to Exploring Chiang Kai-shek Memorial Hall,2019-04-01 14:12:25+08:00 places_27281,"I have been to Exploring Longtsakoo, Taiwan","I have been to Exploring Longtsakoo, Taiwan",2019-04-01 14:13:29+08:00 places_27282,I have been to Exploring Chiang Kai-shek Memorial Hall,I have been to Exploring Chiang Kai-shek Memorial Hall,2019-04-01 14:19:18+08:00 places_27283,"I have been to Exploring Longtsakoo, Taipei","I have been to Exploring Longtsakoo, Taipei",2019-04-01 14:32:33+08:00 places_27284,"I have been to Exploring Longtsakoo, Taiwan","I have been to Exploring Longtsakoo, Taiwan",2019-04-01 14:32:43+08:00 places_27285,I have been to Taipei's Liberty Square,I have been to Taipei's Liberty Square,2019-04-01 14:34:37+08:00 places_27286,I have been to Photographing Platform in Taipei,I have been to Photographing Platform in Taipei,2019-04-01 18:04:00+08:00 places_27287,"I have been to Exploring Sanli Village, Taipei","I have been to Exploring Sanli Village, Taipei",2019-04-01 18:10:42+08:00 places_27288,I have been to Exploring Liuhe Village Trail,I have been to Exploring Liuhe Village Trail,2019-04-01 18:16:02+08:00 places_27289,I have been to Exploring Taipei: 梅花球場,I have been to Exploring Taipei: 梅花球場,2019-04-01 18:16:44+08:00 places_27290,I have been to Exploring Xiangshan Tunnel,I have been to Exploring Xiangshan Tunnel,2019-04-01 18:18:23+08:00 places_27291,I have been to Exploring Xiangshan Tunnel,I have been to Exploring Xiangshan Tunnel,2019-04-01 18:18:34+08:00 places_27292,I have been to Exploring Taipei from the Xinyi District,I have been to Exploring Taipei from the Xinyi District,2019-04-01 18:18:54+08:00 places_27293,"I have been to Exploring Sanli Village, Taipei","I have been to Exploring Sanli Village, Taipei",2019-04-01 18:19:16+08:00 places_27294,"I have been to Exploring Sanli Village, Taipei","I have been to Exploring Sanli Village, Taipei",2019-04-01 18:27:54+08:00 places_27295,"I have been to Exploring Sanli Village, Taipei","I have been to Exploring Sanli Village, Taipei",2019-04-01 18:28:24+08:00 places_27296,"I have been to Exploring Sanli Village, Taipei","I have been to Exploring Sanli Village, Taipei",2019-04-01 18:30:30+08:00 places_27297,"I have been to Exploring Sanli Village, Taipei","I have been to Exploring Sanli Village, Taipei",2019-04-01 18:30:38+08:00 places_27298,"I have been to Exploring Sanli Village, Taipei","I have been to Exploring Sanli Village, Taipei",2019-04-01 18:30:50+08:00 places_27299,"I have been to Exploring Sanli Village, Taipei","I have been to Exploring Sanli Village, Taipei",2019-04-01 18:33:02+08:00 places_27300,I have been to Photographing Platform in Taipei,I have been to Photographing Platform in Taipei,2019-04-01 18:33:52+08:00 places_27301,"I have been to ""Photography Platform at 101 Tower""","I have been to ""Photography Platform at 101 Tower""",2019-04-01 18:34:03+08:00 places_27302,I have been to Exploring Taipei: 梅花球場,I have been to Exploring Taipei: 梅花球場,2019-04-01 18:34:13+08:00 places_27303,I have been to Exploring Taipei: 梅花球場,I have been to Exploring Taipei: 梅花球場,2019-04-01 18:34:18+08:00 places_27304,I have been to Exploring Taipei: 梅花球場,I have been to Exploring Taipei: 梅花球場,2019-04-01 18:44:00+08:00 places_27305,I have been to Exploring Nature at 象山自然步道,I have been to Exploring Nature at 象山自然步道,2019-04-01 18:47:11+08:00 places_27306,I have been to Exploring Taipei's Elephant Mountain Trail,I have been to Exploring Taipei's Elephant Mountain Trail,2019-04-01 18:54:00+08:00 places_27307,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-04-02 19:09:25-07:00 places_27308,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-04-02 19:10:05-07:00 places_27309,"I have been to Randall County, Texas","I have been to Randall County, Texas",2019-04-02 19:16:56-07:00 places_27310,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-03 08:53:44-07:00 places_27311,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-06 12:16:12-07:00 places_27312,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-06 12:16:37-07:00 places_27313,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-06 12:16:36-07:00 places_27314,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-06 12:17:05-07:00 places_27315,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-06 12:17:19-07:00 places_27316,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-06 12:17:32-07:00 places_27317,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-06 12:17:40-07:00 places_27318,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-10 15:59:42-07:00 places_27319,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-10 15:59:41-07:00 places_27320,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-11 16:03:08-07:00 places_27321,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-11 17:50:51-07:00 places_27322,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-11 17:50:53-07:00 places_27323,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-11 17:51:04-07:00 places_27324,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-11 17:51:03-07:00 places_27325,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-13 13:08:12-07:00 places_27326,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-13 13:23:32-07:00 places_27327,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-13 13:23:49-07:00 places_27328,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-13 13:24:21-07:00 places_27329,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-14 08:23:09-07:00 places_27330,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-14 08:23:14-07:00 places_27331,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-14 11:09:42-07:00 places_27332,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-14 11:09:56-07:00 places_27333,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-14 19:19:06-07:00 places_27334,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-14 19:28:23-07:00 places_27335,"I have been to Exploring Gastown, Vancouver","I have been to Exploring Gastown, Vancouver",2019-04-14 20:40:40-07:00 places_27336,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-15 08:03:01-07:00 places_27337,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-15 08:03:20-07:00 places_27338,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-15 12:16:09-07:00 places_27339,"I have been to Luxury in Gastown, Vancouver","I have been to Luxury in Gastown, Vancouver",2019-04-15 12:34:01-07:00 places_27340,I have been to Gastown Nail Salon,I have been to Gastown Nail Salon,2019-04-15 13:45:18-07:00 places_27341,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 13:47:29-07:00 places_27342,I have been to Gastown Nail Salon,I have been to Gastown Nail Salon,2019-04-15 13:47:35-07:00 places_27343,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:19:43-07:00 places_27344,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:19:45-07:00 places_27345,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:19:50-07:00 places_27346,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:19:55-07:00 places_27347,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:19:56-07:00 places_27348,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:20:02-07:00 places_27349,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:20:03-07:00 places_27350,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:20:07-07:00 places_27351,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:20:07-07:00 places_27352,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:20:08-07:00 places_27353,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:20:19-07:00 places_27354,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 14:20:20-07:00 places_27355,I have been to Gastown's Bellaggio Café & Gelateria,I have been to Gastown's Bellaggio Café & Gelateria,2019-04-15 15:21:26-07:00 places_27356,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-15 15:25:50-07:00 places_27357,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-15 15:25:58-07:00 places_27358,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 17:05:24-07:00 places_27359,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 17:16:37-07:00 places_27360,I have been to Gastown Nail Salon,I have been to Gastown Nail Salon,2019-04-15 18:13:08-07:00 places_27361,I have been to Gastown Nail Salon,I have been to Gastown Nail Salon,2019-04-15 18:30:43-07:00 places_27362,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 18:30:48-07:00 places_27363,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 18:31:20-07:00 places_27364,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 18:31:22-07:00 places_27365,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 18:34:27-07:00 places_27366,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-15 18:53:48-07:00 places_27367,I have been to Vancouver's Olympic Cauldron,I have been to Vancouver's Olympic Cauldron,2019-04-15 20:31:18-07:00 places_27368,I have been to Vancouver's Shaw Tower,I have been to Vancouver's Shaw Tower,2019-04-16 07:52:35-07:00 places_27369,I have been to Vancouver's Shaw Tower,I have been to Vancouver's Shaw Tower,2019-04-16 07:52:38-07:00 places_27370,I have been to Vancouver's Shaw Tower,I have been to Vancouver's Shaw Tower,2019-04-16 07:52:47-07:00 places_27371,I have been to Vancouver's Shaw Tower,I have been to Vancouver's Shaw Tower,2019-04-16 07:52:51-07:00 places_27372,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-16 10:02:50-07:00 places_27373,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-16 10:35:31-07:00 places_27374,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-16 11:19:47-07:00 places_27375,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-16 11:33:45-07:00 places_27376,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-16 12:43:45-07:00 places_27377,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-16 12:43:50-07:00 places_27378,I have been to Vancouver's Olympic Cauldron,I have been to Vancouver's Olympic Cauldron,2019-04-16 15:58:10-07:00 places_27379,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-16 18:44:28-07:00 places_27380,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 08:56:50-07:00 places_27381,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 09:16:52-07:00 places_27382,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 09:30:42-07:00 places_27383,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 09:34:50-07:00 places_27384,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 09:51:56-07:00 places_27385,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 11:32:25-07:00 places_27386,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 12:32:29-07:00 places_27387,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 12:35:17-07:00 places_27388,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 12:35:20-07:00 places_27389,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 12:43:24-07:00 places_27390,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 12:43:27-07:00 places_27391,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 13:44:56-07:00 places_27392,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 18:34:48-07:00 places_27393,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-17 18:37:48-07:00 places_27394,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 09:00:47-07:00 places_27395,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 09:25:03-07:00 places_27396,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 10:00:34-07:00 places_27397,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 11:45:23-07:00 places_27398,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 11:48:54-07:00 places_27399,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 12:01:17-07:00 places_27400,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 12:03:14-07:00 places_27401,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 12:18:17-07:00 places_27402,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 12:29:21-07:00 places_27403,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-18 16:25:56-07:00 places_27404,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-18 16:26:01-07:00 places_27405,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-18 16:26:04-07:00 places_27406,I have been to Vancouver's Canada Place,I have been to Vancouver's Canada Place,2019-04-18 16:26:07-07:00 places_27407,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 17:10:13-07:00 places_27408,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 17:10:17-07:00 places_27409,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 17:27:02-07:00 places_27410,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 17:54:04-07:00 places_27411,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 19:46:42-07:00 places_27412,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-18 19:46:47-07:00 places_27413,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-19 11:21:20-07:00 places_27414,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-19 11:22:29-07:00 places_27415,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-19 11:34:21-07:00 places_27416,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-19 11:37:25-07:00 places_27417,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-19 11:38:46-07:00 places_27418,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-19 11:39:45-07:00 places_27419,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-19 11:41:51-07:00 places_27420,I have been to Vancouver Convention Centre West,I have been to Vancouver Convention Centre West,2019-04-19 11:42:16-07:00 places_27421,"I have been to Old School Iron in Amarillo, TX","I have been to Old School Iron in Amarillo, TX",2019-04-20 11:12:11-07:00 places_27422,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-20 13:02:58-07:00 places_27423,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-20 14:04:32-07:00 places_27424,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-20 17:58:49-07:00 places_27425,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-20 17:58:54-07:00 places_27426,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-21 10:33:26-07:00 places_27427,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-21 11:39:34-07:00 places_27428,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-21 11:39:50-07:00 places_27429,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-21 11:41:20-07:00 places_27430,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-21 11:41:39-07:00 places_27431,"I have been to Exploring Randall County, Texas","I have been to Exploring Randall County, Texas",2019-04-22 19:13:15-07:00 places_27432,"I have been to Exploring Randall County, Texas","I have been to Exploring Randall County, Texas",2019-04-22 19:24:01-07:00 places_27433,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-23 08:14:56-07:00 places_27434,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-23 08:14:55-07:00 places_27435,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-23 09:58:20-07:00 places_27436,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-23 12:25:08-07:00 places_27437,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:32:53-07:00 places_27438,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:35:19-07:00 places_27439,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:35:28-07:00 places_27440,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:35:38-07:00 places_27441,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:40:38-07:00 places_27442,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:40:41-07:00 places_27443,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:41:36-07:00 places_27444,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:41:41-07:00 places_27445,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:41:43-07:00 places_27446,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:41:46-07:00 places_27447,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:43:55-07:00 places_27448,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-24 18:45:25-07:00 places_27449,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:50:35-07:00 places_27450,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:52:17-07:00 places_27451,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:52:16-07:00 places_27452,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:55:48-07:00 places_27453,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:55:59-07:00 places_27454,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:59:17-07:00 places_27455,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:59:23-07:00 places_27456,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 18:59:30-07:00 places_27457,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 19:06:22-07:00 places_27458,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 19:07:27-07:00 places_27459,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 19:10:19-07:00 places_27460,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-24 19:10:24-07:00 places_27461,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:13:51-07:00 places_27462,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:13:55-07:00 places_27463,I have been to Exploring Yavapai Lodge Road,I have been to Exploring Yavapai Lodge Road,2019-04-24 19:15:23-07:00 places_27464,I have been to Exploring Arizona's Geology at Yavapai Museum,I have been to Exploring Arizona's Geology at Yavapai Museum,2019-04-24 19:16:48-07:00 places_27465,I have been to Exploring Arizona's Geology at Yavapai Museum,I have been to Exploring Arizona's Geology at Yavapai Museum,2019-04-24 19:16:52-07:00 places_27466,I have been to Exploring Arizona's Geology at Yavapai Museum,I have been to Exploring Arizona's Geology at Yavapai Museum,2019-04-24 19:16:56-07:00 places_27467,I have been to Exploring Arizona's Geology at Yavapai Museum,I have been to Exploring Arizona's Geology at Yavapai Museum,2019-04-24 19:16:59-07:00 places_27468,I have been to Exploring Arizona's Geology at Yavapai Museum,I have been to Exploring Arizona's Geology at Yavapai Museum,2019-04-24 19:17:03-07:00 places_27469,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:19:38-07:00 places_27470,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:19:40-07:00 places_27471,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:19:44-07:00 places_27472,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:19:51-07:00 places_27473,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:08-07:00 places_27474,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:16-07:00 places_27475,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:19-07:00 places_27476,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:25-07:00 places_27477,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:32-07:00 places_27478,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:35-07:00 places_27479,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:37-07:00 places_27480,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:39-07:00 places_27481,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:20:40-07:00 places_27482,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:21:41-07:00 places_27483,"I have been to Exploring Yavapai Point, Grand Canyon","I have been to Exploring Yavapai Point, Grand Canyon",2019-04-24 19:21:48-07:00 places_27484,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:37:52-07:00 places_27485,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 05:39:19-07:00 places_27486,I have been to Exploring Yavapai Lodge Road,I have been to Exploring Yavapai Lodge Road,2019-04-25 05:41:32-07:00 places_27487,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:42:07-07:00 places_27488,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:42:46-07:00 places_27489,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:42:53-07:00 places_27490,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:43:32-07:00 places_27491,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:43:36-07:00 places_27492,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:43:42-07:00 places_27493,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:43:47-07:00 places_27494,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:43:52-07:00 places_27495,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:44:01-07:00 places_27496,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:44:16-07:00 places_27497,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:44:18-07:00 places_27498,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:44:23-07:00 places_27499,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:45:05-07:00 places_27500,I have been to Exploring Yavapai Lodge Road,I have been to Exploring Yavapai Lodge Road,2019-04-25 05:46:17-07:00 places_27501,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:46:26-07:00 places_27502,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:47:17-07:00 places_27503,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:47:39-07:00 places_27504,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:47:50-07:00 places_27505,I have been to Exploring Mather Point,I have been to Exploring Mather Point,2019-04-25 05:47:49-07:00 places_27506,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 05:54:16-07:00 places_27507,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 05:54:36-07:00 places_27508,"I have been to Exploring Mather Point, Grand Canyon","I have been to Exploring Mather Point, Grand Canyon",2019-04-25 05:59:41-07:00 places_27509,I have been to Exploring Yavapai Lodge Road,I have been to Exploring Yavapai Lodge Road,2019-04-25 06:10:13-07:00 places_27510,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 06:40:46-07:00 places_27511,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 06:43:27-07:00 places_27512,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 07:03:31-07:00 places_27513,"I have been to ""Exploring the Grand Canyon""","I have been to ""Exploring the Grand Canyon""",2019-04-25 07:21:47-07:00 places_27514,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 07:27:41-07:00 places_27515,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 07:27:43-07:00 places_27516,I have been to Exploring the Grand Canyon,I have been to Exploring the Grand Canyon,2019-04-25 08:54:45-07:00 places_27517,I have been to Exploring Uptown Sedona,I have been to Exploring Uptown Sedona,2019-04-25 14:37:44-07:00 places_27518,I have been to Exploring Uptown Sedona,I have been to Exploring Uptown Sedona,2019-04-25 14:37:52-07:00 places_27519,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 14:37:59-07:00 places_27520,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 14:38:09-07:00 places_27521,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 14:38:15-07:00 places_27522,I have been to Exploring Uptown Sedona,I have been to Exploring Uptown Sedona,2019-04-25 14:38:48-07:00 places_27523,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 14:39:05-07:00 places_27524,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 14:49:04-07:00 places_27525,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 14:49:31-07:00 places_27526,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 14:49:33-07:00 places_27527,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 14:49:34-07:00 places_27528,I have been to Sedona Airport View,I have been to Sedona Airport View,2019-04-25 17:54:13-07:00 places_27529,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:01:35-07:00 places_27530,"I have been to Exploring Oak Creek Dev No. 1, Sedona","I have been to Exploring Oak Creek Dev No. 1, Sedona",2019-04-25 18:03:14-07:00 places_27531,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:15:41-07:00 places_27532,"I have been to Exploring Sedona, Arizona","I have been to Exploring Sedona, Arizona",2019-04-25 18:22:55-07:00 places_27533,"I have been to ""Exploring Sedona's Airport Mesa Viewpoint""","I have been to ""Exploring Sedona's Airport Mesa Viewpoint""",2019-04-25 18:24:57-07:00 places_27534,"I have been to ""Exploring Sedona's Airport Mesa Viewpoint""","I have been to ""Exploring Sedona's Airport Mesa Viewpoint""",2019-04-25 18:25:06-07:00 places_27535,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-25 18:42:55-07:00 places_27536,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:43:03-07:00 places_27537,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:43:05-07:00 places_27538,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:43:14-07:00 places_27539,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:43:22-07:00 places_27540,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:43:39-07:00 places_27541,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:43:43-07:00 places_27542,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:43:58-07:00 places_27543,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 18:44:04-07:00 places_27545,I have been to Exploring Sedona's Airport Loop Trail,I have been to Exploring Sedona's Airport Loop Trail,2019-04-25 18:53:16-07:00 places_27546,"I have been to Sedona Airport, Arizona","I have been to Sedona Airport, Arizona",2019-04-25 18:56:35-07:00 places_27547,"I have been to Sedona Airport, Arizona","I have been to Sedona Airport, Arizona",2019-04-25 18:56:37-07:00 places_27548,"I have been to Exploring Sedona, AZ","I have been to Exploring Sedona, AZ",2019-04-25 19:01:34-07:00 places_27549,I have been to Sedona Airport View,I have been to Sedona Airport View,2019-04-25 19:08:31-07:00 places_27550,I have been to Sedona Airport View,I have been to Sedona Airport View,2019-04-25 19:08:41-07:00 places_27551,I have been to Sedona Airport View,I have been to Sedona Airport View,2019-04-25 19:08:56-07:00 places_27552,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:38:22-07:00 places_27553,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:38:48-07:00 places_27554,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:38:51-07:00 places_27555,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:39:19-07:00 places_27556,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:39:24-07:00 places_27557,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:39:28-07:00 places_27558,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:39:38-07:00 places_27559,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:39:46-07:00 places_27560,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:39:48-07:00 places_27561,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:42:14-07:00 places_27562,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:43:59-07:00 places_27563,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:44:02-07:00 places_27564,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:44:25-07:00 places_27565,"I have been to ""Exploring Sedona, Arizona""","I have been to ""Exploring Sedona, Arizona""",2019-04-26 10:44:29-07:00 places_27566,I have been to Exploring Arizona's Western Navajo Agency,I have been to Exploring Arizona's Western Navajo Agency,2019-04-26 15:57:32-06:00 places_27567,I have been to Exploring Arizona's Western Navajo Agency,I have been to Exploring Arizona's Western Navajo Agency,2019-04-26 15:57:35-06:00 places_27568,I have been to Exploring Arizona's Western Navajo Agency,I have been to Exploring Arizona's Western Navajo Agency,2019-04-26 15:58:00-06:00 places_27569,"I have been to Exploring Bitter Springs, Arizona","I have been to Exploring Bitter Springs, Arizona",2019-04-26 16:12:26-06:00 places_27570,"I have been to Exploring Bitter Springs, Arizona","I have been to Exploring Bitter Springs, Arizona",2019-04-26 16:12:25-06:00 places_27571,"I have been to Exploring Bitter Springs, Arizona","I have been to Exploring Bitter Springs, Arizona",2019-04-26 16:12:48-06:00 places_27598,I have been to Exploring Lake Powell Resort,I have been to Exploring Lake Powell Resort,2019-04-26 18:03:53-07:00 places_27599,I have been to Exploring Lake Powell Resort,I have been to Exploring Lake Powell Resort,2019-04-26 18:04:06-07:00 places_27600,I have been to Exploring Lake Powell Resort,I have been to Exploring Lake Powell Resort,2019-04-27 08:00:20-07:00 places_27605,I have been to Exploring Lake Powell Resort,I have been to Exploring Lake Powell Resort,2019-04-27 09:03:39-07:00 places_27607,I have been to Exploring Lake Powell Resort,I have been to Exploring Lake Powell Resort,2019-04-27 09:38:35-07:00 places_27609,I have been to Exploring Wahweap's Navajo Viewpoint,I have been to Exploring Wahweap's Navajo Viewpoint,2019-04-27 10:38:44-07:00 places_27610,"I have been to Exploring Garfield County, Utah","I have been to Exploring Garfield County, Utah",2019-04-27 15:47:52-06:00 places_27611,"I have been to Exploring Garfield County, Utah","I have been to Exploring Garfield County, Utah",2019-04-27 15:48:04-06:00 places_27612,"I have been to Tropic, Utah","I have been to Tropic, Utah",2019-04-27 16:17:22-06:00 places_27613,"I have been to ""Sunset Point in Utah""","I have been to ""Sunset Point in Utah""",2019-04-27 17:37:11-06:00 places_27614,I have been to Exploring Utah's Navajo Loop Trail,I have been to Exploring Utah's Navajo Loop Trail,2019-04-27 17:39:13-06:00 places_27615,I have been to Exploring Utah's Navajo Loop Trail,I have been to Exploring Utah's Navajo Loop Trail,2019-04-27 17:39:16-06:00 places_27616,I have been to Exploring Utah's Navajo Loop Trail,I have been to Exploring Utah's Navajo Loop Trail,2019-04-27 17:39:19-06:00 places_27617,I have been to Exploring Utah's Navajo Loop Trail,I have been to Exploring Utah's Navajo Loop Trail,2019-04-27 17:39:22-06:00 places_27618,I have been to Exploring Utah's Navajo Loop Trail,I have been to Exploring Utah's Navajo Loop Trail,2019-04-27 17:39:31-06:00 places_27619,I have been to Exploring Utah's Navajo Loop Trail,I have been to Exploring Utah's Navajo Loop Trail,2019-04-27 17:39:33-06:00 places_27620,I have been to Exploring Utah's Rim Trail,I have been to Exploring Utah's Rim Trail,2019-04-27 17:39:41-06:00 places_27621,I have been to Exploring Utah's Rim Trail,I have been to Exploring Utah's Rim Trail,2019-04-27 17:39:43-06:00 places_27622,I have been to Exploring Utah's Rim Trail,I have been to Exploring Utah's Rim Trail,2019-04-27 17:45:04-06:00 places_27623,I have been to Exploring Utah's Rim Trail,I have been to Exploring Utah's Rim Trail,2019-04-27 18:00:27-06:00 places_27624,I have been to Exploring Utah's Rim Trail,I have been to Exploring Utah's Rim Trail,2019-04-27 18:05:34-06:00 places_27625,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:14:23-06:00 places_27626,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:18:42-06:00 places_27627,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:18:47-06:00 places_27628,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:18:51-06:00 places_27629,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:20:03-06:00 places_27630,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:20:12-06:00 places_27631,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:27:33-06:00 places_27632,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:28:52-06:00 places_27633,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:28:57-06:00 places_27634,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:28:59-06:00 places_27635,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:34:01-06:00 places_27637,"I have been to Tropic, Utah","I have been to Tropic, Utah",2019-04-27 18:43:44-06:00 places_27638,"I have been to Tropic, Utah","I have been to Tropic, Utah",2019-04-27 18:43:48-06:00 places_27639,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 18:50:14-06:00 places_27640,I have been to Exploring Utah's Queen's Garden Trail,I have been to Exploring Utah's Queen's Garden Trail,2019-04-27 19:13:37-06:00 places_27641,I have been to Exploring Utah's Rim Trail,I have been to Exploring Utah's Rim Trail,2019-04-27 19:34:15-06:00 places_27642,"I have been to ""Texas Home on Greg Street""","I have been to ""Texas Home on Greg Street""",2019-04-29 11:49:07-07:00 purchase_0,"I purchased Dr. Earth 713 Organic 9 Fruit Tree Fertilizer, 12-Pound from Amazon","I purchased Dr. Earth 713 Organic 9 Fruit Tree Fertilizer, 12-Pound from Amazon",2019-03-26T16:29:16 purchase_1,"I purchased Miracle-Gro Citrus, Avocado, & Mango Food, 20 lb. from Amazon","I purchased Miracle-Gro Citrus, Avocado, & Mango Food, 20 lb. from Amazon",2019-03-26T16:28:27 purchase_2,"I purchased 63"" Garden Leaf Rake 38""-63""Adjustable Garden Rake,25 tines, Metal Rake for Quick Clean Up of Lawn and Yard from Amazon","I purchased 63"" Garden Leaf Rake 38""-63""Adjustable Garden Rake,25 tines, Metal Rake for Quick Clean Up of Lawn and Yard from Amazon",2019-03-25T17:19:27 purchase_3,"I purchased Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz from Amazon","I purchased Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz from Amazon",2019-03-23T03:42:11 purchase_4,I purchased Amazon Basics Ultra Facial Tissue with Lotion18 Cube Boxes - 75 Tissues per Box -1350 Tissues Total (Previously Solimo) from Amazon,I purchased Amazon Basics Ultra Facial Tissue with Lotion18 Cube Boxes - 75 Tissues per Box -1350 Tissues Total (Previously Solimo) from Amazon,2019-03-13T20:42:12 purchase_5,I purchased ejet Compatible Toner Cartridge Replacement for Brother TN450 TN420 TN-450 TN-420 for HL-2270DW HL-2280DW HL-2230 HL-2240 7360N 7860DW 7065DN Intellif from Amazon,I purchased ejet Compatible Toner Cartridge Replacement for Brother TN450 TN420 TN-450 TN-420 for HL-2270DW HL-2280DW HL-2230 HL-2240 7360N 7860DW 7065DN Intellif from Amazon,2019-03-13T00:23:01 purchase_6,"I purchased Hanes Men's Pocket T-Shirt Pack, Cotton Crewneck Pocket Tees 6-Pack, Moisture-Wicking Cotton T-Shirt Assorted 6-Pack from Amazon","I purchased Hanes Men's Pocket T-Shirt Pack, Cotton Crewneck Pocket Tees 6-Pack, Moisture-Wicking Cotton T-Shirt Assorted 6-Pack from Amazon",2019-03-12T16:59:59 purchase_7,"I purchased Neutrogena Ultra Sheer Dry-Touch Water Resistant and Non-Greasy Sunscreen Lotion with Broad Spectrum SPF 70, 3 Fl Oz (Pack of 1) from Amazon","I purchased Neutrogena Ultra Sheer Dry-Touch Water Resistant and Non-Greasy Sunscreen Lotion with Broad Spectrum SPF 70, 3 Fl Oz (Pack of 1) from Amazon",2019-03-12T16:59:59 purchase_8,I purchased 100% Natural Boar Bristle Body Brush with Contoured Wooden Handle by TOUCH ME from Amazon,I purchased 100% Natural Boar Bristle Body Brush with Contoured Wooden Handle by TOUCH ME from Amazon,2019-03-10T04:27:17 purchase_9,"I purchased Amazon Brand - Solimo 70% Ethyl Rubbing Alcohol First Aid Antiseptic, 16 Fluid Ounces from Amazon","I purchased Amazon Brand - Solimo 70% Ethyl Rubbing Alcohol First Aid Antiseptic, 16 Fluid Ounces from Amazon",2019-03-10T04:27:17 purchase_10,"I purchased Deseret Deals Boy Scout Neckerchief Slide - Metal Kerchief Woggle, for Cub Scouts and Varsity Scouts (2 Pack) from Amazon","I purchased Deseret Deals Boy Scout Neckerchief Slide - Metal Kerchief Woggle, for Cub Scouts and Varsity Scouts (2 Pack) from Amazon",2019-03-10T04:27:17 purchase_11,I purchased Hiking Pants for Men Convertible Zip Off Boy Scout Quick Dry Lightweight Cargo Travel Safari Pants (ZB02 Army Green 34) from Amazon,I purchased Hiking Pants for Men Convertible Zip Off Boy Scout Quick Dry Lightweight Cargo Travel Safari Pants (ZB02 Army Green 34) from Amazon,2019-03-10T04:27:17 purchase_12,"I purchased Microfiber Spray Mop for Floor Cleaning, Dry Wet Wood Floor Mop with 3 pcs Washable Pads, Handle Flat Mop with Sprayer for Kitchen Wood Floor Hardwood from Amazon","I purchased Microfiber Spray Mop for Floor Cleaning, Dry Wet Wood Floor Mop with 3 pcs Washable Pads, Handle Flat Mop with Sprayer for Kitchen Wood Floor Hardwood from Amazon",2019-03-10T04:27:17 purchase_13,"I purchased Airbee Plastic Spray Bottles 2 Pack 16 Oz for Cleaning Solutions, Planting, Pet, Bleach Spray, Vinegar, Professional Empty Spraying Bottle, Mist Water from Amazon","I purchased Airbee Plastic Spray Bottles 2 Pack 16 Oz for Cleaning Solutions, Planting, Pet, Bleach Spray, Vinegar, Professional Empty Spraying Bottle, Mist Water from Amazon",2019-03-10T04:27:17 purchase_14,I purchased 21 Lessons for the 21st Century from Amazon,I purchased 21 Lessons for the 21st Century from Amazon,2019-04-11T03:41:12 purchase_15,"I purchased Nudge: Improving Decisions About Health, Wealth, and Happiness from Amazon","I purchased Nudge: Improving Decisions About Health, Wealth, and Happiness from Amazon",2019-04-11T03:41:12 purchase_16,I purchased How to Be an Antiracist from Amazon,I purchased How to Be an Antiracist from Amazon,2019-04-11T03:41:12 purchase_17,"I purchased Predictably Irrational, Revised and Expanded Edition: The Hidden Forces That Shape Our Decisions from Amazon","I purchased Predictably Irrational, Revised and Expanded Edition: The Hidden Forces That Shape Our Decisions from Amazon",2019-04-11T03:41:12 purchase_18,"I purchased Thinking, Fast and Slow from Amazon","I purchased Thinking, Fast and Slow from Amazon",2019-04-11T03:41:12 purchase_19,I purchased The Ministry for the Future: A Novel from Amazon,I purchased The Ministry for the Future: A Novel from Amazon,2019-04-11T03:41:12 purchase_20,"I purchased Oral-B Complete Glide Dental Floss Picks Plus Scope Outlast, Long Lasting Mint, 75 Dental Floss Picks, Pack of 6 from Amazon","I purchased Oral-B Complete Glide Dental Floss Picks Plus Scope Outlast, Long Lasting Mint, 75 Dental Floss Picks, Pack of 6 from Amazon",2019-04-10T02:22:56 purchase_21,I purchased The Bitcoin Standard: The Decentralized Alternative to Central Banking from Amazon,I purchased The Bitcoin Standard: The Decentralized Alternative to Central Banking from Amazon,2019-04-05T20:59:13 purchase_22,I purchased UpNUpCo Artistic Beautiful Anti Fatigue Kitchen Floor Mat - Unique Floor Mats - Pain Relief Padded Kitchen Mats - Floor Mats For In Front Of Sink - Me from Amazon,I purchased UpNUpCo Artistic Beautiful Anti Fatigue Kitchen Floor Mat - Unique Floor Mats - Pain Relief Padded Kitchen Mats - Floor Mats For In Front Of Sink - Me from Amazon,2019-03-10T20:32:00 purchase_23,I purchased Fiskars 46 Inch Steel D-handle Digging Shovel from Amazon,I purchased Fiskars 46 Inch Steel D-handle Digging Shovel from Amazon,2019-03-03T17:40:07 purchase_24,"I purchased AP World History: Modern Premium, 2022-2023: 5 Practice Tests + Comprehensive Review + Online Practice (Barron's Test Prep) from Amazon","I purchased AP World History: Modern Premium, 2022-2023: 5 Practice Tests + Comprehensive Review + Online Practice (Barron's Test Prep) from Amazon",2019-04-28T22:57:54 purchase_25,"I purchased [3-Pack] European Travel Plug Adapter, VINTAR International Power Adaptor with 2 USB Ports,2 American Outlets- 4 in 1 European Plug Adapter for France from Amazon","I purchased [3-Pack] European Travel Plug Adapter, VINTAR International Power Adaptor with 2 USB Ports,2 American Outlets- 4 in 1 European Plug Adapter for France from Amazon",2019-04-20T04:53:01 purchase_26,I purchased Meta Quest 2 - Advanced All-In-One Virtual Reality Headset - 128 GB from Amazon,I purchased Meta Quest 2 - Advanced All-In-One Virtual Reality Headset - 128 GB from Amazon,2019-04-18T22:28:47 purchase_27,I purchased Artizen 30ml Oils - Lavender Essential Oil - 1 Fluid Ounce from Amazon,I purchased Artizen 30ml Oils - Lavender Essential Oil - 1 Fluid Ounce from Amazon,2019-04-18T02:11:57 purchase_28,"I purchased Shea Butter Yellow Smooth | All Natural, 100% Pure- Unrefined | Daily Skin Moisturizer For Face & Body | Softens Tough Skin | Moisturizes Dry Skin | A from Amazon","I purchased Shea Butter Yellow Smooth | All Natural, 100% Pure- Unrefined | Daily Skin Moisturizer For Face & Body | Softens Tough Skin | Moisturizes Dry Skin | A from Amazon",2019-04-18T02:08:21 purchase_29,"I purchased Alternative Imagination 100% Pure Beeswax Bar (1 Ounce), Made in USA from Amazon","I purchased Alternative Imagination 100% Pure Beeswax Bar (1 Ounce), Made in USA from Amazon",2019-04-18T02:03:55 purchase_30,I purchased Go Gently: Actionable Steps to Nurture Yourself and the Planet from Amazon,I purchased Go Gently: Actionable Steps to Nurture Yourself and the Planet from Amazon,2019-04-16T18:53:52 purchase_31,I purchased Joico HydraSplash Hydrating Gelée Masque | Replenish Hydration | Add Shine | For Fine / Medium / Dry Hair from Amazon,I purchased Joico HydraSplash Hydrating Gelée Masque | Replenish Hydration | Add Shine | For Fine / Medium / Dry Hair from Amazon,2019-03-30T18:03:45 purchase_32,"I purchased Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz from Amazon","I purchased Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz from Amazon",2019-03-30T18:03:45 purchase_33,I purchased Joico HydraSplash Hydrating Conditioner for fine hair 8.5 fl oz from Amazon,I purchased Joico HydraSplash Hydrating Conditioner for fine hair 8.5 fl oz from Amazon,2019-03-30T18:03:45 purchase_34,I purchased Joico HydraSplash Hydrating Shampoo for fine hair 33.8 fl oz from Amazon,I purchased Joico HydraSplash Hydrating Shampoo for fine hair 33.8 fl oz from Amazon,2019-03-30T18:03:45 purchase_35,"I purchased Joico Power Spray Fast-Dry Finishing Spray, 9.0 Ounce, New Look from Amazon","I purchased Joico Power Spray Fast-Dry Finishing Spray, 9.0 Ounce, New Look from Amazon",2019-03-30T18:03:45 purchase_36,"I purchased Joico HydraSplash Replenishing Leave-In | Boost Shine | Reduce Frizz | For Fine/ Medium / Dry Hair, 3.38 Fl Oz (Pack of 1) from Amazon","I purchased Joico HydraSplash Replenishing Leave-In | Boost Shine | Reduce Frizz | For Fine/ Medium / Dry Hair, 3.38 Fl Oz (Pack of 1) from Amazon",2019-03-30T18:03:45 purchase_38,I purchased Claritin 24 Hour Reditabs - 60 ct from Amazon,I purchased Claritin 24 Hour Reditabs - 60 ct from Amazon,2019-03-27T23:21:18 purchase_40,I purchased SOTO WindMaster w/ Micro Regulator and 4Flex (One Size) from Amazon,I purchased SOTO WindMaster w/ Micro Regulator and 4Flex (One Size) from Amazon,2019-03-08T03:42:32 purchase_41,"I purchased Portable Electric Space Heater 1500W/750W, Ceramic Room Heater with Tip-Over and Overheat Protection, Heat up 200 Square Feet in Seconds, Safe and Qui from Amazon","I purchased Portable Electric Space Heater 1500W/750W, Ceramic Room Heater with Tip-Over and Overheat Protection, Heat up 200 Square Feet in Seconds, Safe and Qui from Amazon",2019-03-05T04:45:16 purchase_42,I purchased Value Sensitive Design: Shaping Technology with Moral Imagination (The MIT Press) from Amazon,I purchased Value Sensitive Design: Shaping Technology with Moral Imagination (The MIT Press) from Amazon,2019-04-09T17:45:52 purchase_43,"I purchased Anti Fog Spray for Glasses | 600 Pumps, 6 month Supply | Prevents Fog on Windshield, Lenses, Goggles, PPE & VR Headsets | Safe on Anti-Reflective Lens from Amazon","I purchased Anti Fog Spray for Glasses | 600 Pumps, 6 month Supply | Prevents Fog on Windshield, Lenses, Goggles, PPE & VR Headsets | Safe on Anti-Reflective Lens from Amazon",2019-03-30T17:59:04 purchase_44,I purchased WD-40 Multi-Use Product Handy Can 3 oz (Pack of 2) from Amazon,I purchased WD-40 Multi-Use Product Handy Can 3 oz (Pack of 2) from Amazon,2019-03-30T05:26:19 purchase_45,I purchased Organic Cowboy Boneless Chicken Thighs from Amazon,I purchased Organic Cowboy Boneless Chicken Thighs from Amazon,2019-03-24T22:53:23 purchase_46,I purchased Organic Yellow Onion from Amazon,I purchased Organic Yellow Onion from Amazon,2019-03-24T22:53:23 purchase_47,I purchased Bag Refund from Amazon,I purchased Bag Refund from Amazon,2019-03-24T22:53:23 purchase_48,I purchased Espresso from Amazon,I purchased Espresso from Amazon,2019-03-24T22:53:23 purchase_49,I purchased Donation Bag from Amazon,I purchased Donation Bag from Amazon,2019-03-24T22:53:23 purchase_50,I purchased Blueberry Greek Yogurt from Amazon,I purchased Blueberry Greek Yogurt from Amazon,2019-03-24T22:53:23 purchase_51,I purchased Organic Ginger Root from Amazon,I purchased Organic Ginger Root from Amazon,2019-03-24T22:53:23 purchase_52,I purchased Organic Milk from Amazon,I purchased Organic Milk from Amazon,2019-03-24T22:53:23 purchase_53,I purchased Green Onion from Amazon,I purchased Green Onion from Amazon,2019-03-24T22:53:23 purchase_54,I purchased Blueberry Yoghurt from Amazon,I purchased Blueberry Yoghurt from Amazon,2019-03-24T22:53:23 purchase_55,I purchased Boneless Skinless Chicken Thighs from Amazon,I purchased Boneless Skinless Chicken Thighs from Amazon,2019-03-24T22:53:23 purchase_56,I purchased Organic Plain Low Fat Yogurt from Amazon,I purchased Organic Plain Low Fat Yogurt from Amazon,2019-03-23T00:10:31 purchase_57,I purchased Jewel Sweet Potato from Amazon,I purchased Jewel Sweet Potato from Amazon,2019-03-23T00:10:31 purchase_58,I purchased Blueberry Yoghurt from Amazon,I purchased Blueberry Yoghurt from Amazon,2019-03-23T00:10:31 purchase_59,I purchased Vidalia Onion from Amazon,I purchased Vidalia Onion from Amazon,2019-03-23T00:10:31 purchase_60,I purchased Organic Spinach Ricotta Ravioli from Amazon,I purchased Organic Spinach Ricotta Ravioli from Amazon,2019-03-23T00:10:31 purchase_61,I purchased Butternut Squash from Amazon,I purchased Butternut Squash from Amazon,2019-03-23T00:10:31 purchase_62,I purchased Whole Trade Banana from Amazon,I purchased Whole Trade Banana from Amazon,2019-03-23T00:10:31 purchase_63,I purchased Organic Milk from Amazon,I purchased Organic Milk from Amazon,2019-03-23T00:10:31 purchase_64,I purchased Organic Strawberries from Amazon,I purchased Organic Strawberries from Amazon,2019-03-23T00:10:31 purchase_65,I purchased Wild Blueberry Overnight Oats from Amazon,I purchased Wild Blueberry Overnight Oats from Amazon,2019-03-23T00:10:31 purchase_66,I purchased Organic Brown Large Grade A Eggs from Amazon,I purchased Organic Brown Large Grade A Eggs from Amazon,2019-03-23T00:10:31 purchase_67,I purchased Organic Bourbon Whiskey Boneless Chicken Thighs from Amazon,I purchased Organic Bourbon Whiskey Boneless Chicken Thighs from Amazon,2019-03-23T00:10:31 purchase_68,I purchased Supreme Pizza from Amazon,I purchased Supreme Pizza from Amazon,2019-03-23T00:10:31 purchase_69,I purchased Smoked Thick Cut Atlantic Salmon from Amazon,I purchased Smoked Thick Cut Atlantic Salmon from Amazon,2019-03-23T00:10:31 purchase_70,I purchased Bacon Cheddar Beef Burger from Amazon,I purchased Bacon Cheddar Beef Burger from Amazon,2019-03-23T00:10:31 purchase_71,I purchased Cherries from Amazon,I purchased Cherries from Amazon,2019-03-23T00:10:31 purchase_72,I purchased Honey Almond Crunch from Amazon,I purchased Honey Almond Crunch from Amazon,2019-03-23T00:10:31 purchase_73,I purchased Paleo Pancake & Waffle Mix from Amazon,I purchased Paleo Pancake & Waffle Mix from Amazon,2019-03-23T00:10:31 purchase_74,I purchased Orange Cauliflower from Amazon,I purchased Orange Cauliflower from Amazon,2019-03-23T00:10:31 purchase_75,I purchased Organic Berry Blend from Amazon,I purchased Organic Berry Blend from Amazon,2019-03-23T00:10:31 purchase_76,I purchased Whipped Unsalted Butter from Amazon,I purchased Whipped Unsalted Butter from Amazon,2019-03-23T00:10:31 purchase_77,I purchased Pinot Grigio Friuli from Amazon,I purchased Pinot Grigio Friuli from Amazon,2019-03-23T00:10:31 purchase_78,I purchased Organic Boston Butter Lettuce from Amazon,I purchased Organic Boston Butter Lettuce from Amazon,2019-03-23T00:10:31 purchase_79,I purchased Zucchini Squash from Amazon,I purchased Zucchini Squash from Amazon,2019-03-23T00:10:31 purchase_80,I purchased Medium Hass Avocado from Amazon,I purchased Medium Hass Avocado from Amazon,2019-03-23T00:10:31 purchase_81,I purchased Organic Low-Fat Cottage Cheese from Amazon,I purchased Organic Low-Fat Cottage Cheese from Amazon,2019-03-23T00:10:31 purchase_82,I purchased Herring in Cream Sauce from Amazon,I purchased Herring in Cream Sauce from Amazon,2019-03-23T00:10:31 purchase_83,I purchased Organic Baby Gold Beets Bunch from Amazon,I purchased Organic Baby Gold Beets Bunch from Amazon,2019-03-23T00:10:31 purchase_84,I purchased Russet Potato from Amazon,I purchased Russet Potato from Amazon,2019-03-23T00:10:31 purchase_85,I purchased Peach Yoghurt from Amazon,I purchased Peach Yoghurt from Amazon,2019-03-23T00:10:31 purchase_86,I purchased Organic Mango Chunks from Amazon,I purchased Organic Mango Chunks from Amazon,2019-03-23T00:10:31 purchase_87,I purchased Sauvignon Blanc from Amazon,I purchased Sauvignon Blanc from Amazon,2019-03-23T00:10:31 purchase_88,I purchased Organic Brussels Sprouts from Amazon,I purchased Organic Brussels Sprouts from Amazon,2019-03-23T00:10:31 purchase_89,I purchased Sliced Genoa Salami from Amazon,I purchased Sliced Genoa Salami from Amazon,2019-03-23T00:10:31 purchase_90,I purchased Organic Cowboy Boneless Chicken Thighs from Amazon,I purchased Organic Cowboy Boneless Chicken Thighs from Amazon,2019-03-23T00:10:31 purchase_91,"I purchased Amazon Basics 30% Recycled Multipurpose Copy Printer Paper - 8.5 x 11 Inches, 3 Ream Case (1500 Sheets) from Amazon","I purchased Amazon Basics 30% Recycled Multipurpose Copy Printer Paper - 8.5 x 11 Inches, 3 Ream Case (1500 Sheets) from Amazon",2019-03-21T19:50:31 purchase_92,I purchased Pudolla Men's Cotton Yoga Sweatpants Athletic Lounge Pants Open Bottom Casual Jersey Pants for Men with Pockets (Olive Medium) from Amazon,I purchased Pudolla Men's Cotton Yoga Sweatpants Athletic Lounge Pants Open Bottom Casual Jersey Pants for Men with Pockets (Olive Medium) from Amazon,2019-03-18T05:34:06 purchase_93,"I purchased TERRO T300B Liquid Ant Killer, 12 Bait Stations from Amazon","I purchased TERRO T300B Liquid Ant Killer, 12 Bait Stations from Amazon",2019-03-13T19:10:03 purchase_94,"I purchased BYD CARE KN95 Respirator, 50 Pieces, Breathable & Comfortable Foldable Safety Mask with Ear Loop for Tight Fit, GB2626 from Amazon","I purchased BYD CARE KN95 Respirator, 50 Pieces, Breathable & Comfortable Foldable Safety Mask with Ear Loop for Tight Fit, GB2626 from Amazon",2019-03-12T01:19:50 purchase_95,"I purchased Kate Aspen 9 oz. Stemless Wine Glass (Set of 12)| Kitchen Drinking Glass or DIY Party Favor, Clear, One Size, (30009NA-x12) from Amazon","I purchased Kate Aspen 9 oz. Stemless Wine Glass (Set of 12)| Kitchen Drinking Glass or DIY Party Favor, Clear, One Size, (30009NA-x12) from Amazon",2019-03-06T01:22:33 purchase_96,"I purchased iHealth COVID-19 Antigen Rapid Test, 2 Tests per Pack,FDA EUA Authorized OTC at-Home Self Test, Results in 15 Minutes with Non-invasive Nasal Swab, Ea from Amazon","I purchased iHealth COVID-19 Antigen Rapid Test, 2 Tests per Pack,FDA EUA Authorized OTC at-Home Self Test, Results in 15 Minutes with Non-invasive Nasal Swab, Ea from Amazon",2019-03-04T20:28:21 streaming_0,"I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify","I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify",2019-03-30T11:34:59.982000 streaming_1,"I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify","I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify",2019-03-30T12:24:57.597980 streaming_2,"I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify","I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify",2019-04-01T18:55:58.781460 streaming_3,"I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify","I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify",2019-04-05T14:03:56.228030 streaming_4,"I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify","I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify",2019-04-05T18:14:59.195242 streaming_5,"I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify","I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify",2019-04-05T19:38:59.996703 streaming_6,"I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify","I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify",2019-04-05T20:28:57.034859 streaming_7,"I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify","I listen to #282 – David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify",2019-04-05T23:20:58.466136 streaming_8,"I listen to #283 – Chris Mason: Space Travel, Colonization, and Long-Term Survival in Space from Lex Fridman Podcast on Spotify","I listen to #283 – Chris Mason: Space Travel, Colonization, and Long-Term Survival in Space from Lex Fridman Podcast on Spotify",2019-04-05T23:45:58.517419 streaming_9,"I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify","I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify",2019-04-07T02:18:59.548571 streaming_10,"I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify","I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify",2019-04-09T02:09:59.132590 streaming_11,"I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify","I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify",2019-04-10T21:31:59.990678 streaming_12,"I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify","I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify",2019-04-17T15:32:54.334971 streaming_13,"I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify","I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify",2019-04-19T04:16:53.888978 streaming_14,"I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify","I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify",2019-04-19T16:50:59.718676 streaming_15,"I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify","I listen to #284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify",2019-04-19T19:18:58.126081 streaming_16,"I listen to #285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify","I listen to #285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify",2019-04-20T01:34:52.331822 streaming_17,"I listen to #285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify","I listen to #285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify",2019-04-22T15:16:54.972476 streaming_18,I listen to #286 – Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify,I listen to #286 – Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify,2019-04-22T16:12:59.995290 streaming_19,I listen to Estelle from Doris Casella on Spotify,I listen to Estelle from Doris Casella on Spotify,2019-03-02T22:21:59.881629 streaming_20,I listen to Shizukana from Isshi Matsuriza on Spotify,I listen to Shizukana from Isshi Matsuriza on Spotify,2019-03-02T22:23:59.868349 streaming_21,I listen to Un sourire et une larme (valse) from Tom Kristiaan on Spotify,I listen to Un sourire et une larme (valse) from Tom Kristiaan on Spotify,2019-03-02T22:26:59.854020 streaming_22,I listen to Hommage d'amitié from Gunnel Boek on Spotify,I listen to Hommage d'amitié from Gunnel Boek on Spotify,2019-03-02T22:28:59.863576 streaming_23,I listen to Alba from Helmut Schenker on Spotify,I listen to Alba from Helmut Schenker on Spotify,2019-03-02T22:31:59.847108 streaming_24,I listen to Hour of Rest from William Cas on Spotify,I listen to Hour of Rest from William Cas on Spotify,2019-03-02T22:32:59.887473 streaming_25,I listen to As I Dream from Johannes Bornlöf on Spotify,I listen to As I Dream from Johannes Bornlöf on Spotify,2019-03-02T22:37:59.815451 streaming_26,I listen to Spheroidal from Kalen Elmsley on Spotify,I listen to Spheroidal from Kalen Elmsley on Spotify,2019-03-02T22:40:59.815890 streaming_27,I listen to Un Cadeau from Nel Swerts on Spotify,I listen to Un Cadeau from Nel Swerts on Spotify,2019-03-02T22:43:59.843090 streaming_28,I listen to A Beautiful Break from Astrid Sky on Spotify,I listen to A Beautiful Break from Astrid Sky on Spotify,2019-03-02T22:45:59.871498 streaming_29,I listen to Saying Things from Emanuel Fremont on Spotify,I listen to Saying Things from Emanuel Fremont on Spotify,2019-03-02T22:47:59.876560 streaming_30,I listen to Silk from Piano Melancolía on Spotify,I listen to Silk from Piano Melancolía on Spotify,2019-03-02T22:51:59.848256 streaming_31,I listen to Reframe from Norman Dück on Spotify,I listen to Reframe from Norman Dück on Spotify,2019-03-02T22:53:59.873100 streaming_32,I listen to Solace from Armando Bauer on Spotify,I listen to Solace from Armando Bauer on Spotify,2019-03-02T22:55:59.882765 streaming_33,I listen to Nowesind from Jacob David on Spotify,I listen to Nowesind from Jacob David on Spotify,2019-03-02T22:57:59.881052 streaming_34,I listen to Träumerei from Jørg Sorensen on Spotify,I listen to Träumerei from Jørg Sorensen on Spotify,2019-03-02T22:59:59.872852 streaming_35,I listen to Compass from Niwa Nova on Spotify,I listen to Compass from Niwa Nova on Spotify,2019-03-02T23:02:59.860015 streaming_36,I listen to When it drizzles from Alva Brunel on Spotify,I listen to When it drizzles from Alva Brunel on Spotify,2019-03-02T23:06:59.851351 streaming_37,I listen to Dear Buddy from Cinthya Garcia on Spotify,I listen to Dear Buddy from Cinthya Garcia on Spotify,2019-03-02T23:08:59.867234 streaming_38,I listen to Although from Jane Avril on Spotify,I listen to Although from Jane Avril on Spotify,2019-03-02T23:11:59.820243 streaming_39,I listen to La Paix Intérieure from Alain Pironi on Spotify,I listen to La Paix Intérieure from Alain Pironi on Spotify,2019-03-02T23:13:59.873081 streaming_40,I listen to Mind Like Water from Andreas Monta on Spotify,I listen to Mind Like Water from Andreas Monta on Spotify,2019-03-02T23:15:59.880230 streaming_41,I listen to To the Rain from Anna Landström on Spotify,I listen to To the Rain from Anna Landström on Spotify,2019-03-02T23:17:59.854515 streaming_42,I listen to Adesso from Carluccio on Spotify,I listen to Adesso from Carluccio on Spotify,2019-03-02T23:21:59.853158 streaming_43,I listen to Prélude from Olivia Belli on Spotify,I listen to Prélude from Olivia Belli on Spotify,2019-03-02T23:24:59.828395 streaming_44,I listen to Aufgang der Sonne from Ploxxio on Spotify,I listen to Aufgang der Sonne from Ploxxio on Spotify,2019-03-02T23:27:59.827341 streaming_45,I listen to The New Life from Lemos on Spotify,I listen to The New Life from Lemos on Spotify,2019-03-02T23:29:59.861406 streaming_46,I listen to Coulant from Les Rêveries on Spotify,I listen to Coulant from Les Rêveries on Spotify,2019-03-02T23:32:59.851563 streaming_47,I listen to our paths crossing from praam on Spotify,I listen to our paths crossing from praam on Spotify,2019-03-02T23:35:59.894345 streaming_48,I listen to Horizon from Tamara Eden on Spotify,I listen to Horizon from Tamara Eden on Spotify,2019-03-02T23:38:59.857403 streaming_49,I listen to Ruhevoll from Naia Lambert on Spotify,I listen to Ruhevoll from Naia Lambert on Spotify,2019-03-02T23:40:59.860806 streaming_50,I listen to Meditabundus from Kellen Chase on Spotify,I listen to Meditabundus from Kellen Chase on Spotify,2019-03-02T23:42:59.850029 streaming_51,I listen to vierde moment from antinode on Spotify,I listen to vierde moment from antinode on Spotify,2019-03-02T23:46:59.799320 streaming_52,I listen to #286 – Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify,I listen to #286 – Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify,2019-03-03T19:21:58.176027 streaming_53,I listen to #286 – Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify,I listen to #286 – Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify,2019-03-03T22:19:55.579920 streaming_54,"I listen to #285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify","I listen to #285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify",2019-03-03T22:20:59.997132 streaming_55,I listen to #286 – Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify,I listen to #286 – Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify,2019-03-03T22:29:59.510656 streaming_56,I listen to #299 – Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify,I listen to #299 – Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify,2019-03-07T02:30:54.715913 streaming_57,I listen to #299 – Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify,I listen to #299 – Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify,2019-03-07T14:55:57.454255 streaming_58,"I listen to #300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify","I listen to #300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify",2019-03-07T15:52:56.634213 streaming_59,"I listen to #300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify","I listen to #300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify",2019-03-07T20:25:58.992032 streaming_60,"I listen to #300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify","I listen to #300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify",2019-03-10T16:36:58.526016 streaming_61,I listen to Part V: The Old Friend from Exit Scam on Spotify,I listen to Part V: The Old Friend from Exit Scam on Spotify,2019-03-17T15:39:59.999882 streaming_62,I listen to נפילת השמאל הציוני from הכותרת on Spotify,I listen to נפילת השמאל הציוני from הכותרת on Spotify,2019-03-17T15:39:58.337319 streaming_63,I listen to Part V: The Old Friend from Exit Scam on Spotify,I listen to Part V: The Old Friend from Exit Scam on Spotify,2019-03-23T22:30:59.998840 streaming_64,I listen to #295 – Richard Wolff: Marxism and Communism from Lex Fridman Podcast on Spotify,I listen to #295 – Richard Wolff: Marxism and Communism from Lex Fridman Podcast on Spotify,2019-03-23T22:57:59.020807 streaming_65,I listen to #295 – Richard Wolff: Marxism and Communism from Lex Fridman Podcast on Spotify,I listen to #295 – Richard Wolff: Marxism and Communism from Lex Fridman Podcast on Spotify,2019-03-24T02:53:59.999370 streaming_66,I listen to #301 – Jack Barsky: KGB Spy from Lex Fridman Podcast on Spotify,I listen to #301 – Jack Barsky: KGB Spy from Lex Fridman Podcast on Spotify,2019-03-24T03:47:57.137380 streaming_67,I listen to #301 – Jack Barsky: KGB Spy from Lex Fridman Podcast on Spotify,I listen to #301 – Jack Barsky: KGB Spy from Lex Fridman Podcast on Spotify,2019-03-24T21:03:57.085293 streaming_68,I listen to #306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify,I listen to #306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify,2019-03-28T15:13:55.193621 streaming_69,I listen to #306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify,I listen to #306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify,2019-03-29T01:18:58.907601 streaming_70,I listen to #306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify,I listen to #306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify,2019-03-29T17:12:58.377812 streaming_71,I listen to #306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify,I listen to #306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify,2019-03-29T20:00:59.729921 streaming_72,I listen to #207 – Chris Duffin: The Mad Scientist of Strength from Lex Fridman Podcast on Spotify,I listen to #207 – Chris Duffin: The Mad Scientist of Strength from Lex Fridman Podcast on Spotify,2019-03-30T00:26:59.587893 streaming_73,I listen to #207 – Chris Duffin: The Mad Scientist of Strength from Lex Fridman Podcast on Spotify,I listen to #207 – Chris Duffin: The Mad Scientist of Strength from Lex Fridman Podcast on Spotify,2019-03-30T23:57:59.994590 streaming_74,I listen to #298 – Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify,I listen to #298 – Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify,2019-03-30T00:51:56.797826 streaming_75,I listen to #298 – Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify,I listen to #298 – Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify,2019-04-01T20:15:56.262083 streaming_76,I listen to #298 – Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify,I listen to #298 – Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify,2019-04-02T03:02:59.791198 streaming_77,I listen to #299 – Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify,I listen to #299 – Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify,2019-04-02T14:24:59.994295 streaming_78,"I listen to #277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify","I listen to #277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify",2019-04-05T18:00:59.997247 streaming_79,I listen to #299 – Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify,I listen to #299 – Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify,2019-04-05T18:00:59.999478 streaming_80,"I listen to #277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify","I listen to #277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify",2019-04-05T19:50:56.902858 streaming_81,"I listen to #277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify","I listen to #277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify",2019-04-05T23:46:55.538729 streaming_82,"I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify","I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify",2019-04-08T06:01:57.093682 streaming_83,"I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify","I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify",2019-04-08T19:39:57.271936 streaming_84,"I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify","I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify",2019-04-08T21:50:58.395412 streaming_85,I listen to Xanadu from Olivia Newton-John on Spotify,I listen to Xanadu from Olivia Newton-John on Spotify,2019-04-09T17:42:59.791494 streaming_86,I listen to Carried Away - Alternate Mix / Remastered 2021 from Olivia Newton-John on Spotify,I listen to Carried Away - Alternate Mix / Remastered 2021 from Olivia Newton-John on Spotify,2019-04-09T17:46:59.773902 streaming_87,I listen to Physical - Remastered 2021 from Olivia Newton-John on Spotify,I listen to Physical - Remastered 2021 from Olivia Newton-John on Spotify,2019-04-09T17:50:59.774008 streaming_88,I listen to Shaking You - Remastered 2021 from Olivia Newton-John on Spotify,I listen to Shaking You - Remastered 2021 from Olivia Newton-John on Spotify,2019-04-09T17:54:59.743864 streaming_89,"I listen to I Love You, I Honestly Love You from Olivia Newton-John on Spotify","I listen to I Love You, I Honestly Love You from Olivia Newton-John on Spotify",2019-04-09T17:58:59.779667 streaming_90,I listen to Carried Away - Remastered 2021 from Olivia Newton-John on Spotify,I listen to Carried Away - Remastered 2021 from Olivia Newton-John on Spotify,2019-04-09T18:02:59.774126 streaming_91,I listen to Have You Never Been Mellow from Olivia Newton-John on Spotify,I listen to Have You Never Been Mellow from Olivia Newton-John on Spotify,2019-04-09T18:05:59.786467 streaming_92,I listen to Livin' In Desperate Times - Extended Version / Remastered 2021 from Olivia Newton-John on Spotify,I listen to Livin' In Desperate Times - Extended Version / Remastered 2021 from Olivia Newton-John on Spotify,2019-04-09T18:12:59.598201 streaming_93,I listen to You're The One That I Want - From “Grease” from John Travolta on Spotify,I listen to You're The One That I Want - From “Grease” from John Travolta on Spotify,2019-04-10T03:44:59.830160 streaming_94,I listen to Goodbye Girl from David Gates on Spotify,I listen to Goodbye Girl from David Gates on Spotify,2019-04-10T03:47:59.831134 streaming_95,I listen to Two In Love from Michael Johnson on Spotify,I listen to Two In Love from Michael Johnson on Spotify,2019-04-10T03:50:59.821534 streaming_96,I listen to When You Wish Upon a Star from Stephen Bishop on Spotify,I listen to When You Wish Upon a Star from Stephen Bishop on Spotify,2019-04-10T03:53:59.799840 streaming_97,I listen to Try To Make It True from Quarterflash on Spotify,I listen to Try To Make It True from Quarterflash on Spotify,2019-04-10T03:57:59.781467 streaming_98,I listen to Willpower from Taylor Dayne on Spotify,I listen to Willpower from Taylor Dayne on Spotify,2019-04-10T03:58:59.960589 streaming_99,I listen to Willpower from Taylor Dayne on Spotify,I listen to Willpower from Taylor Dayne on Spotify,2019-04-10T18:59:59.809853 streaming_100,I listen to If You Ever Change Your Mind from Crystal Gayle on Spotify,I listen to If You Ever Change Your Mind from Crystal Gayle on Spotify,2019-04-10T19:02:59.805534 streaming_101,I listen to #290 – Dan Reynolds: Imagine Dragons from Lex Fridman Podcast on Spotify,I listen to #290 – Dan Reynolds: Imagine Dragons from Lex Fridman Podcast on Spotify,2019-04-11T00:02:53.600471 streaming_102,I listen to #290 – Dan Reynolds: Imagine Dragons from Lex Fridman Podcast on Spotify,I listen to #290 – Dan Reynolds: Imagine Dragons from Lex Fridman Podcast on Spotify,2019-04-11T00:39:58.542013 streaming_103,I listen to #291 – Jonathan Haidt: The Case Against Social Media from Lex Fridman Podcast on Spotify,I listen to #291 – Jonathan Haidt: The Case Against Social Media from Lex Fridman Podcast on Spotify,2019-04-11T15:29:56.176277 streaming_104,I listen to #291 – Jonathan Haidt: The Case Against Social Media from Lex Fridman Podcast on Spotify,I listen to #291 – Jonathan Haidt: The Case Against Social Media from Lex Fridman Podcast on Spotify,2019-04-12T19:54:57.706751 streaming_105,"I listen to #292 – Robin Hanson: Alien Civilizations, UFOs, and the Future of Humanity from Lex Fridman Podcast on Spotify","I listen to #292 – Robin Hanson: Alien Civilizations, UFOs, and the Future of Humanity from Lex Fridman Podcast on Spotify",2019-04-12T20:10:59.420645 streaming_106,"I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify","I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify",2019-04-13T18:46:55.390590 streaming_107,"I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify","I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify",2019-04-13T22:38:56.433995 streaming_108,I listen to #310 – Andrew Bustamante: CIA Spy from Lex Fridman Podcast on Spotify,I listen to #310 – Andrew Bustamante: CIA Spy from Lex Fridman Podcast on Spotify,2019-04-14T17:20:59.995757 streaming_109,"I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify","I listen to #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify",2019-04-14T17:20:56.584921 trips_0,"Here's a summary of the trip: You have been to South Korea, Seoul, Seocho-gu, Jung-gu, Gwanak-gu, Yeongdeungpo-gu, and Unseo-dong. You have visited the Incheon International Airport Terminal 1, Seoul National University Gwanak Campus, Bangbae-ro, and Yangpyeong-ro 28da-gil.","Here's a summary of the trip: You have been to South Korea, Seoul, Seocho-gu, Jung-gu, Gwanak-gu, Yeongdeungpo-gu, and Unseo-dong. You have visited the Incheon International Airport Terminal 1, Seoul National University Gwanak Campus, Bangbae-ro, and Yangpyeong-ro 28da-gil.",2019-03-27 11:42:43+09:00 trips_1,"Here's a summary of the trip: Japan: Tokyo (Minato, Bunkyo, Meguro, Sanmu, Chiba Prefecture), Roppongi Hills, Tokyo Prince Hotel, Asahi Shokudo, University of Tokyo (Hongo Campus), 中里橋, Roppongi Hills Mori Tower, 191L, Grand Hyatt Tokyo.","Here's a summary of the trip: Japan: Tokyo (Minato, Bunkyo, Meguro, Sanmu, Chiba Prefecture), Roppongi Hills, Tokyo Prince Hotel, Asahi Shokudo, University of Tokyo (Hongo Campus), 中里橋, Roppongi Hills Mori Tower, 191L, Grand Hyatt Tokyo.",2019-03-28 20:38:13+09:00 trips_2,"Here's a summary of the trip: Taiwan: Taipei (City Hall Rd., Dongmen Village, Huashan, Longtsakoo, Xingya, Xinyi Commercial Zone, Zhongzheng District, Zhongxiao East Road Section 2), Xinyi District (Chezeng, Liuhe Village, Sanli Village, Xinglong Village), Jinshan North Road. Places: Liberty Square, Democracy Boulevard, Dongmen Village, Chiang Kai-shek Memorial Hall, Cama Cafe, Xiangshan Tunnel, Six Boulders Photographing Platform, Sun Yat-sen Memorial Hall, Bigtom美國冰淇淋咖啡館, 101塔樓1號攝影平台, 楠楠相望, 象山自然步道, 象山親山步道永春亭線, 象山親山步道主線(稜線), 梅花","Here's a summary of the trip: Taiwan: Taipei (City Hall Rd., Dongmen Village, Huashan, Longtsakoo, Xingya, Xinyi Commercial Zone, Zhongzheng District, Zhongxiao East Road Section 2), Xinyi District (Chezeng, Liuhe Village, Sanli Village, Xinglong Village), Jinshan North Road. Places: Liberty Square, Democracy Boulevard, Dongmen Village, Chiang Kai-shek Memorial Hall, Cama Cafe, Xiangshan Tunnel, Six Boulders Photographing Platform, Sun Yat-sen Memorial Hall, Bigtom美國冰淇淋咖啡館, 101塔樓1號攝影平台, 楠楠相望, 象山自然步道, 象山親山步道永春亭線, 象山親山步道主線(稜線), 梅花",2019-03-31 10:51:04+08:00 trips_3,"Here's a summary of the trip: You have been to Canada, British Columbia, Vancouver, Gastown, Downtown, Canada Place, Seawall, Jack Poole Plaza, West Waterfront Road, West Cordova Street, Fairmont Pacific Rim, and Shaw Tower.","Here's a summary of the trip: You have been to Canada, British Columbia, Vancouver, Gastown, Downtown, Canada Place, Seawall, Jack Poole Plaza, West Waterfront Road, West Cordova Street, Fairmont Pacific Rim, and Shaw Tower.",2019-04-14 19:19:06-07:00 trips_4,"Here's a summary of the trip: You have been to the United States (Arizona and Utah), Coconino County and Yavapai County in Arizona, Sedona City Limit in Arizona, Grand Canyon Village, Bitter Springs, Western Navajo Agency, Wahweap, Oak Creek Dev No. 1, Southwest Center, Garfield County in Utah, and Tropic in Garfield County in Utah. You have visited places such as Mather Point Amphitheatre, Airport Mesa Viewpoint, Lake Powell Resort, Sedona View Trail, Sedona Airport Overlook, AZ 89A, Brewer Trail, Navajo Viewpoint, Mather Point, Airport Loop Trail, Rim Trail, US 89, Casa Sedona Inn, UT-12, Yavapai East 7451-7483, Yavapai Geology Museum, Yavapai Point, 1.5 Mile Resthouse, Grand Canyon, Sedona Airport, 2 Emblem Place, and Crusty.","Here's a summary of the trip: You have been to the United States (Arizona and Utah), Coconino County and Yavapai County in Arizona, Sedona City Limit in Arizona, Grand Canyon Village, Bitter Springs, Western Navajo Agency, Wahweap, Oak Creek Dev No. 1, Southwest Center, Garfield County in Utah, and Tropic in Garfield County in Utah. You have visited places such as Mather Point Amphitheatre, Airport Mesa Viewpoint, Lake Powell Resort, Sedona View Trail, Sedona Airport Overlook, AZ 89A, Brewer Trail, Navajo Viewpoint, Mather Point, Airport Loop Trail, Rim Trail, US 89, Casa Sedona Inn, UT-12, Yavapai East 7451-7483, Yavapai Geology Museum, Yavapai Point, 1.5 Mile Resthouse, Grand Canyon, Sedona Airport, 2 Emblem Place, and Crusty.",2019-04-24 18:32:53-07:00 trips_5,"Here's a summary of the trip: You have been to the United States in the states of Utah and Arizona. You have visited the cities/towns of Tropic, Utah and the places Navajo Loop Trailhead, Sunset Point, Sunrise Point, Rim Trail, and Queen's Garden Trail.","Here's a summary of the trip: You have been to the United States in the states of Utah and Arizona. You have visited the cities/towns of Tropic, Utah and the places Navajo Loop Trailhead, Sunset Point, Sunrise Point, Rim Trail, and Queen's Garden Trail.",2019-04-27 17:37:11-06:00 ================================================ FILE: sample_data/episodes.json ================================================ [ { "id":"books_26", "desc":"I purchased the book \"I Am a Strange Loop\" from Amazon Kindle", "details":"I purchased the book \"I Am a Strange Loop\" from Amazon Kindle", "date":"2019-04-19T04:37:00" }, { "id":"books_27", "desc":"I purchased the book \"I Am a Strange Loop\" from Amazon Kindle", "details":"I purchased the book \"I Am a Strange Loop\" from Amazon Kindle", "date":"2019-04-17T04:50:00" }, { "id":"books_28", "desc":"I purchased the book \"War and Peace\" from Amazon Kindle", "details":"I purchased the book \"War and Peace\" from Amazon Kindle", "date":"2019-04-15T03:54:00" }, { "id":"books_29", "desc":"I purchased the book \"War and Peace\" from Amazon Kindle", "details":"I purchased the book \"War and Peace\" from Amazon Kindle", "date":"2019-04-05T19:23:00" }, { "id":"books_30", "desc":"I purchased the book \"War and Peace\" from Amazon Kindle", "details":"I purchased the book \"War and Peace\" from Amazon Kindle", "date":"2019-04-05T16:26:00" }, { "id":"books_31", "desc":"I purchased the book \"The Culture Map\" from Amazon Kindle", "details":"I purchased the book \"The Culture Map\" from Amazon Kindle", "date":"2019-03-28T15:06:00" }, { "id":"books_32", "desc":"I purchased the book \"The Culture Map\" from Amazon Kindle", "details":"I purchased the book \"The Culture Map\" from Amazon Kindle", "date":"2019-03-23T05:02:00" }, { "id":"books_33", "desc":"I purchased the book \"War and Peace\" from Amazon Kindle", "details":"I purchased the book \"War and Peace\" from Amazon Kindle", "date":"2019-03-14T16:26:00" }, { "id":"books_34", "desc":"I purchased the book \"Neuromancer\" from Amazon Kindle", "details":"I purchased the book \"Neuromancer\" from Amazon Kindle", "date":"2019-03-14T16:22:00" }, { "id":"books_35", "desc":"I purchased the book \"Horse\" from Amazon Kindle", "details":"I purchased the book \"Horse\" from Amazon Kindle", "date":"2019-03-03T23:17:00" }, { "id":"books_36", "desc":"I purchased the book \"Exhalation\" from Amazon Kindle", "details":"I purchased the book \"Exhalation\" from Amazon Kindle", "date":"2019-03-03T23:16:00" }, { "id":"books_37", "desc":"I purchased the book \"Neuromancer\" from Amazon Kindle", "details":"I purchased the book \"Neuromancer\" from Amazon Kindle", "date":"2019-04-30T16:51:00" }, { "id":"books_38", "desc":"I purchased the book \"Exhalation\" from Amazon Kindle", "details":"I purchased the book \"Exhalation\" from Amazon Kindle", "date":"2019-04-28T04:25:00" }, { "id":"books_39", "desc":"I purchased the book \"Give and Take\" from Amazon Kindle", "details":"I purchased the book \"Give and Take\" from Amazon Kindle", "date":"2019-04-27T13:27:00" }, { "id":"books_40", "desc":"I purchased the book \"Hallucinations\" from Amazon Kindle", "details":"I purchased the book \"Hallucinations\" from Amazon Kindle", "date":"2019-04-18T11:22:00" }, { "id":"books_41", "desc":"I purchased the book \"Horse\" from Amazon Kindle", "details":"I purchased the book \"Horse\" from Amazon Kindle", "date":"2019-04-16T00:11:00" }, { "id":"books_42", "desc":"I purchased the book \"Think Again\" from Amazon Kindle", "details":"I purchased the book \"Think Again\" from Amazon Kindle", "date":"2019-04-13T23:11:00" }, { "id":"books_43", "desc":"I purchased the book \"Give and Take\" from Amazon Kindle", "details":"I purchased the book \"Give and Take\" from Amazon Kindle", "date":"2019-04-10T02:24:00" }, { "id":"books_44", "desc":"I purchased the book \"Into the Magic Shop\" from Amazon Kindle", "details":"I purchased the book \"Into the Magic Shop\" from Amazon Kindle", "date":"2019-04-10T02:23:00" }, { "id":"books_45", "desc":"I purchased the book \"Good Anxiety\" from Amazon Kindle", "details":"I purchased the book \"Good Anxiety\" from Amazon Kindle", "date":"2019-04-06T14:35:00" }, { "id":"books_46", "desc":"I purchased the book \"Hallucinations\" from Amazon Kindle", "details":"I purchased the book \"Hallucinations\" from Amazon Kindle", "date":"2019-04-05T23:52:00" }, { "id":"books_47", "desc":"I purchased the book \"Think Again\" from Amazon Kindle", "details":"I purchased the book \"Think Again\" from Amazon Kindle", "date":"2019-04-05T23:51:00" }, { "id":"books_48", "desc":"I purchased the book \"Neuromancer\" from Amazon Kindle", "details":"I purchased the book \"Neuromancer\" from Amazon Kindle", "date":"2019-04-04T03:49:00" }, { "id":"books_49", "desc":"I purchased the book \"Into the Magic Shop\" from Amazon Kindle", "details":"I purchased the book \"Into the Magic Shop\" from Amazon Kindle", "date":"2019-04-03T20:17:00" }, { "id":"books_50", "desc":"I purchased the book \"Healthy Brain, Happy Life\" from Amazon Kindle", "details":"I purchased the book \"Healthy Brain, Happy Life\" from Amazon Kindle", "date":"2019-04-03T04:23:00" }, { "id":"books_51", "desc":"I purchased the book \"Good Anxiety\" from Amazon Kindle", "details":"I purchased the book \"Good Anxiety\" from Amazon Kindle", "date":"2019-04-03T04:23:00" }, { "id":"books_52", "desc":"I purchased the book \"Year of Wonders\" from Amazon Kindle", "details":"I purchased the book \"Year of Wonders\" from Amazon Kindle", "date":"2019-03-29T20:50:00" }, { "id":"books_53", "desc":"I purchased the book \"Healthy Brain, Happy Life\" from Amazon Kindle", "details":"I purchased the book \"Healthy Brain, Happy Life\" from Amazon Kindle", "date":"2019-03-28T04:08:00" }, { "id":"books_54", "desc":"I purchased the book \"Year of Wonders\" from Amazon Kindle", "details":"I purchased the book \"Year of Wonders\" from Amazon Kindle", "date":"2019-03-24T20:24:00" }, { "id":"books_55", "desc":"I purchased the book \"Horse\" from Amazon Kindle", "details":"I purchased the book \"Horse\" from Amazon Kindle", "date":"2019-03-24T20:22:00" }, { "id":"books_56", "desc":"I purchased the book \"Hallucinations\" from Amazon Kindle", "details":"I purchased the book \"Hallucinations\" from Amazon Kindle", "date":"2019-03-24T20:19:00" }, { "id":"books_57", "desc":"I purchased the book \"The River of Consciousness\" from Amazon Kindle", "details":"I purchased the book \"The River of Consciousness\" from Amazon Kindle", "date":"2019-03-24T20:15:00" }, { "id":"books_58", "desc":"I purchased the book \"The River of Consciousness\" from Amazon Kindle", "details":"I purchased the book \"The River of Consciousness\" from Amazon Kindle", "date":"2019-03-23T14:26:00" }, { "id":"books_59", "desc":"I purchased the book \"Originals\" from Amazon Kindle", "details":"I purchased the book \"Originals\" from Amazon Kindle", "date":"2019-03-23T14:25:00" }, { "id":"books_60", "desc":"I purchased the book \"The River of Consciousness\" from Amazon Kindle", "details":"I purchased the book \"The River of Consciousness\" from Amazon Kindle", "date":"2019-03-23T14:24:00" }, { "id":"books_61", "desc":"I purchased the book \"The River of Consciousness\" from Amazon Kindle", "details":"I purchased the book \"The River of Consciousness\" from Amazon Kindle", "date":"2019-03-23T14:23:00" }, { "id":"books_62", "desc":"I purchased the book \"Originals\" from Amazon Kindle", "details":"I purchased the book \"Originals\" from Amazon Kindle", "date":"2019-03-20T23:47:00" }, { "id":"books_63", "desc":"I purchased the book \"Give and Take\" from Amazon Kindle", "details":"I purchased the book \"Give and Take\" from Amazon Kindle", "date":"2019-03-20T23:46:00" }, { "id":"books_64", "desc":"I purchased the book \"Think Again\" from Amazon Kindle", "details":"I purchased the book \"Think Again\" from Amazon Kindle", "date":"2019-03-20T23:46:00" }, { "id":"books_65", "desc":"I purchased the book \"Stories of Your Life and Others\" from Amazon Kindle", "details":"I purchased the book \"Stories of Your Life and Others\" from Amazon Kindle", "date":"2019-03-20T00:21:00" }, { "id":"books_66", "desc":"I purchased the book \"The Psychology of Money: Timeless lessons on wealth, greed, and happiness\" from Amazon Kindle", "details":"I purchased the book \"The Psychology of Money: Timeless lessons on wealth, greed, and happiness\" from Amazon Kindle", "date":"2019-03-20T00:20:00" }, { "id":"books_67", "desc":"I purchased the book \"Stories of Your Life and Others\" from Amazon Kindle", "details":"I purchased the book \"Stories of Your Life and Others\" from Amazon Kindle", "date":"2019-03-16T22:10:00" }, { "id":"books_68", "desc":"I purchased the book \"Einstein\" from Amazon Kindle", "details":"I purchased the book \"Einstein\" from Amazon Kindle", "date":"2019-03-16T22:09:00" }, { "id":"books_69", "desc":"I purchased the book \"How to Win Friends & Influence People in the Digital Age\" from Amazon Kindle", "details":"I purchased the book \"How to Win Friends & Influence People in the Digital Age\" from Amazon Kindle", "date":"2019-03-11T15:40:00" }, { "id":"books_70", "desc":"I purchased the book \"The Culture Map\" from Amazon Kindle", "details":"I purchased the book \"The Culture Map\" from Amazon Kindle", "date":"2019-03-11T00:07:00" }, { "id":"books_71", "desc":"I purchased the book \"Einstein\" from Amazon Kindle", "details":"I purchased the book \"Einstein\" from Amazon Kindle", "date":"2019-03-05T17:07:00" }, { "id":"books_72", "desc":"I purchased the book \"1491\" from Amazon Kindle", "details":"I purchased the book \"1491\" from Amazon Kindle", "date":"2019-03-05T17:04:00" }, { "id":"books_73", "desc":"I purchased the book \"The Psychology of Money: Timeless lessons on wealth, greed, and happiness\" from Amazon Kindle", "details":"I purchased the book \"The Psychology of Money: Timeless lessons on wealth, greed, and happiness\" from Amazon Kindle", "date":"2019-03-05T09:45:00" }, { "id":"books_74", "desc":"I purchased the book \"The Psychology of Money: Timeless lessons on wealth, greed, and happiness\" from Amazon Kindle", "details":"I purchased the book \"The Psychology of Money: Timeless lessons on wealth, greed, and happiness\" from Amazon Kindle", "date":"2019-04-29T18:04:00" }, { "id":"books_75", "desc":"I purchased the book \"The Psychology of Money\" from Amazon Kindle", "details":"I purchased the book \"The Psychology of Money\" from Amazon Kindle", "date":"2019-04-27T03:18:00" }, { "id":"books_76", "desc":"I purchased the book \"1491\" from Amazon Kindle", "details":"I purchased the book \"1491\" from Amazon Kindle", "date":"2019-04-26T00:41:00" }, { "id":"books_77", "desc":"I purchased the book \"The Boys\" from Amazon Kindle", "details":"I purchased the book \"The Boys\" from Amazon Kindle", "date":"2019-04-25T14:39:00" }, { "id":"books_78", "desc":"I purchased the book \"The Boys\" from Amazon Kindle", "details":"I purchased the book \"The Boys\" from Amazon Kindle", "date":"2019-04-22T17:47:00" }, { "id":"books_79", "desc":"I purchased the book \"How to Win Friends & Influence People in the Digital Age\" from Amazon Kindle", "details":"I purchased the book \"How to Win Friends & Influence People in the Digital Age\" from Amazon Kindle", "date":"2019-04-21T15:40:00" }, { "id":"books_80", "desc":"I purchased the book \"How the World Really Works\" from Amazon Kindle", "details":"I purchased the book \"How the World Really Works\" from Amazon Kindle", "date":"2019-04-20T22:06:00" }, { "id":"books_81", "desc":"I purchased the book \"From Strength to Strength\" from Amazon Kindle", "details":"I purchased the book \"From Strength to Strength\" from Amazon Kindle", "date":"2019-04-18T03:50:00" }, { "id":"books_82", "desc":"I purchased the book \"How the World Really Works\" from Amazon Kindle", "details":"I purchased the book \"How the World Really Works\" from Amazon Kindle", "date":"2019-04-14T17:30:00" }, { "id":"books_83", "desc":"I purchased the book \"1491\" from Amazon Kindle", "details":"I purchased the book \"1491\" from Amazon Kindle", "date":"2019-04-07T23:17:00" }, { "id":"books_84", "desc":"I purchased the book \"The Boys\" from Amazon Kindle", "details":"I purchased the book \"The Boys\" from Amazon Kindle", "date":"2019-04-03T20:41:00" }, { "id":"books_85", "desc":"I purchased the book \"The Devil's Star\" from Amazon Kindle", "details":"I purchased the book \"The Devil's Star\" from Amazon Kindle", "date":"2019-03-28T17:36:00" }, { "id":"books_86", "desc":"I purchased the book \"The Bitcoin Standard\" from Amazon Kindle", "details":"I purchased the book \"The Bitcoin Standard\" from Amazon Kindle", "date":"2019-03-24T22:41:00" }, { "id":"books_87", "desc":"I purchased the book \"The Devil's Star\" from Amazon Kindle", "details":"I purchased the book \"The Devil's Star\" from Amazon Kindle", "date":"2019-03-07T17:36:00" }, { "id":"books_88", "desc":"I purchased the book \"Mating in Captivity\" from Amazon Kindle", "details":"I purchased the book \"Mating in Captivity\" from Amazon Kindle", "date":"2019-03-06T03:51:00" }, { "id":"books_89", "desc":"I purchased the book \"How the World Really Works\" from Amazon Kindle", "details":"I purchased the book \"How the World Really Works\" from Amazon Kindle", "date":"2019-03-06T03:05:00" }, { "id":"books_90", "desc":"I purchased the book \"The Lincoln Highway\" from Amazon Kindle", "details":"I purchased the book \"The Lincoln Highway\" from Amazon Kindle", "date":"2019-03-06T03:04:00" }, { "id":"books_91", "desc":"I purchased the book \"The Three-Body Problem\" from Amazon Kindle", "details":"I purchased the book \"The Three-Body Problem\" from Amazon Kindle", "date":"2019-03-04T03:07:00" }, { "id":"books_92", "desc":"I purchased the book \"Mating in Captivity\" from Amazon Kindle", "details":"I purchased the book \"Mating in Captivity\" from Amazon Kindle", "date":"2019-03-04T03:07:00" }, { "id":"books_93", "desc":"I purchased the book \"The Culture Map\" from Amazon Kindle", "details":"I purchased the book \"The Culture Map\" from Amazon Kindle", "date":"2019-03-04T03:06:00" }, { "id":"books_94", "desc":"I purchased the book \"The Bitcoin Standard\" from Amazon Kindle", "details":"I purchased the book \"The Bitcoin Standard\" from Amazon Kindle", "date":"2019-03-03T22:41:00" }, { "id":"books_95", "desc":"I purchased the book \"The Three-Body Problem\" from Amazon Kindle", "details":"I purchased the book \"The Three-Body Problem\" from Amazon Kindle", "date":"2019-04-21T19:17:00" }, { "id":"books_96", "desc":"I purchased the book \"The Ministry for the Future\" from Amazon Kindle", "details":"I purchased the book \"The Ministry for the Future\" from Amazon Kindle", "date":"2019-04-05T18:59:00" }, { "id":"books_97", "desc":"I purchased the book \"Benjamin Franklin\" from Amazon Kindle", "details":"I purchased the book \"Benjamin Franklin\" from Amazon Kindle", "date":"2019-03-28T21:42:00" }, { "id":"books_98", "desc":"I purchased the book \"The Curious Case of Benjamin Button and Other Jazz Age Tales\" from Amazon Kindle", "details":"I purchased the book \"The Curious Case of Benjamin Button and Other Jazz Age Tales\" from Amazon Kindle", "date":"2019-03-18T23:42:00" }, { "id":"books_99", "desc":"I purchased the book \"The House of the Spirits\" from Amazon Kindle", "details":"I purchased the book \"The House of the Spirits\" from Amazon Kindle", "date":"2019-03-18T23:41:00" }, { "id":"books_100", "desc":"I purchased the book \"The Ministry for the Future\" from Amazon Kindle", "details":"I purchased the book \"The Ministry for the Future\" from Amazon Kindle", "date":"2019-03-15T18:59:00" }, { "id":"books_101", "desc":"I purchased the book \"The Body\" from Amazon Kindle", "details":"I purchased the book \"The Body\" from Amazon Kindle", "date":"2019-03-08T17:18:00" }, { "id":"books_102", "desc":"I purchased the book \"Benjamin Franklin\" from Amazon Kindle", "details":"I purchased the book \"Benjamin Franklin\" from Amazon Kindle", "date":"2019-03-07T21:42:00" }, { "id":"books_103", "desc":"I purchased the book \"The Curious Case of Benjamin Button and Other Jazz Age Tales\" from Amazon Kindle", "details":"I purchased the book \"The Curious Case of Benjamin Button and Other Jazz Age Tales\" from Amazon Kindle", "date":"2019-04-27T23:42:00" }, { "id":"books_104", "desc":"I purchased the book \"The House of the Spirits\" from Amazon Kindle", "details":"I purchased the book \"The House of the Spirits\" from Amazon Kindle", "date":"2019-04-27T23:41:00" }, { "id":"books_105", "desc":"I purchased the book \"The Ministry for the Future\" from Amazon Kindle", "details":"I purchased the book \"The Ministry for the Future\" from Amazon Kindle", "date":"2019-04-24T22:57:00" }, { "id":"books_106", "desc":"I purchased the book \"Leonardo da Vinci\" from Amazon Kindle", "details":"I purchased the book \"Leonardo da Vinci\" from Amazon Kindle", "date":"2019-04-24T18:43:00" }, { "id":"books_107", "desc":"I purchased the book \"The Body\" from Amazon Kindle", "details":"I purchased the book \"The Body\" from Amazon Kindle", "date":"2019-04-17T17:18:00" }, { "id":"books_108", "desc":"I purchased the book \"Benjamin Franklin\" from Amazon Kindle", "details":"I purchased the book \"Benjamin Franklin\" from Amazon Kindle", "date":"2019-04-17T17:16:00" }, { "id":"books_109", "desc":"I purchased the book \"Leonardo da Vinci\" from Amazon Kindle", "details":"I purchased the book \"Leonardo da Vinci\" from Amazon Kindle", "date":"2019-04-03T18:43:00" }, { "id":"books_111", "desc":"I purchased the book \"A Thousand Brains: A New Theory of Intelligence\" from Amazon Kindle", "details":"I purchased the book \"A Thousand Brains: A New Theory of Intelligence\" from Amazon Kindle", "date":"2019-04-28T16:51:51" }, { "id":"books_112", "desc":"I purchased the book \"50 Greatest Positive Psychology Quotes: A Beautiful Photo Book of The Most Inspiring Positive Psychological Quotes\" from Amazon Kindle", "details":"I purchased the book \"50 Greatest Positive Psychology Quotes: A Beautiful Photo Book of The Most Inspiring Positive Psychological Quotes\" from Amazon Kindle", "date":"2019-04-20T16:51:51" }, { "id":"books_113", "desc":"I purchased the book \"Before the Coffee Gets Cold: A Novel (Before the Coffee Gets Cold Series Book 1)\" from Amazon Kindle", "details":"I purchased the book \"Before the Coffee Gets Cold: A Novel (Before the Coffee Gets Cold Series Book 1)\" from Amazon Kindle", "date":"2019-03-27T16:51:51" }, { "id":"books_114", "desc":"I purchased the book \"The Enigma of Reason\" from Amazon Kindle", "details":"I purchased the book \"The Enigma of Reason\" from Amazon Kindle", "date":"2019-03-24T16:51:51" }, { "id":"books_115", "desc":"I purchased the book \"Snow Crash: A Novel\" from Amazon Kindle", "details":"I purchased the book \"Snow Crash: A Novel\" from Amazon Kindle", "date":"2019-03-12T16:51:51" }, { "id":"books_267", "desc":"I purchased the book \"The Innovators\" from Amazon Kindle", "details":"I purchased the book \"The Innovators\" from Amazon Kindle", "date":"2019-03-08T16:51:51" }, { "id":"books_268", "desc":"I purchased the book \"Life 3.0\" from Amazon Kindle", "details":"I purchased the book \"Life 3.0\" from Amazon Kindle", "date":"2019-03-08T16:51:51" }, { "id":"books_269", "desc":"I purchased the book \"Total Recall\" from Amazon Kindle", "details":"I purchased the book \"Total Recall\" from Amazon Kindle", "date":"2019-03-17T16:51:51" }, { "id":"books_270", "desc":"I purchased the book \"Discovery Trial\" from Amazon Kindle", "details":"I purchased the book \"Discovery Trial\" from Amazon Kindle", "date":"2019-04-28T16:51:51" }, { "id":"exercise_35", "desc":"I exercised by 08:00: running 39 minutes ", "details":"I exercised by 08:00: running 39 minutes ", "date":"2019-03-02 08:00:34-08:00" }, { "id":"exercise_36", "desc":"I exercised by 06:55: running 25 minutes ", "details":"I exercised by 06:55: running 25 minutes ", "date":"2019-03-05 06:55:11-08:00" }, { "id":"exercise_37", "desc":"I exercised by 08:32: running 40 minutes ", "details":"I exercised by 08:32: running 40 minutes ", "date":"2019-03-07 08:32:33-08:00" }, { "id":"exercise_38", "desc":"I exercised by 07:27: running 51 minutes ", "details":"I exercised by 07:27: running 51 minutes ", "date":"2019-03-09 07:27:37-08:00" }, { "id":"exercise_39", "desc":"I exercised by 06:49: running 52 minutes ", "details":"I exercised by 06:49: running 52 minutes ", "date":"2019-03-11 06:49:09-07:00" }, { "id":"exercise_40", "desc":"I exercised by 07:22: running 40 minutes ", "details":"I exercised by 07:22: running 40 minutes ", "date":"2019-03-13 07:22:20-07:00" }, { "id":"exercise_41", "desc":"I exercised by 06:31: running 59 minutes ", "details":"I exercised by 06:31: running 59 minutes ", "date":"2019-03-15 06:31:18-07:00" }, { "id":"exercise_42", "desc":"I exercised by 07:11: running 27 minutes ", "details":"I exercised by 07:11: running 27 minutes ", "date":"2019-03-17 07:11:09-07:00" }, { "id":"exercise_43", "desc":"I exercised by 05:29: running 27 minutes ", "details":"I exercised by 05:29: running 27 minutes ", "date":"2019-03-18 05:29:42-07:00" }, { "id":"exercise_44", "desc":"I exercised by 06:34: running 54 minutes ", "details":"I exercised by 06:34: running 54 minutes ", "date":"2019-03-19 06:34:16-07:00" }, { "id":"exercise_45", "desc":"I exercised by 07:19: running 43 minutes ", "details":"I exercised by 07:19: running 43 minutes ", "date":"2019-03-21 07:19:26-07:00" }, { "id":"exercise_46", "desc":"I exercised by 09:49: running 51 minutes ", "details":"I exercised by 09:49: running 51 minutes ", "date":"2019-03-23 09:49:54-07:00" }, { "id":"exercise_47", "desc":"I exercised by 06:57: running 25 minutes ", "details":"I exercised by 06:57: running 25 minutes ", "date":"2019-03-25 06:57:57-07:00" }, { "id":"exercise_48", "desc":"I exercised by 13:16: running 25 minutes ", "details":"I exercised by 13:16: running 25 minutes ", "date":"2019-03-26 13:16:14-07:00" }, { "id":"exercise_49", "desc":"I exercised by 14:32: running 25 minutes ", "details":"I exercised by 14:32: running 25 minutes ", "date":"2019-03-28 14:32:20-07:00" }, { "id":"exercise_50", "desc":"I exercised by 14:03: running 26 minutes ", "details":"I exercised by 14:03: running 26 minutes ", "date":"2019-03-29 14:03:32-07:00" }, { "id":"exercise_51", "desc":"I exercised by 15:42: running 24 minutes ", "details":"I exercised by 15:42: running 24 minutes ", "date":"2019-03-30 15:42:25-07:00" }, { "id":"exercise_52", "desc":"I exercised by 06:48: running 24 minutes ", "details":"I exercised by 06:48: running 24 minutes ", "date":"2019-04-01 06:48:07+08:00" }, { "id":"exercise_53", "desc":"I exercised by 00:32: running 41 minutes ", "details":"I exercised by 00:32: running 41 minutes ", "date":"2019-04-04 00:32:10+08:00" }, { "id":"exercise_54", "desc":"I exercised by 06:15: running 40 minutes ", "details":"I exercised by 06:15: running 40 minutes ", "date":"2019-04-05 06:15:21-07:00" }, { "id":"exercise_55", "desc":"I exercised by 06:38: running 51 minutes ", "details":"I exercised by 06:38: running 51 minutes ", "date":"2019-04-07 06:38:31-07:00" }, { "id":"exercise_56", "desc":"I exercised by 06:27: running 39 minutes ", "details":"I exercised by 06:27: running 39 minutes ", "date":"2019-04-08 06:27:28-07:00" }, { "id":"exercise_57", "desc":"I exercised by 15:25: running 24 minutes ", "details":"I exercised by 15:25: running 24 minutes ", "date":"2019-04-10 15:25:29-07:00" }, { "id":"exercise_58", "desc":"I exercised by 07:25: running 112 minutes ", "details":"I exercised by 07:25: running 112 minutes ", "date":"2019-04-12 07:25:13-07:00" }, { "id":"exercise_59", "desc":"I exercised by 05:57: running 26 minutes ", "details":"I exercised by 05:57: running 26 minutes ", "date":"2019-04-15 05:57:30-07:00" }, { "id":"exercise_60", "desc":"I exercised by 05:18: running 27 minutes ", "details":"I exercised by 05:18: running 27 minutes ", "date":"2019-04-16 05:18:50-07:00" }, { "id":"exercise_61", "desc":"I exercised by 05:12: running 25 minutes ", "details":"I exercised by 05:12: running 25 minutes ", "date":"2019-04-18 05:12:15-07:00" }, { "id":"exercise_62", "desc":"I exercised by 05:58: running 25 minutes ", "details":"I exercised by 05:58: running 25 minutes ", "date":"2019-04-19 05:58:01-07:00" }, { "id":"exercise_63", "desc":"I exercised by 11:14: running 41 minutes ", "details":"I exercised by 11:14: running 41 minutes ", "date":"2019-04-21 11:14:15-07:00" }, { "id":"exercise_64", "desc":"I exercised by 07:56: running 41 minutes ", "details":"I exercised by 07:56: running 41 minutes ", "date":"2019-04-23 07:56:33-07:00" }, { "id":"exercise_65", "desc":"I exercised by 07:27: walking 28 minutes ", "details":"I exercised by 07:27: walking 28 minutes ", "date":"2019-04-24 07:27:16-07:00" }, { "id":"exercise_66", "desc":"I exercised by 08:43: running 52 minutes ", "details":"I exercised by 08:43: running 52 minutes ", "date":"2019-04-29 08:43:36-07:00" }, { "id":"photos_0", "desc":"I took a photo of Performance at the performance arena (\"Taking the stage.\") ", "details":"I took a photo of Performance at the performance arena (\"Taking the stage.\") ", "date":"2019-04-18 00:01:26+00:00" }, { "id":"photos_1", "desc":"I took a photo of Egg tart at the shop bakery (Freshly-baked egg tarts!) ", "details":"I took a photo of Egg tart at the shop bakery (Freshly-baked egg tarts!) ", "date":"2019-03-31 06:58:44+00:00" }, { "id":"photos_2", "desc":"I took a photo of Very large floating structure at the conference center (\"A sea of possibilities.\") ", "details":"I took a photo of Very large floating structure at the conference center (\"A sea of possibilities.\") ", "date":"2019-04-15 14:58:30+00:00" }, { "id":"photos_3", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 15:57:11+00:00" }, { "id":"photos_4", "desc":"I took a photo of Receipt at the clothing store of \"Texas Home on Greg Street\" (\"New outfit, here I come!\") ", "details":"I took a photo of Receipt at the clothing store of \"Texas Home on Greg Street\" (\"New outfit, here I come!\") ", "date":"2019-03-03 07:41:47-08:00" }, { "id":"photos_5", "desc":"I took a photo of Receipt at the bookstore of \"Texas Home on Greg Street\" (\"Booked and paid!\") ", "details":"I took a photo of Receipt at the bookstore of \"Texas Home on Greg Street\" (\"Booked and paid!\") ", "date":"2019-03-03 07:42:11-08:00" }, { "id":"photos_6", "desc":"I took a photo of Prescription drug at the pharmacy of \"Texas Home on Greg Street\" (\"Filling a prescription.\") ", "details":"I took a photo of Prescription drug at the pharmacy of \"Texas Home on Greg Street\" (\"Filling a prescription.\") ", "date":"2019-03-03 07:42:35-08:00" }, { "id":"photos_7", "desc":"I took a photo of Boy scouts of america at the recreation room of Biking in Randall County, Texas (\"Exploring new possibilities.\") ", "details":"I took a photo of Boy scouts of america at the recreation room of Biking in Randall County, Texas (\"Exploring new possibilities.\") ", "date":"2019-03-05 19:36:00-08:00" }, { "id":"photos_8", "desc":"I took a photo of Real estate at the residential neighborhood of \"Texas Home on Greg Street\" (\"A Home for Every Family\") ", "details":"I took a photo of Real estate at the residential neighborhood of \"Texas Home on Greg Street\" (\"A Home for Every Family\") ", "date":"2019-03-06 19:46:40-08:00" }, { "id":"photos_9", "desc":"I took a photo of Hangikj\u00f6t at the sauna (\"A traditional Icelandic treat in a cozy setting.\") ", "details":"I took a photo of Hangikj\u00f6t at the sauna (\"A traditional Icelandic treat in a cozy setting.\") ", "date":"2019-03-11 16:27:43+00:00" }, { "id":"photos_10", "desc":"I took a photo of Auditorium at the auditorium of Helium Road, Texas (\"A full house.\") ", "details":"I took a photo of Auditorium at the auditorium of Helium Road, Texas (\"A full house.\") ", "date":"2019-03-18 09:20:41-07:00" }, { "id":"photos_11", "desc":"I took a photo of Academic conference at the conference center of Helium Road, Texas (\"Exploring new ideas at the conference.\") ", "details":"I took a photo of Academic conference at the conference center of Helium Road, Texas (\"Exploring new ideas at the conference.\") ", "date":"2019-03-18 09:31:03-07:00" }, { "id":"photos_12", "desc":"I took a photo of Presentation at the lecture room of Helium Road, Texas (\"Sharing knowledge.\") ", "details":"I took a photo of Presentation at the lecture room of Helium Road, Texas (\"Sharing knowledge.\") ", "date":"2019-03-18 10:43:51-07:00" }, { "id":"photos_13", "desc":"I took a photo of Presentation at the lecture room of Helium Road, Texas (\"Sharing knowledge.\") ", "details":"I took a photo of Presentation at the lecture room of Helium Road, Texas (\"Sharing knowledge.\") ", "date":"2019-03-18 10:44:49-07:00" }, { "id":"photos_14", "desc":"I took a photo of Academic conference at the reception of Helium Road, Texas (\"Gathering to learn and share knowledge.\") ", "details":"I took a photo of Academic conference at the reception of Helium Road, Texas (\"Gathering to learn and share knowledge.\") ", "date":"2019-03-18 13:00:08-07:00" }, { "id":"photos_15", "desc":"I took a photo of Hospital at the hospital of Helium Road, Texas (\"Healing begins here.\") ", "details":"I took a photo of Hospital at the hospital of Helium Road, Texas (\"Healing begins here.\") ", "date":"2019-03-18 15:52:33-07:00" }, { "id":"photos_16", "desc":"I took a photo of Academic conference at the conference room of Helium Road, Texas (Academic minds come together.) ", "details":"I took a photo of Academic conference at the conference room of Helium Road, Texas (Academic minds come together.) ", "date":"2019-03-18 16:05:51-07:00" }, { "id":"photos_17", "desc":"I took a photo of Invoice at the jail cell of \"Texas Home on Greg Street\" (\"Incarcerated.\") ", "details":"I took a photo of Invoice at the jail cell of \"Texas Home on Greg Street\" (\"Incarcerated.\") ", "date":"2019-03-19 12:32:09-07:00" }, { "id":"photos_18", "desc":"I took a photo of Shopping list at the supermarket of Exploring Randall County, Texas (Grocery shopping time!) ", "details":"I took a photo of Shopping list at the supermarket of Exploring Randall County, Texas (Grocery shopping time!) ", "date":"2019-03-22 19:06:44-07:00" }, { "id":"photos_19", "desc":"I took a photo of Camp at the campsite of Exploring Castro County, Texas (Exploring nature.) ", "details":"I took a photo of Camp at the campsite of Exploring Castro County, Texas (Exploring nature.) ", "date":"2019-03-23 09:36:05-07:00" }, { "id":"photos_20", "desc":"I took a photo of Academic certificate at the archive of Exploring Seoul National University (\"Achievement Recognized\") ", "details":"I took a photo of Academic certificate at the archive of Exploring Seoul National University (\"Achievement Recognized\") ", "date":"2019-03-27 11:42:43+09:00" }, { "id":"photos_21", "desc":"I took a photo of Academic certificate at the office of Exploring Seoul National University (\"Achievement Recognized\") ", "details":"I took a photo of Academic certificate at the office of Exploring Seoul National University (\"Achievement Recognized\") ", "date":"2019-03-27 11:42:50+09:00" }, { "id":"photos_22", "desc":"I took a photo of Academic conference at the conference center of Exploring Seoul National University (\"Exploring new ideas at the conference.\") ", "details":"I took a photo of Academic conference at the conference center of Exploring Seoul National University (\"Exploring new ideas at the conference.\") ", "date":"2019-03-27 13:45:36+09:00" }, { "id":"photos_23", "desc":"I took a photo of University at the conference center of Exploring Seoul National University (\"Uniting for success.\") ", "details":"I took a photo of University at the conference center of Exploring Seoul National University (\"Uniting for success.\") ", "date":"2019-03-27 13:45:47+09:00" }, { "id":"photos_24", "desc":"I took a photo of University at the campus of Exploring Seoul National University (\"Exploring the University Campus\") ", "details":"I took a photo of University at the campus of Exploring Seoul National University (\"Exploring the University Campus\") ", "date":"2019-03-27 13:45:47+09:00" }, { "id":"photos_25", "desc":"I took a photo of Fish products at the fishpond of Exploring Seoul's Seocho-gu (Fresh Fish Catch!) ", "details":"I took a photo of Fish products at the fishpond of Exploring Seoul's Seocho-gu (Fresh Fish Catch!) ", "date":"2019-03-27 18:36:03+09:00" }, { "id":"photos_26", "desc":"I took a photo of Airport at the airport terminal of Incheon Int'l Airport Terminal 1 (Traveling the world.) ", "details":"I took a photo of Airport at the airport terminal of Incheon Int'l Airport Terminal 1 (Traveling the world.) ", "date":"2019-03-28 06:38:09+09:00" }, { "id":"photos_27", "desc":"I took a photo of Toyota voltz at the industrial area (\"Powering the industrial future.\") ", "details":"I took a photo of Toyota voltz at the industrial area (\"Powering the industrial future.\") ", "date":"2019-03-28 04:34:33+00:00" }, { "id":"photos_28", "desc":"I took a photo of Tsukudani at the restaurant of Roppongi's Asahi Shokudo (Tasty Tsukudani!) ", "details":"I took a photo of Tsukudani at the restaurant of Roppongi's Asahi Shokudo (Tasty Tsukudani!) ", "date":"2019-03-28 20:38:13+09:00" }, { "id":"photos_29", "desc":"I took a photo of Nabemono at the sushi bar of Roppongi's Asahi Shokudo (Enjoying a hot pot of Nabemono.) ", "details":"I took a photo of Nabemono at the sushi bar of Roppongi's Asahi Shokudo (Enjoying a hot pot of Nabemono.) ", "date":"2019-03-28 20:47:46+09:00" }, { "id":"photos_30", "desc":"I took a photo of Ainu cuisine at the restaurant of Roppongi's Asahi Shokudo (\"Delicious Ainu cuisine!\") ", "details":"I took a photo of Ainu cuisine at the restaurant of Roppongi's Asahi Shokudo (\"Delicious Ainu cuisine!\") ", "date":"2019-03-28 21:36:34+09:00" }, { "id":"photos_31", "desc":"I took a photo of Sashimi at the sushi bar of Roppongi's Asahi Shokudo (Freshly-sliced sashimi.) ", "details":"I took a photo of Sashimi at the sushi bar of Roppongi's Asahi Shokudo (Freshly-sliced sashimi.) ", "date":"2019-03-28 23:25:42+09:00" }, { "id":"photos_32", "desc":"I took a photo of Quince dessert at the sushi bar of Roppongi's Asahi Shokudo (\"A sweet treat!\") ", "details":"I took a photo of Quince dessert at the sushi bar of Roppongi's Asahi Shokudo (\"A sweet treat!\") ", "date":"2019-03-28 23:25:52+09:00" }, { "id":"photos_33", "desc":"I took a photo of Muesli at the cafeteria of Grand Hyatt Tokyo (\"A healthy start to the day!\") ", "details":"I took a photo of Muesli at the cafeteria of Grand Hyatt Tokyo (\"A healthy start to the day!\") ", "date":"2019-03-29 09:12:12+09:00" }, { "id":"photos_34", "desc":"I took a photo of Taish\u014dgoto at the asia temple of Moto-Azabu, Tokyo (\"A traditional Japanese instrument.\") ", "details":"I took a photo of Taish\u014dgoto at the asia temple of Moto-Azabu, Tokyo (\"A traditional Japanese instrument.\") ", "date":"2019-03-29 10:08:09+09:00" }, { "id":"photos_35", "desc":"I took a photo of Cherry blossom at the street of Aiiku Hospital in Tokyo (\"Spring beauty.\") ", "details":"I took a photo of Cherry blossom at the street of Aiiku Hospital in Tokyo (\"Spring beauty.\") ", "date":"2019-03-29 10:13:09+09:00" }, { "id":"photos_36", "desc":"I took a photo of Koinobori at the urban canal of Exploring Naka-Meguro, Tokyo (Celebrating Children's Day in the city.) ", "details":"I took a photo of Koinobori at the urban canal of Exploring Naka-Meguro, Tokyo (Celebrating Children's Day in the city.) ", "date":"2019-03-29 10:53:41+09:00" }, { "id":"photos_37", "desc":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "details":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "date":"2019-03-29 10:54:16+09:00" }, { "id":"photos_38", "desc":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "details":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "date":"2019-03-29 10:54:15+09:00" }, { "id":"photos_39", "desc":"I took a photo of Koinobori at the urban canal of Exploring Naka-Meguro, Tokyo (Celebrating Children's Day in the city.) ", "details":"I took a photo of Koinobori at the urban canal of Exploring Naka-Meguro, Tokyo (Celebrating Children's Day in the city.) ", "date":"2019-03-29 10:54:51+09:00" }, { "id":"photos_40", "desc":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "details":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "date":"2019-03-29 10:54:59+09:00" }, { "id":"photos_41", "desc":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "details":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "date":"2019-03-29 10:56:04+09:00" }, { "id":"photos_42", "desc":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "details":"I took a photo of Cherry blossom at the urban canal of Exploring Naka-Meguro, Tokyo (\"Urban beauty.\") ", "date":"2019-03-29 10:56:37+09:00" }, { "id":"photos_43", "desc":"I took a photo of Gate at the asia temple of University of Tokyo, Tokyo (\"Ancient Temple Gate\") ", "details":"I took a photo of Gate at the asia temple of University of Tokyo, Tokyo (\"Ancient Temple Gate\") ", "date":"2019-03-29 12:28:58+09:00" }, { "id":"photos_44", "desc":"I took a photo of Cherry blossom at the plaza of Tokyo's Shibadaimon (\"Spring in the city.\") ", "details":"I took a photo of Cherry blossom at the plaza of Tokyo's Shibadaimon (\"Spring in the city.\") ", "date":"2019-03-29 16:15:45+09:00" }, { "id":"photos_45", "desc":"I took a photo of Yoga at the tower of Tokyo's Shibakoen (\"Finding balance.\") ", "details":"I took a photo of Yoga at the tower of Tokyo's Shibakoen (\"Finding balance.\") ", "date":"2019-03-29 16:23:59+09:00" }, { "id":"photos_46", "desc":"I took a photo of Picnic at the picnic area of Tokyo's Shibakoen (Enjoying a picnic in the park.) ", "details":"I took a photo of Picnic at the picnic area of Tokyo's Shibakoen (Enjoying a picnic in the park.) ", "date":"2019-03-29 16:24:07+09:00" }, { "id":"photos_47", "desc":"I took a photo of Cherry blossom at the tower of Tokyo's Shiba Junior & Senior High School (\"A touch of spring.\") ", "details":"I took a photo of Cherry blossom at the tower of Tokyo's Shiba Junior & Senior High School (\"A touch of spring.\") ", "date":"2019-03-29 16:24:56+09:00" }, { "id":"photos_48", "desc":"I took a photo of Cherry blossom at the tower of Tokyo's Shibakoen (\"A touch of spring.\") ", "details":"I took a photo of Cherry blossom at the tower of Tokyo's Shibakoen (\"A touch of spring.\") ", "date":"2019-03-29 16:25:06+09:00" }, { "id":"photos_49", "desc":"I took a photo of Cherry blossom at the tower of Tokyo Prince Hotel (\"A touch of spring.\") ", "details":"I took a photo of Cherry blossom at the tower of Tokyo Prince Hotel (\"A touch of spring.\") ", "date":"2019-03-29 16:26:16+09:00" }, { "id":"photos_50", "desc":"I took a photo of Katsuobushi at the restaurant of Exploring Roppongi Hills (Freshly shaved Katsuobushi.) ", "details":"I took a photo of Katsuobushi at the restaurant of Exploring Roppongi Hills (Freshly shaved Katsuobushi.) ", "date":"2019-03-29 18:25:08+09:00" }, { "id":"photos_51", "desc":"I took a photo of Dining room at the conference room of Exploring Roppongi Hills (\"A place to gather and share ideas.\") ", "details":"I took a photo of Dining room at the conference room of Exploring Roppongi Hills (\"A place to gather and share ideas.\") ", "date":"2019-03-29 18:25:24+09:00" }, { "id":"photos_52", "desc":"I took a photo of Anago at the sushi bar of Exploring Roppongi Hills (\"Freshly made Anago sushi!\") ", "details":"I took a photo of Anago at the sushi bar of Exploring Roppongi Hills (\"Freshly made Anago sushi!\") ", "date":"2019-03-29 18:26:53+09:00" }, { "id":"photos_53", "desc":"I took a photo of Katsuobushi at the restaurant of Exploring Roppongi Hills (Freshly shaved Katsuobushi.) ", "details":"I took a photo of Katsuobushi at the restaurant of Exploring Roppongi Hills (Freshly shaved Katsuobushi.) ", "date":"2019-03-29 18:27:16+09:00" }, { "id":"photos_54", "desc":"I took a photo of Osechi at the sushi bar of Exploring Roppongi Hills, Tokyo (Freshly prepared osechi sushi.) ", "details":"I took a photo of Osechi at the sushi bar of Exploring Roppongi Hills, Tokyo (Freshly prepared osechi sushi.) ", "date":"2019-03-29 19:20:53+09:00" }, { "id":"photos_55", "desc":"I took a photo of Taro cake at the restaurant of Exploring Roppongi Hills, Tokyo (Delicious Taro Cake!) ", "details":"I took a photo of Taro cake at the restaurant of Exploring Roppongi Hills, Tokyo (Delicious Taro Cake!) ", "date":"2019-03-29 21:28:05+09:00" }, { "id":"photos_56", "desc":"I took a photo of Aircraft cabin at the airplane cabin of Narita, Japan (Ready for takeoff.) ", "details":"I took a photo of Aircraft cabin at the airplane cabin of Narita, Japan (Ready for takeoff.) ", "date":"2019-03-30 14:15:37+09:00" }, { "id":"photos_57", "desc":"I took a photo of Espressino at the coffee shop of Cama Cafe in Huashan, Taipei (Caffeine fix.) ", "details":"I took a photo of Espressino at the coffee shop of Cama Cafe in Huashan, Taipei (Caffeine fix.) ", "date":"2019-03-31 10:51:04+08:00" }, { "id":"photos_58", "desc":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "details":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "date":"2019-03-31 10:51:41+08:00" }, { "id":"photos_59", "desc":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "details":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "date":"2019-03-31 11:17:52+08:00" }, { "id":"photos_60", "desc":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "details":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "date":"2019-03-31 11:17:57+08:00" }, { "id":"photos_61", "desc":"I took a photo of Award at the coffee shop of Cama Cafe in Huashan, Taipei (\"Celebrating success!\") ", "details":"I took a photo of Award at the coffee shop of Cama Cafe in Huashan, Taipei (\"Celebrating success!\") ", "date":"2019-03-31 11:23:27+08:00" }, { "id":"photos_62", "desc":"I took a photo of Caf\u00e9 at the sushi bar of Cama Cafe in Huashan, Taipei (Fresh sushi and drinks.) ", "details":"I took a photo of Caf\u00e9 at the sushi bar of Cama Cafe in Huashan, Taipei (Fresh sushi and drinks.) ", "date":"2019-03-31 11:29:26+08:00" }, { "id":"photos_63", "desc":"I took a photo of Caf\u00e9 at the bar of Cama Cafe in Huashan, Taipei (\"A cozy spot for a cup of coffee.\") ", "details":"I took a photo of Caf\u00e9 at the bar of Cama Cafe in Huashan, Taipei (\"A cozy spot for a cup of coffee.\") ", "date":"2019-03-31 11:29:35+08:00" }, { "id":"photos_64", "desc":"I took a photo of Skyscraper at the skyscraper of Exploring Eslite XinYi Store (\"Reaching new heights.\") ", "details":"I took a photo of Skyscraper at the skyscraper of Exploring Eslite XinYi Store (\"Reaching new heights.\") ", "date":"2019-03-31 13:38:53+08:00" }, { "id":"photos_65", "desc":"I took a photo of Tower running at the skyscraper of Exploring Eslite XinYi Store (\"Reaching new heights.\") ", "details":"I took a photo of Tower running at the skyscraper of Exploring Eslite XinYi Store (\"Reaching new heights.\") ", "date":"2019-03-31 13:38:56+08:00" }, { "id":"photos_66", "desc":"I took a photo of Landmark at the tower of Exploring Taipei City Hall (\"A view from the top.\") ", "details":"I took a photo of Landmark at the tower of Exploring Taipei City Hall (\"A view from the top.\") ", "date":"2019-03-31 14:02:19+08:00" }, { "id":"photos_67", "desc":"I took a photo of Presidential palace at the conference center of Exploring Xinglong Village, Taiwan (\"The seat of power.\") ", "details":"I took a photo of Presidential palace at the conference center of Exploring Xinglong Village, Taiwan (\"The seat of power.\") ", "date":"2019-03-31 14:07:01+08:00" }, { "id":"photos_68", "desc":"I took a photo of Impatiens at the botanical garden of Exploring Xinglong Village, Taiwan (\"A burst of color.\") ", "details":"I took a photo of Impatiens at the botanical garden of Exploring Xinglong Village, Taiwan (\"A burst of color.\") ", "date":"2019-03-31 14:08:35+08:00" }, { "id":"photos_69", "desc":"I took a photo of Presidential palace at the legislative chamber of \"Exploring Sun Yat-sen Memorial Hall\" (\"The seat of power.\") ", "details":"I took a photo of Presidential palace at the legislative chamber of \"Exploring Sun Yat-sen Memorial Hall\" (\"The seat of power.\") ", "date":"2019-03-31 14:11:10+08:00" }, { "id":"photos_70", "desc":"I took a photo of White mulberry at the coffee shop of Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928 in Chezeng, Taipei (\"A sweet treat!\") ", "details":"I took a photo of White mulberry at the coffee shop of Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928 in Chezeng, Taipei (\"A sweet treat!\") ", "date":"2019-03-31 14:25:17+08:00" }, { "id":"photos_71", "desc":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "details":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "date":"2019-04-01 11:46:03+08:00" }, { "id":"photos_72", "desc":"I took a photo of Caf\u00e9 at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cup of coffee and a moment of peace.\") ", "details":"I took a photo of Caf\u00e9 at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cup of coffee and a moment of peace.\") ", "date":"2019-04-01 11:46:13+08:00" }, { "id":"photos_73", "desc":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "details":"I took a photo of Coffeehouse at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cozy spot for coffee and conversation.\") ", "date":"2019-04-01 11:46:18+08:00" }, { "id":"photos_74", "desc":"I took a photo of Kaya toast at the delicatessen of Cama Cafe in Huashan, Taipei (\"A classic Singaporean breakfast.\") ", "details":"I took a photo of Kaya toast at the delicatessen of Cama Cafe in Huashan, Taipei (\"A classic Singaporean breakfast.\") ", "date":"2019-04-01 11:50:40+08:00" }, { "id":"photos_75", "desc":"I took a photo of Caf\u00e9 at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cup of coffee and a moment of peace.\") ", "details":"I took a photo of Caf\u00e9 at the coffee shop of Cama Cafe in Huashan, Taipei (\"A cup of coffee and a moment of peace.\") ", "date":"2019-04-01 13:05:56+08:00" }, { "id":"photos_76", "desc":"I took a photo of Motherboard at the junkyard of Taipei's KuanHua Market (\"Outdated technology discarded.\") ", "details":"I took a photo of Motherboard at the junkyard of Taipei's KuanHua Market (\"Outdated technology discarded.\") ", "date":"2019-04-01 13:10:47+08:00" }, { "id":"photos_77", "desc":"I took a photo of Taiwanese opera at the legislative chamber of Exploring Chiang Kai-shek Memorial Hall (\"Traditional Taiwanese Opera in the Legislative Chamber\") ", "details":"I took a photo of Taiwanese opera at the legislative chamber of Exploring Chiang Kai-shek Memorial Hall (\"Traditional Taiwanese Opera in the Legislative Chamber\") ", "date":"2019-04-01 14:08:24+08:00" }, { "id":"photos_78", "desc":"I took a photo of Statue at the legislative chamber of Exploring Chiang Kai-shek Memorial Hall (\"A symbol of democracy.\") ", "details":"I took a photo of Statue at the legislative chamber of Exploring Chiang Kai-shek Memorial Hall (\"A symbol of democracy.\") ", "date":"2019-04-01 14:09:49+08:00" }, { "id":"photos_79", "desc":"I took a photo of Statue at the legislative chamber of Taipei's Democracy Boulevard (\"A symbol of democracy.\") ", "details":"I took a photo of Statue at the legislative chamber of Taipei's Democracy Boulevard (\"A symbol of democracy.\") ", "date":"2019-04-01 14:09:52+08:00" }, { "id":"photos_80", "desc":"I took a photo of Presidential palace at the asia temple of Exploring Chiang Kai-shek Memorial Hall (\"The Presidential Palace of Asia.\") ", "details":"I took a photo of Presidential palace at the asia temple of Exploring Chiang Kai-shek Memorial Hall (\"The Presidential Palace of Asia.\") ", "date":"2019-04-01 14:12:25+08:00" }, { "id":"photos_81", "desc":"I took a photo of Presidential palace at the asia temple of Exploring Longtsakoo, Taiwan (\"The Presidential Palace of Asia.\") ", "details":"I took a photo of Presidential palace at the asia temple of Exploring Longtsakoo, Taiwan (\"The Presidential Palace of Asia.\") ", "date":"2019-04-01 14:13:29+08:00" }, { "id":"photos_82", "desc":"I took a photo of Chinese architecture at the asia temple of Exploring Chiang Kai-shek Memorial Hall (\"Ancient beauty.\") ", "details":"I took a photo of Chinese architecture at the asia temple of Exploring Chiang Kai-shek Memorial Hall (\"Ancient beauty.\") ", "date":"2019-04-01 14:19:18+08:00" }, { "id":"photos_83", "desc":"I took a photo of Chinese architecture at the asia temple of Exploring Longtsakoo, Taipei (\"Ancient beauty.\") ", "details":"I took a photo of Chinese architecture at the asia temple of Exploring Longtsakoo, Taipei (\"Ancient beauty.\") ", "date":"2019-04-01 14:32:33+08:00" }, { "id":"photos_84", "desc":"I took a photo of Chinese architecture at the asia temple of Exploring Longtsakoo, Taiwan (\"Ancient beauty.\") ", "details":"I took a photo of Chinese architecture at the asia temple of Exploring Longtsakoo, Taiwan (\"Ancient beauty.\") ", "date":"2019-04-01 14:32:43+08:00" }, { "id":"photos_85", "desc":"I took a photo of Presidential palace at the asia temple of Taipei's Liberty Square (\"The Presidential Palace of Asia.\") ", "details":"I took a photo of Presidential palace at the asia temple of Taipei's Liberty Square (\"The Presidential Palace of Asia.\") ", "date":"2019-04-01 14:34:37+08:00" }, { "id":"photos_86", "desc":"I took a photo of Observation tower at the tower of Photographing Platform in Taipei (\"A view from the top.\") ", "details":"I took a photo of Observation tower at the tower of Photographing Platform in Taipei (\"A view from the top.\") ", "date":"2019-04-01 18:04:00+08:00" }, { "id":"photos_87", "desc":"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (\"A majestic view.\") ", "details":"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (\"A majestic view.\") ", "date":"2019-04-01 18:10:42+08:00" }, { "id":"photos_88", "desc":"I took a photo of Landmark at the tower of Exploring Liuhe Village Trail (\"A view from the top.\") ", "details":"I took a photo of Landmark at the tower of Exploring Liuhe Village Trail (\"A view from the top.\") ", "date":"2019-04-01 18:16:02+08:00" }, { "id":"photos_89", "desc":"I took a photo of Taiwan passport at the downtown of Exploring Taipei: \u6885\u82b1\u7403\u5834 (Exploring Taiwan.) ", "details":"I took a photo of Taiwan passport at the downtown of Exploring Taipei: \u6885\u82b1\u7403\u5834 (Exploring Taiwan.) ", "date":"2019-04-01 18:16:44+08:00" }, { "id":"photos_90", "desc":"I took a photo of Landmark at the tower of Exploring Xiangshan Tunnel (\"A view from the top.\") ", "details":"I took a photo of Landmark at the tower of Exploring Xiangshan Tunnel (\"A view from the top.\") ", "date":"2019-04-01 18:18:23+08:00" }, { "id":"photos_91", "desc":"I took a photo of Landmark at the tower of Exploring Xiangshan Tunnel (\"A view from the top.\") ", "details":"I took a photo of Landmark at the tower of Exploring Xiangshan Tunnel (\"A view from the top.\") ", "date":"2019-04-01 18:18:34+08:00" }, { "id":"photos_92", "desc":"I took a photo of Landmark at the tower of Exploring Taipei from the Xinyi District (\"A view from the top.\") ", "details":"I took a photo of Landmark at the tower of Exploring Taipei from the Xinyi District (\"A view from the top.\") ", "date":"2019-04-01 18:18:54+08:00" }, { "id":"photos_93", "desc":"I took a photo of Taiwan passport at the downtown of Exploring Sanli Village, Taipei (Exploring Taiwan.) ", "details":"I took a photo of Taiwan passport at the downtown of Exploring Sanli Village, Taipei (Exploring Taiwan.) ", "date":"2019-04-01 18:19:16+08:00" }, { "id":"photos_94", "desc":"I took a photo of Mount scenery at the mountain of Exploring Sanli Village, Taipei (\"Majestic beauty.\") ", "details":"I took a photo of Mount scenery at the mountain of Exploring Sanli Village, Taipei (\"Majestic beauty.\") ", "date":"2019-04-01 18:27:54+08:00" }, { "id":"photos_95", "desc":"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (\"A majestic view.\") ", "details":"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (\"A majestic view.\") ", "date":"2019-04-01 18:28:24+08:00" }, { "id":"photos_96", "desc":"I took a photo of Taiwan passport at the tower of Exploring Sanli Village, Taipei (Exploring Taiwan.) ", "details":"I took a photo of Taiwan passport at the tower of Exploring Sanli Village, Taipei (Exploring Taiwan.) ", "date":"2019-04-01 18:30:30+08:00" }, { "id":"photos_97", "desc":"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (\"A majestic view.\") ", "details":"I took a photo of Mount scenery at the downtown of Exploring Sanli Village, Taipei (\"A majestic view.\") ", "date":"2019-04-01 18:30:38+08:00" }, { "id":"photos_98", "desc":"I took a photo of Mount scenery at the mountain of Exploring Sanli Village, Taipei (\"Majestic beauty.\") ", "details":"I took a photo of Mount scenery at the mountain of Exploring Sanli Village, Taipei (\"Majestic beauty.\") ", "date":"2019-04-01 18:30:50+08:00" }, { "id":"photos_99", "desc":"I took a photo of Mount scenery at the residential neighborhood of Exploring Sanli Village, Taipei (\"A peaceful view.\") ", "details":"I took a photo of Mount scenery at the residential neighborhood of Exploring Sanli Village, Taipei (\"A peaceful view.\") ", "date":"2019-04-01 18:33:02+08:00" }, { "id":"photos_100", "desc":"I took a photo of Control tower at the tower of Photographing Platform in Taipei (\"A view from the top.\") ", "details":"I took a photo of Control tower at the tower of Photographing Platform in Taipei (\"A view from the top.\") ", "date":"2019-04-01 18:33:52+08:00" }, { "id":"photos_101", "desc":"I took a photo of Landmark at the tower of \"Photography Platform at 101 Tower\" (\"A view from the top.\") ", "details":"I took a photo of Landmark at the tower of \"Photography Platform at 101 Tower\" (\"A view from the top.\") ", "date":"2019-04-01 18:34:03+08:00" }, { "id":"photos_102", "desc":"I took a photo of Taiwan passport at the skyscraper of Exploring Taipei: \u6885\u82b1\u7403\u5834 (Exploring the world from Taiwan.) ", "details":"I took a photo of Taiwan passport at the skyscraper of Exploring Taipei: \u6885\u82b1\u7403\u5834 (Exploring the world from Taiwan.) ", "date":"2019-04-01 18:34:13+08:00" }, { "id":"photos_103", "desc":"I took a photo of Taiwan passport at the tower of Exploring Taipei: \u6885\u82b1\u7403\u5834 (Exploring Taiwan.) ", "details":"I took a photo of Taiwan passport at the tower of Exploring Taipei: \u6885\u82b1\u7403\u5834 (Exploring Taiwan.) ", "date":"2019-04-01 18:34:18+08:00" }, { "id":"photos_104", "desc":"I took a photo of Youtiao at the tower of Exploring Taipei: \u6885\u82b1\u7403\u5834 (\"Youtiao in the Tower\") ", "details":"I took a photo of Youtiao at the tower of Exploring Taipei: \u6885\u82b1\u7403\u5834 (\"Youtiao in the Tower\") ", "date":"2019-04-01 18:44:00+08:00" }, { "id":"photos_105", "desc":"I took a photo of Panorama at the park of Exploring Nature at \u8c61\u5c71\u81ea\u7136\u6b65\u9053 (Enjoying the view.) ", "details":"I took a photo of Panorama at the park of Exploring Nature at \u8c61\u5c71\u81ea\u7136\u6b65\u9053 (Enjoying the view.) ", "date":"2019-04-01 18:47:11+08:00" }, { "id":"photos_106", "desc":"I took a photo of Tower at the tower of Exploring Taipei's Elephant Mountain Trail (\"A view from the top.\") ", "details":"I took a photo of Tower at the tower of Exploring Taipei's Elephant Mountain Trail (\"A view from the top.\") ", "date":"2019-04-01 18:54:00+08:00" }, { "id":"photos_107", "desc":"I took a photo of Self-help book at the bookstore of Randall County, Texas (\"Find your path to success.\") ", "details":"I took a photo of Self-help book at the bookstore of Randall County, Texas (\"Find your path to success.\") ", "date":"2019-04-02 19:09:25-07:00" }, { "id":"photos_108", "desc":"I took a photo of Self-help book at the pantry of Randall County, Texas (\"Finding Solutions at Home\") ", "details":"I took a photo of Self-help book at the pantry of Randall County, Texas (\"Finding Solutions at Home\") ", "date":"2019-04-02 19:10:05-07:00" }, { "id":"photos_109", "desc":"I took a photo of Self-help book at the bookstore of Randall County, Texas (\"Find your path to success.\") ", "details":"I took a photo of Self-help book at the bookstore of Randall County, Texas (\"Find your path to success.\") ", "date":"2019-04-02 19:16:56-07:00" }, { "id":"photos_110", "desc":"I took a photo of Invoice at the hotel room of \"Texas Home on Greg Street\" (\"Hotel Room Invoice\") ", "details":"I took a photo of Invoice at the hotel room of \"Texas Home on Greg Street\" (\"Hotel Room Invoice\") ", "date":"2019-04-03 08:53:44-07:00" }, { "id":"photos_111", "desc":"I took a photo of Lupinus mutabilis at the botanical garden of \"Texas Home on Greg Street\" (\"A splash of color.\") ", "details":"I took a photo of Lupinus mutabilis at the botanical garden of \"Texas Home on Greg Street\" (\"A splash of color.\") ", "date":"2019-04-06 12:16:12-07:00" }, { "id":"photos_112", "desc":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "details":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "date":"2019-04-06 12:16:37-07:00" }, { "id":"photos_113", "desc":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "details":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "date":"2019-04-06 12:16:36-07:00" }, { "id":"photos_114", "desc":"I took a photo of Fernleaf lavender at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "details":"I took a photo of Fernleaf lavender at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "date":"2019-04-06 12:17:05-07:00" }, { "id":"photos_115", "desc":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "details":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "date":"2019-04-06 12:17:19-07:00" }, { "id":"photos_116", "desc":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "details":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "date":"2019-04-06 12:17:32-07:00" }, { "id":"photos_117", "desc":"I took a photo of Smoketree at the formal garden of \"Texas Home on Greg Street\" (\"A tranquil oasis in the garden.\") ", "details":"I took a photo of Smoketree at the formal garden of \"Texas Home on Greg Street\" (\"A tranquil oasis in the garden.\") ", "date":"2019-04-06 12:17:40-07:00" }, { "id":"photos_118", "desc":"I took a photo of Fernleaf lavender at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "details":"I took a photo of Fernleaf lavender at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "date":"2019-04-10 15:59:42-07:00" }, { "id":"photos_119", "desc":"I took a photo of Fernleaf lavender at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "details":"I took a photo of Fernleaf lavender at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "date":"2019-04-10 15:59:41-07:00" }, { "id":"photos_120", "desc":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "details":"I took a photo of Lavandula lanata at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "date":"2019-04-11 16:03:08-07:00" }, { "id":"photos_121", "desc":"I took a photo of Aesculus californica at the orchard of \"Texas Home on Greg Street\" (California Buckeye in bloom.) ", "details":"I took a photo of Aesculus californica at the orchard of \"Texas Home on Greg Street\" (California Buckeye in bloom.) ", "date":"2019-04-11 17:50:51-07:00" }, { "id":"photos_122", "desc":"I took a photo of Calamondin at the orchard of \"Texas Home on Greg Street\" (A burst of citrus in the orchard.) ", "details":"I took a photo of Calamondin at the orchard of \"Texas Home on Greg Street\" (A burst of citrus in the orchard.) ", "date":"2019-04-11 17:50:53-07:00" }, { "id":"photos_123", "desc":"I took a photo of Fruit tree at the orchard of \"Texas Home on Greg Street\" (\"A bounty of fruit.\") ", "details":"I took a photo of Fruit tree at the orchard of \"Texas Home on Greg Street\" (\"A bounty of fruit.\") ", "date":"2019-04-11 17:51:04-07:00" }, { "id":"photos_124", "desc":"I took a photo of Crabapple at the orchard of \"Texas Home on Greg Street\" (\"A splash of color.\") ", "details":"I took a photo of Crabapple at the orchard of \"Texas Home on Greg Street\" (\"A splash of color.\") ", "date":"2019-04-11 17:51:03-07:00" }, { "id":"photos_125", "desc":"I took a photo of Fernleaf lavender at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "details":"I took a photo of Fernleaf lavender at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "date":"2019-04-13 13:08:12-07:00" }, { "id":"photos_126", "desc":"I took a photo of Fernleaf lavender at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "details":"I took a photo of Fernleaf lavender at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "date":"2019-04-13 13:23:32-07:00" }, { "id":"photos_127", "desc":"I took a photo of Eschscholzia californica at the yard of \"Texas Home on Greg Street\" (California Poppies in bloom.) ", "details":"I took a photo of Eschscholzia californica at the yard of \"Texas Home on Greg Street\" (California Poppies in bloom.) ", "date":"2019-04-13 13:23:49-07:00" }, { "id":"photos_128", "desc":"I took a photo of Fernleaf lavender at the yard of \"Texas Home on Greg Street\" (\"Fragrant beauty.\") ", "details":"I took a photo of Fernleaf lavender at the yard of \"Texas Home on Greg Street\" (\"Fragrant beauty.\") ", "date":"2019-04-13 13:24:21-07:00" }, { "id":"photos_129", "desc":"I took a photo of Rock rose at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "details":"I took a photo of Rock rose at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "date":"2019-04-14 08:23:09-07:00" }, { "id":"photos_130", "desc":"I took a photo of Rock rose at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "details":"I took a photo of Rock rose at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "date":"2019-04-14 08:23:14-07:00" }, { "id":"photos_131", "desc":"I took a photo of Rock rose at the botanical garden of \"Texas Home on Greg Street\" (\"Beauty in the Garden\") ", "details":"I took a photo of Rock rose at the botanical garden of \"Texas Home on Greg Street\" (\"Beauty in the Garden\") ", "date":"2019-04-14 11:09:42-07:00" }, { "id":"photos_132", "desc":"I took a photo of Rock rose at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "details":"I took a photo of Rock rose at the vegetation desert of \"Texas Home on Greg Street\" (\"A splash of color in the desert.\") ", "date":"2019-04-14 11:09:56-07:00" }, { "id":"photos_133", "desc":"I took a photo of Eco hotel at the outdoor hotel of Vancouver's Canada Place (\"A peaceful retreat in nature.\") ", "details":"I took a photo of Eco hotel at the outdoor hotel of Vancouver's Canada Place (\"A peaceful retreat in nature.\") ", "date":"2019-04-14 19:19:06-07:00" }, { "id":"photos_134", "desc":"I took a photo of Convention center at the roof garden of Vancouver's Canada Place (\"A view from above.\") ", "details":"I took a photo of Convention center at the roof garden of Vancouver's Canada Place (\"A view from above.\") ", "date":"2019-04-14 19:28:23-07:00" }, { "id":"photos_135", "desc":"I took a photo of Cable-stayed bridge at the bridge of Exploring Gastown, Vancouver (\"A modern marvel.\") ", "details":"I took a photo of Cable-stayed bridge at the bridge of Exploring Gastown, Vancouver (\"A modern marvel.\") ", "date":"2019-04-14 20:40:40-07:00" }, { "id":"photos_136", "desc":"I took a photo of Convention center at the outdoor hotel of Vancouver's Canada Place (\"A gathering place for all.\") ", "details":"I took a photo of Convention center at the outdoor hotel of Vancouver's Canada Place (\"A gathering place for all.\") ", "date":"2019-04-15 08:03:01-07:00" }, { "id":"photos_137", "desc":"I took a photo of Panorama at the conference center of Vancouver's Canada Place (\"A view of the conference center.\") ", "details":"I took a photo of Panorama at the conference center of Vancouver's Canada Place (\"A view of the conference center.\") ", "date":"2019-04-15 08:03:20-07:00" }, { "id":"photos_138", "desc":"I took a photo of Shoe at the shoe shop of Vancouver's Canada Place (\"Step into style.\") ", "details":"I took a photo of Shoe at the shoe shop of Vancouver's Canada Place (\"Step into style.\") ", "date":"2019-04-15 12:16:09-07:00" }, { "id":"photos_139", "desc":"I took a photo of Veggie burger at the fastfood restaurant of Luxury in Gastown, Vancouver (\"Tasty and healthy!\") ", "details":"I took a photo of Veggie burger at the fastfood restaurant of Luxury in Gastown, Vancouver (\"Tasty and healthy!\") ", "date":"2019-04-15 12:34:01-07:00" }, { "id":"photos_140", "desc":"I took a photo of Electric griddle at the kitchen of Gastown Nail Salon (\"Cooking made easy!\") ", "details":"I took a photo of Electric griddle at the kitchen of Gastown Nail Salon (\"Cooking made easy!\") ", "date":"2019-04-15 13:45:18-07:00" }, { "id":"photos_141", "desc":"I took a photo of Food warmer at the indoor booth of Vancouver Convention Centre West (\"Keeping it warm.\") ", "details":"I took a photo of Food warmer at the indoor booth of Vancouver Convention Centre West (\"Keeping it warm.\") ", "date":"2019-04-15 13:47:29-07:00" }, { "id":"photos_142", "desc":"I took a photo of Food dehydrator at the kitchen of Gastown Nail Salon (\"Preserving the harvest.\") ", "details":"I took a photo of Food dehydrator at the kitchen of Gastown Nail Salon (\"Preserving the harvest.\") ", "date":"2019-04-15 13:47:35-07:00" }, { "id":"photos_143", "desc":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "details":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "date":"2019-04-15 14:19:43-07:00" }, { "id":"photos_144", "desc":"I took a photo of Single-origin coffee at the coffee shop of Vancouver Convention Centre West (\"Freshly brewed.\") ", "details":"I took a photo of Single-origin coffee at the coffee shop of Vancouver Convention Centre West (\"Freshly brewed.\") ", "date":"2019-04-15 14:19:45-07:00" }, { "id":"photos_145", "desc":"I took a photo of Single-origin coffee at the coffee shop of Vancouver Convention Centre West (\"Freshly brewed.\") ", "details":"I took a photo of Single-origin coffee at the coffee shop of Vancouver Convention Centre West (\"Freshly brewed.\") ", "date":"2019-04-15 14:19:50-07:00" }, { "id":"photos_146", "desc":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "details":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "date":"2019-04-15 14:19:55-07:00" }, { "id":"photos_147", "desc":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "details":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "date":"2019-04-15 14:19:56-07:00" }, { "id":"photos_148", "desc":"I took a photo of Portafilter at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "details":"I took a photo of Portafilter at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "date":"2019-04-15 14:20:02-07:00" }, { "id":"photos_149", "desc":"I took a photo of Portafilter at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "details":"I took a photo of Portafilter at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "date":"2019-04-15 14:20:03-07:00" }, { "id":"photos_150", "desc":"I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "details":"I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "date":"2019-04-15 14:20:07-07:00" }, { "id":"photos_151", "desc":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "details":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "date":"2019-04-15 14:20:07-07:00" }, { "id":"photos_152", "desc":"I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "details":"I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "date":"2019-04-15 14:20:08-07:00" }, { "id":"photos_153", "desc":"I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "details":"I took a photo of Espresso machine at the coffee shop of Vancouver Convention Centre West (Brewing a perfect cup.) ", "date":"2019-04-15 14:20:19-07:00" }, { "id":"photos_154", "desc":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "details":"I took a photo of Barista at the coffee shop of Vancouver Convention Centre West (Brewing up a fresh cup of coffee.) ", "date":"2019-04-15 14:20:20-07:00" }, { "id":"photos_155", "desc":"I took a photo of Harbor at the harbor of Gastown's Bellaggio Caf\u00e9 & Gelateria (\"A peaceful view.\") ", "details":"I took a photo of Harbor at the harbor of Gastown's Bellaggio Caf\u00e9 & Gelateria (\"A peaceful view.\") ", "date":"2019-04-15 15:21:26-07:00" }, { "id":"photos_156", "desc":"I took a photo of Victoria day at the harbor of Vancouver's Canada Place (Celebrating Victoria Day in the harbor.) ", "details":"I took a photo of Victoria day at the harbor of Vancouver's Canada Place (Celebrating Victoria Day in the harbor.) ", "date":"2019-04-15 15:25:50-07:00" }, { "id":"photos_157", "desc":"I took a photo of Panorama at the heliport of Vancouver's Canada Place (Aerial view of the heliport.) ", "details":"I took a photo of Panorama at the heliport of Vancouver's Canada Place (Aerial view of the heliport.) ", "date":"2019-04-15 15:25:58-07:00" }, { "id":"photos_158", "desc":"I took a photo of Stage at the indoor stage of Gastown Nail Salon (\"Ready for the show!\") ", "details":"I took a photo of Stage at the indoor stage of Gastown Nail Salon (\"Ready for the show!\") ", "date":"2019-04-15 18:30:43-07:00" }, { "id":"photos_159", "desc":"I took a photo of Stage at the indoor stage of Vancouver Convention Centre West (\"Ready for the show!\") ", "details":"I took a photo of Stage at the indoor stage of Vancouver Convention Centre West (\"Ready for the show!\") ", "date":"2019-04-15 18:30:48-07:00" }, { "id":"photos_160", "desc":"I took a photo of Performance at the indoor stage of Vancouver Convention Centre West (\"A captivating performance.\") ", "details":"I took a photo of Performance at the indoor stage of Vancouver Convention Centre West (\"A captivating performance.\") ", "date":"2019-04-15 18:31:20-07:00" }, { "id":"photos_161", "desc":"I took a photo of Performance at the indoor stage of Vancouver Convention Centre West (\"A captivating performance.\") ", "details":"I took a photo of Performance at the indoor stage of Vancouver Convention Centre West (\"A captivating performance.\") ", "date":"2019-04-15 18:31:22-07:00" }, { "id":"photos_162", "desc":"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (\"Explore the possibilities with an interactive kiosk.\") ", "details":"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (\"Explore the possibilities with an interactive kiosk.\") ", "date":"2019-04-16 07:52:35-07:00" }, { "id":"photos_163", "desc":"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (\"Explore the possibilities with an interactive kiosk.\") ", "details":"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (\"Explore the possibilities with an interactive kiosk.\") ", "date":"2019-04-16 07:52:38-07:00" }, { "id":"photos_164", "desc":"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (\"Explore the possibilities with an interactive kiosk.\") ", "details":"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (\"Explore the possibilities with an interactive kiosk.\") ", "date":"2019-04-16 07:52:47-07:00" }, { "id":"photos_165", "desc":"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (\"Explore the possibilities with an interactive kiosk.\") ", "details":"I took a photo of Interactive kiosk at the indoor booth of Vancouver's Shaw Tower (\"Explore the possibilities with an interactive kiosk.\") ", "date":"2019-04-16 07:52:51-07:00" }, { "id":"photos_166", "desc":"I took a photo of Presentation at the indoor stage of Vancouver Convention Centre West (\"Ready to present!\") ", "details":"I took a photo of Presentation at the indoor stage of Vancouver Convention Centre West (\"Ready to present!\") ", "date":"2019-04-16 10:02:50-07:00" }, { "id":"photos_167", "desc":"I took a photo of Superfood at the coffee shop of Vancouver Convention Centre West (\"Healthy and delicious!\") ", "details":"I took a photo of Superfood at the coffee shop of Vancouver Convention Centre West (\"Healthy and delicious!\") ", "date":"2019-04-16 10:35:31-07:00" }, { "id":"photos_168", "desc":"I took a photo of Microphone stand at the indoor stage of Vancouver Convention Centre West (\"Ready to rock!\") ", "details":"I took a photo of Microphone stand at the indoor stage of Vancouver Convention Centre West (\"Ready to rock!\") ", "date":"2019-04-16 11:33:45-07:00" }, { "id":"photos_169", "desc":"I took a photo of Presentation at the conference room of Vancouver's Olympic Cauldron (\"Sharing ideas.\") ", "details":"I took a photo of Presentation at the conference room of Vancouver's Olympic Cauldron (\"Sharing ideas.\") ", "date":"2019-04-16 15:58:10-07:00" }, { "id":"photos_170", "desc":"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (\"Speaking to a crowd.\") ", "details":"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (\"Speaking to a crowd.\") ", "date":"2019-04-17 08:56:50-07:00" }, { "id":"photos_171", "desc":"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (\"Speaking to a crowd.\") ", "details":"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (\"Speaking to a crowd.\") ", "date":"2019-04-17 09:16:52-07:00" }, { "id":"photos_172", "desc":"I took a photo of Ipad at the runway of Vancouver Convention Centre West (\"Tech on the go.\") ", "details":"I took a photo of Ipad at the runway of Vancouver Convention Centre West (\"Tech on the go.\") ", "date":"2019-04-17 09:51:56-07:00" }, { "id":"photos_173", "desc":"I took a photo of Mixed-use at the skyscraper of Vancouver Convention Centre West (\"Urban living at its finest.\") ", "details":"I took a photo of Mixed-use at the skyscraper of Vancouver Convention Centre West (\"Urban living at its finest.\") ", "date":"2019-04-17 12:32:29-07:00" }, { "id":"photos_174", "desc":"I took a photo of Pitch and putt at the performance arena of Vancouver Convention Centre West (\"Putting for glory!\") ", "details":"I took a photo of Pitch and putt at the performance arena of Vancouver Convention Centre West (\"Putting for glory!\") ", "date":"2019-04-17 12:35:20-07:00" }, { "id":"photos_175", "desc":"I took a photo of Eco hotel at the conference center of Vancouver Convention Centre West (\"Sustainable hospitality at its finest.\") ", "details":"I took a photo of Eco hotel at the conference center of Vancouver Convention Centre West (\"Sustainable hospitality at its finest.\") ", "date":"2019-04-17 12:43:24-07:00" }, { "id":"photos_176", "desc":"I took a photo of Eco hotel at the public atrium of Vancouver Convention Centre West (\"A tranquil oasis in the city.\") ", "details":"I took a photo of Eco hotel at the public atrium of Vancouver Convention Centre West (\"A tranquil oasis in the city.\") ", "date":"2019-04-17 12:43:27-07:00" }, { "id":"photos_177", "desc":"I took a photo of Academic conference at the conference room of Vancouver Convention Centre West (Academic minds come together.) ", "details":"I took a photo of Academic conference at the conference room of Vancouver Convention Centre West (Academic minds come together.) ", "date":"2019-04-17 13:44:56-07:00" }, { "id":"photos_178", "desc":"I took a photo of Public speaking at the ocean deep underwater of Vancouver Convention Centre West (\"Speaking Under the Sea\") ", "details":"I took a photo of Public speaking at the ocean deep underwater of Vancouver Convention Centre West (\"Speaking Under the Sea\") ", "date":"2019-04-17 18:34:48-07:00" }, { "id":"photos_179", "desc":"I took a photo of Presentation at the landfill of Vancouver Convention Centre West (\"A stark reminder of our waste.\") ", "details":"I took a photo of Presentation at the landfill of Vancouver Convention Centre West (\"A stark reminder of our waste.\") ", "date":"2019-04-18 09:25:03-07:00" }, { "id":"photos_180", "desc":"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (\"Speaking to the crowd.\") ", "details":"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (\"Speaking to the crowd.\") ", "date":"2019-04-18 11:48:54-07:00" }, { "id":"photos_181", "desc":"I took a photo of Hardware accessory at the home theater of Vancouver Convention Centre West (\"Complete the setup.\") ", "details":"I took a photo of Hardware accessory at the home theater of Vancouver Convention Centre West (\"Complete the setup.\") ", "date":"2019-04-18 12:29:21-07:00" }, { "id":"photos_182", "desc":"I took a photo of Public speaking at the classroom of Vancouver's Canada Place (\"Learning to communicate effectively.\") ", "details":"I took a photo of Public speaking at the classroom of Vancouver's Canada Place (\"Learning to communicate effectively.\") ", "date":"2019-04-18 16:25:56-07:00" }, { "id":"photos_183", "desc":"I took a photo of Aerialist at the performance arena of Vancouver Convention Centre West (\"Aerialist in flight.\") ", "details":"I took a photo of Aerialist at the performance arena of Vancouver Convention Centre West (\"Aerialist in flight.\") ", "date":"2019-04-18 17:10:13-07:00" }, { "id":"photos_184", "desc":"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (\"Speaking to the crowd.\") ", "details":"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (\"Speaking to the crowd.\") ", "date":"2019-04-19 11:21:20-07:00" }, { "id":"photos_185", "desc":"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (\"Speaking to the crowd.\") ", "details":"I took a photo of Public speaking at the indoor stage of Vancouver Convention Centre West (\"Speaking to the crowd.\") ", "date":"2019-04-19 11:22:29-07:00" }, { "id":"photos_186", "desc":"I took a photo of Presentation at the auditorium of Vancouver Convention Centre West (\"Ready to present!\") ", "details":"I took a photo of Presentation at the auditorium of Vancouver Convention Centre West (\"Ready to present!\") ", "date":"2019-04-19 11:34:21-07:00" }, { "id":"photos_187", "desc":"I took a photo of Presentation at the indoor stage of Vancouver Convention Centre West (\"Ready to present!\") ", "details":"I took a photo of Presentation at the indoor stage of Vancouver Convention Centre West (\"Ready to present!\") ", "date":"2019-04-19 11:37:25-07:00" }, { "id":"photos_188", "desc":"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (\"Speaking to a crowd.\") ", "details":"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (\"Speaking to a crowd.\") ", "date":"2019-04-19 11:38:46-07:00" }, { "id":"photos_189", "desc":"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (\"Speaking to a crowd.\") ", "details":"I took a photo of Public speaking at the auditorium of Vancouver Convention Centre West (\"Speaking to a crowd.\") ", "date":"2019-04-19 11:39:45-07:00" }, { "id":"photos_190", "desc":"I took a photo of Tesla bluestar at the car interior of Old School Iron in Amarillo, TX (\"Luxury at its finest.\") ", "details":"I took a photo of Tesla bluestar at the car interior of Old School Iron in Amarillo, TX (\"Luxury at its finest.\") ", "date":"2019-04-20 11:12:11-07:00" }, { "id":"photos_191", "desc":"I took a photo of Fernleaf lavender at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "details":"I took a photo of Fernleaf lavender at the formal garden of \"Texas Home on Greg Street\" (\"Fragrant beauty in the formal garden.\") ", "date":"2019-04-20 13:02:58-07:00" }, { "id":"photos_192", "desc":"I took a photo of Energy bar at the pantry of \"Texas Home on Greg Street\" (\"Grab and go!\") ", "details":"I took a photo of Energy bar at the pantry of \"Texas Home on Greg Street\" (\"Grab and go!\") ", "date":"2019-04-20 14:04:32-07:00" }, { "id":"photos_193", "desc":"I took a photo of Invoice at the hospital of \"Texas Home on Greg Street\" (\"Medical care in progress.\") ", "details":"I took a photo of Invoice at the hospital of \"Texas Home on Greg Street\" (\"Medical care in progress.\") ", "date":"2019-04-20 17:58:49-07:00" }, { "id":"photos_194", "desc":"I took a photo of Invoice at the hospital room of \"Texas Home on Greg Street\" (\"Medical care in progress.\") ", "details":"I took a photo of Invoice at the hospital room of \"Texas Home on Greg Street\" (\"Medical care in progress.\") ", "date":"2019-04-20 17:58:54-07:00" }, { "id":"photos_195", "desc":"I took a photo of Sweet pepperbush at the broadleaf forest of \"Texas Home on Greg Street\" (\"A splash of color in the woods.\") ", "details":"I took a photo of Sweet pepperbush at the broadleaf forest of \"Texas Home on Greg Street\" (\"A splash of color in the woods.\") ", "date":"2019-04-21 10:33:26-07:00" }, { "id":"photos_196", "desc":"I took a photo of Aesculus californica at the japanese garden of \"Texas Home on Greg Street\" (\"California Buckeye in bloom\") ", "details":"I took a photo of Aesculus californica at the japanese garden of \"Texas Home on Greg Street\" (\"California Buckeye in bloom\") ", "date":"2019-04-21 11:39:34-07:00" }, { "id":"photos_197", "desc":"I took a photo of Aesculus californica at the japanese garden of \"Texas Home on Greg Street\" (\"California Buckeye in bloom\") ", "details":"I took a photo of Aesculus californica at the japanese garden of \"Texas Home on Greg Street\" (\"California Buckeye in bloom\") ", "date":"2019-04-21 11:39:50-07:00" }, { "id":"photos_198", "desc":"I took a photo of Smoketree at the yard of \"Texas Home on Greg Street\" (\"Beautiful smoketree in the yard.\") ", "details":"I took a photo of Smoketree at the yard of \"Texas Home on Greg Street\" (\"Beautiful smoketree in the yard.\") ", "date":"2019-04-21 11:41:20-07:00" }, { "id":"photos_199", "desc":"I took a photo of Smoketree at the driveway of \"Texas Home on Greg Street\" (\"Beautiful smoketree in the driveway.\") ", "details":"I took a photo of Smoketree at the driveway of \"Texas Home on Greg Street\" (\"Beautiful smoketree in the driveway.\") ", "date":"2019-04-21 11:41:39-07:00" }, { "id":"photos_200", "desc":"I took a photo of Fernleaf lavender at the driveway of \"Texas Home on Greg Street\" (\"Fragrant beauty.\") ", "details":"I took a photo of Fernleaf lavender at the driveway of \"Texas Home on Greg Street\" (\"Fragrant beauty.\") ", "date":"2019-04-23 08:14:56-07:00" }, { "id":"photos_201", "desc":"I took a photo of Fernleaf lavender at the driveway of \"Texas Home on Greg Street\" (\"Fragrant beauty.\") ", "details":"I took a photo of Fernleaf lavender at the driveway of \"Texas Home on Greg Street\" (\"Fragrant beauty.\") ", "date":"2019-04-23 08:14:55-07:00" }, { "id":"photos_202", "desc":"I took a photo of Receipt at the supermarket of \"Texas Home on Greg Street\" (Grocery shopping done!) ", "details":"I took a photo of Receipt at the supermarket of \"Texas Home on Greg Street\" (Grocery shopping done!) ", "date":"2019-04-23 12:25:08-07:00" }, { "id":"photos_203", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:32:53-07:00" }, { "id":"photos_204", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:35:19-07:00" }, { "id":"photos_205", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:35:28-07:00" }, { "id":"photos_206", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:35:38-07:00" }, { "id":"photos_207", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:43:55-07:00" }, { "id":"photos_208", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:45:25-07:00" }, { "id":"photos_209", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:50:35-07:00" }, { "id":"photos_210", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:52:17-07:00" }, { "id":"photos_211", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:52:16-07:00" }, { "id":"photos_212", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:55:48-07:00" }, { "id":"photos_213", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:55:59-07:00" }, { "id":"photos_214", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:59:17-07:00" }, { "id":"photos_215", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:59:23-07:00" }, { "id":"photos_216", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 18:59:30-07:00" }, { "id":"photos_217", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 19:06:22-07:00" }, { "id":"photos_218", "desc":"I took a photo of Sunrise at the canyon of Exploring the Grand Canyon (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring the Grand Canyon (\"A new day dawns.\") ", "date":"2019-04-24 19:07:27-07:00" }, { "id":"photos_219", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 19:10:19-07:00" }, { "id":"photos_220", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 19:10:24-07:00" }, { "id":"photos_221", "desc":"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 19:13:51-07:00" }, { "id":"photos_222", "desc":"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 19:13:55-07:00" }, { "id":"photos_223", "desc":"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 19:15:23-07:00" }, { "id":"photos_224", "desc":"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 19:21:41-07:00" }, { "id":"photos_225", "desc":"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Yavapai Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-24 19:21:48-07:00" }, { "id":"photos_226", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 05:37:52-07:00" }, { "id":"photos_227", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 05:39:19-07:00" }, { "id":"photos_228", "desc":"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 05:41:32-07:00" }, { "id":"photos_229", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 05:43:36-07:00" }, { "id":"photos_230", "desc":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "date":"2019-04-25 05:43:42-07:00" }, { "id":"photos_231", "desc":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "date":"2019-04-25 05:44:01-07:00" }, { "id":"photos_232", "desc":"I took a photo of Lens flare at the canyon of Exploring Mather Point (\"A burst of light in the canyon.\") ", "details":"I took a photo of Lens flare at the canyon of Exploring Mather Point (\"A burst of light in the canyon.\") ", "date":"2019-04-25 05:44:16-07:00" }, { "id":"photos_233", "desc":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "date":"2019-04-25 05:44:18-07:00" }, { "id":"photos_234", "desc":"I took a photo of Lens flare at the canyon of Exploring Mather Point (\"A burst of light in the canyon.\") ", "details":"I took a photo of Lens flare at the canyon of Exploring Mather Point (\"A burst of light in the canyon.\") ", "date":"2019-04-25 05:44:23-07:00" }, { "id":"photos_235", "desc":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "date":"2019-04-25 05:45:05-07:00" }, { "id":"photos_236", "desc":"I took a photo of Sunrise at the canyon of Exploring Yavapai Lodge Road (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring Yavapai Lodge Road (\"A new day dawns.\") ", "date":"2019-04-25 05:46:17-07:00" }, { "id":"photos_237", "desc":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "date":"2019-04-25 05:46:26-07:00" }, { "id":"photos_238", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 05:47:17-07:00" }, { "id":"photos_239", "desc":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "date":"2019-04-25 05:47:39-07:00" }, { "id":"photos_240", "desc":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "details":"I took a photo of Sunrise at the canyon of Exploring Mather Point (\"A new day dawns.\") ", "date":"2019-04-25 05:47:50-07:00" }, { "id":"photos_241", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 05:47:49-07:00" }, { "id":"photos_242", "desc":"I took a photo of Elk at the pasture of Exploring the Grand Canyon (\"Majestic Elk\") ", "details":"I took a photo of Elk at the pasture of Exploring the Grand Canyon (\"Majestic Elk\") ", "date":"2019-04-25 05:54:16-07:00" }, { "id":"photos_243", "desc":"I took a photo of Grazing at the driveway of Exploring the Grand Canyon (\"Enjoying the view.\") ", "details":"I took a photo of Grazing at the driveway of Exploring the Grand Canyon (\"Enjoying the view.\") ", "date":"2019-04-25 05:54:36-07:00" }, { "id":"photos_244", "desc":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Mather Point, Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 05:59:41-07:00" }, { "id":"photos_245", "desc":"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Yavapai Lodge Road (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 06:10:13-07:00" }, { "id":"photos_246", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 06:40:46-07:00" }, { "id":"photos_247", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 06:43:27-07:00" }, { "id":"photos_248", "desc":"I took a photo of Geological phenomenon at the cliff of Exploring the Grand Canyon (\"Nature's Artwork\") ", "details":"I took a photo of Geological phenomenon at the cliff of Exploring the Grand Canyon (\"Nature's Artwork\") ", "date":"2019-04-25 07:03:31-07:00" }, { "id":"photos_249", "desc":"I took a photo of Canyon at the canyon of \"Exploring the Grand Canyon\" (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of \"Exploring the Grand Canyon\" (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 07:21:47-07:00" }, { "id":"photos_250", "desc":"I took a photo of Two needle pinyon pine at the canyon of Exploring the Grand Canyon (\"A peaceful view.\") ", "details":"I took a photo of Two needle pinyon pine at the canyon of Exploring the Grand Canyon (\"A peaceful view.\") ", "date":"2019-04-25 07:27:41-07:00" }, { "id":"photos_251", "desc":"I took a photo of Two needle pinyon pine at the canyon of Exploring the Grand Canyon (\"A peaceful view.\") ", "details":"I took a photo of Two needle pinyon pine at the canyon of Exploring the Grand Canyon (\"A peaceful view.\") ", "date":"2019-04-25 07:27:43-07:00" }, { "id":"photos_252", "desc":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring the Grand Canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 08:54:45-07:00" }, { "id":"photos_253", "desc":"I took a photo of Landscaping at the butte of Exploring Uptown Sedona (\"Nature's beauty.\") ", "details":"I took a photo of Landscaping at the butte of Exploring Uptown Sedona (\"Nature's beauty.\") ", "date":"2019-04-25 14:38:48-07:00" }, { "id":"photos_254", "desc":"I took a photo of Landscaping at the canyon of Exploring Sedona, AZ (\"Exploring nature's beauty.\") ", "details":"I took a photo of Landscaping at the canyon of Exploring Sedona, AZ (\"Exploring nature's beauty.\") ", "date":"2019-04-25 14:39:05-07:00" }, { "id":"photos_255", "desc":"I took a photo of Butte at the butte of Sedona Airport View (\"A view of Butte from the Butte.\") ", "details":"I took a photo of Butte at the butte of Sedona Airport View (\"A view of Butte from the Butte.\") ", "date":"2019-04-25 17:54:13-07:00" }, { "id":"photos_256", "desc":"I took a photo of Canyon at the canyon of Exploring Sedona, AZ (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Sedona, AZ (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 18:01:35-07:00" }, { "id":"photos_257", "desc":"I took a photo of Canyon at the canyon of Exploring Oak Creek Dev No. 1, Sedona (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Oak Creek Dev No. 1, Sedona (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 18:03:14-07:00" }, { "id":"photos_258", "desc":"I took a photo of Canyon at the canyon of Exploring Sedona, AZ (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Sedona, AZ (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 18:15:41-07:00" }, { "id":"photos_259", "desc":"I took a photo of Panorama at the valley of Exploring Sedona, Arizona (A breathtaking view.) ", "details":"I took a photo of Panorama at the valley of Exploring Sedona, Arizona (A breathtaking view.) ", "date":"2019-04-25 18:22:55-07:00" }, { "id":"photos_260", "desc":"I took a photo of Canyon at the canyon of \"Exploring Sedona's Airport Mesa Viewpoint\" (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of \"Exploring Sedona's Airport Mesa Viewpoint\" (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 18:24:57-07:00" }, { "id":"photos_261", "desc":"I took a photo of Canyon at the canyon of \"Exploring Sedona's Airport Mesa Viewpoint\" (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of \"Exploring Sedona's Airport Mesa Viewpoint\" (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 18:25:06-07:00" }, { "id":"photos_262", "desc":"I took a photo of Rainbow at the canyon of \"Exploring Sedona, Arizona\" (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon of \"Exploring Sedona, Arizona\" (\"A burst of color.\") ", "date":"2019-04-25 18:42:55-07:00" }, { "id":"photos_263", "desc":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "date":"2019-04-25 18:43:03-07:00" }, { "id":"photos_264", "desc":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "date":"2019-04-25 18:43:05-07:00" }, { "id":"photos_265", "desc":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "date":"2019-04-25 18:43:14-07:00" }, { "id":"photos_266", "desc":"I took a photo of Rainbow at the butte of Exploring Sedona, AZ (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the butte of Exploring Sedona, AZ (\"A burst of color.\") ", "date":"2019-04-25 18:43:22-07:00" }, { "id":"photos_267", "desc":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "date":"2019-04-25 18:43:39-07:00" }, { "id":"photos_268", "desc":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "date":"2019-04-25 18:43:43-07:00" }, { "id":"photos_269", "desc":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "date":"2019-04-25 18:43:58-07:00" }, { "id":"photos_270", "desc":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon of Exploring Sedona, AZ (\"A burst of color.\") ", "date":"2019-04-25 18:44:04-07:00" }, { "id":"photos_271", "desc":"I took a photo of Rainbow at the canyon (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the canyon (\"A burst of color.\") ", "date":"2019-04-26 00:48:52+00:00" }, { "id":"photos_272", "desc":"I took a photo of Canyon at the canyon of Exploring Sedona's Airport Loop Trail (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Sedona's Airport Loop Trail (\"Awe-inspiring beauty.\") ", "date":"2019-04-25 18:53:16-07:00" }, { "id":"photos_273", "desc":"I took a photo of Rainbow at the butte of Sedona Airport, Arizona (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the butte of Sedona Airport, Arizona (\"A burst of color.\") ", "date":"2019-04-25 18:56:35-07:00" }, { "id":"photos_274", "desc":"I took a photo of Rainbow at the butte of Sedona Airport, Arizona (\"A burst of color.\") ", "details":"I took a photo of Rainbow at the butte of Sedona Airport, Arizona (\"A burst of color.\") ", "date":"2019-04-25 18:56:37-07:00" }, { "id":"photos_275", "desc":"I took a photo of Panorama at the valley of Exploring Sedona, AZ (A breathtaking view.) ", "details":"I took a photo of Panorama at the valley of Exploring Sedona, AZ (A breathtaking view.) ", "date":"2019-04-25 19:01:34-07:00" }, { "id":"photos_276", "desc":"I took a photo of Arizona Cypress at the canyon of Sedona Airport View (\"A majestic view.\") ", "details":"I took a photo of Arizona Cypress at the canyon of Sedona Airport View (\"A majestic view.\") ", "date":"2019-04-25 19:08:31-07:00" }, { "id":"photos_277", "desc":"I took a photo of Panorama at the canyon of Sedona Airport View (Exploring the beauty of nature.) ", "details":"I took a photo of Panorama at the canyon of Sedona Airport View (Exploring the beauty of nature.) ", "date":"2019-04-25 19:08:41-07:00" }, { "id":"photos_278", "desc":"I took a photo of Arizona Cypress at the butte of Sedona Airport View (\"A majestic view of Arizona Cypress in the Butte.\") ", "details":"I took a photo of Arizona Cypress at the butte of Sedona Airport View (\"A majestic view of Arizona Cypress in the Butte.\") ", "date":"2019-04-25 19:08:56-07:00" }, { "id":"photos_279", "desc":"I took a photo of Smoketree at the patio of \"Exploring Sedona, Arizona\" (\"A peaceful moment in the garden.\") ", "details":"I took a photo of Smoketree at the patio of \"Exploring Sedona, Arizona\" (\"A peaceful moment in the garden.\") ", "date":"2019-04-26 10:42:14-07:00" }, { "id":"photos_280", "desc":"I took a photo of Dirt road at the desert road of Exploring Arizona's Western Navajo Agency (\"A journey through the desert.\") ", "details":"I took a photo of Dirt road at the desert road of Exploring Arizona's Western Navajo Agency (\"A journey through the desert.\") ", "date":"2019-04-26 15:57:32-06:00" }, { "id":"photos_281", "desc":"I took a photo of Canyon at the desert road of Exploring Arizona's Western Navajo Agency (Exploring the desert.) ", "details":"I took a photo of Canyon at the desert road of Exploring Arizona's Western Navajo Agency (Exploring the desert.) ", "date":"2019-04-26 15:57:35-06:00" }, { "id":"photos_282", "desc":"I took a photo of Highway at the desert road of Exploring Arizona's Western Navajo Agency (\"A journey through the desert.\") ", "details":"I took a photo of Highway at the desert road of Exploring Arizona's Western Navajo Agency (\"A journey through the desert.\") ", "date":"2019-04-26 15:58:00-06:00" }, { "id":"photos_283", "desc":"I took a photo of Butte at the butte of Exploring Bitter Springs, Arizona (\"A view of Butte from the Butte.\") ", "details":"I took a photo of Butte at the butte of Exploring Bitter Springs, Arizona (\"A view of Butte from the Butte.\") ", "date":"2019-04-26 16:12:26-06:00" }, { "id":"photos_284", "desc":"I took a photo of Algific talus slope at the butte of Exploring Bitter Springs, Arizona (\"A unique landscape.\") ", "details":"I took a photo of Algific talus slope at the butte of Exploring Bitter Springs, Arizona (\"A unique landscape.\") ", "date":"2019-04-26 16:12:25-06:00" }, { "id":"photos_285", "desc":"I took a photo of Butte at the butte of Exploring Bitter Springs, Arizona (\"A view of Butte from the Butte.\") ", "details":"I took a photo of Butte at the butte of Exploring Bitter Springs, Arizona (\"A view of Butte from the Butte.\") ", "date":"2019-04-26 16:12:48-06:00" }, { "id":"photos_286", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 23:24:16+00:00" }, { "id":"photos_287", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 23:24:21+00:00" }, { "id":"photos_288", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 23:25:46+00:00" }, { "id":"photos_289", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:25:50+00:00" }, { "id":"photos_290", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:25:49+00:00" }, { "id":"photos_291", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:25:52+00:00" }, { "id":"photos_292", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:25:51+00:00" }, { "id":"photos_293", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:35:51+00:00" }, { "id":"photos_294", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:46:16+00:00" }, { "id":"photos_295", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:46:21+00:00" }, { "id":"photos_296", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:46:24+00:00" }, { "id":"photos_297", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-26 22:47:48+00:00" }, { "id":"photos_298", "desc":"I took a photo of Estonian hound at the castle (Exploring the castle.) ", "details":"I took a photo of Estonian hound at the castle (Exploring the castle.) ", "date":"2019-04-26 22:48:26+00:00" }, { "id":"photos_299", "desc":"I took a photo of Open-air museum at the outdoor museum (Exploring history in the open air.) ", "details":"I took a photo of Open-air museum at the outdoor museum (Exploring history in the open air.) ", "date":"2019-04-26 23:09:12+00:00" }, { "id":"photos_300", "desc":"I took a photo of Cortado at the coffee shop (Caffeinated and ready to go.) ", "details":"I took a photo of Cortado at the coffee shop (Caffeinated and ready to go.) ", "date":"2019-04-26 23:09:13+00:00" }, { "id":"photos_301", "desc":"I took a photo of Panorama at the harbor of Exploring Lake Powell Resort (Harbor views for days.) ", "details":"I took a photo of Panorama at the harbor of Exploring Lake Powell Resort (Harbor views for days.) ", "date":"2019-04-26 18:04:06-07:00" }, { "id":"photos_302", "desc":"I took a photo of Dry lake at the butte of Exploring Lake Powell Resort (\"A tranquil desert oasis.\") ", "details":"I took a photo of Dry lake at the butte of Exploring Lake Powell Resort (\"A tranquil desert oasis.\") ", "date":"2019-04-27 08:00:20-07:00" }, { "id":"photos_303", "desc":"I took a photo of Web page at the canyon (Exploring the Grand Canyon.) ", "details":"I took a photo of Web page at the canyon (Exploring the Grand Canyon.) ", "date":"2019-04-27 15:32:17+00:00" }, { "id":"photos_304", "desc":"I took a photo of Dry lake at the campsite of Exploring Lake Powell Resort (\"A peaceful oasis in the desert.\") ", "details":"I took a photo of Dry lake at the campsite of Exploring Lake Powell Resort (\"A peaceful oasis in the desert.\") ", "date":"2019-04-27 09:03:39-07:00" }, { "id":"photos_305", "desc":"I took a photo of Dry lake at the swimming hole of Exploring Lake Powell Resort (\"A peaceful oasis.\") ", "details":"I took a photo of Dry lake at the swimming hole of Exploring Lake Powell Resort (\"A peaceful oasis.\") ", "date":"2019-04-27 09:38:35-07:00" }, { "id":"photos_306", "desc":"I took a photo of Dry lake at the swimming hole of Exploring Wahweap's Navajo Viewpoint (\"A peaceful oasis.\") ", "details":"I took a photo of Dry lake at the swimming hole of Exploring Wahweap's Navajo Viewpoint (\"A peaceful oasis.\") ", "date":"2019-04-27 10:38:44-07:00" }, { "id":"photos_307", "desc":"I took a photo of Cinder cone at the vegetation desert of Exploring Garfield County, Utah (\"A lonely cinder cone in the desert.\") ", "details":"I took a photo of Cinder cone at the vegetation desert of Exploring Garfield County, Utah (\"A lonely cinder cone in the desert.\") ", "date":"2019-04-27 15:47:52-06:00" }, { "id":"photos_308", "desc":"I took a photo of Cinder cone at the canyon of Exploring Garfield County, Utah (\"Awe-inspiring view.\") ", "details":"I took a photo of Cinder cone at the canyon of Exploring Garfield County, Utah (\"Awe-inspiring view.\") ", "date":"2019-04-27 15:48:04-06:00" }, { "id":"photos_309", "desc":"I took a photo of Window at the indoor bow window of Tropic, Utah (\"A view of the outdoors.\") ", "details":"I took a photo of Window at the indoor bow window of Tropic, Utah (\"A view of the outdoors.\") ", "date":"2019-04-27 16:17:22-06:00" }, { "id":"photos_310", "desc":"I took a photo of Canyon at the canyon of Exploring Utah's Rim Trail (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Utah's Rim Trail (\"Awe-inspiring beauty.\") ", "date":"2019-04-27 17:45:04-06:00" }, { "id":"photos_311", "desc":"I took a photo of Canyon at the canyon of Exploring Utah's Rim Trail (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Utah's Rim Trail (\"Awe-inspiring beauty.\") ", "date":"2019-04-27 18:00:27-06:00" }, { "id":"photos_312", "desc":"I took a photo of Cinder cone at the canyon of Exploring Utah's Rim Trail (\"Awe-inspiring view.\") ", "details":"I took a photo of Cinder cone at the canyon of Exploring Utah's Rim Trail (\"Awe-inspiring view.\") ", "date":"2019-04-27 18:05:34-06:00" }, { "id":"photos_313", "desc":"I took a photo of Shortstraw pine at the canyon of Exploring Utah's Queen's Garden Trail (\"A peaceful escape.\") ", "details":"I took a photo of Shortstraw pine at the canyon of Exploring Utah's Queen's Garden Trail (\"A peaceful escape.\") ", "date":"2019-04-27 18:14:23-06:00" }, { "id":"photos_314", "desc":"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "date":"2019-04-27 18:20:03-06:00" }, { "id":"photos_315", "desc":"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "date":"2019-04-27 18:20:12-06:00" }, { "id":"photos_316", "desc":"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "date":"2019-04-27 18:27:33-06:00" }, { "id":"photos_317", "desc":"I took a photo of American larch at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "details":"I took a photo of American larch at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "date":"2019-04-27 18:34:01-06:00" }, { "id":"photos_318", "desc":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon (\"Awe-inspiring beauty.\") ", "date":"2019-04-28 01:43:08+00:00" }, { "id":"photos_319", "desc":"I took a photo of Kaibab Squirrel at the watering hole of Tropic, Utah (\"Taking a break.\") ", "details":"I took a photo of Kaibab Squirrel at the watering hole of Tropic, Utah (\"Taking a break.\") ", "date":"2019-04-27 18:43:44-06:00" }, { "id":"photos_320", "desc":"I took a photo of Organ Mountains Chipmunk at the watering hole of Tropic, Utah (\"Taking a break.\") ", "details":"I took a photo of Organ Mountains Chipmunk at the watering hole of Tropic, Utah (\"Taking a break.\") ", "date":"2019-04-27 18:43:48-06:00" }, { "id":"photos_321", "desc":"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "details":"I took a photo of Canyon at the canyon of Exploring Utah's Queen's Garden Trail (\"Awe-inspiring beauty.\") ", "date":"2019-04-27 18:50:14-06:00" }, { "id":"photos_322", "desc":"I took a photo of Outcrop at the cliff of Exploring Utah's Queen's Garden Trail (\"A rocky outcrop in the cliff face.\") ", "details":"I took a photo of Outcrop at the cliff of Exploring Utah's Queen's Garden Trail (\"A rocky outcrop in the cliff face.\") ", "date":"2019-04-27 19:13:37-06:00" }, { "id":"photos_323", "desc":"I took a photo of Cinder cone at the canyon of Exploring Utah's Rim Trail (\"Awe-inspiring view.\") ", "details":"I took a photo of Cinder cone at the canyon of Exploring Utah's Rim Trail (\"Awe-inspiring view.\") ", "date":"2019-04-27 19:34:15-06:00" }, { "id":"photos_324", "desc":"I took a photo of Single-origin coffee at the coffee shop of \"Texas Home on Greg Street\" (\"Freshly brewed.\") ", "details":"I took a photo of Single-origin coffee at the coffee shop of \"Texas Home on Greg Street\" (\"Freshly brewed.\") ", "date":"2019-04-29 11:49:07-07:00" }, { "id":"places_27028", "desc":"I have been to Exploring Lamb County, TX", "details":"I have been to Exploring Lamb County, TX", "date":"2019-04-27 17:28:58-07:00" }, { "id":"places_27172", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-03-03 07:41:47-08:00" }, { "id":"places_27173", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-03-03 07:42:11-08:00" }, { "id":"places_27174", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-03-03 07:42:35-08:00" }, { "id":"places_27175", "desc":"I have been to \"Throwbacks Sports Bar: Amarillo's Best!\"", "details":"I have been to \"Throwbacks Sports Bar: Amarillo's Best!\"", "date":"2019-03-05 18:13:01-08:00" }, { "id":"places_27176", "desc":"I have been to \"Throwbacks Sports Bar: Amarillo's Best!\"", "details":"I have been to \"Throwbacks Sports Bar: Amarillo's Best!\"", "date":"2019-03-05 18:13:04-08:00" }, { "id":"places_27177", "desc":"I have been to Biking in Randall County, Texas", "details":"I have been to Biking in Randall County, Texas", "date":"2019-03-05 19:31:46-08:00" }, { "id":"places_27178", "desc":"I have been to Biking in Randall County, Texas", "details":"I have been to Biking in Randall County, Texas", "date":"2019-03-05 19:31:47-08:00" }, { "id":"places_27179", "desc":"I have been to Biking in Randall County, Texas", "details":"I have been to Biking in Randall County, Texas", "date":"2019-03-05 19:36:00-08:00" }, { "id":"places_27180", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-03-06 19:46:40-08:00" }, { "id":"places_27181", "desc":"I have been to Amarillo, Texas", "details":"I have been to Amarillo, Texas", "date":"2019-03-07 19:17:33-08:00" }, { "id":"places_27182", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:42:28-07:00" }, { "id":"places_27183", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:42:30-07:00" }, { "id":"places_27184", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:42:31-07:00" }, { "id":"places_27185", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:42:32-07:00" }, { "id":"places_27186", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:46:32-07:00" }, { "id":"places_27187", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:46:34-07:00" }, { "id":"places_27188", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:47:15-07:00" }, { "id":"places_27189", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:47:16-07:00" }, { "id":"places_27190", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-03-10 17:47:17-07:00" }, { "id":"places_27193", "desc":"I have been to \"Exploring Randall County, Texas\"", "details":"I have been to \"Exploring Randall County, Texas\"", "date":"2019-03-17 12:59:42-07:00" }, { "id":"places_27194", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 09:20:41-07:00" }, { "id":"places_27195", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 09:31:03-07:00" }, { "id":"places_27196", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 10:43:51-07:00" }, { "id":"places_27197", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 10:44:49-07:00" }, { "id":"places_27198", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 10:46:41-07:00" }, { "id":"places_27199", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 13:00:08-07:00" }, { "id":"places_27200", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 13:12:49-07:00" }, { "id":"places_27201", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 15:52:33-07:00" }, { "id":"places_27202", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 16:05:51-07:00" }, { "id":"places_27203", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 17:02:12-07:00" }, { "id":"places_27204", "desc":"I have been to Helium Road, Texas", "details":"I have been to Helium Road, Texas", "date":"2019-03-18 17:02:21-07:00" }, { "id":"places_27205", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-03-19 12:32:09-07:00" }, { "id":"places_27206", "desc":"I have been to Exploring Randall County, Texas", "details":"I have been to Exploring Randall County, Texas", "date":"2019-03-22 19:06:44-07:00" }, { "id":"places_27207", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-03-23 07:50:06-07:00" }, { "id":"places_27208", "desc":"I have been to Exploring Castro County, Texas", "details":"I have been to Exploring Castro County, Texas", "date":"2019-03-23 09:36:05-07:00" }, { "id":"places_27209", "desc":"I have been to Exploring Castro County, Texas", "details":"I have been to Exploring Castro County, Texas", "date":"2019-03-23 09:36:12-07:00" }, { "id":"places_27210", "desc":"I have been to Charlie's Furniture Amarillo", "details":"I have been to Charlie's Furniture Amarillo", "date":"2019-03-23 20:50:05-07:00" }, { "id":"places_27211", "desc":"I have been to Exploring Seoul National University", "details":"I have been to Exploring Seoul National University", "date":"2019-03-27 11:42:43+09:00" }, { "id":"places_27212", "desc":"I have been to Exploring Seoul National University", "details":"I have been to Exploring Seoul National University", "date":"2019-03-27 11:42:50+09:00" }, { "id":"places_27213", "desc":"I have been to Exploring Seoul National University", "details":"I have been to Exploring Seoul National University", "date":"2019-03-27 13:45:36+09:00" }, { "id":"places_27214", "desc":"I have been to Exploring Seoul National University", "details":"I have been to Exploring Seoul National University", "date":"2019-03-27 13:45:47+09:00" }, { "id":"places_27215", "desc":"I have been to Exploring Seoul National University", "details":"I have been to Exploring Seoul National University", "date":"2019-03-27 13:45:47+09:00" }, { "id":"places_27216", "desc":"I have been to Yangpyeong-ro 28da-gil, Seoul", "details":"I have been to Yangpyeong-ro 28da-gil, Seoul", "date":"2019-03-27 15:47:16+09:00" }, { "id":"places_27217", "desc":"I have been to Yangpyeong-ro 28da-gil, Seoul", "details":"I have been to Yangpyeong-ro 28da-gil, Seoul", "date":"2019-03-27 15:47:22+09:00" }, { "id":"places_27218", "desc":"I have been to Yangpyeong-ro 28da-gil, Seoul", "details":"I have been to Yangpyeong-ro 28da-gil, Seoul", "date":"2019-03-27 15:47:29+09:00" }, { "id":"places_27220", "desc":"I have been to Exploring Seoul's Seocho-gu", "details":"I have been to Exploring Seoul's Seocho-gu", "date":"2019-03-27 18:36:03+09:00" }, { "id":"places_27221", "desc":"I have been to Incheon Int'l Airport Terminal 1", "details":"I have been to Incheon Int'l Airport Terminal 1", "date":"2019-03-28 06:38:09+09:00" }, { "id":"places_27223", "desc":"I have been to Roppongi's Asahi Shokudo", "details":"I have been to Roppongi's Asahi Shokudo", "date":"2019-03-28 20:38:13+09:00" }, { "id":"places_27224", "desc":"I have been to Roppongi's Asahi Shokudo", "details":"I have been to Roppongi's Asahi Shokudo", "date":"2019-03-28 20:47:46+09:00" }, { "id":"places_27225", "desc":"I have been to Roppongi's Asahi Shokudo", "details":"I have been to Roppongi's Asahi Shokudo", "date":"2019-03-28 21:36:34+09:00" }, { "id":"places_27226", "desc":"I have been to Roppongi's Asahi Shokudo", "details":"I have been to Roppongi's Asahi Shokudo", "date":"2019-03-28 23:25:42+09:00" }, { "id":"places_27227", "desc":"I have been to Roppongi's Asahi Shokudo", "details":"I have been to Roppongi's Asahi Shokudo", "date":"2019-03-28 23:25:52+09:00" }, { "id":"places_27228", "desc":"I have been to Grand Hyatt Tokyo", "details":"I have been to Grand Hyatt Tokyo", "date":"2019-03-29 09:12:12+09:00" }, { "id":"places_27229", "desc":"I have been to Moto-Azabu, Tokyo", "details":"I have been to Moto-Azabu, Tokyo", "date":"2019-03-29 10:08:09+09:00" }, { "id":"places_27230", "desc":"I have been to Aiiku Hospital in Tokyo", "details":"I have been to Aiiku Hospital in Tokyo", "date":"2019-03-29 10:13:09+09:00" }, { "id":"places_27231", "desc":"I have been to Exploring Naka-Meguro, Tokyo", "details":"I have been to Exploring Naka-Meguro, Tokyo", "date":"2019-03-29 10:53:41+09:00" }, { "id":"places_27232", "desc":"I have been to Exploring Naka-Meguro, Tokyo", "details":"I have been to Exploring Naka-Meguro, Tokyo", "date":"2019-03-29 10:54:16+09:00" }, { "id":"places_27233", "desc":"I have been to Exploring Naka-Meguro, Tokyo", "details":"I have been to Exploring Naka-Meguro, Tokyo", "date":"2019-03-29 10:54:15+09:00" }, { "id":"places_27234", "desc":"I have been to Exploring Naka-Meguro, Tokyo", "details":"I have been to Exploring Naka-Meguro, Tokyo", "date":"2019-03-29 10:54:51+09:00" }, { "id":"places_27235", "desc":"I have been to Exploring Naka-Meguro, Tokyo", "details":"I have been to Exploring Naka-Meguro, Tokyo", "date":"2019-03-29 10:54:59+09:00" }, { "id":"places_27236", "desc":"I have been to Exploring Naka-Meguro, Tokyo", "details":"I have been to Exploring Naka-Meguro, Tokyo", "date":"2019-03-29 10:56:04+09:00" }, { "id":"places_27237", "desc":"I have been to Exploring Naka-Meguro, Tokyo", "details":"I have been to Exploring Naka-Meguro, Tokyo", "date":"2019-03-29 10:56:37+09:00" }, { "id":"places_27238", "desc":"I have been to University of Tokyo, Tokyo", "details":"I have been to University of Tokyo, Tokyo", "date":"2019-03-29 12:28:58+09:00" }, { "id":"places_27239", "desc":"I have been to University of Tokyo, Tokyo", "details":"I have been to University of Tokyo, Tokyo", "date":"2019-03-29 13:04:14+09:00" }, { "id":"places_27240", "desc":"I have been to University of Tokyo, Tokyo", "details":"I have been to University of Tokyo, Tokyo", "date":"2019-03-29 13:04:17+09:00" }, { "id":"places_27241", "desc":"I have been to Tokyo's Shibadaimon", "details":"I have been to Tokyo's Shibadaimon", "date":"2019-03-29 16:15:45+09:00" }, { "id":"places_27242", "desc":"I have been to Tokyo's Shibakoen", "details":"I have been to Tokyo's Shibakoen", "date":"2019-03-29 16:23:59+09:00" }, { "id":"places_27243", "desc":"I have been to Tokyo's Shibakoen", "details":"I have been to Tokyo's Shibakoen", "date":"2019-03-29 16:24:02+09:00" }, { "id":"places_27244", "desc":"I have been to Tokyo's Shibakoen", "details":"I have been to Tokyo's Shibakoen", "date":"2019-03-29 16:24:07+09:00" }, { "id":"places_27245", "desc":"I have been to Tokyo's Shiba Junior & Senior High School", "details":"I have been to Tokyo's Shiba Junior & Senior High School", "date":"2019-03-29 16:24:56+09:00" }, { "id":"places_27246", "desc":"I have been to Tokyo's Shibakoen", "details":"I have been to Tokyo's Shibakoen", "date":"2019-03-29 16:25:06+09:00" }, { "id":"places_27247", "desc":"I have been to Tokyo Prince Hotel", "details":"I have been to Tokyo Prince Hotel", "date":"2019-03-29 16:26:16+09:00" }, { "id":"places_27248", "desc":"I have been to Exploring Roppongi Hills", "details":"I have been to Exploring Roppongi Hills", "date":"2019-03-29 18:25:08+09:00" }, { "id":"places_27249", "desc":"I have been to Exploring Roppongi Hills", "details":"I have been to Exploring Roppongi Hills", "date":"2019-03-29 18:25:24+09:00" }, { "id":"places_27250", "desc":"I have been to Exploring Roppongi Hills", "details":"I have been to Exploring Roppongi Hills", "date":"2019-03-29 18:26:53+09:00" }, { "id":"places_27251", "desc":"I have been to Exploring Roppongi Hills", "details":"I have been to Exploring Roppongi Hills", "date":"2019-03-29 18:27:16+09:00" }, { "id":"places_27252", "desc":"I have been to Exploring Roppongi Hills, Tokyo", "details":"I have been to Exploring Roppongi Hills, Tokyo", "date":"2019-03-29 19:20:53+09:00" }, { "id":"places_27253", "desc":"I have been to Exploring Roppongi Hills, Tokyo", "details":"I have been to Exploring Roppongi Hills, Tokyo", "date":"2019-03-29 21:28:05+09:00" }, { "id":"places_27254", "desc":"I have been to Narita, Japan", "details":"I have been to Narita, Japan", "date":"2019-03-30 14:15:37+09:00" }, { "id":"places_27255", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 10:51:04+08:00" }, { "id":"places_27256", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 10:51:41+08:00" }, { "id":"places_27257", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 11:17:52+08:00" }, { "id":"places_27258", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 11:17:57+08:00" }, { "id":"places_27259", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 11:23:27+08:00" }, { "id":"places_27260", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 11:29:26+08:00" }, { "id":"places_27261", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 11:29:35+08:00" }, { "id":"places_27262", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 11:46:18+08:00" }, { "id":"places_27263", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-03-31 11:46:22+08:00" }, { "id":"places_27264", "desc":"I have been to Exploring Eslite XinYi Store", "details":"I have been to Exploring Eslite XinYi Store", "date":"2019-03-31 13:38:53+08:00" }, { "id":"places_27265", "desc":"I have been to Exploring Eslite XinYi Store", "details":"I have been to Exploring Eslite XinYi Store", "date":"2019-03-31 13:38:56+08:00" }, { "id":"places_27266", "desc":"I have been to Exploring Taipei City Hall", "details":"I have been to Exploring Taipei City Hall", "date":"2019-03-31 14:02:19+08:00" }, { "id":"places_27267", "desc":"I have been to Exploring Xinglong Village, Taiwan", "details":"I have been to Exploring Xinglong Village, Taiwan", "date":"2019-03-31 14:07:01+08:00" }, { "id":"places_27268", "desc":"I have been to Exploring Xinglong Village, Taiwan", "details":"I have been to Exploring Xinglong Village, Taiwan", "date":"2019-03-31 14:08:35+08:00" }, { "id":"places_27269", "desc":"I have been to \"Exploring Sun Yat-sen Memorial Hall\"", "details":"I have been to \"Exploring Sun Yat-sen Memorial Hall\"", "date":"2019-03-31 14:11:10+08:00" }, { "id":"places_27270", "desc":"I have been to Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928 in Chezeng, Taipei", "details":"I have been to Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928 in Chezeng, Taipei", "date":"2019-03-31 14:25:17+08:00" }, { "id":"places_27271", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-04-01 11:46:03+08:00" }, { "id":"places_27272", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-04-01 11:46:13+08:00" }, { "id":"places_27273", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-04-01 11:46:18+08:00" }, { "id":"places_27274", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-04-01 11:50:40+08:00" }, { "id":"places_27275", "desc":"I have been to Cama Cafe in Huashan, Taipei", "details":"I have been to Cama Cafe in Huashan, Taipei", "date":"2019-04-01 13:05:56+08:00" }, { "id":"places_27276", "desc":"I have been to Taipei's KuanHua Market", "details":"I have been to Taipei's KuanHua Market", "date":"2019-04-01 13:10:47+08:00" }, { "id":"places_27277", "desc":"I have been to Exploring Chiang Kai-shek Memorial Hall", "details":"I have been to Exploring Chiang Kai-shek Memorial Hall", "date":"2019-04-01 14:08:24+08:00" }, { "id":"places_27278", "desc":"I have been to Exploring Chiang Kai-shek Memorial Hall", "details":"I have been to Exploring Chiang Kai-shek Memorial Hall", "date":"2019-04-01 14:09:49+08:00" }, { "id":"places_27279", "desc":"I have been to Taipei's Democracy Boulevard", "details":"I have been to Taipei's Democracy Boulevard", "date":"2019-04-01 14:09:52+08:00" }, { "id":"places_27280", "desc":"I have been to Exploring Chiang Kai-shek Memorial Hall", "details":"I have been to Exploring Chiang Kai-shek Memorial Hall", "date":"2019-04-01 14:12:25+08:00" }, { "id":"places_27281", "desc":"I have been to Exploring Longtsakoo, Taiwan", "details":"I have been to Exploring Longtsakoo, Taiwan", "date":"2019-04-01 14:13:29+08:00" }, { "id":"places_27282", "desc":"I have been to Exploring Chiang Kai-shek Memorial Hall", "details":"I have been to Exploring Chiang Kai-shek Memorial Hall", "date":"2019-04-01 14:19:18+08:00" }, { "id":"places_27283", "desc":"I have been to Exploring Longtsakoo, Taipei", "details":"I have been to Exploring Longtsakoo, Taipei", "date":"2019-04-01 14:32:33+08:00" }, { "id":"places_27284", "desc":"I have been to Exploring Longtsakoo, Taiwan", "details":"I have been to Exploring Longtsakoo, Taiwan", "date":"2019-04-01 14:32:43+08:00" }, { "id":"places_27285", "desc":"I have been to Taipei's Liberty Square", "details":"I have been to Taipei's Liberty Square", "date":"2019-04-01 14:34:37+08:00" }, { "id":"places_27286", "desc":"I have been to Photographing Platform in Taipei", "details":"I have been to Photographing Platform in Taipei", "date":"2019-04-01 18:04:00+08:00" }, { "id":"places_27287", "desc":"I have been to Exploring Sanli Village, Taipei", "details":"I have been to Exploring Sanli Village, Taipei", "date":"2019-04-01 18:10:42+08:00" }, { "id":"places_27288", "desc":"I have been to Exploring Liuhe Village Trail", "details":"I have been to Exploring Liuhe Village Trail", "date":"2019-04-01 18:16:02+08:00" }, { "id":"places_27289", "desc":"I have been to Exploring Taipei: \u6885\u82b1\u7403\u5834", "details":"I have been to Exploring Taipei: \u6885\u82b1\u7403\u5834", "date":"2019-04-01 18:16:44+08:00" }, { "id":"places_27290", "desc":"I have been to Exploring Xiangshan Tunnel", "details":"I have been to Exploring Xiangshan Tunnel", "date":"2019-04-01 18:18:23+08:00" }, { "id":"places_27291", "desc":"I have been to Exploring Xiangshan Tunnel", "details":"I have been to Exploring Xiangshan Tunnel", "date":"2019-04-01 18:18:34+08:00" }, { "id":"places_27292", "desc":"I have been to Exploring Taipei from the Xinyi District", "details":"I have been to Exploring Taipei from the Xinyi District", "date":"2019-04-01 18:18:54+08:00" }, { "id":"places_27293", "desc":"I have been to Exploring Sanli Village, Taipei", "details":"I have been to Exploring Sanli Village, Taipei", "date":"2019-04-01 18:19:16+08:00" }, { "id":"places_27294", "desc":"I have been to Exploring Sanli Village, Taipei", "details":"I have been to Exploring Sanli Village, Taipei", "date":"2019-04-01 18:27:54+08:00" }, { "id":"places_27295", "desc":"I have been to Exploring Sanli Village, Taipei", "details":"I have been to Exploring Sanli Village, Taipei", "date":"2019-04-01 18:28:24+08:00" }, { "id":"places_27296", "desc":"I have been to Exploring Sanli Village, Taipei", "details":"I have been to Exploring Sanli Village, Taipei", "date":"2019-04-01 18:30:30+08:00" }, { "id":"places_27297", "desc":"I have been to Exploring Sanli Village, Taipei", "details":"I have been to Exploring Sanli Village, Taipei", "date":"2019-04-01 18:30:38+08:00" }, { "id":"places_27298", "desc":"I have been to Exploring Sanli Village, Taipei", "details":"I have been to Exploring Sanli Village, Taipei", "date":"2019-04-01 18:30:50+08:00" }, { "id":"places_27299", "desc":"I have been to Exploring Sanli Village, Taipei", "details":"I have been to Exploring Sanli Village, Taipei", "date":"2019-04-01 18:33:02+08:00" }, { "id":"places_27300", "desc":"I have been to Photographing Platform in Taipei", "details":"I have been to Photographing Platform in Taipei", "date":"2019-04-01 18:33:52+08:00" }, { "id":"places_27301", "desc":"I have been to \"Photography Platform at 101 Tower\"", "details":"I have been to \"Photography Platform at 101 Tower\"", "date":"2019-04-01 18:34:03+08:00" }, { "id":"places_27302", "desc":"I have been to Exploring Taipei: \u6885\u82b1\u7403\u5834", "details":"I have been to Exploring Taipei: \u6885\u82b1\u7403\u5834", "date":"2019-04-01 18:34:13+08:00" }, { "id":"places_27303", "desc":"I have been to Exploring Taipei: \u6885\u82b1\u7403\u5834", "details":"I have been to Exploring Taipei: \u6885\u82b1\u7403\u5834", "date":"2019-04-01 18:34:18+08:00" }, { "id":"places_27304", "desc":"I have been to Exploring Taipei: \u6885\u82b1\u7403\u5834", "details":"I have been to Exploring Taipei: \u6885\u82b1\u7403\u5834", "date":"2019-04-01 18:44:00+08:00" }, { "id":"places_27305", "desc":"I have been to Exploring Nature at \u8c61\u5c71\u81ea\u7136\u6b65\u9053", "details":"I have been to Exploring Nature at \u8c61\u5c71\u81ea\u7136\u6b65\u9053", "date":"2019-04-01 18:47:11+08:00" }, { "id":"places_27306", "desc":"I have been to Exploring Taipei's Elephant Mountain Trail", "details":"I have been to Exploring Taipei's Elephant Mountain Trail", "date":"2019-04-01 18:54:00+08:00" }, { "id":"places_27307", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-04-02 19:09:25-07:00" }, { "id":"places_27308", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-04-02 19:10:05-07:00" }, { "id":"places_27309", "desc":"I have been to Randall County, Texas", "details":"I have been to Randall County, Texas", "date":"2019-04-02 19:16:56-07:00" }, { "id":"places_27310", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-03 08:53:44-07:00" }, { "id":"places_27311", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-06 12:16:12-07:00" }, { "id":"places_27312", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-06 12:16:37-07:00" }, { "id":"places_27313", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-06 12:16:36-07:00" }, { "id":"places_27314", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-06 12:17:05-07:00" }, { "id":"places_27315", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-06 12:17:19-07:00" }, { "id":"places_27316", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-06 12:17:32-07:00" }, { "id":"places_27317", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-06 12:17:40-07:00" }, { "id":"places_27318", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-10 15:59:42-07:00" }, { "id":"places_27319", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-10 15:59:41-07:00" }, { "id":"places_27320", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-11 16:03:08-07:00" }, { "id":"places_27321", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-11 17:50:51-07:00" }, { "id":"places_27322", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-11 17:50:53-07:00" }, { "id":"places_27323", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-11 17:51:04-07:00" }, { "id":"places_27324", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-11 17:51:03-07:00" }, { "id":"places_27325", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-13 13:08:12-07:00" }, { "id":"places_27326", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-13 13:23:32-07:00" }, { "id":"places_27327", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-13 13:23:49-07:00" }, { "id":"places_27328", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-13 13:24:21-07:00" }, { "id":"places_27329", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-14 08:23:09-07:00" }, { "id":"places_27330", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-14 08:23:14-07:00" }, { "id":"places_27331", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-14 11:09:42-07:00" }, { "id":"places_27332", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-14 11:09:56-07:00" }, { "id":"places_27333", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-14 19:19:06-07:00" }, { "id":"places_27334", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-14 19:28:23-07:00" }, { "id":"places_27335", "desc":"I have been to Exploring Gastown, Vancouver", "details":"I have been to Exploring Gastown, Vancouver", "date":"2019-04-14 20:40:40-07:00" }, { "id":"places_27336", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-15 08:03:01-07:00" }, { "id":"places_27337", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-15 08:03:20-07:00" }, { "id":"places_27338", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-15 12:16:09-07:00" }, { "id":"places_27339", "desc":"I have been to Luxury in Gastown, Vancouver", "details":"I have been to Luxury in Gastown, Vancouver", "date":"2019-04-15 12:34:01-07:00" }, { "id":"places_27340", "desc":"I have been to Gastown Nail Salon", "details":"I have been to Gastown Nail Salon", "date":"2019-04-15 13:45:18-07:00" }, { "id":"places_27341", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 13:47:29-07:00" }, { "id":"places_27342", "desc":"I have been to Gastown Nail Salon", "details":"I have been to Gastown Nail Salon", "date":"2019-04-15 13:47:35-07:00" }, { "id":"places_27343", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:19:43-07:00" }, { "id":"places_27344", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:19:45-07:00" }, { "id":"places_27345", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:19:50-07:00" }, { "id":"places_27346", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:19:55-07:00" }, { "id":"places_27347", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:19:56-07:00" }, { "id":"places_27348", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:20:02-07:00" }, { "id":"places_27349", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:20:03-07:00" }, { "id":"places_27350", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:20:07-07:00" }, { "id":"places_27351", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:20:07-07:00" }, { "id":"places_27352", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:20:08-07:00" }, { "id":"places_27353", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:20:19-07:00" }, { "id":"places_27354", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 14:20:20-07:00" }, { "id":"places_27355", "desc":"I have been to Gastown's Bellaggio Caf\u00e9 & Gelateria", "details":"I have been to Gastown's Bellaggio Caf\u00e9 & Gelateria", "date":"2019-04-15 15:21:26-07:00" }, { "id":"places_27356", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-15 15:25:50-07:00" }, { "id":"places_27357", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-15 15:25:58-07:00" }, { "id":"places_27358", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 17:05:24-07:00" }, { "id":"places_27359", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 17:16:37-07:00" }, { "id":"places_27360", "desc":"I have been to Gastown Nail Salon", "details":"I have been to Gastown Nail Salon", "date":"2019-04-15 18:13:08-07:00" }, { "id":"places_27361", "desc":"I have been to Gastown Nail Salon", "details":"I have been to Gastown Nail Salon", "date":"2019-04-15 18:30:43-07:00" }, { "id":"places_27362", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 18:30:48-07:00" }, { "id":"places_27363", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 18:31:20-07:00" }, { "id":"places_27364", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 18:31:22-07:00" }, { "id":"places_27365", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 18:34:27-07:00" }, { "id":"places_27366", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-15 18:53:48-07:00" }, { "id":"places_27367", "desc":"I have been to Vancouver's Olympic Cauldron", "details":"I have been to Vancouver's Olympic Cauldron", "date":"2019-04-15 20:31:18-07:00" }, { "id":"places_27368", "desc":"I have been to Vancouver's Shaw Tower", "details":"I have been to Vancouver's Shaw Tower", "date":"2019-04-16 07:52:35-07:00" }, { "id":"places_27369", "desc":"I have been to Vancouver's Shaw Tower", "details":"I have been to Vancouver's Shaw Tower", "date":"2019-04-16 07:52:38-07:00" }, { "id":"places_27370", "desc":"I have been to Vancouver's Shaw Tower", "details":"I have been to Vancouver's Shaw Tower", "date":"2019-04-16 07:52:47-07:00" }, { "id":"places_27371", "desc":"I have been to Vancouver's Shaw Tower", "details":"I have been to Vancouver's Shaw Tower", "date":"2019-04-16 07:52:51-07:00" }, { "id":"places_27372", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-16 10:02:50-07:00" }, { "id":"places_27373", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-16 10:35:31-07:00" }, { "id":"places_27374", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-16 11:19:47-07:00" }, { "id":"places_27375", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-16 11:33:45-07:00" }, { "id":"places_27376", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-16 12:43:45-07:00" }, { "id":"places_27377", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-16 12:43:50-07:00" }, { "id":"places_27378", "desc":"I have been to Vancouver's Olympic Cauldron", "details":"I have been to Vancouver's Olympic Cauldron", "date":"2019-04-16 15:58:10-07:00" }, { "id":"places_27379", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-16 18:44:28-07:00" }, { "id":"places_27380", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 08:56:50-07:00" }, { "id":"places_27381", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 09:16:52-07:00" }, { "id":"places_27382", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 09:30:42-07:00" }, { "id":"places_27383", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 09:34:50-07:00" }, { "id":"places_27384", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 09:51:56-07:00" }, { "id":"places_27385", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 11:32:25-07:00" }, { "id":"places_27386", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 12:32:29-07:00" }, { "id":"places_27387", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 12:35:17-07:00" }, { "id":"places_27388", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 12:35:20-07:00" }, { "id":"places_27389", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 12:43:24-07:00" }, { "id":"places_27390", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 12:43:27-07:00" }, { "id":"places_27391", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 13:44:56-07:00" }, { "id":"places_27392", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 18:34:48-07:00" }, { "id":"places_27393", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-17 18:37:48-07:00" }, { "id":"places_27394", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 09:00:47-07:00" }, { "id":"places_27395", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 09:25:03-07:00" }, { "id":"places_27396", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 10:00:34-07:00" }, { "id":"places_27397", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 11:45:23-07:00" }, { "id":"places_27398", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 11:48:54-07:00" }, { "id":"places_27399", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 12:01:17-07:00" }, { "id":"places_27400", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 12:03:14-07:00" }, { "id":"places_27401", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 12:18:17-07:00" }, { "id":"places_27402", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 12:29:21-07:00" }, { "id":"places_27403", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-18 16:25:56-07:00" }, { "id":"places_27404", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-18 16:26:01-07:00" }, { "id":"places_27405", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-18 16:26:04-07:00" }, { "id":"places_27406", "desc":"I have been to Vancouver's Canada Place", "details":"I have been to Vancouver's Canada Place", "date":"2019-04-18 16:26:07-07:00" }, { "id":"places_27407", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 17:10:13-07:00" }, { "id":"places_27408", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 17:10:17-07:00" }, { "id":"places_27409", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 17:27:02-07:00" }, { "id":"places_27410", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 17:54:04-07:00" }, { "id":"places_27411", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 19:46:42-07:00" }, { "id":"places_27412", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-18 19:46:47-07:00" }, { "id":"places_27413", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-19 11:21:20-07:00" }, { "id":"places_27414", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-19 11:22:29-07:00" }, { "id":"places_27415", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-19 11:34:21-07:00" }, { "id":"places_27416", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-19 11:37:25-07:00" }, { "id":"places_27417", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-19 11:38:46-07:00" }, { "id":"places_27418", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-19 11:39:45-07:00" }, { "id":"places_27419", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-19 11:41:51-07:00" }, { "id":"places_27420", "desc":"I have been to Vancouver Convention Centre West", "details":"I have been to Vancouver Convention Centre West", "date":"2019-04-19 11:42:16-07:00" }, { "id":"places_27421", "desc":"I have been to Old School Iron in Amarillo, TX", "details":"I have been to Old School Iron in Amarillo, TX", "date":"2019-04-20 11:12:11-07:00" }, { "id":"places_27422", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-20 13:02:58-07:00" }, { "id":"places_27423", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-20 14:04:32-07:00" }, { "id":"places_27424", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-20 17:58:49-07:00" }, { "id":"places_27425", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-20 17:58:54-07:00" }, { "id":"places_27426", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-21 10:33:26-07:00" }, { "id":"places_27427", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-21 11:39:34-07:00" }, { "id":"places_27428", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-21 11:39:50-07:00" }, { "id":"places_27429", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-21 11:41:20-07:00" }, { "id":"places_27430", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-21 11:41:39-07:00" }, { "id":"places_27431", "desc":"I have been to Exploring Randall County, Texas", "details":"I have been to Exploring Randall County, Texas", "date":"2019-04-22 19:13:15-07:00" }, { "id":"places_27432", "desc":"I have been to Exploring Randall County, Texas", "details":"I have been to Exploring Randall County, Texas", "date":"2019-04-22 19:24:01-07:00" }, { "id":"places_27433", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-23 08:14:56-07:00" }, { "id":"places_27434", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-23 08:14:55-07:00" }, { "id":"places_27435", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-23 09:58:20-07:00" }, { "id":"places_27436", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-23 12:25:08-07:00" }, { "id":"places_27437", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:32:53-07:00" }, { "id":"places_27438", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:35:19-07:00" }, { "id":"places_27439", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:35:28-07:00" }, { "id":"places_27440", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:35:38-07:00" }, { "id":"places_27441", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:40:38-07:00" }, { "id":"places_27442", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:40:41-07:00" }, { "id":"places_27443", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:41:36-07:00" }, { "id":"places_27444", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:41:41-07:00" }, { "id":"places_27445", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:41:43-07:00" }, { "id":"places_27446", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:41:46-07:00" }, { "id":"places_27447", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:43:55-07:00" }, { "id":"places_27448", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-24 18:45:25-07:00" }, { "id":"places_27449", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:50:35-07:00" }, { "id":"places_27450", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:52:17-07:00" }, { "id":"places_27451", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:52:16-07:00" }, { "id":"places_27452", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:55:48-07:00" }, { "id":"places_27453", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:55:59-07:00" }, { "id":"places_27454", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:59:17-07:00" }, { "id":"places_27455", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:59:23-07:00" }, { "id":"places_27456", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 18:59:30-07:00" }, { "id":"places_27457", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 19:06:22-07:00" }, { "id":"places_27458", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 19:07:27-07:00" }, { "id":"places_27459", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 19:10:19-07:00" }, { "id":"places_27460", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-24 19:10:24-07:00" }, { "id":"places_27461", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:13:51-07:00" }, { "id":"places_27462", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:13:55-07:00" }, { "id":"places_27463", "desc":"I have been to Exploring Yavapai Lodge Road", "details":"I have been to Exploring Yavapai Lodge Road", "date":"2019-04-24 19:15:23-07:00" }, { "id":"places_27464", "desc":"I have been to Exploring Arizona's Geology at Yavapai Museum", "details":"I have been to Exploring Arizona's Geology at Yavapai Museum", "date":"2019-04-24 19:16:48-07:00" }, { "id":"places_27465", "desc":"I have been to Exploring Arizona's Geology at Yavapai Museum", "details":"I have been to Exploring Arizona's Geology at Yavapai Museum", "date":"2019-04-24 19:16:52-07:00" }, { "id":"places_27466", "desc":"I have been to Exploring Arizona's Geology at Yavapai Museum", "details":"I have been to Exploring Arizona's Geology at Yavapai Museum", "date":"2019-04-24 19:16:56-07:00" }, { "id":"places_27467", "desc":"I have been to Exploring Arizona's Geology at Yavapai Museum", "details":"I have been to Exploring Arizona's Geology at Yavapai Museum", "date":"2019-04-24 19:16:59-07:00" }, { "id":"places_27468", "desc":"I have been to Exploring Arizona's Geology at Yavapai Museum", "details":"I have been to Exploring Arizona's Geology at Yavapai Museum", "date":"2019-04-24 19:17:03-07:00" }, { "id":"places_27469", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:19:38-07:00" }, { "id":"places_27470", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:19:40-07:00" }, { "id":"places_27471", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:19:44-07:00" }, { "id":"places_27472", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:19:51-07:00" }, { "id":"places_27473", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:08-07:00" }, { "id":"places_27474", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:16-07:00" }, { "id":"places_27475", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:19-07:00" }, { "id":"places_27476", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:25-07:00" }, { "id":"places_27477", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:32-07:00" }, { "id":"places_27478", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:35-07:00" }, { "id":"places_27479", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:37-07:00" }, { "id":"places_27480", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:39-07:00" }, { "id":"places_27481", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:20:40-07:00" }, { "id":"places_27482", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:21:41-07:00" }, { "id":"places_27483", "desc":"I have been to Exploring Yavapai Point, Grand Canyon", "details":"I have been to Exploring Yavapai Point, Grand Canyon", "date":"2019-04-24 19:21:48-07:00" }, { "id":"places_27484", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:37:52-07:00" }, { "id":"places_27485", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 05:39:19-07:00" }, { "id":"places_27486", "desc":"I have been to Exploring Yavapai Lodge Road", "details":"I have been to Exploring Yavapai Lodge Road", "date":"2019-04-25 05:41:32-07:00" }, { "id":"places_27487", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:42:07-07:00" }, { "id":"places_27488", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:42:46-07:00" }, { "id":"places_27489", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:42:53-07:00" }, { "id":"places_27490", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:43:32-07:00" }, { "id":"places_27491", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:43:36-07:00" }, { "id":"places_27492", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:43:42-07:00" }, { "id":"places_27493", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:43:47-07:00" }, { "id":"places_27494", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:43:52-07:00" }, { "id":"places_27495", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:44:01-07:00" }, { "id":"places_27496", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:44:16-07:00" }, { "id":"places_27497", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:44:18-07:00" }, { "id":"places_27498", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:44:23-07:00" }, { "id":"places_27499", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:45:05-07:00" }, { "id":"places_27500", "desc":"I have been to Exploring Yavapai Lodge Road", "details":"I have been to Exploring Yavapai Lodge Road", "date":"2019-04-25 05:46:17-07:00" }, { "id":"places_27501", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:46:26-07:00" }, { "id":"places_27502", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:47:17-07:00" }, { "id":"places_27503", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:47:39-07:00" }, { "id":"places_27504", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:47:50-07:00" }, { "id":"places_27505", "desc":"I have been to Exploring Mather Point", "details":"I have been to Exploring Mather Point", "date":"2019-04-25 05:47:49-07:00" }, { "id":"places_27506", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 05:54:16-07:00" }, { "id":"places_27507", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 05:54:36-07:00" }, { "id":"places_27508", "desc":"I have been to Exploring Mather Point, Grand Canyon", "details":"I have been to Exploring Mather Point, Grand Canyon", "date":"2019-04-25 05:59:41-07:00" }, { "id":"places_27509", "desc":"I have been to Exploring Yavapai Lodge Road", "details":"I have been to Exploring Yavapai Lodge Road", "date":"2019-04-25 06:10:13-07:00" }, { "id":"places_27510", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 06:40:46-07:00" }, { "id":"places_27511", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 06:43:27-07:00" }, { "id":"places_27512", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 07:03:31-07:00" }, { "id":"places_27513", "desc":"I have been to \"Exploring the Grand Canyon\"", "details":"I have been to \"Exploring the Grand Canyon\"", "date":"2019-04-25 07:21:47-07:00" }, { "id":"places_27514", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 07:27:41-07:00" }, { "id":"places_27515", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 07:27:43-07:00" }, { "id":"places_27516", "desc":"I have been to Exploring the Grand Canyon", "details":"I have been to Exploring the Grand Canyon", "date":"2019-04-25 08:54:45-07:00" }, { "id":"places_27517", "desc":"I have been to Exploring Uptown Sedona", "details":"I have been to Exploring Uptown Sedona", "date":"2019-04-25 14:37:44-07:00" }, { "id":"places_27518", "desc":"I have been to Exploring Uptown Sedona", "details":"I have been to Exploring Uptown Sedona", "date":"2019-04-25 14:37:52-07:00" }, { "id":"places_27519", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 14:37:59-07:00" }, { "id":"places_27520", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 14:38:09-07:00" }, { "id":"places_27521", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 14:38:15-07:00" }, { "id":"places_27522", "desc":"I have been to Exploring Uptown Sedona", "details":"I have been to Exploring Uptown Sedona", "date":"2019-04-25 14:38:48-07:00" }, { "id":"places_27523", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 14:39:05-07:00" }, { "id":"places_27524", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 14:49:04-07:00" }, { "id":"places_27525", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 14:49:31-07:00" }, { "id":"places_27526", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 14:49:33-07:00" }, { "id":"places_27527", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 14:49:34-07:00" }, { "id":"places_27528", "desc":"I have been to Sedona Airport View", "details":"I have been to Sedona Airport View", "date":"2019-04-25 17:54:13-07:00" }, { "id":"places_27529", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:01:35-07:00" }, { "id":"places_27530", "desc":"I have been to Exploring Oak Creek Dev No. 1, Sedona", "details":"I have been to Exploring Oak Creek Dev No. 1, Sedona", "date":"2019-04-25 18:03:14-07:00" }, { "id":"places_27531", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:15:41-07:00" }, { "id":"places_27532", "desc":"I have been to Exploring Sedona, Arizona", "details":"I have been to Exploring Sedona, Arizona", "date":"2019-04-25 18:22:55-07:00" }, { "id":"places_27533", "desc":"I have been to \"Exploring Sedona's Airport Mesa Viewpoint\"", "details":"I have been to \"Exploring Sedona's Airport Mesa Viewpoint\"", "date":"2019-04-25 18:24:57-07:00" }, { "id":"places_27534", "desc":"I have been to \"Exploring Sedona's Airport Mesa Viewpoint\"", "details":"I have been to \"Exploring Sedona's Airport Mesa Viewpoint\"", "date":"2019-04-25 18:25:06-07:00" }, { "id":"places_27535", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-25 18:42:55-07:00" }, { "id":"places_27536", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:43:03-07:00" }, { "id":"places_27537", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:43:05-07:00" }, { "id":"places_27538", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:43:14-07:00" }, { "id":"places_27539", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:43:22-07:00" }, { "id":"places_27540", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:43:39-07:00" }, { "id":"places_27541", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:43:43-07:00" }, { "id":"places_27542", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:43:58-07:00" }, { "id":"places_27543", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 18:44:04-07:00" }, { "id":"places_27545", "desc":"I have been to Exploring Sedona's Airport Loop Trail", "details":"I have been to Exploring Sedona's Airport Loop Trail", "date":"2019-04-25 18:53:16-07:00" }, { "id":"places_27546", "desc":"I have been to Sedona Airport, Arizona", "details":"I have been to Sedona Airport, Arizona", "date":"2019-04-25 18:56:35-07:00" }, { "id":"places_27547", "desc":"I have been to Sedona Airport, Arizona", "details":"I have been to Sedona Airport, Arizona", "date":"2019-04-25 18:56:37-07:00" }, { "id":"places_27548", "desc":"I have been to Exploring Sedona, AZ", "details":"I have been to Exploring Sedona, AZ", "date":"2019-04-25 19:01:34-07:00" }, { "id":"places_27549", "desc":"I have been to Sedona Airport View", "details":"I have been to Sedona Airport View", "date":"2019-04-25 19:08:31-07:00" }, { "id":"places_27550", "desc":"I have been to Sedona Airport View", "details":"I have been to Sedona Airport View", "date":"2019-04-25 19:08:41-07:00" }, { "id":"places_27551", "desc":"I have been to Sedona Airport View", "details":"I have been to Sedona Airport View", "date":"2019-04-25 19:08:56-07:00" }, { "id":"places_27552", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:38:22-07:00" }, { "id":"places_27553", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:38:48-07:00" }, { "id":"places_27554", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:38:51-07:00" }, { "id":"places_27555", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:39:19-07:00" }, { "id":"places_27556", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:39:24-07:00" }, { "id":"places_27557", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:39:28-07:00" }, { "id":"places_27558", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:39:38-07:00" }, { "id":"places_27559", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:39:46-07:00" }, { "id":"places_27560", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:39:48-07:00" }, { "id":"places_27561", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:42:14-07:00" }, { "id":"places_27562", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:43:59-07:00" }, { "id":"places_27563", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:44:02-07:00" }, { "id":"places_27564", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:44:25-07:00" }, { "id":"places_27565", "desc":"I have been to \"Exploring Sedona, Arizona\"", "details":"I have been to \"Exploring Sedona, Arizona\"", "date":"2019-04-26 10:44:29-07:00" }, { "id":"places_27566", "desc":"I have been to Exploring Arizona's Western Navajo Agency", "details":"I have been to Exploring Arizona's Western Navajo Agency", "date":"2019-04-26 15:57:32-06:00" }, { "id":"places_27567", "desc":"I have been to Exploring Arizona's Western Navajo Agency", "details":"I have been to Exploring Arizona's Western Navajo Agency", "date":"2019-04-26 15:57:35-06:00" }, { "id":"places_27568", "desc":"I have been to Exploring Arizona's Western Navajo Agency", "details":"I have been to Exploring Arizona's Western Navajo Agency", "date":"2019-04-26 15:58:00-06:00" }, { "id":"places_27569", "desc":"I have been to Exploring Bitter Springs, Arizona", "details":"I have been to Exploring Bitter Springs, Arizona", "date":"2019-04-26 16:12:26-06:00" }, { "id":"places_27570", "desc":"I have been to Exploring Bitter Springs, Arizona", "details":"I have been to Exploring Bitter Springs, Arizona", "date":"2019-04-26 16:12:25-06:00" }, { "id":"places_27571", "desc":"I have been to Exploring Bitter Springs, Arizona", "details":"I have been to Exploring Bitter Springs, Arizona", "date":"2019-04-26 16:12:48-06:00" }, { "id":"places_27598", "desc":"I have been to Exploring Lake Powell Resort", "details":"I have been to Exploring Lake Powell Resort", "date":"2019-04-26 18:03:53-07:00" }, { "id":"places_27599", "desc":"I have been to Exploring Lake Powell Resort", "details":"I have been to Exploring Lake Powell Resort", "date":"2019-04-26 18:04:06-07:00" }, { "id":"places_27600", "desc":"I have been to Exploring Lake Powell Resort", "details":"I have been to Exploring Lake Powell Resort", "date":"2019-04-27 08:00:20-07:00" }, { "id":"places_27605", "desc":"I have been to Exploring Lake Powell Resort", "details":"I have been to Exploring Lake Powell Resort", "date":"2019-04-27 09:03:39-07:00" }, { "id":"places_27607", "desc":"I have been to Exploring Lake Powell Resort", "details":"I have been to Exploring Lake Powell Resort", "date":"2019-04-27 09:38:35-07:00" }, { "id":"places_27609", "desc":"I have been to Exploring Wahweap's Navajo Viewpoint", "details":"I have been to Exploring Wahweap's Navajo Viewpoint", "date":"2019-04-27 10:38:44-07:00" }, { "id":"places_27610", "desc":"I have been to Exploring Garfield County, Utah", "details":"I have been to Exploring Garfield County, Utah", "date":"2019-04-27 15:47:52-06:00" }, { "id":"places_27611", "desc":"I have been to Exploring Garfield County, Utah", "details":"I have been to Exploring Garfield County, Utah", "date":"2019-04-27 15:48:04-06:00" }, { "id":"places_27612", "desc":"I have been to Tropic, Utah", "details":"I have been to Tropic, Utah", "date":"2019-04-27 16:17:22-06:00" }, { "id":"places_27613", "desc":"I have been to \"Sunset Point in Utah\"", "details":"I have been to \"Sunset Point in Utah\"", "date":"2019-04-27 17:37:11-06:00" }, { "id":"places_27614", "desc":"I have been to Exploring Utah's Navajo Loop Trail", "details":"I have been to Exploring Utah's Navajo Loop Trail", "date":"2019-04-27 17:39:13-06:00" }, { "id":"places_27615", "desc":"I have been to Exploring Utah's Navajo Loop Trail", "details":"I have been to Exploring Utah's Navajo Loop Trail", "date":"2019-04-27 17:39:16-06:00" }, { "id":"places_27616", "desc":"I have been to Exploring Utah's Navajo Loop Trail", "details":"I have been to Exploring Utah's Navajo Loop Trail", "date":"2019-04-27 17:39:19-06:00" }, { "id":"places_27617", "desc":"I have been to Exploring Utah's Navajo Loop Trail", "details":"I have been to Exploring Utah's Navajo Loop Trail", "date":"2019-04-27 17:39:22-06:00" }, { "id":"places_27618", "desc":"I have been to Exploring Utah's Navajo Loop Trail", "details":"I have been to Exploring Utah's Navajo Loop Trail", "date":"2019-04-27 17:39:31-06:00" }, { "id":"places_27619", "desc":"I have been to Exploring Utah's Navajo Loop Trail", "details":"I have been to Exploring Utah's Navajo Loop Trail", "date":"2019-04-27 17:39:33-06:00" }, { "id":"places_27620", "desc":"I have been to Exploring Utah's Rim Trail", "details":"I have been to Exploring Utah's Rim Trail", "date":"2019-04-27 17:39:41-06:00" }, { "id":"places_27621", "desc":"I have been to Exploring Utah's Rim Trail", "details":"I have been to Exploring Utah's Rim Trail", "date":"2019-04-27 17:39:43-06:00" }, { "id":"places_27622", "desc":"I have been to Exploring Utah's Rim Trail", "details":"I have been to Exploring Utah's Rim Trail", "date":"2019-04-27 17:45:04-06:00" }, { "id":"places_27623", "desc":"I have been to Exploring Utah's Rim Trail", "details":"I have been to Exploring Utah's Rim Trail", "date":"2019-04-27 18:00:27-06:00" }, { "id":"places_27624", "desc":"I have been to Exploring Utah's Rim Trail", "details":"I have been to Exploring Utah's Rim Trail", "date":"2019-04-27 18:05:34-06:00" }, { "id":"places_27625", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:14:23-06:00" }, { "id":"places_27626", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:18:42-06:00" }, { "id":"places_27627", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:18:47-06:00" }, { "id":"places_27628", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:18:51-06:00" }, { "id":"places_27629", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:20:03-06:00" }, { "id":"places_27630", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:20:12-06:00" }, { "id":"places_27631", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:27:33-06:00" }, { "id":"places_27632", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:28:52-06:00" }, { "id":"places_27633", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:28:57-06:00" }, { "id":"places_27634", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:28:59-06:00" }, { "id":"places_27635", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:34:01-06:00" }, { "id":"places_27637", "desc":"I have been to Tropic, Utah", "details":"I have been to Tropic, Utah", "date":"2019-04-27 18:43:44-06:00" }, { "id":"places_27638", "desc":"I have been to Tropic, Utah", "details":"I have been to Tropic, Utah", "date":"2019-04-27 18:43:48-06:00" }, { "id":"places_27639", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 18:50:14-06:00" }, { "id":"places_27640", "desc":"I have been to Exploring Utah's Queen's Garden Trail", "details":"I have been to Exploring Utah's Queen's Garden Trail", "date":"2019-04-27 19:13:37-06:00" }, { "id":"places_27641", "desc":"I have been to Exploring Utah's Rim Trail", "details":"I have been to Exploring Utah's Rim Trail", "date":"2019-04-27 19:34:15-06:00" }, { "id":"places_27642", "desc":"I have been to \"Texas Home on Greg Street\"", "details":"I have been to \"Texas Home on Greg Street\"", "date":"2019-04-29 11:49:07-07:00" }, { "id":"purchase_0", "desc":"I purchased Dr. Earth 713 Organic 9 Fruit Tree Fertilizer, 12-Pound from Amazon", "details":"I purchased Dr. Earth 713 Organic 9 Fruit Tree Fertilizer, 12-Pound from Amazon", "date":"2019-03-26T16:29:16" }, { "id":"purchase_1", "desc":"I purchased Miracle-Gro Citrus, Avocado, & Mango Food, 20 lb. from Amazon", "details":"I purchased Miracle-Gro Citrus, Avocado, & Mango Food, 20 lb. from Amazon", "date":"2019-03-26T16:28:27" }, { "id":"purchase_2", "desc":"I purchased 63\" Garden Leaf Rake 38\"-63\"Adjustable Garden Rake,25 tines, Metal Rake for Quick Clean Up of Lawn and Yard from Amazon", "details":"I purchased 63\" Garden Leaf Rake 38\"-63\"Adjustable Garden Rake,25 tines, Metal Rake for Quick Clean Up of Lawn and Yard from Amazon", "date":"2019-03-25T17:19:27" }, { "id":"purchase_3", "desc":"I purchased Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz from Amazon", "details":"I purchased Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz from Amazon", "date":"2019-03-23T03:42:11" }, { "id":"purchase_4", "desc":"I purchased Amazon Basics Ultra Facial Tissue with Lotion18 Cube Boxes - 75 Tissues per Box -1350 Tissues Total (Previously Solimo) from Amazon", "details":"I purchased Amazon Basics Ultra Facial Tissue with Lotion18 Cube Boxes - 75 Tissues per Box -1350 Tissues Total (Previously Solimo) from Amazon", "date":"2019-03-13T20:42:12" }, { "id":"purchase_5", "desc":"I purchased ejet Compatible Toner Cartridge Replacement for Brother TN450 TN420 TN-450 TN-420 for HL-2270DW HL-2280DW HL-2230 HL-2240 7360N 7860DW 7065DN Intellif from Amazon", "details":"I purchased ejet Compatible Toner Cartridge Replacement for Brother TN450 TN420 TN-450 TN-420 for HL-2270DW HL-2280DW HL-2230 HL-2240 7360N 7860DW 7065DN Intellif from Amazon", "date":"2019-03-13T00:23:01" }, { "id":"purchase_6", "desc":"I purchased Hanes Men's Pocket T-Shirt Pack, Cotton Crewneck Pocket Tees 6-Pack, Moisture-Wicking Cotton T-Shirt Assorted 6-Pack from Amazon", "details":"I purchased Hanes Men's Pocket T-Shirt Pack, Cotton Crewneck Pocket Tees 6-Pack, Moisture-Wicking Cotton T-Shirt Assorted 6-Pack from Amazon", "date":"2019-03-12T16:59:59" }, { "id":"purchase_7", "desc":"I purchased Neutrogena Ultra Sheer Dry-Touch Water Resistant and Non-Greasy Sunscreen Lotion with Broad Spectrum SPF 70, 3 Fl Oz (Pack of 1) from Amazon", "details":"I purchased Neutrogena Ultra Sheer Dry-Touch Water Resistant and Non-Greasy Sunscreen Lotion with Broad Spectrum SPF 70, 3 Fl Oz (Pack of 1) from Amazon", "date":"2019-03-12T16:59:59" }, { "id":"purchase_8", "desc":"I purchased 100% Natural Boar Bristle Body Brush with Contoured Wooden Handle by TOUCH ME from Amazon", "details":"I purchased 100% Natural Boar Bristle Body Brush with Contoured Wooden Handle by TOUCH ME from Amazon", "date":"2019-03-10T04:27:17" }, { "id":"purchase_9", "desc":"I purchased Amazon Brand - Solimo 70% Ethyl Rubbing Alcohol First Aid Antiseptic, 16 Fluid Ounces from Amazon", "details":"I purchased Amazon Brand - Solimo 70% Ethyl Rubbing Alcohol First Aid Antiseptic, 16 Fluid Ounces from Amazon", "date":"2019-03-10T04:27:17" }, { "id":"purchase_10", "desc":"I purchased Deseret Deals Boy Scout Neckerchief Slide - Metal Kerchief Woggle, for Cub Scouts and Varsity Scouts (2 Pack) from Amazon", "details":"I purchased Deseret Deals Boy Scout Neckerchief Slide - Metal Kerchief Woggle, for Cub Scouts and Varsity Scouts (2 Pack) from Amazon", "date":"2019-03-10T04:27:17" }, { "id":"purchase_11", "desc":"I purchased Hiking Pants for Men Convertible Zip Off Boy Scout Quick Dry Lightweight Cargo Travel Safari Pants (ZB02 Army Green 34) from Amazon", "details":"I purchased Hiking Pants for Men Convertible Zip Off Boy Scout Quick Dry Lightweight Cargo Travel Safari Pants (ZB02 Army Green 34) from Amazon", "date":"2019-03-10T04:27:17" }, { "id":"purchase_12", "desc":"I purchased Microfiber Spray Mop for Floor Cleaning, Dry Wet Wood Floor Mop with 3 pcs Washable Pads, Handle Flat Mop with Sprayer for Kitchen Wood Floor Hardwood from Amazon", "details":"I purchased Microfiber Spray Mop for Floor Cleaning, Dry Wet Wood Floor Mop with 3 pcs Washable Pads, Handle Flat Mop with Sprayer for Kitchen Wood Floor Hardwood from Amazon", "date":"2019-03-10T04:27:17" }, { "id":"purchase_13", "desc":"I purchased Airbee Plastic Spray Bottles 2 Pack 16 Oz for Cleaning Solutions, Planting, Pet, Bleach Spray, Vinegar, Professional Empty Spraying Bottle, Mist Water from Amazon", "details":"I purchased Airbee Plastic Spray Bottles 2 Pack 16 Oz for Cleaning Solutions, Planting, Pet, Bleach Spray, Vinegar, Professional Empty Spraying Bottle, Mist Water from Amazon", "date":"2019-03-10T04:27:17" }, { "id":"purchase_14", "desc":"I purchased 21 Lessons for the 21st Century from Amazon", "details":"I purchased 21 Lessons for the 21st Century from Amazon", "date":"2019-04-11T03:41:12" }, { "id":"purchase_15", "desc":"I purchased Nudge: Improving Decisions About Health, Wealth, and Happiness from Amazon", "details":"I purchased Nudge: Improving Decisions About Health, Wealth, and Happiness from Amazon", "date":"2019-04-11T03:41:12" }, { "id":"purchase_16", "desc":"I purchased How to Be an Antiracist from Amazon", "details":"I purchased How to Be an Antiracist from Amazon", "date":"2019-04-11T03:41:12" }, { "id":"purchase_17", "desc":"I purchased Predictably Irrational, Revised and Expanded Edition: The Hidden Forces That Shape Our Decisions from Amazon", "details":"I purchased Predictably Irrational, Revised and Expanded Edition: The Hidden Forces That Shape Our Decisions from Amazon", "date":"2019-04-11T03:41:12" }, { "id":"purchase_18", "desc":"I purchased Thinking, Fast and Slow from Amazon", "details":"I purchased Thinking, Fast and Slow from Amazon", "date":"2019-04-11T03:41:12" }, { "id":"purchase_19", "desc":"I purchased The Ministry for the Future: A Novel from Amazon", "details":"I purchased The Ministry for the Future: A Novel from Amazon", "date":"2019-04-11T03:41:12" }, { "id":"purchase_20", "desc":"I purchased Oral-B Complete Glide Dental Floss Picks Plus Scope Outlast, Long Lasting Mint, 75 Dental Floss Picks, Pack of 6 from Amazon", "details":"I purchased Oral-B Complete Glide Dental Floss Picks Plus Scope Outlast, Long Lasting Mint, 75 Dental Floss Picks, Pack of 6 from Amazon", "date":"2019-04-10T02:22:56" }, { "id":"purchase_21", "desc":"I purchased The Bitcoin Standard: The Decentralized Alternative to Central Banking from Amazon", "details":"I purchased The Bitcoin Standard: The Decentralized Alternative to Central Banking from Amazon", "date":"2019-04-05T20:59:13" }, { "id":"purchase_22", "desc":"I purchased UpNUpCo Artistic Beautiful Anti Fatigue Kitchen Floor Mat - Unique Floor Mats - Pain Relief Padded Kitchen Mats - Floor Mats For In Front Of Sink - Me from Amazon", "details":"I purchased UpNUpCo Artistic Beautiful Anti Fatigue Kitchen Floor Mat - Unique Floor Mats - Pain Relief Padded Kitchen Mats - Floor Mats For In Front Of Sink - Me from Amazon", "date":"2019-03-10T20:32:00" }, { "id":"purchase_23", "desc":"I purchased Fiskars 46 Inch Steel D-handle Digging Shovel from Amazon", "details":"I purchased Fiskars 46 Inch Steel D-handle Digging Shovel from Amazon", "date":"2019-03-03T17:40:07" }, { "id":"purchase_24", "desc":"I purchased AP World History: Modern Premium, 2022-2023: 5 Practice Tests + Comprehensive Review + Online Practice (Barron's Test Prep) from Amazon", "details":"I purchased AP World History: Modern Premium, 2022-2023: 5 Practice Tests + Comprehensive Review + Online Practice (Barron's Test Prep) from Amazon", "date":"2019-04-28T22:57:54" }, { "id":"purchase_25", "desc":"I purchased [3-Pack] European Travel Plug Adapter, VINTAR International Power Adaptor with 2 USB Ports,2 American Outlets- 4 in 1 European Plug Adapter for France from Amazon", "details":"I purchased [3-Pack] European Travel Plug Adapter, VINTAR International Power Adaptor with 2 USB Ports,2 American Outlets- 4 in 1 European Plug Adapter for France from Amazon", "date":"2019-04-20T04:53:01" }, { "id":"purchase_26", "desc":"I purchased Meta Quest 2 - Advanced All-In-One Virtual Reality Headset - 128 GB from Amazon", "details":"I purchased Meta Quest 2 - Advanced All-In-One Virtual Reality Headset - 128 GB from Amazon", "date":"2019-04-18T22:28:47" }, { "id":"purchase_27", "desc":"I purchased Artizen 30ml Oils - Lavender Essential Oil - 1 Fluid Ounce from Amazon", "details":"I purchased Artizen 30ml Oils - Lavender Essential Oil - 1 Fluid Ounce from Amazon", "date":"2019-04-18T02:11:57" }, { "id":"purchase_28", "desc":"I purchased Shea Butter Yellow Smooth | All Natural, 100% Pure- Unrefined | Daily Skin Moisturizer For Face & Body | Softens Tough Skin | Moisturizes Dry Skin | A from Amazon", "details":"I purchased Shea Butter Yellow Smooth | All Natural, 100% Pure- Unrefined | Daily Skin Moisturizer For Face & Body | Softens Tough Skin | Moisturizes Dry Skin | A from Amazon", "date":"2019-04-18T02:08:21" }, { "id":"purchase_29", "desc":"I purchased Alternative Imagination 100% Pure Beeswax Bar (1 Ounce), Made in USA from Amazon", "details":"I purchased Alternative Imagination 100% Pure Beeswax Bar (1 Ounce), Made in USA from Amazon", "date":"2019-04-18T02:03:55" }, { "id":"purchase_30", "desc":"I purchased Go Gently: Actionable Steps to Nurture Yourself and the Planet from Amazon", "details":"I purchased Go Gently: Actionable Steps to Nurture Yourself and the Planet from Amazon", "date":"2019-04-16T18:53:52" }, { "id":"purchase_31", "desc":"I purchased Joico HydraSplash Hydrating Gel\u00e9e Masque | Replenish Hydration | Add Shine | For Fine \/ Medium \/ Dry Hair from Amazon", "details":"I purchased Joico HydraSplash Hydrating Gel\u00e9e Masque | Replenish Hydration | Add Shine | For Fine \/ Medium \/ Dry Hair from Amazon", "date":"2019-03-30T18:03:45" }, { "id":"purchase_32", "desc":"I purchased Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz from Amazon", "details":"I purchased Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz from Amazon", "date":"2019-03-30T18:03:45" }, { "id":"purchase_33", "desc":"I purchased Joico HydraSplash Hydrating Conditioner for fine hair 8.5 fl oz from Amazon", "details":"I purchased Joico HydraSplash Hydrating Conditioner for fine hair 8.5 fl oz from Amazon", "date":"2019-03-30T18:03:45" }, { "id":"purchase_34", "desc":"I purchased Joico HydraSplash Hydrating Shampoo for fine hair 33.8 fl oz from Amazon", "details":"I purchased Joico HydraSplash Hydrating Shampoo for fine hair 33.8 fl oz from Amazon", "date":"2019-03-30T18:03:45" }, { "id":"purchase_35", "desc":"I purchased Joico Power Spray Fast-Dry Finishing Spray, 9.0 Ounce, New Look from Amazon", "details":"I purchased Joico Power Spray Fast-Dry Finishing Spray, 9.0 Ounce, New Look from Amazon", "date":"2019-03-30T18:03:45" }, { "id":"purchase_36", "desc":"I purchased Joico HydraSplash Replenishing Leave-In | Boost Shine | Reduce Frizz | For Fine\/ Medium \/ Dry Hair, 3.38 Fl Oz (Pack of 1) from Amazon", "details":"I purchased Joico HydraSplash Replenishing Leave-In | Boost Shine | Reduce Frizz | For Fine\/ Medium \/ Dry Hair, 3.38 Fl Oz (Pack of 1) from Amazon", "date":"2019-03-30T18:03:45" }, { "id":"purchase_38", "desc":"I purchased Claritin 24 Hour Reditabs - 60 ct from Amazon", "details":"I purchased Claritin 24 Hour Reditabs - 60 ct from Amazon", "date":"2019-03-27T23:21:18" }, { "id":"purchase_40", "desc":"I purchased SOTO WindMaster w\/ Micro Regulator and 4Flex (One Size) from Amazon", "details":"I purchased SOTO WindMaster w\/ Micro Regulator and 4Flex (One Size) from Amazon", "date":"2019-03-08T03:42:32" }, { "id":"purchase_41", "desc":"I purchased Portable Electric Space Heater 1500W\/750W, Ceramic Room Heater with Tip-Over and Overheat Protection, Heat up 200 Square Feet in Seconds, Safe and Qui from Amazon", "details":"I purchased Portable Electric Space Heater 1500W\/750W, Ceramic Room Heater with Tip-Over and Overheat Protection, Heat up 200 Square Feet in Seconds, Safe and Qui from Amazon", "date":"2019-03-05T04:45:16" }, { "id":"purchase_42", "desc":"I purchased Value Sensitive Design: Shaping Technology with Moral Imagination (The MIT Press) from Amazon", "details":"I purchased Value Sensitive Design: Shaping Technology with Moral Imagination (The MIT Press) from Amazon", "date":"2019-04-09T17:45:52" }, { "id":"purchase_43", "desc":"I purchased Anti Fog Spray for Glasses | 600 Pumps, 6 month Supply | Prevents Fog on Windshield, Lenses, Goggles, PPE & VR Headsets | Safe on Anti-Reflective Lens from Amazon", "details":"I purchased Anti Fog Spray for Glasses | 600 Pumps, 6 month Supply | Prevents Fog on Windshield, Lenses, Goggles, PPE & VR Headsets | Safe on Anti-Reflective Lens from Amazon", "date":"2019-03-30T17:59:04" }, { "id":"purchase_44", "desc":"I purchased WD-40 Multi-Use Product Handy Can 3 oz (Pack of 2) from Amazon", "details":"I purchased WD-40 Multi-Use Product Handy Can 3 oz (Pack of 2) from Amazon", "date":"2019-03-30T05:26:19" }, { "id":"purchase_45", "desc":"I purchased Organic Cowboy Boneless Chicken Thighs from Amazon", "details":"I purchased Organic Cowboy Boneless Chicken Thighs from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_46", "desc":"I purchased Organic Yellow Onion from Amazon", "details":"I purchased Organic Yellow Onion from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_47", "desc":"I purchased Bag Refund from Amazon", "details":"I purchased Bag Refund from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_48", "desc":"I purchased Espresso from Amazon", "details":"I purchased Espresso from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_49", "desc":"I purchased Donation Bag from Amazon", "details":"I purchased Donation Bag from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_50", "desc":"I purchased Blueberry Greek Yogurt from Amazon", "details":"I purchased Blueberry Greek Yogurt from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_51", "desc":"I purchased Organic Ginger Root from Amazon", "details":"I purchased Organic Ginger Root from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_52", "desc":"I purchased Organic Milk from Amazon", "details":"I purchased Organic Milk from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_53", "desc":"I purchased Green Onion from Amazon", "details":"I purchased Green Onion from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_54", "desc":"I purchased Blueberry Yoghurt from Amazon", "details":"I purchased Blueberry Yoghurt from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_55", "desc":"I purchased Boneless Skinless Chicken Thighs from Amazon", "details":"I purchased Boneless Skinless Chicken Thighs from Amazon", "date":"2019-03-24T22:53:23" }, { "id":"purchase_56", "desc":"I purchased Organic Plain Low Fat Yogurt from Amazon", "details":"I purchased Organic Plain Low Fat Yogurt from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_57", "desc":"I purchased Jewel Sweet Potato from Amazon", "details":"I purchased Jewel Sweet Potato from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_58", "desc":"I purchased Blueberry Yoghurt from Amazon", "details":"I purchased Blueberry Yoghurt from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_59", "desc":"I purchased Vidalia Onion from Amazon", "details":"I purchased Vidalia Onion from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_60", "desc":"I purchased Organic Spinach Ricotta Ravioli from Amazon", "details":"I purchased Organic Spinach Ricotta Ravioli from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_61", "desc":"I purchased Butternut Squash from Amazon", "details":"I purchased Butternut Squash from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_62", "desc":"I purchased Whole Trade Banana from Amazon", "details":"I purchased Whole Trade Banana from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_63", "desc":"I purchased Organic Milk from Amazon", "details":"I purchased Organic Milk from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_64", "desc":"I purchased Organic Strawberries from Amazon", "details":"I purchased Organic Strawberries from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_65", "desc":"I purchased Wild Blueberry Overnight Oats from Amazon", "details":"I purchased Wild Blueberry Overnight Oats from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_66", "desc":"I purchased Organic Brown Large Grade A Eggs from Amazon", "details":"I purchased Organic Brown Large Grade A Eggs from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_67", "desc":"I purchased Organic Bourbon Whiskey Boneless Chicken Thighs from Amazon", "details":"I purchased Organic Bourbon Whiskey Boneless Chicken Thighs from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_68", "desc":"I purchased Supreme Pizza from Amazon", "details":"I purchased Supreme Pizza from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_69", "desc":"I purchased Smoked Thick Cut Atlantic Salmon from Amazon", "details":"I purchased Smoked Thick Cut Atlantic Salmon from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_70", "desc":"I purchased Bacon Cheddar Beef Burger from Amazon", "details":"I purchased Bacon Cheddar Beef Burger from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_71", "desc":"I purchased Cherries from Amazon", "details":"I purchased Cherries from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_72", "desc":"I purchased Honey Almond Crunch from Amazon", "details":"I purchased Honey Almond Crunch from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_73", "desc":"I purchased Paleo Pancake & Waffle Mix from Amazon", "details":"I purchased Paleo Pancake & Waffle Mix from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_74", "desc":"I purchased Orange Cauliflower from Amazon", "details":"I purchased Orange Cauliflower from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_75", "desc":"I purchased Organic Berry Blend from Amazon", "details":"I purchased Organic Berry Blend from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_76", "desc":"I purchased Whipped Unsalted Butter from Amazon", "details":"I purchased Whipped Unsalted Butter from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_77", "desc":"I purchased Pinot Grigio Friuli from Amazon", "details":"I purchased Pinot Grigio Friuli from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_78", "desc":"I purchased Organic Boston Butter Lettuce from Amazon", "details":"I purchased Organic Boston Butter Lettuce from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_79", "desc":"I purchased Zucchini Squash from Amazon", "details":"I purchased Zucchini Squash from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_80", "desc":"I purchased Medium Hass Avocado from Amazon", "details":"I purchased Medium Hass Avocado from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_81", "desc":"I purchased Organic Low-Fat Cottage Cheese from Amazon", "details":"I purchased Organic Low-Fat Cottage Cheese from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_82", "desc":"I purchased Herring in Cream Sauce from Amazon", "details":"I purchased Herring in Cream Sauce from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_83", "desc":"I purchased Organic Baby Gold Beets Bunch from Amazon", "details":"I purchased Organic Baby Gold Beets Bunch from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_84", "desc":"I purchased Russet Potato from Amazon", "details":"I purchased Russet Potato from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_85", "desc":"I purchased Peach Yoghurt from Amazon", "details":"I purchased Peach Yoghurt from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_86", "desc":"I purchased Organic Mango Chunks from Amazon", "details":"I purchased Organic Mango Chunks from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_87", "desc":"I purchased Sauvignon Blanc from Amazon", "details":"I purchased Sauvignon Blanc from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_88", "desc":"I purchased Organic Brussels Sprouts from Amazon", "details":"I purchased Organic Brussels Sprouts from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_89", "desc":"I purchased Sliced Genoa Salami from Amazon", "details":"I purchased Sliced Genoa Salami from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_90", "desc":"I purchased Organic Cowboy Boneless Chicken Thighs from Amazon", "details":"I purchased Organic Cowboy Boneless Chicken Thighs from Amazon", "date":"2019-03-23T00:10:31" }, { "id":"purchase_91", "desc":"I purchased Amazon Basics 30% Recycled Multipurpose Copy Printer Paper - 8.5 x 11 Inches, 3 Ream Case (1500 Sheets) from Amazon", "details":"I purchased Amazon Basics 30% Recycled Multipurpose Copy Printer Paper - 8.5 x 11 Inches, 3 Ream Case (1500 Sheets) from Amazon", "date":"2019-03-21T19:50:31" }, { "id":"purchase_92", "desc":"I purchased Pudolla Men's Cotton Yoga Sweatpants Athletic Lounge Pants Open Bottom Casual Jersey Pants for Men with Pockets (Olive Medium) from Amazon", "details":"I purchased Pudolla Men's Cotton Yoga Sweatpants Athletic Lounge Pants Open Bottom Casual Jersey Pants for Men with Pockets (Olive Medium) from Amazon", "date":"2019-03-18T05:34:06" }, { "id":"purchase_93", "desc":"I purchased TERRO T300B Liquid Ant Killer, 12 Bait Stations from Amazon", "details":"I purchased TERRO T300B Liquid Ant Killer, 12 Bait Stations from Amazon", "date":"2019-03-13T19:10:03" }, { "id":"purchase_94", "desc":"I purchased BYD CARE KN95 Respirator, 50 Pieces, Breathable & Comfortable Foldable Safety Mask with Ear Loop for Tight Fit, GB2626 from Amazon", "details":"I purchased BYD CARE KN95 Respirator, 50 Pieces, Breathable & Comfortable Foldable Safety Mask with Ear Loop for Tight Fit, GB2626 from Amazon", "date":"2019-03-12T01:19:50" }, { "id":"purchase_95", "desc":"I purchased Kate Aspen 9 oz. Stemless Wine Glass (Set of 12)| Kitchen Drinking Glass or DIY Party Favor, Clear, One Size, (30009NA-x12) from Amazon", "details":"I purchased Kate Aspen 9 oz. Stemless Wine Glass (Set of 12)| Kitchen Drinking Glass or DIY Party Favor, Clear, One Size, (30009NA-x12) from Amazon", "date":"2019-03-06T01:22:33" }, { "id":"purchase_96", "desc":"I purchased iHealth COVID-19 Antigen Rapid Test, 2 Tests per Pack,FDA EUA Authorized OTC at-Home Self Test, Results in 15 Minutes with Non-invasive Nasal Swab, Ea from Amazon", "details":"I purchased iHealth COVID-19 Antigen Rapid Test, 2 Tests per Pack,FDA EUA Authorized OTC at-Home Self Test, Results in 15 Minutes with Non-invasive Nasal Swab, Ea from Amazon", "date":"2019-03-04T20:28:21" }, { "id":"streaming_0", "desc":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "details":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "date":"2019-03-30T11:34:59.982000" }, { "id":"streaming_1", "desc":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "details":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "date":"2019-03-30T12:24:57.597980" }, { "id":"streaming_2", "desc":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "details":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "date":"2019-04-01T18:55:58.781460" }, { "id":"streaming_3", "desc":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "details":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "date":"2019-04-05T14:03:56.228030" }, { "id":"streaming_4", "desc":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "details":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "date":"2019-04-05T18:14:59.195242" }, { "id":"streaming_5", "desc":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "details":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "date":"2019-04-05T19:38:59.996703" }, { "id":"streaming_6", "desc":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "details":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "date":"2019-04-05T20:28:57.034859" }, { "id":"streaming_7", "desc":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "details":"I listen to #282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences from Lex Fridman Podcast on Spotify", "date":"2019-04-05T23:20:58.466136" }, { "id":"streaming_8", "desc":"I listen to #283 \u2013 Chris Mason: Space Travel, Colonization, and Long-Term Survival in Space from Lex Fridman Podcast on Spotify", "details":"I listen to #283 \u2013 Chris Mason: Space Travel, Colonization, and Long-Term Survival in Space from Lex Fridman Podcast on Spotify", "date":"2019-04-05T23:45:58.517419" }, { "id":"streaming_9", "desc":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "details":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "date":"2019-04-07T02:18:59.548571" }, { "id":"streaming_10", "desc":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "details":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "date":"2019-04-09T02:09:59.132590" }, { "id":"streaming_11", "desc":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "details":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "date":"2019-04-10T21:31:59.990678" }, { "id":"streaming_12", "desc":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "details":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "date":"2019-04-17T15:32:54.334971" }, { "id":"streaming_13", "desc":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "details":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "date":"2019-04-19T04:16:53.888978" }, { "id":"streaming_14", "desc":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "details":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "date":"2019-04-19T16:50:59.718676" }, { "id":"streaming_15", "desc":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "details":"I listen to #284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics from Lex Fridman Podcast on Spotify", "date":"2019-04-19T19:18:58.126081" }, { "id":"streaming_16", "desc":"I listen to #285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify", "details":"I listen to #285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify", "date":"2019-04-20T01:34:52.331822" }, { "id":"streaming_17", "desc":"I listen to #285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify", "details":"I listen to #285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify", "date":"2019-04-22T15:16:54.972476" }, { "id":"streaming_18", "desc":"I listen to #286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify", "details":"I listen to #286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify", "date":"2019-04-22T16:12:59.995290" }, { "id":"streaming_19", "desc":"I listen to Estelle from Doris Casella on Spotify", "details":"I listen to Estelle from Doris Casella on Spotify", "date":"2019-03-02T22:21:59.881629" }, { "id":"streaming_20", "desc":"I listen to Shizukana from Isshi Matsuriza on Spotify", "details":"I listen to Shizukana from Isshi Matsuriza on Spotify", "date":"2019-03-02T22:23:59.868349" }, { "id":"streaming_21", "desc":"I listen to Un sourire et une larme (valse) from Tom Kristiaan on Spotify", "details":"I listen to Un sourire et une larme (valse) from Tom Kristiaan on Spotify", "date":"2019-03-02T22:26:59.854020" }, { "id":"streaming_22", "desc":"I listen to Hommage d'amiti\u00e9 from Gunnel Boek on Spotify", "details":"I listen to Hommage d'amiti\u00e9 from Gunnel Boek on Spotify", "date":"2019-03-02T22:28:59.863576" }, { "id":"streaming_23", "desc":"I listen to Alba from Helmut Schenker on Spotify", "details":"I listen to Alba from Helmut Schenker on Spotify", "date":"2019-03-02T22:31:59.847108" }, { "id":"streaming_24", "desc":"I listen to Hour of Rest from William Cas on Spotify", "details":"I listen to Hour of Rest from William Cas on Spotify", "date":"2019-03-02T22:32:59.887473" }, { "id":"streaming_25", "desc":"I listen to As I Dream from Johannes Bornl\u00f6f on Spotify", "details":"I listen to As I Dream from Johannes Bornl\u00f6f on Spotify", "date":"2019-03-02T22:37:59.815451" }, { "id":"streaming_26", "desc":"I listen to Spheroidal from Kalen Elmsley on Spotify", "details":"I listen to Spheroidal from Kalen Elmsley on Spotify", "date":"2019-03-02T22:40:59.815890" }, { "id":"streaming_27", "desc":"I listen to Un Cadeau from Nel Swerts on Spotify", "details":"I listen to Un Cadeau from Nel Swerts on Spotify", "date":"2019-03-02T22:43:59.843090" }, { "id":"streaming_28", "desc":"I listen to A Beautiful Break from Astrid Sky on Spotify", "details":"I listen to A Beautiful Break from Astrid Sky on Spotify", "date":"2019-03-02T22:45:59.871498" }, { "id":"streaming_29", "desc":"I listen to Saying Things from Emanuel Fremont on Spotify", "details":"I listen to Saying Things from Emanuel Fremont on Spotify", "date":"2019-03-02T22:47:59.876560" }, { "id":"streaming_30", "desc":"I listen to Silk from Piano Melancol\u00eda on Spotify", "details":"I listen to Silk from Piano Melancol\u00eda on Spotify", "date":"2019-03-02T22:51:59.848256" }, { "id":"streaming_31", "desc":"I listen to Reframe from Norman D\u00fcck on Spotify", "details":"I listen to Reframe from Norman D\u00fcck on Spotify", "date":"2019-03-02T22:53:59.873100" }, { "id":"streaming_32", "desc":"I listen to Solace from Armando Bauer on Spotify", "details":"I listen to Solace from Armando Bauer on Spotify", "date":"2019-03-02T22:55:59.882765" }, { "id":"streaming_33", "desc":"I listen to Nowesind from Jacob David on Spotify", "details":"I listen to Nowesind from Jacob David on Spotify", "date":"2019-03-02T22:57:59.881052" }, { "id":"streaming_34", "desc":"I listen to Tr\u00e4umerei from J\u00f8rg Sorensen on Spotify", "details":"I listen to Tr\u00e4umerei from J\u00f8rg Sorensen on Spotify", "date":"2019-03-02T22:59:59.872852" }, { "id":"streaming_35", "desc":"I listen to Compass from Niwa Nova on Spotify", "details":"I listen to Compass from Niwa Nova on Spotify", "date":"2019-03-02T23:02:59.860015" }, { "id":"streaming_36", "desc":"I listen to When it drizzles from Alva Brunel on Spotify", "details":"I listen to When it drizzles from Alva Brunel on Spotify", "date":"2019-03-02T23:06:59.851351" }, { "id":"streaming_37", "desc":"I listen to Dear Buddy from Cinthya Garcia on Spotify", "details":"I listen to Dear Buddy from Cinthya Garcia on Spotify", "date":"2019-03-02T23:08:59.867234" }, { "id":"streaming_38", "desc":"I listen to Although from Jane Avril on Spotify", "details":"I listen to Although from Jane Avril on Spotify", "date":"2019-03-02T23:11:59.820243" }, { "id":"streaming_39", "desc":"I listen to La Paix Int\u00e9rieure from Alain Pironi on Spotify", "details":"I listen to La Paix Int\u00e9rieure from Alain Pironi on Spotify", "date":"2019-03-02T23:13:59.873081" }, { "id":"streaming_40", "desc":"I listen to Mind Like Water from Andreas Monta on Spotify", "details":"I listen to Mind Like Water from Andreas Monta on Spotify", "date":"2019-03-02T23:15:59.880230" }, { "id":"streaming_41", "desc":"I listen to To the Rain from Anna Landstr\u00f6m on Spotify", "details":"I listen to To the Rain from Anna Landstr\u00f6m on Spotify", "date":"2019-03-02T23:17:59.854515" }, { "id":"streaming_42", "desc":"I listen to Adesso from Carluccio on Spotify", "details":"I listen to Adesso from Carluccio on Spotify", "date":"2019-03-02T23:21:59.853158" }, { "id":"streaming_43", "desc":"I listen to Pr\u00e9lude from Olivia Belli on Spotify", "details":"I listen to Pr\u00e9lude from Olivia Belli on Spotify", "date":"2019-03-02T23:24:59.828395" }, { "id":"streaming_44", "desc":"I listen to Aufgang der Sonne from Ploxxio on Spotify", "details":"I listen to Aufgang der Sonne from Ploxxio on Spotify", "date":"2019-03-02T23:27:59.827341" }, { "id":"streaming_45", "desc":"I listen to The New Life from Lemos on Spotify", "details":"I listen to The New Life from Lemos on Spotify", "date":"2019-03-02T23:29:59.861406" }, { "id":"streaming_46", "desc":"I listen to Coulant from Les R\u00eaveries on Spotify", "details":"I listen to Coulant from Les R\u00eaveries on Spotify", "date":"2019-03-02T23:32:59.851563" }, { "id":"streaming_47", "desc":"I listen to our paths crossing from praam on Spotify", "details":"I listen to our paths crossing from praam on Spotify", "date":"2019-03-02T23:35:59.894345" }, { "id":"streaming_48", "desc":"I listen to Horizon from Tamara Eden on Spotify", "details":"I listen to Horizon from Tamara Eden on Spotify", "date":"2019-03-02T23:38:59.857403" }, { "id":"streaming_49", "desc":"I listen to Ruhevoll from Naia Lambert on Spotify", "details":"I listen to Ruhevoll from Naia Lambert on Spotify", "date":"2019-03-02T23:40:59.860806" }, { "id":"streaming_50", "desc":"I listen to Meditabundus from Kellen Chase on Spotify", "details":"I listen to Meditabundus from Kellen Chase on Spotify", "date":"2019-03-02T23:42:59.850029" }, { "id":"streaming_51", "desc":"I listen to vierde moment from antinode on Spotify", "details":"I listen to vierde moment from antinode on Spotify", "date":"2019-03-02T23:46:59.799320" }, { "id":"streaming_52", "desc":"I listen to #286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify", "details":"I listen to #286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify", "date":"2019-03-03T19:21:58.176027" }, { "id":"streaming_53", "desc":"I listen to #286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify", "details":"I listen to #286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify", "date":"2019-03-03T22:19:55.579920" }, { "id":"streaming_54", "desc":"I listen to #285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify", "details":"I listen to #285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture from Lex Fridman Podcast on Spotify", "date":"2019-03-03T22:20:59.997132" }, { "id":"streaming_55", "desc":"I listen to #286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify", "details":"I listen to #286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine from Lex Fridman Podcast on Spotify", "date":"2019-03-03T22:29:59.510656" }, { "id":"streaming_56", "desc":"I listen to #299 \u2013 Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify", "details":"I listen to #299 \u2013 Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify", "date":"2019-03-07T02:30:54.715913" }, { "id":"streaming_57", "desc":"I listen to #299 \u2013 Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify", "details":"I listen to #299 \u2013 Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify", "date":"2019-03-07T14:55:57.454255" }, { "id":"streaming_58", "desc":"I listen to #300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify", "details":"I listen to #300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify", "date":"2019-03-07T15:52:56.634213" }, { "id":"streaming_59", "desc":"I listen to #300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify", "details":"I listen to #300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify", "date":"2019-03-07T20:25:58.992032" }, { "id":"streaming_60", "desc":"I listen to #300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify", "details":"I listen to #300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom from Lex Fridman Podcast on Spotify", "date":"2019-03-10T16:36:58.526016" }, { "id":"streaming_61", "desc":"I listen to Part V: The Old Friend from Exit Scam on Spotify", "details":"I listen to Part V: The Old Friend from Exit Scam on Spotify", "date":"2019-03-17T15:39:59.999882" }, { "id":"streaming_62", "desc":"I listen to \u05e0\u05e4\u05d9\u05dc\u05ea \u05d4\u05e9\u05de\u05d0\u05dc \u05d4\u05e6\u05d9\u05d5\u05e0\u05d9 from \u05d4\u05db\u05d5\u05ea\u05e8\u05ea on Spotify", "details":"I listen to \u05e0\u05e4\u05d9\u05dc\u05ea \u05d4\u05e9\u05de\u05d0\u05dc \u05d4\u05e6\u05d9\u05d5\u05e0\u05d9 from \u05d4\u05db\u05d5\u05ea\u05e8\u05ea on Spotify", "date":"2019-03-17T15:39:58.337319" }, { "id":"streaming_63", "desc":"I listen to Part V: The Old Friend from Exit Scam on Spotify", "details":"I listen to Part V: The Old Friend from Exit Scam on Spotify", "date":"2019-03-23T22:30:59.998840" }, { "id":"streaming_64", "desc":"I listen to #295 \u2013 Richard Wolff: Marxism and Communism from Lex Fridman Podcast on Spotify", "details":"I listen to #295 \u2013 Richard Wolff: Marxism and Communism from Lex Fridman Podcast on Spotify", "date":"2019-03-23T22:57:59.020807" }, { "id":"streaming_65", "desc":"I listen to #295 \u2013 Richard Wolff: Marxism and Communism from Lex Fridman Podcast on Spotify", "details":"I listen to #295 \u2013 Richard Wolff: Marxism and Communism from Lex Fridman Podcast on Spotify", "date":"2019-03-24T02:53:59.999370" }, { "id":"streaming_66", "desc":"I listen to #301 \u2013 Jack Barsky: KGB Spy from Lex Fridman Podcast on Spotify", "details":"I listen to #301 \u2013 Jack Barsky: KGB Spy from Lex Fridman Podcast on Spotify", "date":"2019-03-24T03:47:57.137380" }, { "id":"streaming_67", "desc":"I listen to #301 \u2013 Jack Barsky: KGB Spy from Lex Fridman Podcast on Spotify", "details":"I listen to #301 \u2013 Jack Barsky: KGB Spy from Lex Fridman Podcast on Spotify", "date":"2019-03-24T21:03:57.085293" }, { "id":"streaming_68", "desc":"I listen to #306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify", "details":"I listen to #306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify", "date":"2019-03-28T15:13:55.193621" }, { "id":"streaming_69", "desc":"I listen to #306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify", "details":"I listen to #306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify", "date":"2019-03-29T01:18:58.907601" }, { "id":"streaming_70", "desc":"I listen to #306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify", "details":"I listen to #306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify", "date":"2019-03-29T17:12:58.377812" }, { "id":"streaming_71", "desc":"I listen to #306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify", "details":"I listen to #306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence from Lex Fridman Podcast on Spotify", "date":"2019-03-29T20:00:59.729921" }, { "id":"streaming_72", "desc":"I listen to #207 \u2013 Chris Duffin: The Mad Scientist of Strength from Lex Fridman Podcast on Spotify", "details":"I listen to #207 \u2013 Chris Duffin: The Mad Scientist of Strength from Lex Fridman Podcast on Spotify", "date":"2019-03-30T00:26:59.587893" }, { "id":"streaming_73", "desc":"I listen to #207 \u2013 Chris Duffin: The Mad Scientist of Strength from Lex Fridman Podcast on Spotify", "details":"I listen to #207 \u2013 Chris Duffin: The Mad Scientist of Strength from Lex Fridman Podcast on Spotify", "date":"2019-03-30T23:57:59.994590" }, { "id":"streaming_74", "desc":"I listen to #298 \u2013 Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify", "details":"I listen to #298 \u2013 Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify", "date":"2019-03-30T00:51:56.797826" }, { "id":"streaming_75", "desc":"I listen to #298 \u2013 Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify", "details":"I listen to #298 \u2013 Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify", "date":"2019-04-01T20:15:56.262083" }, { "id":"streaming_76", "desc":"I listen to #298 \u2013 Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify", "details":"I listen to #298 \u2013 Susan Cain: The Power of Introverts and Loneliness from Lex Fridman Podcast on Spotify", "date":"2019-04-02T03:02:59.791198" }, { "id":"streaming_77", "desc":"I listen to #299 \u2013 Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify", "details":"I listen to #299 \u2013 Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify", "date":"2019-04-02T14:24:59.994295" }, { "id":"streaming_78", "desc":"I listen to #277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify", "details":"I listen to #277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify", "date":"2019-04-05T18:00:59.997247" }, { "id":"streaming_79", "desc":"I listen to #299 \u2013 Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify", "details":"I listen to #299 \u2013 Demis Hassabis: DeepMind from Lex Fridman Podcast on Spotify", "date":"2019-04-05T18:00:59.999478" }, { "id":"streaming_80", "desc":"I listen to #277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify", "details":"I listen to #277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify", "date":"2019-04-05T19:50:56.902858" }, { "id":"streaming_81", "desc":"I listen to #277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify", "details":"I listen to #277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship from Lex Fridman Podcast on Spotify", "date":"2019-04-05T23:46:55.538729" }, { "id":"streaming_82", "desc":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "details":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "date":"2019-04-08T06:01:57.093682" }, { "id":"streaming_83", "desc":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "details":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "date":"2019-04-08T19:39:57.271936" }, { "id":"streaming_84", "desc":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "details":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "date":"2019-04-08T21:50:58.395412" }, { "id":"streaming_85", "desc":"I listen to Xanadu from Olivia Newton-John on Spotify", "details":"I listen to Xanadu from Olivia Newton-John on Spotify", "date":"2019-04-09T17:42:59.791494" }, { "id":"streaming_86", "desc":"I listen to Carried Away - Alternate Mix \/ Remastered 2021 from Olivia Newton-John on Spotify", "details":"I listen to Carried Away - Alternate Mix \/ Remastered 2021 from Olivia Newton-John on Spotify", "date":"2019-04-09T17:46:59.773902" }, { "id":"streaming_87", "desc":"I listen to Physical - Remastered 2021 from Olivia Newton-John on Spotify", "details":"I listen to Physical - Remastered 2021 from Olivia Newton-John on Spotify", "date":"2019-04-09T17:50:59.774008" }, { "id":"streaming_88", "desc":"I listen to Shaking You - Remastered 2021 from Olivia Newton-John on Spotify", "details":"I listen to Shaking You - Remastered 2021 from Olivia Newton-John on Spotify", "date":"2019-04-09T17:54:59.743864" }, { "id":"streaming_89", "desc":"I listen to I Love You, I Honestly Love You from Olivia Newton-John on Spotify", "details":"I listen to I Love You, I Honestly Love You from Olivia Newton-John on Spotify", "date":"2019-04-09T17:58:59.779667" }, { "id":"streaming_90", "desc":"I listen to Carried Away - Remastered 2021 from Olivia Newton-John on Spotify", "details":"I listen to Carried Away - Remastered 2021 from Olivia Newton-John on Spotify", "date":"2019-04-09T18:02:59.774126" }, { "id":"streaming_91", "desc":"I listen to Have You Never Been Mellow from Olivia Newton-John on Spotify", "details":"I listen to Have You Never Been Mellow from Olivia Newton-John on Spotify", "date":"2019-04-09T18:05:59.786467" }, { "id":"streaming_92", "desc":"I listen to Livin' In Desperate Times - Extended Version \/ Remastered 2021 from Olivia Newton-John on Spotify", "details":"I listen to Livin' In Desperate Times - Extended Version \/ Remastered 2021 from Olivia Newton-John on Spotify", "date":"2019-04-09T18:12:59.598201" }, { "id":"streaming_93", "desc":"I listen to You're The One That I Want - From \u201cGrease\u201d from John Travolta on Spotify", "details":"I listen to You're The One That I Want - From \u201cGrease\u201d from John Travolta on Spotify", "date":"2019-04-10T03:44:59.830160" }, { "id":"streaming_94", "desc":"I listen to Goodbye Girl from David Gates on Spotify", "details":"I listen to Goodbye Girl from David Gates on Spotify", "date":"2019-04-10T03:47:59.831134" }, { "id":"streaming_95", "desc":"I listen to Two In Love from Michael Johnson on Spotify", "details":"I listen to Two In Love from Michael Johnson on Spotify", "date":"2019-04-10T03:50:59.821534" }, { "id":"streaming_96", "desc":"I listen to When You Wish Upon a Star from Stephen Bishop on Spotify", "details":"I listen to When You Wish Upon a Star from Stephen Bishop on Spotify", "date":"2019-04-10T03:53:59.799840" }, { "id":"streaming_97", "desc":"I listen to Try To Make It True from Quarterflash on Spotify", "details":"I listen to Try To Make It True from Quarterflash on Spotify", "date":"2019-04-10T03:57:59.781467" }, { "id":"streaming_98", "desc":"I listen to Willpower from Taylor Dayne on Spotify", "details":"I listen to Willpower from Taylor Dayne on Spotify", "date":"2019-04-10T03:58:59.960589" }, { "id":"streaming_99", "desc":"I listen to Willpower from Taylor Dayne on Spotify", "details":"I listen to Willpower from Taylor Dayne on Spotify", "date":"2019-04-10T18:59:59.809853" }, { "id":"streaming_100", "desc":"I listen to If You Ever Change Your Mind from Crystal Gayle on Spotify", "details":"I listen to If You Ever Change Your Mind from Crystal Gayle on Spotify", "date":"2019-04-10T19:02:59.805534" }, { "id":"streaming_101", "desc":"I listen to #290 \u2013 Dan Reynolds: Imagine Dragons from Lex Fridman Podcast on Spotify", "details":"I listen to #290 \u2013 Dan Reynolds: Imagine Dragons from Lex Fridman Podcast on Spotify", "date":"2019-04-11T00:02:53.600471" }, { "id":"streaming_102", "desc":"I listen to #290 \u2013 Dan Reynolds: Imagine Dragons from Lex Fridman Podcast on Spotify", "details":"I listen to #290 \u2013 Dan Reynolds: Imagine Dragons from Lex Fridman Podcast on Spotify", "date":"2019-04-11T00:39:58.542013" }, { "id":"streaming_103", "desc":"I listen to #291 \u2013 Jonathan Haidt: The Case Against Social Media from Lex Fridman Podcast on Spotify", "details":"I listen to #291 \u2013 Jonathan Haidt: The Case Against Social Media from Lex Fridman Podcast on Spotify", "date":"2019-04-11T15:29:56.176277" }, { "id":"streaming_104", "desc":"I listen to #291 \u2013 Jonathan Haidt: The Case Against Social Media from Lex Fridman Podcast on Spotify", "details":"I listen to #291 \u2013 Jonathan Haidt: The Case Against Social Media from Lex Fridman Podcast on Spotify", "date":"2019-04-12T19:54:57.706751" }, { "id":"streaming_105", "desc":"I listen to #292 \u2013 Robin Hanson: Alien Civilizations, UFOs, and the Future of Humanity from Lex Fridman Podcast on Spotify", "details":"I listen to #292 \u2013 Robin Hanson: Alien Civilizations, UFOs, and the Future of Humanity from Lex Fridman Podcast on Spotify", "date":"2019-04-12T20:10:59.420645" }, { "id":"streaming_106", "desc":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "details":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "date":"2019-04-13T18:46:55.390590" }, { "id":"streaming_107", "desc":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "details":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "date":"2019-04-13T22:38:56.433995" }, { "id":"streaming_108", "desc":"I listen to #310 \u2013 Andrew Bustamante: CIA Spy from Lex Fridman Podcast on Spotify", "details":"I listen to #310 \u2013 Andrew Bustamante: CIA Spy from Lex Fridman Podcast on Spotify", "date":"2019-04-14T17:20:59.995757" }, { "id":"streaming_109", "desc":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "details":"I listen to #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets from Lex Fridman Podcast on Spotify", "date":"2019-04-14T17:20:56.584921" }, { "id":"trips_0", "desc":"Here's a summary of the trip: You have been to South Korea, Seoul, Seocho-gu, Jung-gu, Gwanak-gu, Yeongdeungpo-gu, and Unseo-dong. You have visited the Incheon International Airport Terminal 1, Seoul National University Gwanak Campus, Bangbae-ro, and Yangpyeong-ro 28da-gil.", "details":"Here's a summary of the trip: You have been to South Korea, Seoul, Seocho-gu, Jung-gu, Gwanak-gu, Yeongdeungpo-gu, and Unseo-dong. You have visited the Incheon International Airport Terminal 1, Seoul National University Gwanak Campus, Bangbae-ro, and Yangpyeong-ro 28da-gil.", "date":"2019-03-27 11:42:43+09:00" }, { "id":"trips_1", "desc":"Here's a summary of the trip: Japan: Tokyo (Minato, Bunkyo, Meguro, Sanmu, Chiba Prefecture), Roppongi Hills, Tokyo Prince Hotel, Asahi Shokudo, University of Tokyo (Hongo Campus), \u4e2d\u91cc\u6a4b, Roppongi Hills Mori Tower, 191L, Grand Hyatt Tokyo.", "details":"Here's a summary of the trip: Japan: Tokyo (Minato, Bunkyo, Meguro, Sanmu, Chiba Prefecture), Roppongi Hills, Tokyo Prince Hotel, Asahi Shokudo, University of Tokyo (Hongo Campus), \u4e2d\u91cc\u6a4b, Roppongi Hills Mori Tower, 191L, Grand Hyatt Tokyo.", "date":"2019-03-28 20:38:13+09:00" }, { "id":"trips_2", "desc":"Here's a summary of the trip: Taiwan: Taipei (City Hall Rd., Dongmen Village, Huashan, Longtsakoo, Xingya, Xinyi Commercial Zone, Zhongzheng District, Zhongxiao East Road Section 2), Xinyi District (Chezeng, Liuhe Village, Sanli Village, Xinglong Village), Jinshan North Road.\n\nPlaces: Liberty Square, Democracy Boulevard, Dongmen Village, Chiang Kai-shek Memorial Hall, Cama Cafe, Xiangshan Tunnel, Six Boulders Photographing Platform, Sun Yat-sen Memorial Hall, Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928, 101\u5854\u6a131\u865f\u651d\u5f71\u5e73\u53f0, \u6960\u6960\u76f8\u671b, \u8c61\u5c71\u81ea\u7136\u6b65\u9053, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), \u6885\u82b1", "details":"Here's a summary of the trip: Taiwan: Taipei (City Hall Rd., Dongmen Village, Huashan, Longtsakoo, Xingya, Xinyi Commercial Zone, Zhongzheng District, Zhongxiao East Road Section 2), Xinyi District (Chezeng, Liuhe Village, Sanli Village, Xinglong Village), Jinshan North Road.\n\nPlaces: Liberty Square, Democracy Boulevard, Dongmen Village, Chiang Kai-shek Memorial Hall, Cama Cafe, Xiangshan Tunnel, Six Boulders Photographing Platform, Sun Yat-sen Memorial Hall, Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928, 101\u5854\u6a131\u865f\u651d\u5f71\u5e73\u53f0, \u6960\u6960\u76f8\u671b, \u8c61\u5c71\u81ea\u7136\u6b65\u9053, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), \u6885\u82b1", "date":"2019-03-31 10:51:04+08:00" }, { "id":"trips_3", "desc":"Here's a summary of the trip: You have been to Canada, British Columbia, Vancouver, Gastown, Downtown, Canada Place, Seawall, Jack Poole Plaza, West Waterfront Road, West Cordova Street, Fairmont Pacific Rim, and Shaw Tower.", "details":"Here's a summary of the trip: You have been to Canada, British Columbia, Vancouver, Gastown, Downtown, Canada Place, Seawall, Jack Poole Plaza, West Waterfront Road, West Cordova Street, Fairmont Pacific Rim, and Shaw Tower.", "date":"2019-04-14 19:19:06-07:00" }, { "id":"trips_4", "desc":"Here's a summary of the trip: You have been to the United States (Arizona and Utah), Coconino County and Yavapai County in Arizona, Sedona City Limit in Arizona, Grand Canyon Village, Bitter Springs, Western Navajo Agency, Wahweap, Oak Creek Dev No. 1, Southwest Center, Garfield County in Utah, and Tropic in Garfield County in Utah. You have visited places such as Mather Point Amphitheatre, Airport Mesa Viewpoint, Lake Powell Resort, Sedona View Trail, Sedona Airport Overlook, AZ 89A, Brewer Trail, Navajo Viewpoint, Mather Point, Airport Loop Trail, Rim Trail, US 89, Casa Sedona Inn, UT-12, Yavapai East 7451-7483, Yavapai Geology Museum, Yavapai Point, 1.5 Mile Resthouse, Grand Canyon, Sedona Airport, 2 Emblem Place, and Crusty.", "details":"Here's a summary of the trip: You have been to the United States (Arizona and Utah), Coconino County and Yavapai County in Arizona, Sedona City Limit in Arizona, Grand Canyon Village, Bitter Springs, Western Navajo Agency, Wahweap, Oak Creek Dev No. 1, Southwest Center, Garfield County in Utah, and Tropic in Garfield County in Utah. You have visited places such as Mather Point Amphitheatre, Airport Mesa Viewpoint, Lake Powell Resort, Sedona View Trail, Sedona Airport Overlook, AZ 89A, Brewer Trail, Navajo Viewpoint, Mather Point, Airport Loop Trail, Rim Trail, US 89, Casa Sedona Inn, UT-12, Yavapai East 7451-7483, Yavapai Geology Museum, Yavapai Point, 1.5 Mile Resthouse, Grand Canyon, Sedona Airport, 2 Emblem Place, and Crusty.", "date":"2019-04-24 18:32:53-07:00" }, { "id":"trips_5", "desc":"Here's a summary of the trip: You have been to the United States in the states of Utah and Arizona. You have visited the cities\/towns of Tropic, Utah and the places Navajo Loop Trailhead, Sunset Point, Sunrise Point, Rim Trail, and Queen's Garden Trail.", "details":"Here's a summary of the trip: You have been to the United States in the states of Utah and Arizona. You have visited the cities\/towns of Tropic, Utah and the places Navajo Loop Trailhead, Sunset Point, Sunrise Point, Rim Trail, and Queen's Garden Trail.", "date":"2019-04-27 17:37:11-06:00" } ] ================================================ FILE: sample_data/exercise.sampled.csv ================================================ start_time,end_time,textDescription,duration,distance,calories,outdoor,temperature,id 2019-03-02 08:00:34-08:00,2019-03-02 08:39:59 -0800,08:00: running 39 minutes ,39.40743217468262,0,0,1,,exercise_35 2019-03-05 06:55:11-08:00,2019-03-05 07:20:49 -0800,06:55: running 25 minutes ,25.63550810019175,0,0,1,50 degF,exercise_36 2019-03-07 08:32:33-08:00,2019-03-07 09:12:59 -0800,08:32: running 40 minutes ,40.43619398673376,0,0,1,51 degF,exercise_37 2019-03-09 07:27:37-08:00,2019-03-09 08:19:08 -0800,07:27: running 51 minutes ,51.52546683152516,0,0,1,45 degF,exercise_38 2019-03-11 06:49:09-07:00,2019-03-11 07:41:49 -0800,06:49: running 52 minutes ,52.65584560831388,0,0,1,40 degF,exercise_39 2019-03-13 07:22:20-07:00,2019-03-13 08:03:07 -0800,07:22: running 40 minutes ,40.79556675155958,0,0,1,43 degF,exercise_40 2019-03-15 06:31:18-07:00,2019-03-15 07:30:34 -0800,06:31: running 59 minutes ,59.27064216732979,0,0,1,41 degF,exercise_41 2019-03-17 07:11:09-07:00,2019-03-17 07:38:33 -0800,07:11: running 27 minutes ,27.39419144789378,0,0,1,46 degF,exercise_42 2019-03-18 05:29:42-07:00,2019-03-18 05:57:39 -0800,05:29: running 27 minutes ,27.95481205582619,0,0,1,48 degF,exercise_43 2019-03-19 06:34:16-07:00,2019-03-19 07:28:26 -0800,06:34: running 54 minutes ,54.16489023367564,0,0,1,50 degF,exercise_44 2019-03-21 07:19:26-07:00,2019-03-21 08:02:28 -0800,07:19: running 43 minutes ,43.04586925506592,0,0,1,45 degF,exercise_45 2019-03-23 09:49:54-07:00,2019-03-23 10:41:13 -0800,09:49: running 51 minutes ,51.31122816205025,0,0,1,57 degF,exercise_46 2019-03-25 06:57:57-07:00,2019-03-25 07:23:14 -0800,06:57: running 25 minutes ,25.27344850301743,0,0,1,52 degF,exercise_47 2019-03-26 13:16:14-07:00,2019-03-26 13:41:46 -0800,13:16: running 25 minutes ,25.54592136542002,0,0,1,,exercise_48 2019-03-28 14:32:20-07:00,2019-03-28 14:57:21 -0800,14:32: running 25 minutes ,25.01336705287298,0,0,0,,exercise_49 2019-03-29 14:03:32-07:00,2019-03-29 14:29:34 -0800,14:03: running 26 minutes ,26.03740899364153,0,0,1,,exercise_50 2019-03-30 15:42:25-07:00,2019-03-30 16:07:08 -0800,15:42: running 24 minutes ,24.72331875363986,0,0,1,68 degF,exercise_51 2019-04-01 06:48:07+08:00,2019-03-31 16:12:30 -0800,06:48: running 24 minutes ,24.38389844497045,0,0,1,62 degF,exercise_52 2019-04-04 00:32:10+08:00,2019-04-03 10:13:36 -0800,00:32: running 41 minutes ,41.42328868508339,0,0,1,59 degF,exercise_53 2019-04-05 06:15:21-07:00,2019-04-05 06:56:13 -0800,06:15: running 40 minutes ,40.86001750230789,0,0,1,55 degF,exercise_54 2019-04-07 06:38:31-07:00,2019-04-07 07:30:10 -0800,06:38: running 51 minutes ,51.63496332168579,0,0,1,55 degF,exercise_55 2019-04-08 06:27:28-07:00,2019-04-08 07:06:51 -0800,06:27: running 39 minutes ,39.39064629475276,0,0,1,55 degF,exercise_56 2019-04-10 15:25:29-07:00,2019-04-10 15:50:08 -0800,15:25: running 24 minutes ,24.64575079480807,0,0,1,70 degF,exercise_57 2019-04-12 07:25:13-07:00,2019-04-12 09:17:34 -0800,07:25: running 112 minutes ,112.3511503656705,0,0,1,53 degF,exercise_58 2019-04-15 05:57:30-07:00,2019-04-15 06:24:29 -0800,05:57: running 26 minutes ,26.98381932179133,0,0,1,,exercise_59 2019-04-16 05:18:50-07:00,2019-04-16 05:46:39 -0800,05:18: running 27 minutes ,27.81041564941406,0,0,1,,exercise_60 2019-04-18 05:12:15-07:00,2019-04-18 05:37:18 -0800,05:12: running 25 minutes ,25.04186778465907,0,0,1,,exercise_61 2019-04-19 05:58:01-07:00,2019-04-19 06:23:26 -0800,05:58: running 25 minutes ,25.41067400972048,0,0,1,,exercise_62 2019-04-21 11:14:15-07:00,2019-04-21 11:56:01 -0800,11:14: running 41 minutes ,41.76977163354556,0,0,1,67 degF,exercise_63 2019-04-23 07:56:33-07:00,2019-04-23 08:38:30 -0800,07:56: running 41 minutes ,41.96485076149305,0,0,1,61 degF,exercise_64 2019-04-24 07:27:16-07:00,2019-04-24 07:56:08 -0800,07:27: walking 28 minutes ,28.85817079742749,0,0,1,68 degF,exercise_65 2019-04-29 08:43:36-07:00,2019-04-29 09:35:44 -0800,08:43: running 52 minutes ,52.13167618115743,0,0,1,59 degF,exercise_66 ================================================ FILE: sample_data/exercise.sampled.json ================================================ [ { "start_time":"2019-03-02 08:00:34-08:00", "end_time":"2019-03-02 08:39:59 -0800", "textDescription":"08:00: running 39 minutes ", "duration":39.4074321747, "distance":0, "calories":0, "outdoor":1, "temperature":null, "id":"exercise_35" }, { "start_time":"2019-03-05 06:55:11-08:00", "end_time":"2019-03-05 07:20:49 -0800", "textDescription":"06:55: running 25 minutes ", "duration":25.6355081002, "distance":0, "calories":0, "outdoor":1, "temperature":"50 degF", "id":"exercise_36" }, { "start_time":"2019-03-07 08:32:33-08:00", "end_time":"2019-03-07 09:12:59 -0800", "textDescription":"08:32: running 40 minutes ", "duration":40.4361939867, "distance":0, "calories":0, "outdoor":1, "temperature":"51 degF", "id":"exercise_37" }, { "start_time":"2019-03-09 07:27:37-08:00", "end_time":"2019-03-09 08:19:08 -0800", "textDescription":"07:27: running 51 minutes ", "duration":51.5254668315, "distance":0, "calories":0, "outdoor":1, "temperature":"45 degF", "id":"exercise_38" }, { "start_time":"2019-03-11 06:49:09-07:00", "end_time":"2019-03-11 07:41:49 -0800", "textDescription":"06:49: running 52 minutes ", "duration":52.6558456083, "distance":0, "calories":0, "outdoor":1, "temperature":"40 degF", "id":"exercise_39" }, { "start_time":"2019-03-13 07:22:20-07:00", "end_time":"2019-03-13 08:03:07 -0800", "textDescription":"07:22: running 40 minutes ", "duration":40.7955667516, "distance":0, "calories":0, "outdoor":1, "temperature":"43 degF", "id":"exercise_40" }, { "start_time":"2019-03-15 06:31:18-07:00", "end_time":"2019-03-15 07:30:34 -0800", "textDescription":"06:31: running 59 minutes ", "duration":59.2706421673, "distance":0, "calories":0, "outdoor":1, "temperature":"41 degF", "id":"exercise_41" }, { "start_time":"2019-03-17 07:11:09-07:00", "end_time":"2019-03-17 07:38:33 -0800", "textDescription":"07:11: running 27 minutes ", "duration":27.3941914479, "distance":0, "calories":0, "outdoor":1, "temperature":"46 degF", "id":"exercise_42" }, { "start_time":"2019-03-18 05:29:42-07:00", "end_time":"2019-03-18 05:57:39 -0800", "textDescription":"05:29: running 27 minutes ", "duration":27.9548120558, "distance":0, "calories":0, "outdoor":1, "temperature":"48 degF", "id":"exercise_43" }, { "start_time":"2019-03-19 06:34:16-07:00", "end_time":"2019-03-19 07:28:26 -0800", "textDescription":"06:34: running 54 minutes ", "duration":54.1648902337, "distance":0, "calories":0, "outdoor":1, "temperature":"50 degF", "id":"exercise_44" }, { "start_time":"2019-03-21 07:19:26-07:00", "end_time":"2019-03-21 08:02:28 -0800", "textDescription":"07:19: running 43 minutes ", "duration":43.0458692551, "distance":0, "calories":0, "outdoor":1, "temperature":"45 degF", "id":"exercise_45" }, { "start_time":"2019-03-23 09:49:54-07:00", "end_time":"2019-03-23 10:41:13 -0800", "textDescription":"09:49: running 51 minutes ", "duration":51.3112281621, "distance":0, "calories":0, "outdoor":1, "temperature":"57 degF", "id":"exercise_46" }, { "start_time":"2019-03-25 06:57:57-07:00", "end_time":"2019-03-25 07:23:14 -0800", "textDescription":"06:57: running 25 minutes ", "duration":25.273448503, "distance":0, "calories":0, "outdoor":1, "temperature":"52 degF", "id":"exercise_47" }, { "start_time":"2019-03-26 13:16:14-07:00", "end_time":"2019-03-26 13:41:46 -0800", "textDescription":"13:16: running 25 minutes ", "duration":25.5459213654, "distance":0, "calories":0, "outdoor":1, "temperature":null, "id":"exercise_48" }, { "start_time":"2019-03-28 14:32:20-07:00", "end_time":"2019-03-28 14:57:21 -0800", "textDescription":"14:32: running 25 minutes ", "duration":25.0133670529, "distance":0, "calories":0, "outdoor":0, "temperature":null, "id":"exercise_49" }, { "start_time":"2019-03-29 14:03:32-07:00", "end_time":"2019-03-29 14:29:34 -0800", "textDescription":"14:03: running 26 minutes ", "duration":26.0374089936, "distance":0, "calories":0, "outdoor":1, "temperature":null, "id":"exercise_50" }, { "start_time":"2019-03-30 15:42:25-07:00", "end_time":"2019-03-30 16:07:08 -0800", "textDescription":"15:42: running 24 minutes ", "duration":24.7233187536, "distance":0, "calories":0, "outdoor":1, "temperature":"68 degF", "id":"exercise_51" }, { "start_time":"2019-04-01 06:48:07+08:00", "end_time":"2019-03-31 16:12:30 -0800", "textDescription":"06:48: running 24 minutes ", "duration":24.383898445, "distance":0, "calories":0, "outdoor":1, "temperature":"62 degF", "id":"exercise_52" }, { "start_time":"2019-04-04 00:32:10+08:00", "end_time":"2019-04-03 10:13:36 -0800", "textDescription":"00:32: running 41 minutes ", "duration":41.4232886851, "distance":0, "calories":0, "outdoor":1, "temperature":"59 degF", "id":"exercise_53" }, { "start_time":"2019-04-05 06:15:21-07:00", "end_time":"2019-04-05 06:56:13 -0800", "textDescription":"06:15: running 40 minutes ", "duration":40.8600175023, "distance":0, "calories":0, "outdoor":1, "temperature":"55 degF", "id":"exercise_54" }, { "start_time":"2019-04-07 06:38:31-07:00", "end_time":"2019-04-07 07:30:10 -0800", "textDescription":"06:38: running 51 minutes ", "duration":51.6349633217, "distance":0, "calories":0, "outdoor":1, "temperature":"55 degF", "id":"exercise_55" }, { "start_time":"2019-04-08 06:27:28-07:00", "end_time":"2019-04-08 07:06:51 -0800", "textDescription":"06:27: running 39 minutes ", "duration":39.3906462948, "distance":0, "calories":0, "outdoor":1, "temperature":"55 degF", "id":"exercise_56" }, { "start_time":"2019-04-10 15:25:29-07:00", "end_time":"2019-04-10 15:50:08 -0800", "textDescription":"15:25: running 24 minutes ", "duration":24.6457507948, "distance":0, "calories":0, "outdoor":1, "temperature":"70 degF", "id":"exercise_57" }, { "start_time":"2019-04-12 07:25:13-07:00", "end_time":"2019-04-12 09:17:34 -0800", "textDescription":"07:25: running 112 minutes ", "duration":112.3511503657, "distance":0, "calories":0, "outdoor":1, "temperature":"53 degF", "id":"exercise_58" }, { "start_time":"2019-04-15 05:57:30-07:00", "end_time":"2019-04-15 06:24:29 -0800", "textDescription":"05:57: running 26 minutes ", "duration":26.9838193218, "distance":0, "calories":0, "outdoor":1, "temperature":null, "id":"exercise_59" }, { "start_time":"2019-04-16 05:18:50-07:00", "end_time":"2019-04-16 05:46:39 -0800", "textDescription":"05:18: running 27 minutes ", "duration":27.8104156494, "distance":0, "calories":0, "outdoor":1, "temperature":null, "id":"exercise_60" }, { "start_time":"2019-04-18 05:12:15-07:00", "end_time":"2019-04-18 05:37:18 -0800", "textDescription":"05:12: running 25 minutes ", "duration":25.0418677847, "distance":0, "calories":0, "outdoor":1, "temperature":null, "id":"exercise_61" }, { "start_time":"2019-04-19 05:58:01-07:00", "end_time":"2019-04-19 06:23:26 -0800", "textDescription":"05:58: running 25 minutes ", "duration":25.4106740097, "distance":0, "calories":0, "outdoor":1, "temperature":null, "id":"exercise_62" }, { "start_time":"2019-04-21 11:14:15-07:00", "end_time":"2019-04-21 11:56:01 -0800", "textDescription":"11:14: running 41 minutes ", "duration":41.7697716335, "distance":0, "calories":0, "outdoor":1, "temperature":"67 degF", "id":"exercise_63" }, { "start_time":"2019-04-23 07:56:33-07:00", "end_time":"2019-04-23 08:38:30 -0800", "textDescription":"07:56: running 41 minutes ", "duration":41.9648507615, "distance":0, "calories":0, "outdoor":1, "temperature":"61 degF", "id":"exercise_64" }, { "start_time":"2019-04-24 07:27:16-07:00", "end_time":"2019-04-24 07:56:08 -0800", "textDescription":"07:27: walking 28 minutes ", "duration":28.8581707974, "distance":0, "calories":0, "outdoor":1, "temperature":"68 degF", "id":"exercise_65" }, { "start_time":"2019-04-29 08:43:36-07:00", "end_time":"2019-04-29 09:35:44 -0800", "textDescription":"08:43: running 52 minutes ", "duration":52.1316761812, "distance":0, "calories":0, "outdoor":1, "temperature":"59 degF", "id":"exercise_66" } ] ================================================ FILE: sample_data/photos.sampled.csv ================================================ ,Unnamed: 0,start_time,end_time,textDescription,address,lat,long,details,img_url,id 0,0,2019-04-18 00:01:26+00:00,2019-04-18 00:01:26+00:00,"""Taking the stage.""",Soul Buoy,0.0,0.0,"{'objects': ['Performance', 'Performing arts', 'Musical Performance Sports', 'Modern dance', 'Public speaking', 'performer, performing artist', 'stage', 'auditorium', 'broadcasting', 'kanzu'], 'places': ['performance arena', 'indoor stage', 'auditorium', 'outdoor stage', 'television studio'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/0566797F-A10A-46EB-BDAD-59C01F19EBD9.jpg.compressed.jpg,photos_0 1,1,2019-03-31 06:58:44+00:00,2019-03-31 06:58:44+00:00,Freshly-baked egg tarts!,Soul Buoy,0.0,0.0,"{'objects': ['Egg tart', 'Custard tart', 'Portuguese food', 'Pâtisserie', 'Natillas', 'baked goods', 'Madeira', 'patisserie', 'pastry, pastry dough', 'bite, collation, snack'], 'places': ['shop bakery', 'delicatessen', 'supermarket', 'food court', 'indoor market'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/3FF4E970-B938-42E6-B780-DEEE6751F7CF.jpg.compressed.jpg,photos_1 2,2,2019-04-15 14:58:30+00:00,2019-04-15 14:58:30+00:00,"""A sea of possibilities.""",Soul Buoy,0.0,0.0,"{'objects': ['Very large floating structure', 'Convention center', 'Sport venue', 'Panorama', 'Artificial island', 'conference center, conference house', 'waterfront', 'dock, dockage, docking facility', 'houseboat', 'hotel'], 'places': ['conference center', 'heliport', 'outdoor hotel', 'roof garden', 'ski slope'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/E0B47B5E-39E7-46C2-985A-CD4853168938.jpg.compressed.jpg,photos_2 3,3,2019-04-25 15:57:11+00:00,2019-04-25 15:57:11+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'National park', 'Cinder cone', 'Geographical feature', 'Landform', 'overlook', 'canyon, canon', 'moraine', 'precipice', 'butte'], 'places': ['canyon', 'butte', 'crevasse', 'valley', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/F35BC31C-7BB0-447B-8E21-7A2ACEF826D0.jpg.compressed.jpg,photos_3 4,4,2019-03-03 07:41:47-08:00,2019-03-03 07:41:47-08:00,"""New outfit, here I come!""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"{'objects': ['Receipt', 'Wristband', 'Active shirt', 'Coupon', 'Cargo pants', 'bill, peak, eyeshade, visor, vizor', 'grab bag', 'polo shirt, sport shirt', 'checkout, checkout counter', 'safety belt, life belt, safety harness'], 'places': ['clothing store', 'hardware store', 'exterior gazebo', 'fabric store', 'pet shop'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6900.HEIC.compressed.jpg,photos_4 5,5,2019-03-03 07:42:11-08:00,2019-03-03 07:42:11-08:00,"""Booked and paid!""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03755147425116,-101.90860432341586,"{'objects': ['Receipt', 'Coupon', 'Voucher', 'Ticket', 'Invoice', 'cowboy hat, ten-gallon hat', 'book', 'paper', 'cowboy boot', 'windfall'], 'places': ['bookstore', 'outdoor inn', 'restaurant', 'outdoor diner', 'stable'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6901.HEIC.compressed.jpg,photos_5 6,6,2019-03-03 07:42:35-08:00,2019-03-03 07:42:35-08:00,"""Filling a prescription.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"{'objects': ['Prescription drug', 'Antifungal medication', 'Medicine', 'Pharmaceutical drug', 'Medicine chest', 'pill bottle', 'packet', 'vitamin B12, cobalamin, cyanocobalamin, antipernicious anemia factor', 'vitamin B6, pyridoxine, pyridoxal, pyridoxamine, adermin', 'multivitamin, multivitamin pill'], 'places': ['pharmacy', 'drugstore', 'hospital room', 'hospital', 'waiting room'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6902.HEIC.compressed.jpg,photos_6 7,7,2019-03-05 19:36:00-08:00,2019-03-05 19:36:00-08:00,"""Exploring new possibilities.""","Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.01791849861497,-101.9167301640701,"{'objects': ['Boy scouts of america', 'Eagle scout', 'Girl scouts of the usa', 'Jamboree', 'Scout', 'Cub Scout', 'Boy Scout', 'boy scout', 'service club', 'assembly'], 'places': ['recreation room', 'classroom', 'indoor museum', 'waiting room', 'lecture room'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6907.HEIC.compressed.jpg,photos_7 8,8,2019-03-06 19:46:40-08:00,2019-03-06 19:46:40-08:00,"""A Home for Every Family""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"{'objects': ['Real estate', 'Non-fiction', 'Photo caption', 'Plan', 'Text', 'planner', 'article', 'book', 'spread, paste', 'feature, lineament'], 'places': ['residential neighborhood', 'slum', 'outdoor apartment building', 'street', 'home office'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6908.HEIC.compressed.jpg,photos_8 9,9,2019-03-11 16:27:43+00:00,2019-03-11 16:27:43+00:00,"""A traditional Icelandic treat in a cozy setting.""",Soul Buoy,0.0,0.0,"{'objects': ['Hangikjöt', 'Fårikål', 'Mämmi', 'Smörgåsbord', 'Brännboll', 'automobile horn, car horn, motor horn, horn, hooter', 'appliance, contraption, contrivance, convenience, gadget, gizmo, gismo, widget', 'dialog box, panel', 'Swedish meatball', 'triviality, trivia, trifle, small beer'], 'places': ['sauna', 'shower', 'raft', 'bar', 'waterfall'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6919.PNG.compressed.jpg,photos_9 10,10,2019-03-18 09:20:41-07:00,2019-03-18 09:20:41-07:00,"""A full house.""","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"{'objects': ['Auditorium', 'Academic conference', 'Academic institution', 'Business school', 'Projection screen', 'auditorium', 'peristyle', 'quad, quadrangle', 'assembly hall', 'praetorium, pretorium'], 'places': ['auditorium', 'campus', 'amphitheater', 'lecture room', 'conference center'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6923.HEIC.compressed.jpg,photos_10 11,11,2019-03-18 09:31:03-07:00,2019-03-18 09:31:03-07:00,"""Exploring new ideas at the conference.""","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"{'objects': ['Academic conference', 'Conference hall', 'Presentation', 'Ultron', 'Hall', 'autopilot, automatic pilot, robot pilot', 'android, humanoid, mechanical man', 'splashboard, splasher, dashboard', 'hexapod', 'Homo sapiens sapiens, modern man'], 'places': ['conference center', 'auditorium', 'lecture room', 'conference room', 'public atrium'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6924.HEIC.compressed.jpg,photos_11 12,12,2019-03-18 10:43:51-07:00,2019-03-18 10:43:51-07:00,"""Sharing knowledge.""","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"{'objects': ['Presentation', 'Diagram', 'Lecture', 'Educational software', 'Statistical graphics', 'feature, lineament', 'model, simulation', 'golden shower tree, drumstick tree, purging cassia, pudding pipe tree, canafistola, canafistula, Cassia fistula', 'framework', 'linden, linden tree, basswood, lime, lime tree'], 'places': ['lecture room', 'auditorium', 'sandbox', 'broadleaf forest', 'tree house'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6925.HEIC.compressed.jpg,photos_12 13,13,2019-03-18 10:44:49-07:00,2019-03-18 10:44:49-07:00,"""Sharing knowledge.""","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"{'objects': ['Presentation', 'Learning', 'Educational software', 'Lecture', 'Public speaking', 'psycholinguist', 'communication system', 'social scientist', 'feature, lineament', 'Latin'], 'places': ['lecture room', 'classroom', 'conference room', 'auditorium', 'conference center'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6926.HEIC.compressed.jpg,photos_13 14,14,2019-03-18 13:00:08-07:00,2019-03-18 13:00:08-07:00,"""Gathering to learn and share knowledge.""","Helium Road, Randall County, Texas, 79119, United States",35.097148128560605,-101.95385999606872,"{'objects': ['Academic conference', 'Confirmation', 'Zha cai', 'Place card', 'Falafel', 'microeconomist, microeconomic expert', 'falafel, felafel', 'social scientist', 'economist, economic expert', 'publication'], 'places': ['reception', 'assembly line', 'conference center', 'corral', 'auditorium'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6928.HEIC.compressed.jpg,photos_14 15,15,2019-03-18 15:52:33-07:00,2019-03-18 15:52:33-07:00,"""Healing begins here.""","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"{'objects': ['Hospital', 'Radiology', 'Medical imaging', 'Presentation', 'Nurse', 'hospital room', 'emergency room, ER', 'facility, installation', 'medical building, health facility, healthcare facility', 'ward, hospital ward'], 'places': ['hospital', 'hospital room', 'operating room', 'nursing home', 'lecture room'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6930.HEIC.compressed.jpg,photos_15 16,16,2019-03-18 16:05:51-07:00,2019-03-18 16:05:51-07:00,Academic minds come together.,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"{'objects': ['Academic conference', 'Presentation', 'Podium', 'Event', 'Conversation', 'panel', 'dialog box, panel', 'panelist, panellist', 'microeconomist, microeconomic expert', 'quad, quadrangle'], 'places': ['conference room', 'auditorium', 'crosswalk', 'lecture room', 'conference center'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6931.HEIC.compressed.jpg,photos_16 17,17,2019-03-19 12:32:09-07:00,2019-03-19 12:32:09-07:00,"""Incarcerated.""","2964, Greg Street, Randall County, Texas, 79015, United States",35.03718650914911,-101.90853991780963,"{'objects': ['Invoice', 'Envelope', 'Voucher', 'Letter', 'Mail', 'envelope', 'envelope', 'envelope', 'envelope, gasbag', 'mailer'], 'places': ['jail cell', 'house', 'driveway', 'lawn', 'courthouse'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6935.HEIC.compressed.jpg,photos_17 18,18,2019-03-22 19:06:44-07:00,2019-03-22 19:06:44-07:00,Grocery shopping time!,"Randall County, Texas, United States",35.06895994156193,-101.9117172610509,"{'objects': ['Shopping list', 'Invoice', 'Recipe', 'Receipt', 'Clipboard', 'checkout, checkout counter', 'shopping cart', 'shopping', 'cart', 'shopping basket'], 'places': ['supermarket', 'shop bakery', 'outdoor general store', 'candy store', 'loading dock'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6936.HEIC.compressed.jpg,photos_18 19,19,2019-03-23 09:36:05-07:00,2019-03-23 09:36:05-07:00,Exploring nature.,"Castro County, Texas, United States",34.72240410864033,-102.0198864767347,"{'objects': ['Camp', 'Troop', 'Boy scouts of america', 'Jamboree', 'Camp furniture', 'Cub Scout', 'boy scout', 'Boy Scout', 'service club', 'wall tent'], 'places': ['campsite', 'dining hall', 'outdoor general store', 'outdoor cabin', 'picnic area'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6938.HEIC.compressed.jpg,photos_19 20,20,2019-03-27 11:42:43+09:00,2019-03-27 11:42:43+09:00,"""Achievement Recognized""","Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.9504,"{'objects': ['Academic certificate', 'Commemorative plaque', 'Award', 'Shuanghuan sceo', 'Diploma', 'commemorative', 'case, display case, showcase, vitrine', 'shantung', 'keepsake, souvenir, token, relic', 'licentiate'], 'places': ['archive', 'campus', 'office', 'embassy', 'heliport'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6943.HEIC.compressed.jpg,photos_20 21,21,2019-03-27 11:42:50+09:00,2019-03-27 11:42:50+09:00,"""Achievement Recognized""","Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.9504,"{'objects': ['Academic certificate', 'Award', 'Commemorative plaque', 'Display case', 'Souvenir', 'commemorative', 'case, display case, showcase, vitrine', 'plenipotentiary', 'office, business office', 'headquarters, central office, main office, home office, home base'], 'places': ['office', 'embassy', 'reception', 'archive', 'indoor museum'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6944.HEIC.compressed.jpg,photos_21 22,22,2019-03-27 13:45:36+09:00,2019-03-27 13:45:36+09:00,"""Exploring new ideas at the conference.""","Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.951,"{'objects': ['Academic conference', 'University', 'Banner', 'Academic institution', 'Science fair', 'university', 'signboard, sign', 'exhibition hall, exhibition area', 'student center', 'banner, streamer'], 'places': ['conference center', 'science museum', 'campus', 'outdoor museum', 'lobby'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6945.HEIC.compressed.jpg,photos_22 23,23,2019-03-27 13:45:47+09:00,2019-03-27 13:45:47+09:00,"""Uniting for success.""","Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4552,126.951,"{'objects': ['University', 'Academic institution', 'Banner', 'Science fair', 'National university', 'university', 'student center', 'exhibition hall, exhibition area', 'banner, streamer', 'signboard, sign'], 'places': ['conference center', 'science museum', 'campus', 'outdoor museum', 'lobby'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6946.HEIC.compressed.jpg,photos_23 24,24,2019-03-27 13:45:47+09:00,2019-03-27 13:45:47+09:00,"""Exploring the University Campus""","Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4552,126.951,"{'objects': ['University', 'Academic institution', 'National university', 'Banner', 'Science fair', 'university', 'student center', 'signboard, sign', 'exhibition hall, exhibition area', 'banner, streamer'], 'places': ['campus', 'science museum', 'conference center', 'outdoor museum', 'lobby'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6947.HEIC.compressed.jpg,photos_24 25,25,2019-03-27 18:36:03+09:00,2019-03-27 18:36:03+09:00,Fresh Fish Catch!,"Bangbae-ro, Bangbae 4(sa)-dong, Seocho-gu, Seoul, 06557, South Korea",37.494,126.9903,"{'objects': ['Fish products', 'Fish meal', 'Fish head curry', 'Fried fish', 'Butterfish', 'butterfish, stromateid fish, stromateid', 'food fish', 'rockfish', 'horse mackerel, jack mackerel, Spanish mackerel, saurel, Trachurus symmetricus', 'sashimi'], 'places': ['fishpond', 'restaurant', 'boat deck', 'ocean', 'sushi bar'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6952.HEIC.compressed.jpg,photos_25 26,26,2019-03-28 06:38:09+09:00,2019-03-28 06:38:09+09:00,Traveling the world.,"Incheon International Airport Terminal 1, 271, Gonghang-ro, Unseo-dong, Jung-gu, Incheon, 22382, South Korea",37.4496,126.4536,"{'objects': ['Airport', 'Airport terminal', 'Check-in', 'Airpot', 'Jet bridge', 'baggage claim', 'air terminal, airport terminal', 'airport, airdrome, aerodrome, drome', 'air traveler, air traveller', 'baggage, luggage'], 'places': ['airport terminal', 'runway', 'food court', 'platform train station', 'ticket booth'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6953.HEIC.compressed.jpg,photos_26 27,27,2019-03-28 04:34:33+00:00,2019-03-28 04:34:33+00:00,"""Powering the industrial future.""",Soul Buoy,0.0,0.0,"{'objects': ['Toyota voltz', 'Vortex', 'Automobile repair shop', 'Toyota vista', 'Toyota yaris verso', 'Venturi tube', 'location', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'vermouth', 'topographic point, place, spot'], 'places': ['industrial area', 'viaduct', 'fastfood restaurant', 'server room', 'gas station'], 'tags': ['vehicle']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6954.PNG.compressed.jpg,photos_27 28,28,2019-03-28 20:38:13+09:00,2019-03-28 20:38:13+09:00,Tasty Tsukudani!,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"{'objects': ['Tsukudani', 'Scroll', 'Document', 'Receipt', 'Homework', 'paper', 'menu', 'date', 'sheet, flat solid', 'shoji'], 'places': ['restaurant', 'hotel room', 'archive', 'sushi bar', 'restaurant kitchen'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6955.HEIC.compressed.jpg,photos_28 29,29,2019-03-28 20:47:46+09:00,2019-03-28 20:47:46+09:00,Enjoying a hot pot of Nabemono.,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"{'objects': ['Nabemono', 'Kaiseki', 'Sukiyaki', 'Pot-au-feu', 'Ainu cuisine', 'sukiyaki', 'oxtail soup', 'sashimi', 'dish', 'dish'], 'places': ['sushi bar', 'restaurant', 'restaurant kitchen', 'delicatessen', 'fishpond'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6956.HEIC.compressed.jpg,photos_29 30,30,2019-03-28 21:36:34+09:00,2019-03-28 21:36:34+09:00,"""Delicious Ainu cuisine!""","Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"{'objects': ['Ainu cuisine', 'Kaiseki', 'Okinawan cuisine', 'Japanese cuisine', 'Nabemono', 'plate, scale, shell', 'taro, taro root, cocoyam, dasheen, edda', 'bite, collation, snack', 'dish', 'dish'], 'places': ['restaurant', 'sushi bar', 'restaurant kitchen', 'fastfood restaurant', 'dining room'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6957.HEIC.compressed.jpg,photos_30 31,31,2019-03-28 23:25:42+09:00,2019-03-28 23:25:42+09:00,Freshly-sliced sashimi.,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"{'objects': ['Sashimi', 'Tataki', 'Narutomaki', 'Kaiseki', 'Yomari', 'sashimi', 'plum sauce', 'sushi', 'peach sauce', 'dish'], 'places': ['sushi bar', 'restaurant', 'restaurant kitchen', 'delicatessen', 'dining room'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6958.HEIC.compressed.jpg,photos_31 32,32,2019-03-28 23:25:52+09:00,2019-03-28 23:25:52+09:00,"""A sweet treat!""","Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"{'objects': ['Quince dessert', 'Gelatin dessert', 'Red bean ice', 'Tataki', 'Siu mei', 'sashimi', 'fondant', 'peach sauce', 'edible fruit', 'sushi'], 'places': ['sushi bar', 'restaurant', 'restaurant kitchen', 'delicatessen', 'ice floe'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6959.HEIC.compressed.jpg,photos_32 33,33,2019-03-29 09:12:12+09:00,2019-03-29 09:12:12+09:00,"""A healthy start to the day!""","Grand Hyatt Tokyo, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-6122, Japan",35.6595,139.7283,"{'objects': ['Muesli', 'Granola', 'Breakfast', 'Superfood', 'Wheatberry', 'breakfast', 'bite, collation, snack', 'wheat, wheat berry', 'porridge', 'oatmeal, rolled oats'], 'places': ['cafeteria', 'dining hall', 'delicatessen', 'restaurant', 'coffee shop'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6960.HEIC.compressed.jpg,photos_33 34,34,2019-03-29 10:08:09+09:00,2019-03-29 10:08:09+09:00,"""A traditional Japanese instrument.""","Moto-Azabu 3-chome, Minato, Tokyo, 106-0046, Japan",35.6574,139.7273,"{'objects': ['Taishōgoto', 'Shrine', 'Shinto shrine', 'Temple', 'Temple', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'shrine', 'temple', 'temple'], 'places': ['asia temple', 'japanese garden', 'courtyard', 'formal garden', 'yard'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6961.HEIC.compressed.jpg,photos_34 35,35,2019-03-29 10:13:09+09:00,2019-03-29 10:13:09+09:00,"""Spring beauty.""","Aiiku Hospital, 木下坂, Minami-Azabu 5-chome, Minato, Tokyo, 106-0047, Japan",35.6536,139.726,"{'objects': ['Cherry blossom', 'Blossom', 'Prunus', 'White day', 'Spring pancake', 'fuji, fuji cherry, Prunus incisa', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'cherry, cherry tree', 'flowering cherry', 'angiospermous tree, flowering tree'], 'places': ['street', 'residential neighborhood', 'campus', 'phone booth', 'park'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6962.HEIC.compressed.jpg,photos_35 36,36,2019-03-29 10:53:41+09:00,2019-03-29 10:53:41+09:00,Celebrating Children's Day in the city.,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.638,139.7063,"{'objects': ['Koinobori', 'Cherry blossom', 'Yukigassen', 'Higashi', 'Gomashio', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'flowering cherry', 'signboard, sign', 'canal', 'umbrellawort'], 'places': ['urban canal', 'natural canal', 'river', 'water moat', 'street'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6963.HEIC.compressed.jpg,photos_36 37,37,2019-03-29 10:54:16+09:00,2019-03-29 10:54:16+09:00,"""Urban beauty.""","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6380917,139.7062083,"{'objects': ['Cherry blossom', 'Higashi', 'Canal', 'Blossom', 'Yukigassen', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'Japanese flowering cherry, Prunus sieboldii', 'flowering cherry', 'canal'], 'places': ['urban canal', 'natural canal', 'river', 'creek', 'water moat'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6964-EFFECTS.jpg.compressed.jpg,photos_37 38,38,2019-03-29 10:54:15+09:00,2019-03-29 10:54:15+09:00,"""Urban beauty.""","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"{'objects': ['Cherry blossom', 'Higashi', 'Canal', 'Blossom', 'Yukigassen', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'Japanese flowering cherry, Prunus sieboldii', 'canal'], 'places': ['urban canal', 'natural canal', 'river', 'creek', 'water moat'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6964.HEIC.compressed.jpg,photos_38 39,39,2019-03-29 10:54:51+09:00,2019-03-29 10:54:51+09:00,Celebrating Children's Day in the city.,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"{'objects': ['Koinobori', 'Cherry blossom', 'Yukigassen', 'Higashi', 'Tsukudani', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'banner, streamer', 'Japanese flowering cherry, Prunus sieboldii', 'flowering cherry'], 'places': ['urban canal', 'river', 'natural canal', 'bridge', 'water moat'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6965.HEIC.compressed.jpg,photos_39 40,40,2019-03-29 10:54:59+09:00,2019-03-29 10:54:59+09:00,"""Urban beauty.""","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"{'objects': ['Cherry blossom', 'Higashi', 'Canal', 'Yukigassen', 'Blossom', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'canal', 'flowering almond, oriental bush cherry, Prunus japonica'], 'places': ['urban canal', 'natural canal', 'river', 'water moat', 'creek'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6966.HEIC.compressed.jpg,photos_40 41,41,2019-03-29 10:56:04+09:00,2019-03-29 10:56:04+09:00,"""Urban beauty.""","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"{'objects': ['Cherry blossom', 'Koinobori', 'Higashi', 'Yukigassen', 'Pink', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'canal', 'banner, streamer', 'signboard, sign', 'flowering cherry'], 'places': ['urban canal', 'natural canal', 'river', 'creek', 'street'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6967.HEIC.compressed.jpg,photos_41 42,42,2019-03-29 10:56:37+09:00,2019-03-29 10:56:37+09:00,"""Urban beauty.""","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"{'objects': ['Cherry blossom', 'Prunus', 'Blossom', 'Prunus spinosa', 'Higashi', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'Japanese flowering cherry, Prunus sieboldii', 'flowering almond, oriental bush cherry, Prunus japonica'], 'places': ['urban canal', 'natural canal', 'water moat', 'river', 'berth'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6968.HEIC.compressed.jpg,photos_42 43,43,2019-03-29 12:28:58+09:00,2019-03-29 12:28:58+09:00,"""Ancient Temple Gate""","University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan",35.7105,139.7602,"{'objects': ['Gate', 'Makunouchi', 'Japanese architecture', 'Taishōgoto', 'Taidō', 'gate', 'head gate', 'shrine', 'temple', 'temple'], 'places': ['asia temple', 'pavilion', 'campus', 'pagoda', 'outdoor doorway'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6970.HEIC.compressed.jpg,photos_43 44,44,2019-03-29 16:15:45+09:00,2019-03-29 16:15:45+09:00,"""Spring in the city.""","Shibadaimon 1-chome, Minato, Tokyo, 105-8511, Japan",35.6594,139.7516,"{'objects': ['Cherry blossom', 'Makunouchi', 'Yukigassen', 'Japanese architecture', 'Fujara', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'angiospermous tree, flowering tree', 'fuji, fuji cherry, Prunus incisa', 'Japanese oak, Lithocarpus glabra, Lithocarpus glaber', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua'], 'places': ['plaza', 'courtyard', 'outdoor hotel', 'office building', 'residential neighborhood'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6973.HEIC.compressed.jpg,photos_44 45,45,2019-03-29 16:23:59+09:00,2019-03-29 16:23:59+09:00,"""Finding balance.""","Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6603,139.74769999999998,"{'objects': ['Yoga', 'Aikido', 'Shorinji kempo', 'Yoga mat', 'Tensoba', 'picnic', 'sumo ring', 'pyramidal tent', 'temple', 'temple'], 'places': ['tower', 'pagoda', 'park', 'picnic area', 'outdoor church'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6974.HEIC.compressed.jpg,photos_45 46,46,2019-03-29 16:24:07+09:00,2019-03-29 16:24:07+09:00,Enjoying a picnic in the park.,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6603,139.74769999999998,"{'objects': ['Picnic', 'Queue area', 'Cherry blossom', 'Public space', 'Kotatsu', 'picnic', 'sumo ring', 'pyramidal tent', 'position, place', 'campsite, campground, camping site, camping ground, bivouac, encampment, camping area'], 'places': ['picnic area', 'park', 'campsite', 'outdoor church', 'outdoor stage'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6976.HEIC.compressed.jpg,photos_46 47,47,2019-03-29 16:24:56+09:00,2019-03-29 16:24:56+09:00,"""A touch of spring.""","Shiba Junior High School & Senior High School, 切通坂, Shibakoen 3-chome, Minato, Tokyo, 105-6216, Japan",35.6603,139.7471,"{'objects': ['Cherry blossom', 'Blossom', 'White day', 'Tower', 'Tower running', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'tower'], 'places': ['tower', 'park', 'pagoda', 'skyscraper', 'campus'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6977.HEIC.compressed.jpg,photos_47 48,48,2019-03-29 16:25:06+09:00,2019-03-29 16:25:06+09:00,"""A touch of spring.""","Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6604,139.7474,"{'objects': ['Cherry blossom', 'White day', 'Transmission tower', 'Tower', 'Blossom', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'tower', 'flowering cherry'], 'places': ['tower', 'skyscraper', 'park', 'pagoda', 'campus'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6978.HEIC.compressed.jpg,photos_48 49,49,2019-03-29 16:26:16+09:00,2019-03-29 16:26:16+09:00,"""A touch of spring.""","Tokyo Prince Hotel, Iwaida-dori, Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6601,139.7473,"{'objects': ['Cherry blossom', 'White day', 'Blossom', 'Prunus', 'Transmission tower', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'cherry, cherry tree', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua'], 'places': ['tower', 'park', 'pagoda', 'campus', 'botanical garden'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6979.HEIC.compressed.jpg,photos_49 50,50,2019-03-29 18:25:08+09:00,2019-03-29 18:25:08+09:00,Freshly shaved Katsuobushi.,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7287,"{'objects': ['Katsuobushi', 'Ikebana', 'Restaurant', 'Anago', 'Kaiseki', 'dining area', 'restaurant, eating house, eating place, eatery', 'scape, flower stalk', 'flower arrangement, floral arrangement', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua'], 'places': ['restaurant', 'dining room', 'sushi bar', 'restaurant kitchen', 'alcove'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6980.HEIC.compressed.jpg,photos_50 51,51,2019-03-29 18:25:24+09:00,2019-03-29 18:25:24+09:00,"""A place to gather and share ideas.""","Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7286,"{'objects': ['Dining room', 'Recreation room', 'Conference room table', 'Eagle medallion', 'Wall sticker', 'conference room', 'dining area', 'boardroom, council chamber', 'smoking room', 'recreation room, rec room'], 'places': ['conference room', 'dining room', 'recreation room', 'restaurant', 'indoor booth'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6981.HEIC.compressed.jpg,photos_51 52,52,2019-03-29 18:26:53+09:00,2019-03-29 18:26:53+09:00,"""Freshly made Anago sushi!""","Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7287,"{'objects': ['Anago', 'Katsuobushi', 'Kaiseki', 'Hiyashi chūka', 'Japanese cuisine', 'dining area', 'restaurant, eating house, eating place, eatery', 'leather strip', 'dining room, dining-room', 'lacquerware'], 'places': ['sushi bar', 'restaurant', 'restaurant kitchen', 'dining room', 'zen garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6982.HEIC.compressed.jpg,photos_52 53,53,2019-03-29 18:27:16+09:00,2019-03-29 18:27:16+09:00,Freshly shaved Katsuobushi.,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7286,"{'objects': ['Katsuobushi', 'Anago', 'Ikebana', 'Kombu', 'Kaiseki', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'dining area', 'lacquerware', 'scape, flower stalk', 'restaurant, eating house, eating place, eatery'], 'places': ['restaurant', 'sushi bar', 'dining room', 'restaurant kitchen', 'zen garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6983.HEIC.compressed.jpg,photos_53 54,54,2019-03-29 19:20:53+09:00,2019-03-29 19:20:53+09:00,Freshly prepared osechi sushi.,"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan",35.6602,139.72889999999998,"{'objects': ['Osechi', 'Kaiseki', 'Japanese cuisine', 'Ekiben', 'Katsuobushi', 'sukiyaki', 'bite, collation, snack', 'miso', 'tray', 'wasabi'], 'places': ['sushi bar', 'zen garden', 'restaurant', 'restaurant kitchen', 'japanese garden'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6984.HEIC.compressed.jpg,photos_54 55,55,2019-03-29 21:28:05+09:00,2019-03-29 21:28:05+09:00,Delicious Taro Cake!,"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan",35.6604,139.7288,"{'objects': ['Taro cake', 'Dessert', 'Agedashi tofu', 'Kaiseki', 'Osechi', 'parfait', 'dessert, sweet, afters', 'frozen dessert', 'oil cake', 'peach ice cream'], 'places': ['restaurant', 'ice cream parlor', 'dining hall', 'cafeteria', 'zen garden'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6985.HEIC.compressed.jpg,photos_55 56,56,2019-03-30 14:15:37+09:00,2019-03-30 14:15:37+09:00,Ready for takeoff.,"191L, Kuko Higashi-dori, Narita, Sanmu, Chiba Prefecture, 282-0004, Japan",35.76,140.38979999999998,"{'objects': ['Aircraft cabin', 'Movie', 'Flight', 'Dvd', 'Airline', 'plane seat', 'culture medium, medium', 'widebody aircraft, wide-body aircraft, wide-body, twin-aisle airplane', 'boarding', 'air traveler, air traveller'], 'places': ['airplane cabin', 'cockpit', 'galley', 'waiting room', 'landing deck'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6986.HEIC.compressed.jpg,photos_56 57,57,2019-03-31 10:51:04+08:00,2019-03-31 10:51:04+08:00,Caffeine fix.,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"{'objects': ['Espressino', 'Espresso', 'Ristretto', 'Cortado', 'Caffè americano', 'espresso', 'demitasse', 'coffee cup', 'coffee, java', 'tamp, tamper, tamping bar'], 'places': ['coffee shop', 'ski slope', 'mountain', 'volcano', 'cafeteria'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6988.HEIC.compressed.jpg,photos_57 58,58,2019-03-31 10:51:41+08:00,2019-03-31 10:51:41+08:00,"""A cozy spot for coffee and conversation.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"{'objects': ['Coffeehouse', 'Café', 'Barista', 'Dandelion coffee', 'Ipoh white coffee', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'caffe latte, latte', 'coffee, java', 'coffee, coffee tree'], 'places': ['coffee shop', 'indoor general store', 'bar', 'beer hall', 'cafeteria'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6989.HEIC.compressed.jpg,photos_58 59,59,2019-03-31 11:17:52+08:00,2019-03-31 11:17:52+08:00,"""A cozy spot for coffee and conversation.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"{'objects': ['Coffeehouse', 'Café', 'Hoppang', 'Dandelion coffee', 'Kopi tubruk', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'coffee, java', 'coffee, coffee tree', 'mezzanine, mezzanine floor, entresol'], 'places': ['coffee shop', 'bar', 'indoor general store', 'shop bakery', 'indoor pub'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6990.HEIC.compressed.jpg,photos_59 60,60,2019-03-31 11:17:57+08:00,2019-03-31 11:17:57+08:00,"""A cozy spot for coffee and conversation.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"{'objects': ['Coffeehouse', 'Café', 'Ipoh white coffee', 'Hoppang', 'Barista', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'brasserie', 'coffee, java', 'bakery, bakeshop, bakehouse'], 'places': ['coffee shop', 'bar', 'indoor general store', 'beer hall', 'shop bakery'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6991.HEIC.compressed.jpg,photos_60 61,61,2019-03-31 11:23:27+08:00,2019-03-31 11:23:27+08:00,"""Celebrating success!""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"{'objects': ['Award', 'Trophy', 'Shortstraw pine', 'Shortstraw pine', 'Karatalas', 'kauri pine, dammar pine', 'pine, pine tree, true pine', 'deodar, deodar cedar, Himalayan cedar, Cedrus deodara', 'timber tree', 'spruce'], 'places': ['coffee shop', 'tree house', 'delicatessen', 'restaurant', 'home office'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6992.HEIC.compressed.jpg,photos_61 62,62,2019-03-31 11:29:26+08:00,2019-03-31 11:29:26+08:00,Fresh sushi and drinks.,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,"{'objects': ['Café', 'Cascara sagrada', 'Bar', 'Restaurant', 'Coffeehouse', 'brasserie', 'cafe, coffeehouse, coffee shop, coffee bar', 'mezzanine, mezzanine floor, entresol', 'automat', 'automat'], 'places': ['sushi bar', 'bar', 'restaurant', 'coffee shop', 'delicatessen'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6993.HEIC.compressed.jpg,photos_62 63,63,2019-03-31 11:29:35+08:00,2019-03-31 11:29:35+08:00,"""A cozy spot for a cup of coffee.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,"{'objects': ['Café', 'Bar', 'Restaurant', 'Retail', 'Delicatessen', 'brasserie', 'bar', 'bar', 'bar', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['bar', 'restaurant', 'beer hall', 'indoor general store', 'delicatessen'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6994.HEIC.compressed.jpg,photos_63 64,64,2019-03-31 13:38:53+08:00,2019-03-31 13:38:53+08:00,"""Reaching new heights.""","Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan",25.0393,121.5656,"{'objects': ['Skyscraper', 'Tower running', 'Landmark', 'Tower', 'Monolith', 'skyscraper', 'landmark', 'tower', 'control tower', 'government building'], 'places': ['skyscraper', 'tower', 'office building', 'downtown', 'plaza'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6997.HEIC.compressed.jpg,photos_64 65,65,2019-03-31 13:38:56+08:00,2019-03-31 13:38:56+08:00,"""Reaching new heights.""","Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan",25.0392,121.5656,"{'objects': ['Tower running', 'Skyscraper', 'Landmark', 'Tower', 'Monolith', 'skyscraper', 'landmark', 'tower', 'control tower', 'intersection, crossroad, crossway, crossing, carrefour'], 'places': ['skyscraper', 'tower', 'crosswalk', 'downtown', 'plaza'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6998.HEIC.compressed.jpg,photos_65 66,66,2019-03-31 14:02:19+08:00,2019-03-31 14:02:19+08:00,"""A view from the top.""","Taipei City Hall (City Hall Rd.), City Hall Road, Xinglong Village, Xinyi District, Xingya, Taipei, 11008, Taiwan",25.0378,121.5634,"{'objects': ['Landmark', 'Tower', 'Skyscraper', 'Control tower', 'Tower running', 'landmark', 'tower', 'skyscraper', 'control tower', 'national monument'], 'places': ['tower', 'skyscraper', 'office building', 'outdoor hotel', 'conference center'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_6999.HEIC.compressed.jpg,photos_66 67,67,2019-03-31 14:07:01+08:00,2019-03-31 14:07:01+08:00,"""The seat of power.""","Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan",25.0379,121.5607,"{'objects': ['Presidential palace', 'Concert hall', 'Taiwanese opera', 'Conference hall', 'Convention center', 'assembly hall', 'concert hall', 'government building', 'exhibition hall, exhibition area', 'conference center, conference house'], 'places': ['conference center', 'legislative chamber', 'asia temple', 'performance arena', 'pavilion'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7001.HEIC.compressed.jpg,photos_67 68,68,2019-03-31 14:08:35+08:00,2019-03-31 14:08:35+08:00,"""A burst of color.""","Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan",25.0387,121.5604,"{'objects': ['Impatiens', 'Groundcover', 'Botanical garden', 'Park', 'Landscaping', 'flowerbed, flower bed, bed of flowers', 'pink, garden pink', 'periwinkle, rose periwinkle, Madagascar periwinkle, old maid, Cape periwinkle, red periwinkle, cayenne jasmine, Catharanthus roseus, Vinca rosea', 'zoysia', 'portulaca'], 'places': ['botanical garden', 'formal garden', 'park', 'lawn', 'topiary garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7002.HEIC.compressed.jpg,photos_68 69,69,2019-03-31 14:11:10+08:00,2019-03-31 14:11:10+08:00,"""The seat of power.""","Sun Yat-sen Memorial Hall, 505, Section 4, Ren'ai Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 11073, Taiwan",25.0397,121.5603,"{'objects': ['Presidential palace', 'Shuanghuan sceo', 'Statue', 'Taiwan passport', 'Lei cha', 'honor guard, guard of honor', 'government building', 'chancellery', 'Unknown Soldier', 'military policeman, MP'], 'places': ['legislative chamber', 'conference center', 'entrance hall', 'embassy', 'mausoleum'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7003.HEIC.compressed.jpg,photos_69 70,70,2019-03-31 14:25:17+08:00,2019-03-31 14:25:17+08:00,"""A sweet treat!""","Bigtom美國冰淇淋咖啡館, Guangfu South Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 10694, Taiwan",25.0386,121.5578,"{'objects': ['White mulberry', 'Coffeehouse', 'White coffee', 'Single-origin coffee', 'Azuki bean', 'coffee, coffee tree', 'rain tree, saman, monkeypod, monkey pod, zaman, zamang, Albizia saman', 'coffee bean, coffee berry, coffee', 'cafe, coffeehouse, coffee shop, coffee bar', 'bean tree'], 'places': ['coffee shop', 'shop bakery', 'indoor general store', 'tree house', 'gift shop'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7004.HEIC.compressed.jpg,photos_70 71,71,2019-04-01 11:46:03+08:00,2019-04-01 11:46:03+08:00,"""A cozy spot for coffee and conversation.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"{'objects': ['Coffeehouse', 'Café', 'Roasted barley tea', 'Hojicha', 'Barista', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'perfumery', 'tobacco shop, tobacconist shop, tobacconist', 'shop, store'], 'places': ['coffee shop', 'indoor general store', 'beer hall', 'delicatessen', 'bar'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7006.HEIC.compressed.jpg,photos_71 72,72,2019-04-01 11:46:13+08:00,2019-04-01 11:46:13+08:00,"""A cup of coffee and a moment of peace.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"{'objects': ['Café', 'Coffeehouse', 'Barista', 'Cafeteria', 'Restaurant', 'cafe, coffeehouse, coffee shop, coffee bar', 'restaurant, eating house, eating place, eatery', 'brasserie', 'tamp, tamper, tamping bar', 'cafeteria'], 'places': ['coffee shop', 'restaurant kitchen', 'cafeteria', 'restaurant', 'beer hall'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7007.HEIC.compressed.jpg,photos_72 73,73,2019-04-01 11:46:18+08:00,2019-04-01 11:46:18+08:00,"""A cozy spot for coffee and conversation.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"{'objects': ['Coffeehouse', 'Café', 'Barista', 'Hojicha', 'Roasted barley tea', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'restaurant, eating house, eating place, eatery', 'cafeteria', 'coffee, java'], 'places': ['coffee shop', 'restaurant kitchen', 'indoor general store', 'cafeteria', 'shop bakery'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7008.HEIC.compressed.jpg,photos_73 74,74,2019-04-01 11:50:40+08:00,2019-04-01 11:50:40+08:00,"""A classic Singaporean breakfast.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,"{'objects': ['Kaya toast', 'Melt sandwich', 'Creamed eggs on toast', 'Welsh rarebit', 'Roti john', 'open-face sandwich, open sandwich', 'toast', 'sandwich', 'French toast', 'bite, collation, snack'], 'places': ['delicatessen', 'restaurant', 'shop bakery', 'trench', 'kitchen'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7009.HEIC.compressed.jpg,photos_74 75,75,2019-04-01 13:05:56+08:00,2019-04-01 13:05:56+08:00,"""A cup of coffee and a moment of peace.""","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,"{'objects': ['Café', 'Coffeehouse', 'Barista', 'Bar', 'Hojicha', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'bar', 'bar', 'bar'], 'places': ['coffee shop', 'restaurant kitchen', 'bar', 'restaurant', 'cafeteria'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7011.HEIC.compressed.jpg,photos_75 76,76,2019-04-01 13:10:47+08:00,2019-04-01 13:10:47+08:00,"""Outdated technology discarded.""","1914 Connection, Jinshan North Road, KuanHua Market, Meihua Village, Zhongzheng District, Huashan, Taipei, 10053, Taiwan",25.0437,121.5299,"{'objects': ['Motherboard', 'Cpu cache', 'CPU', 'Electronic component', 'Circuit component', 'CPU board, mother board', 'circuit board, circuit card, board, card, plug-in, add-in', 'printed circuit', 'chip, microchip, micro chip, silicon chip, microprocessor chip', 'integrated circuit, microcircuit'], 'places': ['junkyard', 'assembly line', 'landfill', 'hardware store', 'archive'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7012.HEIC.compressed.jpg,photos_76 77,77,2019-04-01 14:08:24+08:00,2019-04-01 14:08:24+08:00,"""Traditional Taiwanese Opera in the Legislative Chamber""","Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.034800000000004,121.5216,"{'objects': ['Taiwanese opera', 'Taiwan passport', 'Shuanghuan sceo', 'Statue', 'Function hall', 'chancellery', 'hall', 'hall', 'hall', 'national monument'], 'places': ['legislative chamber', 'throne room', 'lecture room', 'mausoleum', 'palace'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7013.HEIC.compressed.jpg,photos_77 78,78,2019-04-01 14:09:49+08:00,2019-04-01 14:09:49+08:00,"""A symbol of democracy.""","Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.0347,121.52179999999998,"{'objects': ['Statue', 'Shuanghuan sceo', 'Taiwanese opera', 'Taiwan passport', 'Presidential palace', 'chair of state', 'national monument', 'legislator', 'government building', 'shantung'], 'places': ['legislative chamber', 'lecture room', 'courthouse', 'mausoleum', 'throne room'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7014.HEIC.compressed.jpg,photos_78 79,79,2019-04-01 14:09:52+08:00,2019-04-01 14:09:52+08:00,"""A symbol of democracy.""","中正紀念堂銅像大廳, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan",25.0346,121.52189999999996,"{'objects': ['Statue', 'Shuanghuan sceo', 'Taiwanese opera', 'Legislator', 'Lei cha', 'chair of state', 'legislator', 'national monument', 'lawgiver, lawmaker', 'shantung'], 'places': ['legislative chamber', 'lecture room', 'courthouse', 'throne room', 'mausoleum'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7015.HEIC.compressed.jpg,photos_79 80,80,2019-04-01 14:12:25+08:00,2019-04-01 14:12:25+08:00,"""The Presidential Palace of Asia.""","Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.034800000000004,121.5216,"{'objects': ['Presidential palace', 'Chinese architecture', 'Taiwanese opera', 'Palace', 'Ssangyong istana', 'palace', 'palace', 'temple', 'temple', 'place of worship, house of prayer, house of God, house of worship'], 'places': ['asia temple', 'palace', 'formal garden', 'throne room', 'mausoleum'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7016.HEIC.compressed.jpg,photos_80 81,81,2019-04-01 14:13:29+08:00,2019-04-01 14:13:29+08:00,"""The Presidential Palace of Asia.""","Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, Taiwan",25.0352,121.52119999999998,"{'objects': ['Presidential palace', 'Chinese architecture', 'Taiwanese opera', 'Palace', 'Temple', 'palace', 'palace', 'temple', 'temple', 'national monument'], 'places': ['asia temple', 'palace', 'legislative chamber', 'formal garden', 'mausoleum'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7017.HEIC.compressed.jpg,photos_81 82,82,2019-04-01 14:19:18+08:00,2019-04-01 14:19:18+08:00,"""Ancient beauty.""","Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.0352,121.52189999999996,"{'objects': ['Chinese architecture', 'Presidential palace', 'Palace', 'Unesco world heritage site', 'Taiwan passport', 'palace', 'palace', 'china', 'temple', 'temple'], 'places': ['asia temple', 'palace', 'formal garden', 'plaza', 'legislative chamber'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7018.HEIC.compressed.jpg,photos_82 83,83,2019-04-01 14:32:33+08:00,2019-04-01 14:32:33+08:00,"""Ancient beauty.""","南側樓梯出口, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10013, Taiwan",25.0352,121.519,"{'objects': ['Chinese architecture', 'Taiwanese opera', 'Temple', 'Temple', 'Presidential palace', 'temple', 'temple', 'palace', 'palace', 'assembly hall'], 'places': ['asia temple', 'legislative chamber', 'palace', 'mausoleum', 'pavilion'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7019.HEIC.compressed.jpg,photos_83 84,84,2019-04-01 14:32:43+08:00,2019-04-01 14:32:43+08:00,"""Ancient beauty.""","Democracy Boulevard, Linsen South Road Motor Tunnel, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan",25.0357,121.5201,"{'objects': ['Chinese architecture', 'Taiwanese opera', 'Temple', 'Temple', 'Presidential palace', 'temple', 'temple', 'assembly hall', 'palace', 'palace'], 'places': ['asia temple', 'legislative chamber', 'palace', 'mausoleum', 'pavilion'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7020.HEIC.compressed.jpg,photos_84 85,85,2019-04-01 14:34:37+08:00,2019-04-01 14:34:37+08:00,"""The Presidential Palace of Asia.""","Liberty Square, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10001, Taiwan",25.0359,121.51919999999998,"{'objects': ['Presidential palace', 'Temple', 'Temple', 'Taiwanese opera', 'Mortuary temple', 'temple', 'temple', 'place of worship, house of prayer, house of God, house of worship', 'mausoleum', 'palace'], 'places': ['asia temple', 'legislative chamber', 'mausoleum', 'palace', 'formal garden'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7021.HEIC.compressed.jpg,photos_85 86,86,2019-04-01 18:04:00+08:00,2019-04-01 18:04:00+08:00,"""A view from the top.""","Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.027,121.5741,"{'objects': ['Observation tower', 'Taro', 'Bamboo shoot', 'Taiwan passport', 'Mount scenery', 'landmark', 'tower', 'macrozamia', 'control tower', 'lookout, observation tower, lookout station, observatory'], 'places': ['tower', 'pagoda', 'skyscraper', 'mountain', 'asia temple'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7022.HEIC.compressed.jpg,photos_86 87,87,2019-04-01 18:10:42+08:00,2019-04-01 18:10:42+08:00,"""A majestic view.""","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.57439999999998,"{'objects': ['Mount scenery', 'Taiwan passport', 'Yuanyang', 'Stinky tofu', 'Calung', 'city, metropolis, urban center', 'urban area, populated area', 'china', 'range, mountain range, range of mountains, chain, mountain chain, chain of mountains', 'mountain, mount'], 'places': ['downtown', 'mountain', 'residential neighborhood', 'valley', 'skyscraper'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7023.HEIC.compressed.jpg,photos_87 88,88,2019-04-01 18:16:02+08:00,2019-04-01 18:16:02+08:00,"""A view from the top.""","象山親山步道主線(稜線), Liuhe Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268,121.5745,"{'objects': ['Landmark', 'Tower', 'Tower running', 'Taro', 'Geography cone', 'landmark', 'tower', 'control tower', 'national monument', 'skyscraper'], 'places': ['tower', 'skyscraper', 'pagoda', 'asia temple', 'volcano'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7024.HEIC.compressed.jpg,photos_88 89,89,2019-04-01 18:16:44+08:00,2019-04-01 18:16:44+08:00,Exploring Taiwan.,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272,121.5729,"{'objects': ['Taiwan passport', 'Mount scenery', 'Stinky tofu', 'Calung', 'Metropolitan area', 'city, metropolis, urban center', 'urban area, populated area', 'landmark', 'city district', 'china'], 'places': ['downtown', 'residential neighborhood', 'mountain', 'tower', 'skyscraper'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7025.HEIC.compressed.jpg,photos_89 90,90,2019-04-01 18:18:23+08:00,2019-04-01 18:18:23+08:00,"""A view from the top.""","Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268139,121.5743944,"{'objects': ['Landmark', 'Tower running', 'Tower', 'Control tower', 'Transmission tower', 'landmark', 'tower', 'control tower', 'skyscraper', 'national monument'], 'places': ['tower', 'skyscraper', 'office building', 'downtown', 'volcano'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7026.HEIC.compressed.jpg,photos_90 91,91,2019-04-01 18:18:34+08:00,2019-04-01 18:18:34+08:00,"""A view from the top.""","Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268083,121.5743861,"{'objects': ['Landmark', 'Tower running', 'Tower', 'Transmission tower', 'Skyscraper', 'landmark', 'tower', 'skyscraper', 'control tower', 'supporting tower'], 'places': ['tower', 'skyscraper', 'asia temple', 'pagoda', 'mountain'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7027.HEIC.compressed.jpg,photos_91 92,92,2019-04-01 18:18:54+08:00,2019-04-01 18:18:54+08:00,"""A view from the top.""","象山看台北, 101塔樓2號攝影平台, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.026872200000003,121.5744083,"{'objects': ['Landmark', 'Tower running', 'Tower', 'Taiwan passport', 'Taro', 'landmark', 'tower', 'control tower', 'skyscraper', 'national monument'], 'places': ['tower', 'skyscraper', 'volcano', 'downtown', 'asia temple'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7028.HEIC.compressed.jpg,photos_92 93,93,2019-04-01 18:19:16+08:00,2019-04-01 18:19:16+08:00,Exploring Taiwan.,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"{'objects': ['Taiwan passport', 'Youtiao', 'Panorama', 'City', 'Calung', 'city, metropolis, urban center', 'urban area, populated area', 'landmark', 'city district', 'golden shower tree, drumstick tree, purging cassia, pudding pipe tree, canafistola, canafistula, Cassia fistula'], 'places': ['downtown', 'asia temple', 'skyscraper', 'residential neighborhood', 'mountain'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7029.HEIC.compressed.jpg,photos_93 94,94,2019-04-01 18:27:54+08:00,2019-04-01 18:27:54+08:00,"""Majestic beauty.""","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.57439999999998,"{'objects': ['Mount scenery', 'City', 'Taiwan passport', 'Metropolitan area', 'Cityscape', 'city, metropolis, urban center', 'mountain, mount', 'landmark', 'urban area, populated area', 'range, mountain range, range of mountains, chain, mountain chain, chain of mountains'], 'places': ['mountain', 'skyscraper', 'tower', 'downtown', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7030.HEIC.compressed.jpg,photos_94 95,95,2019-04-01 18:28:24+08:00,2019-04-01 18:28:24+08:00,"""A majestic view.""","楠楠相望, 象山親山步道主線(稜線), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0271,121.5732,"{'objects': ['Mount scenery', 'Gaohu', 'Cityscape', 'City', 'Skyline', 'city, metropolis, urban center', 'urban area, populated area', 'china', 'mountain, mount', 'city district'], 'places': ['downtown', 'mountain', 'skyscraper', 'residential neighborhood', 'tower'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7031.HEIC.compressed.jpg,photos_95 96,96,2019-04-01 18:30:30+08:00,2019-04-01 18:30:30+08:00,Exploring Taiwan.,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"{'objects': ['Taiwan passport', 'Youtiao', 'Mount scenery', 'Metropolitan area', 'City', 'city, metropolis, urban center', 'urban area, populated area', 'landmark', 'china', 'mountain, mount'], 'places': ['tower', 'downtown', 'skyscraper', 'mountain', 'residential neighborhood'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7032.HEIC.compressed.jpg,photos_96 97,97,2019-04-01 18:30:38+08:00,2019-04-01 18:30:38+08:00,"""A majestic view.""","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"{'objects': ['Mount scenery', 'City', 'Metropolitan area', 'Cityscape', 'Taiwan passport', 'city, metropolis, urban center', 'urban area, populated area', 'mountain, mount', 'descent, declivity, fall, decline, declination, declension, downslope', 'landmark'], 'places': ['downtown', 'mountain', 'skyscraper', 'residential neighborhood', 'tower'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7033.HEIC.compressed.jpg,photos_97 98,98,2019-04-01 18:30:50+08:00,2019-04-01 18:30:50+08:00,"""Majestic beauty.""","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"{'objects': ['Mount scenery', 'Taiwan passport', 'Youtiao', 'Metropolitan area', 'City', 'city, metropolis, urban center', 'landmark', 'urban area, populated area', 'mountain, mount', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['mountain', 'tower', 'downtown', 'skyscraper', 'residential neighborhood'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7034.HEIC.compressed.jpg,photos_98 99,99,2019-04-01 18:33:02+08:00,2019-04-01 18:33:02+08:00,"""A peaceful view.""","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"{'objects': ['Mount scenery', 'Gaohu', 'Skyline', 'Cityscape', 'Hafei ruiyi', 'city, metropolis, urban center', 'urban area, populated area', 'china', 'hairpin', 'range, mountain range, range of mountains, chain, mountain chain, chain of mountains'], 'places': ['residential neighborhood', 'mountain', 'downtown', 'heliport', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7035.HEIC.compressed.jpg,photos_99 100,100,2019-04-01 18:33:52+08:00,2019-04-01 18:33:52+08:00,"""A view from the top.""","Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.0267528,121.5742333,"{'objects': ['Control tower', 'Landmark', 'Tower', 'Observation tower', 'Tower running', 'control tower', 'landmark', 'tower', 'skyscraper', 'night-light'], 'places': ['tower', 'skyscraper', 'volcano', 'office building', 'mountain'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7036.HEIC.compressed.jpg,photos_100 101,101,2019-04-01 18:34:03+08:00,2019-04-01 18:34:03+08:00,"""A view from the top.""","101塔樓1號攝影平台, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.0272722,121.5731361,"{'objects': ['Landmark', 'Control tower', 'Tower', 'Chinese new year', 'Tower running', 'landmark', 'control tower', 'tower', 'candy cane', 'skyscraper'], 'places': ['tower', 'skyscraper', 'office building', 'volcano', 'pagoda'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7037.HEIC.compressed.jpg,photos_101 102,102,2019-04-01 18:34:13+08:00,2019-04-01 18:34:13+08:00,Exploring the world from Taiwan.,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272694,121.5730139,"{'objects': ['Taiwan passport', 'City', 'Mount scenery', 'Transmission tower', 'Cityscape', 'city, metropolis, urban center', 'landmark', 'skyscraper', 'tower', 'mountain, mount'], 'places': ['skyscraper', 'tower', 'mountain', 'downtown', 'residential neighborhood'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7038.HEIC.compressed.jpg,photos_102 103,103,2019-04-01 18:34:18+08:00,2019-04-01 18:34:18+08:00,Exploring Taiwan.,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0273167,121.5730667,"{'objects': ['Taiwan passport', 'City', 'Cityscape', 'Mount scenery', 'Youtiao', 'city, metropolis, urban center', 'landmark', 'urban area, populated area', 'tower', 'control tower'], 'places': ['tower', 'skyscraper', 'downtown', 'mountain', 'residential neighborhood'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7039.HEIC.compressed.jpg,photos_103 104,104,2019-04-01 18:44:00+08:00,2019-04-01 18:44:00+08:00,"""Youtiao in the Tower""","梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0274,121.5723,"{'objects': ['Youtiao', 'Mount scenery', 'Bamboo shoot', 'Taiwan passport', 'Transmission tower', 'landmark', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'city, metropolis, urban center', 'lookout, observation tower, lookout station, observatory', 'tower'], 'places': ['tower', 'skyscraper', 'mountain', 'downtown', 'residential neighborhood'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7040.HEIC.compressed.jpg,photos_104 105,105,2019-04-01 18:47:11+08:00,2019-04-01 18:47:11+08:00,Enjoying the view.,"象山自然步道, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272,121.5732,"{'objects': ['Panorama', 'Mount scenery', 'Youtiao', 'Canopy walkway', 'Hiking', 'rose chestnut, ironwood, ironwood tree, Mesua ferrea', 'golden shower tree, drumstick tree, purging cassia, pudding pipe tree, canafistola, canafistula, Cassia fistula', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'urban area, populated area', 'mountain ebony, orchid tree, Bauhinia variegata'], 'places': ['park', 'bamboo forest', 'pagoda', 'valley', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7041.HEIC.compressed.jpg,photos_105 106,106,2019-04-01 18:54:00+08:00,2019-04-01 18:54:00+08:00,"""A view from the top.""","四獸山步道意象拍照座椅, 象山親山步道主線(稜線), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0274,121.5716,"{'objects': ['Tower', 'Skyscraper', 'Landmark', 'Tower running', 'Red stripe', 'tower', 'skyscraper', 'landmark', 'control tower', 'candy cane'], 'places': ['tower', 'skyscraper', 'office building', 'volcano', 'elevator shaft'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7042.HEIC.compressed.jpg,photos_106 107,107,2019-04-02 19:09:25-07:00,2019-04-02 19:09:25-07:00,"""Find your path to success.""","State Highway 217, Randall County, Texas, United States",34.98393380705451,-101.787210489917,"{'objects': ['Self-help book', 'Biography', 'Non-fiction', 'Book cover', 'Bisquick', 'book', 'olive', 'olive', 'denim, dungaree, jean', 'top, cover'], 'places': ['bookstore', 'indoor general store', 'gift shop', 'candy store', 'nursing home'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7043.HEIC.compressed.jpg,photos_107 108,108,2019-04-02 19:10:05-07:00,2019-04-02 19:10:05-07:00,"""Finding Solutions at Home""","State Highway 217, Randall County, Texas, United States",34.98379426157431,-101.78735003539722,"{'objects': ['Self-help book', 'Book cover', 'Non-fiction', 'Science book', 'Prune', 'book', 'top, cover', 'organdy, organdie', 'elderberry', 'hagberry'], 'places': ['pantry', 'pharmacy', 'nursing home', 'galley', 'bookstore'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7044.HEIC.compressed.jpg,photos_108 109,109,2019-04-02 19:16:56-07:00,2019-04-02 19:16:56-07:00,"""Find your path to success.""","State Highway 217, Randall County, Texas, United States",34.98393380705451,-101.787210489917,"{'objects': ['Self-help book', 'Book cover', 'Book', 'Novel', 'Non-fiction', 'book', 'packet', 'top, cover', 'publication', 'packaging'], 'places': ['bookstore', 'office', 'gift shop', 'coffee shop', 'marsh'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7045.HEIC.compressed.jpg,photos_109 110,110,2019-04-03 08:53:44-07:00,2019-04-03 08:53:44-07:00,"""Hotel Room Invoice""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03755147425116,-101.90860432341586,"{'objects': ['Invoice', 'Document', 'Receipt', 'Mail', 'Mail', 'mailer', 'envelope', 'envelope', 'envelope', 'envelope, gasbag'], 'places': ['hotel room', 'motel', 'jail cell', 'nursing home', 'lobby'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7046.HEIC.compressed.jpg,photos_110 111,111,2019-04-06 12:16:12-07:00,2019-04-06 12:16:12-07:00,"""A splash of color.""","2968, Greg Street, Randall County, Texas, 79015, United States",35.037572942786554,-101.90841110659711,"{'objects': ['Lupinus mutabilis', 'Fernleaf lavender', 'Saffron crocus', 'Camas', 'Tommie crocus', ""wild lupine, sundial lupine, Indian beet, old-maid's bonnet, Lupinus perennis"", 'blazing star, button snakeroot, gayfeather, snakeroot', 'false lupine, golden pea, yellow pea, Thermopsis macrophylla', 'dwarf iris, Iris cristata', ""purple clematis, purple virgin's bower, mountain clematis, Clematis verticillaris""], 'places': ['botanical garden', 'formal garden', 'yard', 'zen garden', 'japanese garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7047.HEIC.compressed.jpg,photos_111 112,112,2019-04-06 12:16:37-07:00,2019-04-06 12:16:37-07:00,"""Fragrant beauty in the formal garden.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037453953429015,-101.9084895633598,"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'French lavender', 'Lavandula dentata', 'Egyptian lavender', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'blazing star, button snakeroot, gayfeather, snakeroot', ""bog rose, wild pink, dragon's mouth, Arethusa bulbosa""], 'places': ['formal garden', 'botanical garden', 'japanese garden', 'topiary garden', 'yard'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7048-EFFECTS.jpg.compressed.jpg,photos_112 113,113,2019-04-06 12:16:36-07:00,2019-04-06 12:16:36-07:00,"""Fragrant beauty in the formal garden.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037453953429015,-101.9084895633598,"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'French lavender', 'Lavandula dentata', 'Egyptian lavender', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'blazing star, button snakeroot, gayfeather, snakeroot', ""bog rose, wild pink, dragon's mouth, Arethusa bulbosa""], 'places': ['formal garden', 'botanical garden', 'japanese garden', 'topiary garden', 'yard'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7048.HEIC.compressed.jpg,photos_113 114,114,2019-04-06 12:17:05-07:00,2019-04-06 12:17:05-07:00,"""Fragrant beauty in the formal garden.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"{'objects': ['Fernleaf lavender', 'Camas', 'Lupinus mutabilis', 'Lavandula lanata', 'Saffron crocus', ""wild lupine, sundial lupine, Indian beet, old-maid's bonnet, Lupinus perennis"", 'spike lavender, French lavender, Lavandula latifolia', 'blazing star, button snakeroot, gayfeather, snakeroot', 'French lavender, Lavandula stoechas', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['formal garden', 'botanical garden', 'yard', 'zen garden', 'japanese garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7049.HEIC.compressed.jpg,photos_114 115,115,2019-04-06 12:17:19-07:00,2019-04-06 12:17:19-07:00,"""Fragrant beauty in the formal garden.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03752050588879,-101.90851128951766,"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'Egyptian lavender', 'French lavender', 'Lavandula dentata', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'wild sage, wild clary, vervain sage, Salvia verbenaca', 'iris, flag, fleur-de-lis, sword lily'], 'places': ['formal garden', 'roof garden', 'yard', 'zen garden', 'topiary garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7050.HEIC.compressed.jpg,photos_115 116,116,2019-04-06 12:17:32-07:00,2019-04-06 12:17:32-07:00,"""Fragrant beauty in the formal garden.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03752050588879,-101.90851128951766,"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'Camas', 'Egyptian lavender', 'Iris japonica', 'purple willow, red willow, red osier, basket willow, purple osier, Salix purpurea', 'spike lavender, French lavender, Lavandula latifolia', 'snow plant, Sarcodes sanguinea', 'French lavender, Lavandula stoechas', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['formal garden', 'japanese garden', 'botanical garden', 'yard', 'zen garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7051.HEIC.compressed.jpg,photos_116 117,117,2019-04-06 12:17:40-07:00,2019-04-06 12:17:40-07:00,"""A tranquil oasis in the garden.""","2968, Greg Street, Randall County, Texas, 79015, United States",35.037562208518864,-101.9085077150065,"{'objects': ['Smoketree', 'Redbud', 'Aesculus californica', 'Polygalaceae', 'Camas', 'smoke tree, smoke bush', 'purple willow, red willow, red osier, basket willow, purple osier, Salix purpurea', 'umbrella tree, umbrella magnolia, elkwood, elk-wood, Magnolia tripetala', 'flowering almond, oriental bush cherry, Prunus japonica', 'Japanese maple, full moon maple, Acer japonicum'], 'places': ['formal garden', 'botanical garden', 'japanese garden', 'yard', 'zen garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7052.HEIC.compressed.jpg,photos_117 118,118,2019-04-10 15:59:42-07:00,2019-04-10 15:59:42-07:00,"""A splash of color in the desert.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03733794819794,-101.90882025394504,"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'Egyptian lavender', 'California lilac', 'spike lavender, French lavender, Lavandula latifolia', 'purple sage, chaparral sage, Salvia leucophylla', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', ""purple heather, Brewer's mountain heather, Phyllodoce breweri""], 'places': ['vegetation desert', 'yard', 'zen garden', 'botanical garden', 'lawn'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7053-EFFECTS.jpg.compressed.jpg,photos_118 119,119,2019-04-10 15:59:41-07:00,2019-04-10 15:59:41-07:00,"""A splash of color in the desert.""","2964, Greg Street, Randall County, Texas, 79015, United States",35.0372723832908,-101.90888341437628,"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'California lilac', 'Egyptian lavender', 'purple sage, chaparral sage, Salvia leucophylla', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['vegetation desert', 'yard', 'botanical garden', 'lawn', 'zen garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7053.HEIC.compressed.jpg,photos_119 120,120,2019-04-11 16:03:08-07:00,2019-04-11 16:03:08-07:00,"""Fragrant beauty in the formal garden.""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'Lavandula dentata', 'French lavender', 'English lavender', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'verbena, vervain', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['formal garden', 'zen garden', 'roof garden', 'lawn', 'driveway'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7055.HEIC.compressed.jpg,photos_120 121,121,2019-04-11 17:50:51-07:00,2019-04-11 17:50:51-07:00,California Buckeye in bloom.,"2962, Greg Street, Randall County, Texas, 79015, United States",35.03706843220435,-101.90848624647114,"{'objects': ['Aesculus californica', 'Chinese hawthorn', 'California laurel', 'Fruit tree', 'Crabapple', 'angiospermous tree, flowering tree', 'tangerine, tangerine tree', 'almond tree', 'mandarin, mandarin orange, mandarin orange tree, Citrus reticulata', 'clementine, clementine tree'], 'places': ['orchard', 'yard', 'lawn', 'zen garden', 'corral'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7056.HEIC.compressed.jpg,photos_121 122,122,2019-04-11 17:50:53-07:00,2019-04-11 17:50:53-07:00,A burst of citrus in the orchard.,"2962, Greg Street, Randall County, Texas, 79015, United States",35.03706843220435,-101.90848624647114,"{'objects': ['Calamondin', 'California laurel', 'Chinese hawthorn', 'Prunus spinosa', 'Fruit tree', 'angiospermous tree, flowering tree', 'almond tree', 'mandarin, mandarin orange, mandarin orange tree, Citrus reticulata', 'loquat, loquat tree, Japanese medlar, Japanese plum, Eriobotrya japonica', 'kumquat, cumquat, kumquat tree'], 'places': ['orchard', 'yard', 'corral', 'zen garden', 'japanese garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7057.HEIC.compressed.jpg,photos_122 123,123,2019-04-11 17:51:04-07:00,2019-04-11 17:51:04-07:00,"""A bounty of fruit.""","2962, Greg Street, Randall County, Texas, 79015, United States",35.037052330802794,-101.90863115908512,"{'objects': ['Fruit tree', 'Crabapple', 'Prunus', 'Prunus spinosa', 'Wild crabapple', 'apple tree', 'peach, peach tree, Prunus persica', 'angiospermous tree, flowering tree', 'Southern crab apple, flowering crab, Malus angustifolia', 'almond tree'], 'places': ['orchard', 'yard', 'lawn', 'cultivated field', 'tree farm'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7058-EFFECTS.jpg.compressed.jpg,photos_123 124,124,2019-04-11 17:51:03-07:00,2019-04-11 17:51:03-07:00,"""A splash of color.""","2962, Greg Street, Randall County, Texas, 79015, United States",35.03704696366893,-101.9086794632898,"{'objects': ['Crabapple', 'Fruit tree', 'Wild crabapple', 'Vinegar tree', 'Cedar bay cherry', 'apple tree', 'almond tree', 'peach, peach tree, Prunus persica', 'fruit tree', 'angiospermous tree, flowering tree'], 'places': ['orchard', 'yard', 'lawn', 'tree farm', 'corral'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7058.HEIC.compressed.jpg,photos_124 125,125,2019-04-13 13:08:12-07:00,2019-04-13 13:08:12-07:00,"""A splash of color in the desert.""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"{'objects': ['Fernleaf lavender', 'Egyptian lavender', 'Lavandula lanata', 'French lavender', 'Lavandula dentata', 'blazing star, Mentzelia livicaulis, Mentzelia laevicaulis', ""common unicorn plant, devil's claw, common devil's claw, elephant-tusk, proboscis flower, ram's horn, Proboscidea louisianica"", 'wild sage, wild clary, vervain sage, Salvia verbenaca', 'spike lavender, French lavender, Lavandula latifolia', 'purple sage, chaparral sage, Salvia leucophylla'], 'places': ['vegetation desert', 'yard', 'wild field', 'zen garden', 'cultivated field'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7059.HEIC.compressed.jpg,photos_125 126,126,2019-04-13 13:23:32-07:00,2019-04-13 13:23:32-07:00,"""A splash of color in the desert.""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"{'objects': ['Fernleaf lavender', 'French lavender', 'Egyptian lavender', 'Lavandula lanata', 'Lavandula dentata', 'purple sage, chaparral sage, Salvia leucophylla', ""California fuchsia, humming bird's trumpet, Epilobium canum canum, Zauschneria californica"", 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', ""common unicorn plant, devil's claw, common devil's claw, elephant-tusk, proboscis flower, ram's horn, Proboscidea louisianica""], 'places': ['vegetation desert', 'lawn', 'yard', 'zen garden', 'house'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7060.HEIC.compressed.jpg,photos_126 127,127,2019-04-13 13:23:49-07:00,2019-04-13 13:23:49-07:00,California Poppies in bloom.,"2964, Greg Street, Randall County, Texas, 79015, United States",35.03716504061369,-101.90873313462832,"{'objects': ['Eschscholzia californica', 'Narrow-leaved sundrops', 'Corn poppy', 'Tree poppy', 'Poppy family', 'California poppy, Eschscholtzia californica', 'wind poppy, flaming poppy, Stylomecon heterophyllum, Papaver heterophyllum', 'matilija poppy, California tree poppy, Romneya coulteri', 'corn poppy, field poppy, Flanders poppy, Papaver rhoeas', 'Iceland poppy, Papaver alpinum'], 'places': ['yard', 'wild field', 'lawn', 'cultivated field', 'hayfield'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7061.HEIC.compressed.jpg,photos_127 128,128,2019-04-13 13:24:21-07:00,2019-04-13 13:24:21-07:00,"""Fragrant beauty.""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'Egyptian lavender', 'Lavandula dentata', 'purple sage, chaparral sage, Salvia leucophylla', 'spike lavender, French lavender, Lavandula latifolia', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'French lavender, Lavandula stoechas', 'blazing star, button snakeroot, gayfeather, snakeroot'], 'places': ['yard', 'driveway', 'vegetation desert', 'zen garden', 'lawn'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7062.HEIC.compressed.jpg,photos_128 129,129,2019-04-14 08:23:09-07:00,2019-04-14 08:23:09-07:00,"""A splash of color in the desert.""","2968, Greg Street, Randall County, Texas, 79015, United States",35.037562208518864,-101.9085077150065,"{'objects': ['Rock rose', 'Polygalaceae', 'California wild rose', 'Pink evening primrose', 'Subshrub', 'rockrose, rock rose', 'flowering shrub', 'pink, garden pink', 'portulaca', 'Wynnea sparassoides'], 'places': ['vegetation desert', 'botanical garden', 'yard', 'wild field', 'driveway'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7063.HEIC.compressed.jpg,photos_129 130,130,2019-04-14 08:23:14-07:00,2019-04-14 08:23:14-07:00,"""A splash of color in the desert.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"{'objects': ['Rock rose', 'Subshrub', 'Polygalaceae', 'Garden cosmos', 'Spurflowers', 'rockrose, rock rose', 'maiden pink, Dianthus deltoides', 'china pink, rainbow pink, Dianthus chinensis', 'Swan River daisy, Brachycome Iberidifolia', 'pink, garden pink'], 'places': ['vegetation desert', 'botanical garden', 'yard', 'wild field', 'park'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7064.HEIC.compressed.jpg,photos_130 131,131,2019-04-14 11:09:42-07:00,2019-04-14 11:09:42-07:00,"""Beauty in the Garden""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"{'objects': ['Rock rose', 'Eschscholzia californica', 'Large-flowered evening primrose ', 'Mentzelia lindleyi', 'Spurflowers', 'rockrose, rock rose', 'portulaca', 'Swan River daisy, Brachycome Iberidifolia', 'rose moss, sun plant, Portulaca grandiflora', 'wandflower, Sparaxis tricolor'], 'places': ['botanical garden', 'vegetation desert', 'lawn', 'yard', 'wild field'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7065.HEIC.compressed.jpg,photos_131 132,132,2019-04-14 11:09:56-07:00,2019-04-14 11:09:56-07:00,"""A splash of color in the desert.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"{'objects': ['Rock rose', 'Spurflowers', 'Zinnia angustifolia', 'Blanket flowers', 'Candytuft', 'rockrose, rock rose', 'Swan River daisy, Brachycome Iberidifolia', 'rose moss, sun plant, Portulaca grandiflora', 'portulaca', 'maiden pink, Dianthus deltoides'], 'places': ['vegetation desert', 'botanical garden', 'yard', 'wild field', 'lawn'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7066.HEIC.compressed.jpg,photos_132 133,133,2019-04-14 19:19:06-07:00,2019-04-14 19:19:06-07:00,"""A peaceful retreat in nature.""","Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1128,"{'objects': ['Eco hotel', 'Convention center', 'Very large floating structure', 'Floating restaurant', 'Hotel', 'waterfront', 'hotel', 'conference center, conference house', 'houseboat', 'sun deck'], 'places': ['outdoor hotel', 'heliport', 'conference center', 'roof garden', 'hotel room'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7067.HEIC.compressed.jpg,photos_133 134,134,2019-04-14 19:28:23-07:00,2019-04-14 19:28:23-07:00,"""A view from above.""","Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.28790000000001,-123.1127,"{'objects': ['Convention center', 'Roof', 'Hotel', 'Eco hotel', 'Resort', 'roof', 'roof', 'hotel', 'waterfront', 'conference center, conference house'], 'places': ['roof garden', 'outdoor hotel', 'conference center', 'heliport', 'outdoor swimming pool'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7070.HEIC.compressed.jpg,photos_134 135,135,2019-04-14 20:40:40-07:00,2019-04-14 20:40:40-07:00,"""A modern marvel.""","999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2882,-123.1128,"{'objects': ['Cable-stayed bridge', 'Segmental bridge', 'Fixed link', 'Skyway', 'Self-anchored suspension bridge', 'spinnaker', 'sail', 'marina', 'port', 'strip lighting'], 'places': ['bridge', 'harbor', 'restaurant', 'berth', 'outdoor hotel'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7071.HEIC.compressed.jpg,photos_135 136,136,2019-04-15 08:03:01-07:00,2019-04-15 08:03:01-07:00,"""A gathering place for all.""","Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1127,"{'objects': ['Convention center', 'Hotel', 'Mixed-use', 'Very large floating structure', 'Artificial island', 'waterfront', 'hotel', 'conference center, conference house', 'sun deck', 'roof'], 'places': ['outdoor hotel', 'heliport', 'roof garden', 'conference center', 'hotel room'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7073.HEIC.compressed.jpg,photos_136 137,137,2019-04-15 08:03:20-07:00,2019-04-15 08:03:20-07:00,"""A view of the conference center.""","Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1128,"{'objects': ['Panorama', 'Convention center', 'Resort', 'Peninsula', 'Beach ridge', 'waterfront', 'conference center, conference house', 'bay', 'hotel', 'oceanfront'], 'places': ['conference center', 'heliport', 'outdoor hotel', 'harbor', 'coast'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7074.HEIC.compressed.jpg,photos_137 138,138,2019-04-15 12:16:09-07:00,2019-04-15 12:16:09-07:00,"""Step into style.""","Canada Place, West Waterfront Road, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2883,-123.1144,"{'objects': ['Shoe', 'Slip-on shoe', 'Walking shoe', 'Golf shoe', 'Running shoe', 'shoe', 'shoe', 'running shoe', 'heel', 'shoebox'], 'places': ['shoe shop', 'wave', 'indoor booth', 'dressing room', 'iceberg'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7075.HEIC.compressed.jpg,photos_138 139,139,2019-04-15 12:34:01-07:00,2019-04-15 12:34:01-07:00,"""Tasty and healthy!""","Fairmont Pacific Rim, 1038, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2883,-123.1167,"{'objects': ['Veggie burger', 'Kiwiburger', 'Hamburger', 'Fast food', 'American food', 'hamburger, beefburger, burger', 'fast food', 'cheeseburger', 'convenience food', 'food, nutrient'], 'places': ['fastfood restaurant', 'restaurant', 'outdoor diner', 'food court', 'cafeteria'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7076.HEIC.compressed.jpg,photos_139 140,140,2019-04-15 13:45:18-07:00,2019-04-15 13:45:18-07:00,"""Cooking made easy!""","Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.116,"{'objects': ['Electric griddle', 'Waffle iron', 'Sandwich toaster', 'Food warmer', 'Toaster oven', 'waffle iron', 'griddle', 'toaster oven', 'appliance', 'toaster'], 'places': ['kitchen', 'galley', 'restaurant kitchen', 'car interior', 'television room'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7078.HEIC.compressed.jpg,photos_140 141,141,2019-04-15 13:47:29-07:00,2019-04-15 13:47:29-07:00,"""Keeping it warm.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1163,"{'objects': ['Food warmer', 'Food dehydrator', 'Toaster oven', 'Food steamer', 'Oven', 'toaster oven', 'oven', 'microwave, microwave oven', 'gas oven', 'gas oven'], 'places': ['indoor booth', 'pizzeria', 'kitchen', 'restaurant kitchen', 'conference room'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7079.HEIC.compressed.jpg,photos_141 142,142,2019-04-15 13:47:35-07:00,2019-04-15 13:47:35-07:00,"""Preserving the harvest.""","Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1159,"{'objects': ['Food dehydrator', 'Bread machine', 'Food steamer', 'Breadbox', 'Sandwich toaster', 'toaster oven', 'bread-bin, breadbox', 'kitchen appliance', 'toaster', 'appliance'], 'places': ['kitchen', 'galley', 'restaurant kitchen', 'shop bakery', 'sauna'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7080.HEIC.compressed.jpg,photos_142 143,143,2019-04-15 14:19:43-07:00,2019-04-15 14:19:43-07:00,Brewing up a fresh cup of coffee.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,"{'objects': ['Barista', 'Single-origin coffee', 'Espresso machine', 'Coffeemaker', 'Drip coffee maker', 'espresso maker', 'coffee maker', 'tamp, tamper, tamping bar', 'espresso', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['coffee shop', 'galley', 'indoor booth', 'cafeteria', 'conference center'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7081.HEIC.compressed.jpg,photos_143 144,144,2019-04-15 14:19:45-07:00,2019-04-15 14:19:45-07:00,"""Freshly brewed.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,"{'objects': ['Single-origin coffee', 'Barista', 'Espresso machine', 'Espresso', 'Drip coffee maker', 'espresso maker', 'coffee maker', 'espresso', 'tamp, tamper, tamping bar', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['coffee shop', 'indoor booth', 'galley', 'conference center', 'indoor general store'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7082.HEIC.compressed.jpg,photos_144 145,145,2019-04-15 14:19:50-07:00,2019-04-15 14:19:50-07:00,"""Freshly brewed.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.1166,"{'objects': ['Single-origin coffee', 'Barista', 'Espresso machine', 'Portafilter', 'Drip coffee maker', 'espresso maker', 'cafe, coffeehouse, coffee shop, coffee bar', 'coffee maker', 'espresso', 'tamp, tamper, tamping bar'], 'places': ['coffee shop', 'indoor booth', 'galley', 'indoor general store', 'bar'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7083.HEIC.compressed.jpg,photos_145 146,146,2019-04-15 14:19:55-07:00,2019-04-15 14:19:55-07:00,Brewing up a fresh cup of coffee.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.1166,"{'objects': ['Barista', 'Espresso machine', 'Portafilter', 'Ristretto', 'Cortado', 'espresso maker', 'tamp, tamper, tamping bar', 'roaster', 'cafe, coffeehouse, coffee shop, coffee bar', 'coffee maker'], 'places': ['coffee shop', 'indoor general store', 'galley', 'assembly line', 'cockpit'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7084.HEIC.compressed.jpg,photos_146 147,147,2019-04-15 14:19:56-07:00,2019-04-15 14:19:56-07:00,Brewing up a fresh cup of coffee.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1167,"{'objects': ['Barista', 'Espresso machine', 'Portafilter', 'Cortado', 'Coffee grinder', 'espresso maker', 'tamp, tamper, tamping bar', 'espresso', 'roaster', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['coffee shop', 'indoor general store', 'galley', 'assembly line', 'cockpit'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7085.HEIC.compressed.jpg,photos_147 148,148,2019-04-15 14:20:02-07:00,2019-04-15 14:20:02-07:00,Brewing a perfect cup.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1167,"{'objects': ['Portafilter', 'Lever', 'Coffee grinder', 'Beer tap', 'Tap wrench', 'tamp, tamper, tamping bar', 'lever', 'lever', 'espresso maker', 'lever, lever tumbler'], 'places': ['coffee shop', 'bar', 'galley', 'lock chamber', 'restaurant kitchen'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7086.HEIC.compressed.jpg,photos_148 149,149,2019-04-15 14:20:03-07:00,2019-04-15 14:20:03-07:00,Brewing a perfect cup.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,"{'objects': ['Portafilter', 'Corzetti', 'Coffee grinder', 'Lever', 'Moka pot', 'tamp, tamper, tamping bar', 'espresso maker', 'lever', 'lever', 'espresso'], 'places': ['coffee shop', 'galley', 'bar', 'lock chamber', 'delicatessen'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7087.HEIC.compressed.jpg,photos_149 150,150,2019-04-15 14:20:07-07:00,2019-04-15 14:20:07-07:00,Brewing a perfect cup.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,"{'objects': ['Espresso machine', 'Barista', 'Single-origin coffee', 'Coffeemaker', 'Drip coffee maker', 'espresso maker', 'coffee maker', 'cafe, coffeehouse, coffee shop, coffee bar', 'espresso', 'tamp, tamper, tamping bar'], 'places': ['coffee shop', 'indoor booth', 'indoor general store', 'galley', 'conference center'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7088.HEIC.compressed.jpg,photos_150 151,151,2019-04-15 14:20:07-07:00,2019-04-15 14:20:07-07:00,Brewing up a fresh cup of coffee.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,"{'objects': ['Barista', 'Espresso machine', 'Single-origin coffee', 'Coffeemaker', 'Ristretto', 'espresso maker', 'coffee maker', 'espresso', 'cafe, coffeehouse, coffee shop, coffee bar', 'roaster'], 'places': ['coffee shop', 'indoor booth', 'indoor general store', 'galley', 'conference center'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7089.HEIC.compressed.jpg,photos_151 152,152,2019-04-15 14:20:08-07:00,2019-04-15 14:20:08-07:00,Brewing a perfect cup.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,"{'objects': ['Espresso machine', 'Barista', 'Espressino', 'Ristretto', 'Single-origin coffee', 'espresso maker', 'espresso', 'roaster', 'coffee maker', 'tamp, tamper, tamping bar'], 'places': ['coffee shop', 'galley', 'indoor booth', 'indoor general store', 'delicatessen'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7090.HEIC.compressed.jpg,photos_152 153,153,2019-04-15 14:20:19-07:00,2019-04-15 14:20:19-07:00,Brewing a perfect cup.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,"{'objects': ['Espresso machine', 'Barista', 'Single-origin coffee', 'Coffee grinder', 'Espressino', 'espresso maker', 'roaster', 'espresso', 'coffee maker', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['coffee shop', 'indoor booth', 'galley', 'indoor general store', 'conference center'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7091.HEIC.compressed.jpg,photos_153 154,154,2019-04-15 14:20:20-07:00,2019-04-15 14:20:20-07:00,Brewing up a fresh cup of coffee.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,"{'objects': ['Barista', 'Espresso machine', 'Coffee grinder', 'Single-origin coffee', 'Roasted grain beverage', 'roaster', 'espresso maker', 'cafe, coffeehouse, coffee shop, coffee bar', 'espresso', 'coffee maker'], 'places': ['coffee shop', 'galley', 'indoor booth', 'delicatessen', 'indoor general store'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7092.HEIC.compressed.jpg,photos_154 155,155,2019-04-15 15:21:26-07:00,2019-04-15 15:21:26-07:00,"""A peaceful view.""","Bellaggio Café & Gelateria, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1149,"{'objects': ['Harbor', 'Seaplane tender', 'Strait', 'Bulk carrier', 'Cruiseferry', 'waterfront', 'harbor, harbour', 'tugboat, tug, towboat, tower', 'dock, dockage, docking facility', 'container ship, containership, container vessel'], 'places': ['harbor', 'berth', 'pier', 'mountain snowy', 'coast'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7093.HEIC.compressed.jpg,photos_155 156,156,2019-04-15 15:25:50-07:00,2019-04-15 15:25:50-07:00,Celebrating Victoria Day in the harbor.,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.28790000000001,-123.1128,"{'objects': ['Victoria day', 'Lacustrine plain', 'Strait', 'Body of water', 'Panorama', 'waterfront', 'body of water, water', 'geographical area, geographic area, geographical region, geographic region', 'tract, piece of land, piece of ground, parcel of land, parcel', 'land, dry land, earth, ground, solid ground, terra firma'], 'places': ['harbor', 'coast', 'mountain', 'berth', 'downtown'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7094.HEIC.compressed.jpg,photos_156 157,157,2019-04-15 15:25:58-07:00,2019-04-15 15:25:58-07:00,Aerial view of the heliport.,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.11249999999998,"{'objects': ['Panorama', 'Artificial island', 'Convention center', 'Victoria day', 'Very large floating structure', 'waterfront', 'conference center, conference house', 'body of water, water', 'sun deck', 'hotel'], 'places': ['heliport', 'conference center', 'outdoor hotel', 'hotel room', 'harbor'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7095.HEIC.compressed.jpg,photos_157 158,158,2019-04-15 18:30:43-07:00,2019-04-15 18:30:43-07:00,"""Ready for the show!""","Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.116,"{'objects': ['Stage', 'Performance', 'Auditorium', 'Public speaking', 'Projection screen', 'stage', 'auditorium', 'projection', 'cardioid microphone', 'bandstand, outdoor stage, stand'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'amphitheater'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7099.HEIC.compressed.jpg,photos_158 159,159,2019-04-15 18:30:48-07:00,2019-04-15 18:30:48-07:00,"""Ready for the show!""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,"{'objects': ['Stage', 'Performance', 'Auditorium', 'Concert', 'Projection screen', 'stage', 'auditorium', 'projection', 'gig', 'cardioid microphone'], 'places': ['indoor stage', 'performance arena', 'outdoor stage', 'auditorium', 'amphitheater'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7100.HEIC.compressed.jpg,photos_159 160,160,2019-04-15 18:31:20-07:00,2019-04-15 18:31:20-07:00,"""A captivating performance.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,"{'objects': ['Performance', 'Stage', 'Concert', 'Auditorium', 'Rock concert', 'stage', 'auditorium', 'gig', 'performer, performing artist', 'video recording, video'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'public atrium'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7101.HEIC.compressed.jpg,photos_160 161,161,2019-04-15 18:31:22-07:00,2019-04-15 18:31:22-07:00,"""A captivating performance.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,"{'objects': ['Performance', 'Stage', 'Concert', 'Auditorium', 'Musical Performance Sports', 'stage', 'auditorium', 'gig', 'performer, performing artist', 'video recording, video'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'ballroom'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7102.HEIC.compressed.jpg,photos_161 162,162,2019-04-16 07:52:35-07:00,2019-04-16 07:52:35-07:00,"""Explore the possibilities with an interactive kiosk.""","Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1177,"{'objects': ['Interactive kiosk', 'Copy stand', 'Kiosk', 'Enterprise software', 'Display advertising', 'booth, cubicle, stall, kiosk', 'stall, stand, sales booth', 'stand', 'display, video display', 'voting booth'], 'places': ['indoor booth', 'ticket booth', 'public atrium', 'elevator lobby', 'phone booth'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7106.HEIC.compressed.jpg,photos_162 163,163,2019-04-16 07:52:38-07:00,2019-04-16 07:52:38-07:00,"""Explore the possibilities with an interactive kiosk.""","Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1176,"{'objects': ['Interactive kiosk', 'Kiosk', 'Copy stand', 'Room divider', 'Photo booth', 'booth, cubicle, stall, kiosk', 'stall, stand, sales booth', 'stand', 'display, video display', 'voting booth'], 'places': ['indoor booth', 'ticket booth', 'phone booth', 'elevator lobby', 'conference center'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7107.HEIC.compressed.jpg,photos_163 164,164,2019-04-16 07:52:47-07:00,2019-04-16 07:52:47-07:00,"""Explore the possibilities with an interactive kiosk.""","Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1177,"{'objects': ['Interactive kiosk', 'Copy stand', 'Enterprise software', 'Room divider', 'Kiosk', 'booth, cubicle, stall, kiosk', 'stand', 'stall, stand, sales booth', 'facility, installation', 'partition, divider'], 'places': ['indoor booth', 'ticket booth', 'entrance hall', 'phone booth', 'elevator lobby'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7108.HEIC.compressed.jpg,photos_164 165,165,2019-04-16 07:52:51-07:00,2019-04-16 07:52:51-07:00,"""Explore the possibilities with an interactive kiosk.""","Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1176,"{'objects': ['Interactive kiosk', 'Room divider', 'Queue area', 'Copy stand', 'Kiosk', 'booth, cubicle, stall, kiosk', 'passageway', 'stand', 'partition, divider', 'anteroom, antechamber, entrance hall, hall, foyer, lobby, vestibule'], 'places': ['indoor booth', 'elevator lobby', 'entrance hall', 'lobby', 'corridor'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7109.HEIC.compressed.jpg,photos_165 166,166,2019-04-16 10:02:50-07:00,2019-04-16 10:02:50-07:00,"""Ready to present!""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1159,"{'objects': ['Presentation', 'Public speaking', 'Map', 'Africanis', 'Ndolé', 'samite', 'map', 'African', 'projection', 'Black African'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'conference center'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7110.HEIC.compressed.jpg,photos_166 167,167,2019-04-16 10:35:31-07:00,2019-04-16 10:35:31-07:00,"""Healthy and delicious!""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.11649999999996,"{'objects': ['Superfood', 'Beef brain', 'Coffee substitute', 'Brain', 'Brain', 'green mayonnaise, sauce verte', 'dietary supplement', 'food, nutrient', 'micronutrient', 'smoothie'], 'places': ['coffee shop', 'cafeteria', 'broadleaf forest', 'restaurant', 'bar'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7111.HEIC.compressed.jpg,photos_167 168,168,2019-04-16 11:33:45-07:00,2019-04-16 11:33:45-07:00,"""Ready to rock!""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,"{'objects': ['Microphone stand', 'Otamatone', 'Public speaking', 'Speaker', 'Lectern', 'cardioid microphone', 'Speaker', 'Segway, Segway Human Transporter, Segway HT', 'speaker, talker, utterer, verbalizer, verbaliser', 'front projector'], 'places': ['indoor stage', 'performance arena', 'outdoor stage', 'auditorium', 'conference room'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7113.HEIC.compressed.jpg,photos_168 169,169,2019-04-16 15:58:10-07:00,2019-04-16 15:58:10-07:00,"""Sharing ideas.""","2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2891,-123.1175,"{'objects': ['Presentation', 'Tzouras', 'Website', 'Foundation', 'Organization', 'framework', 'web site, website, internet site, site', 'housing, lodging, living accommodations', 'executive, executive director', 'dowel, dowel pin, joggle'], 'places': ['conference room', 'conference center', 'archive', 'building facade', 'stable'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7116.HEIC.compressed.jpg,photos_169 170,170,2019-04-17 08:56:50-07:00,2019-04-17 08:56:50-07:00,"""Speaking to a crowd.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2894,-123.1161,"{'objects': ['Public speaking', 'Presentation', 'Lecture', 'Learning', 'Audience', 'social scientist', 'projection', 'speaker, talker, utterer, verbalizer, verbaliser', 'culture medium, medium', 'sociologist'], 'places': ['auditorium', 'lecture room', 'performance arena', 'indoor stage', 'public atrium'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7118.HEIC.compressed.jpg,photos_170 171,171,2019-04-17 09:16:52-07:00,2019-04-17 09:16:52-07:00,"""Speaking to a crowd.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.1161,"{'objects': ['Public speaking', 'Presentation', 'Projection screen', 'Conference hall', 'Multimedia projector', 'projection', 'auditorium', 'stage', 'Speaker', 'cardioid microphone'], 'places': ['auditorium', 'indoor stage', 'performance arena', 'lecture room', 'outdoor stage'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7119.HEIC.compressed.jpg,photos_171 172,172,2019-04-17 09:51:56-07:00,2019-04-17 09:51:56-07:00,"""Tech on the go.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,"{'objects': ['Ipad', 'Digital photo frame', 'Screenshot', 'Snapshot', 'Screen', 'screen', 'display, video display', 'flat panel display, FPD', 'picture frame', 'stunt'], 'places': ['runway', 'street', 'staircase', 'crosswalk', 'sandbox'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7122.HEIC.compressed.jpg,photos_172 173,173,2019-04-17 12:32:29-07:00,2019-04-17 12:32:29-07:00,"""Urban living at its finest.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,"{'objects': ['Mixed-use', 'Presentation', 'Skyscraper', 'Building', 'Tower', 'skyscraper', 'projection', 'tower', 'high-rise, tower block', 'building complex, complex'], 'places': ['skyscraper', 'tower', 'building facade', 'conference center', 'office building'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7124.HEIC.compressed.jpg,photos_173 174,174,2019-04-17 12:35:20-07:00,2019-04-17 12:35:20-07:00,"""Putting for glory!""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1161,"{'objects': ['Pitch and putt', 'Indoor games and sports', 'Ladder golf', 'Public speaking', 'Speed golf', 'practice range', 'course', 'course', 'golf course, links course', 'projection'], 'places': ['performance arena', 'golf course', 'outdoor ice skating rink', 'ski slope', 'indoor ice skating rink'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7126.HEIC.compressed.jpg,photos_174 175,175,2019-04-17 12:43:24-07:00,2019-04-17 12:43:24-07:00,"""Sustainable hospitality at its finest.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1161,"{'objects': ['Eco hotel', 'Resort', 'Presentation', 'Resort town', 'Conference hall', 'resort, resort hotel, holiday resort', 'housing, lodging, living accommodations', 'resort area, playground, vacation spot', 'housing', 'resort hotel, spa'], 'places': ['conference center', 'outdoor hotel', 'public atrium', 'auditorium', 'campus'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7127.HEIC.compressed.jpg,photos_175 176,176,2019-04-17 12:43:27-07:00,2019-04-17 12:43:27-07:00,"""A tranquil oasis in the city.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,"{'objects': ['Eco hotel', 'Presentation', 'Outdoor structure', 'Artificial island', 'Canopy walkway', 'solar house', 'housing, lodging, living accommodations', 'slide, playground slide, sliding board', 'projection', 'resort area, playground, vacation spot'], 'places': ['public atrium', 'performance arena', 'indoor stage', 'roof garden', 'exterior balcony'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7128.HEIC.compressed.jpg,photos_176 177,177,2019-04-17 13:44:56-07:00,2019-04-17 13:44:56-07:00,Academic minds come together.,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.115,"{'objects': ['Academic conference', 'Conference hall', 'Seminar', 'Yarrow', 'Public speaking', 'conference table, council table, council board', 'panel', 'social scientist', 'microeconomist, microeconomic expert', 'rafter, balk, baulk'], 'places': ['conference room', 'conference center', 'lecture room', 'recreation room', 'waiting room'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7129.HEIC.compressed.jpg,photos_177 178,178,2019-04-17 18:34:48-07:00,2019-04-17 18:34:48-07:00,"""Speaking Under the Sea""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1161,"{'objects': ['Public speaking', 'Deep-submergence vehicle', 'Presentation', 'Marine biology', 'Marine invertebrates', ""ocean floor, sea floor, ocean bottom, seabed, sea bottom, Davy Jones's locker, Davy Jones"", 'projection', 'submersible', 'front projector', 'sea pen'], 'places': ['ocean deep underwater', 'ocean', 'iceberg', 'ice shelf', 'aquarium'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7131.HEIC.compressed.jpg,photos_178 179,179,2019-04-18 09:25:03-07:00,2019-04-18 09:25:03-07:00,"""A stark reminder of our waste.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1157,"{'objects': ['Presentation', 'Public speaking', 'Offshore drilling', 'Speech', 'Event', 'projection', 'social scientist', 'representation', 'stacks', 'scientist'], 'places': ['landfill', 'ocean', 'auditorium', 'outdoor stage', 'wind farm'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7134.HEIC.compressed.jpg,photos_179 180,180,2019-04-18 11:48:54-07:00,2019-04-18 11:48:54-07:00,"""Speaking to the crowd.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896083,-123.1156611,"{'objects': ['Public speaking', 'Presentation', 'Projection screen', 'Stage', 'Speech', 'stage', 'Speaker', 'background, desktop, screen background', 'projection', 'slacks'], 'places': ['indoor stage', 'auditorium', 'outdoor stage', 'performance arena', 'conference room'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7138.HEIC.compressed.jpg,photos_180 181,181,2019-04-18 12:29:21-07:00,2019-04-18 12:29:21-07:00,"""Complete the setup.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2887917,-123.11611109999998,"{'objects': ['Hardware accessory', 'Mobile phone accessories', 'Presentation', 'Flash memory', 'Router', 'connection, connexion, connector, connecter, connective', 'read-only memory, ROM, read-only storage, fixed storage', 'dongle', 'flash memory', 'router'], 'places': ['home theater', 'performance arena', 'indoor stage', 'assembly line', 'computer room'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7142.HEIC.compressed.jpg,photos_181 182,182,2019-04-18 16:25:56-07:00,2019-04-18 16:25:56-07:00,"""Learning to communicate effectively.""","Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881972,-123.1155778,"{'objects': ['Public speaking', 'Academic conference', 'Seminar', 'Social group', 'Class', 'crucible, melting pot', 'speaker, talker, utterer, verbalizer, verbaliser', 'orator, speechmaker, rhetorician, public speaker, speechifier', 'choir', 'hijab'], 'places': ['classroom', 'conference room', 'auditorium', 'conference center', 'lobby'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7143.HEIC.compressed.jpg,photos_182 183,183,2019-04-18 17:10:13-07:00,2019-04-18 17:10:13-07:00,"""Aerialist in flight.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2893528,-123.11579999999998,"{'objects': ['Aerialist', 'Trapeze', 'Static trapeze', 'Flying trapeze', 'Stunt', 'aerialist', 'trapeze', 'acrobat', 'circus acrobat', 'stunt'], 'places': ['performance arena', 'indoor stage', 'indoor hangar', 'auditorium', 'arch'], 'tags': ['animal']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7147.HEIC.compressed.jpg,photos_183 184,184,2019-04-19 11:21:20-07:00,2019-04-19 11:21:20-07:00,"""Speaking to the crowd.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896694,-123.1161028,"{'objects': ['Public speaking', 'Singing', 'Stage', 'Concert', 'Performance', 'stage', 'auditorium', 'cardioid microphone', 'gig', 'speaker, talker, utterer, verbalizer, verbaliser'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'amphitheater'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7153.HEIC.compressed.jpg,photos_184 185,185,2019-04-19 11:22:29-07:00,2019-04-19 11:22:29-07:00,"""Speaking to the crowd.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897194,-123.1159972,"{'objects': ['Public speaking', 'Singing', 'Stage', 'Performance', 'Conformation show', 'stage', 'Mountie', 'choir', 'cowboy hat, ten-gallon hat', 'gig'], 'places': ['indoor stage', 'performance arena', 'outdoor stage', 'auditorium', 'corral'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7154.HEIC.compressed.jpg,photos_185 186,186,2019-04-19 11:34:21-07:00,2019-04-19 11:34:21-07:00,"""Ready to present!""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896806,-123.1160278,"{'objects': ['Presentation', 'Event', 'Public speaking', 'Conference hall', 'Broadcasting', 'broadcasting', 'speaker, talker, utterer, verbalizer, verbaliser', 'stage', 'television, telecasting, TV, video', 'auditorium'], 'places': ['auditorium', 'indoor stage', 'outdoor stage', 'performance arena', 'conference center'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7155.HEIC.compressed.jpg,photos_186 187,187,2019-04-19 11:37:25-07:00,2019-04-19 11:37:25-07:00,"""Ready to present!""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897222,-123.1160056,"{'objects': ['Presentation', 'Public speaking', 'Award ceremony', 'Event', 'Conference hall', 'display, video display', 'stage', 'projection', 'broadcasting', 'video recording, video'], 'places': ['indoor stage', 'auditorium', 'performance arena', 'conference center', 'outdoor stage'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7156.HEIC.compressed.jpg,photos_187 188,188,2019-04-19 11:38:46-07:00,2019-04-19 11:38:46-07:00,"""Speaking to a crowd.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.28954720000001,-123.1160139,"{'objects': ['Public speaking', 'Presentation', 'Event', 'Audience', 'Stage', 'projection', 'stage', 'auditorium', 'display, video display', 'speaker, talker, utterer, verbalizer, verbaliser'], 'places': ['auditorium', 'indoor stage', 'performance arena', 'public atrium', 'outdoor stage'], 'tags': ['animal']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7157.HEIC.compressed.jpg,photos_188 189,189,2019-04-19 11:39:45-07:00,2019-04-19 11:39:45-07:00,"""Speaking to a crowd.""","Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.28975,-123.1159056,"{'objects': ['Public speaking', 'Presentation', 'Auditorium', 'Conference hall', 'Award ceremony', 'auditorium', 'speaker, talker, utterer, verbalizer, verbaliser', 'stage', 'projection', 'broadcasting'], 'places': ['auditorium', 'indoor stage', 'performance arena', 'conference center', 'public atrium'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7158.HEIC.compressed.jpg,photos_189 190,190,2019-04-20 11:12:11-07:00,2019-04-20 11:12:11-07:00,"""Luxury at its finest.""","Old School Iron, 3928, Business Park Drive, Western Business Park, Amarillo, Randall County, Texas, 79110, United States",35.14413922100794,-101.87999029728296,"{'objects': ['Tesla bluestar', 'Tesla', 'Musk', 'Tesla roadster', 'Electric car', 'copilot, co-pilot', 'electric, electric automobile, electric car', 'tourist, tourer, holidaymaker', 'fjord, fiord', 'dashboard, fascia'], 'places': ['car interior', 'wind farm', 'crevasse', 'desert road', 'cockpit'], 'tags': ['vehicle']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7161.HEIC.compressed.jpg,photos_190 191,191,2019-04-20 13:02:58-07:00,2019-04-20 13:02:58-07:00,"""Fragrant beauty in the formal garden.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03744471122455,-101.90857274320028,"{'objects': ['Fernleaf lavender', 'English lavender', 'French lavender', 'Aubretia', 'Garden phlox', 'purple sage, chaparral sage, Salvia leucophylla', 'blazing star, Mentzelia livicaulis, Mentzelia laevicaulis', 'wild sage, wild clary, vervain sage, Salvia verbenaca', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'common sage, ramona, Salvia officinalis'], 'places': ['formal garden', 'zen garden', 'driveway', 'yard', 'patio'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7162.HEIC.compressed.jpg,photos_191 192,192,2019-04-20 14:04:32-07:00,2019-04-20 14:04:32-07:00,"""Grab and go!""","2966, Greg Street, Randall County, Texas, 79015, United States",35.0374716220337,-101.90854823686712,"{'objects': ['Energy bar', 'Trail mix', 'Animal source foods', 'Spread', 'Whole food', 'bite, collation, snack', 'packet', 'grab bag', 'spread, paste', 'candy bar'], 'places': ['pantry', 'candy store', 'bar', 'assembly line', 'archive'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7163.HEIC.compressed.jpg,photos_192 193,193,2019-04-20 17:58:49-07:00,2019-04-20 17:58:49-07:00,"""Medical care in progress.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037502558193225,-101.90861030240296,"{'objects': ['Invoice', 'Document', 'Letter', 'Receipt', 'Health care', 'envelope', 'envelope', 'envelope', 'envelope, gasbag', 'mailer'], 'places': ['hospital', 'hospital room', 'manufactured home', 'jail cell', 'hotel room'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7164.HEIC.compressed.jpg,photos_193 194,194,2019-04-20 17:58:54-07:00,2019-04-20 17:58:54-07:00,"""Medical care in progress.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037479361440695,-101.90860249859033,"{'objects': ['Invoice', 'Voucher', 'Receipt', 'Document', 'Letter', 'envelope', 'envelope', 'envelope', 'Spam', 'policyholder'], 'places': ['hospital room', 'hospital', 'hotel room', 'manufactured home', 'motel'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7165.HEIC.compressed.jpg,photos_194 195,195,2019-04-21 10:33:26-07:00,2019-04-21 10:33:26-07:00,"""A splash of color in the woods.""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03766621283866,-101.90862552359462,"{'objects': ['Sweet pepperbush', 'Spirea', 'Viburnum prunifolium', 'Groundcover', 'Subshrub', 'blueberry, blueberry bush', 'flowering shrub', 'blue pimpernel, blue skullcap, mad-dog skullcap, mad-dog weed, Scutellaria lateriflora', 'Oregon grape, Oregon holly grape, hollygrape, mountain grape, holly-leaves barberry, Mahonia aquifolium', 'spirea, spiraea'], 'places': ['broadleaf forest', 'lawn', 'yard', 'botanical garden', 'vegetation desert'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7166.HEIC.compressed.jpg,photos_195 196,196,2019-04-21 11:39:34-07:00,2019-04-21 11:39:34-07:00,"""California Buckeye in bloom""","2964, Greg Street, Randall County, Texas, 79015, United States",35.03732577553836,-101.9088371496824,"{'objects': ['Aesculus californica', 'Smoketree', 'Parlour maple', 'Garden', 'Prunus spinosa', 'Japanese maple, full moon maple, Acer japonicum', 'red maple, scarlet maple, swamp maple, Acer rubrum', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'copper beech, purple beech, Fagus sylvatica atropunicea, Fagus purpurea, Fagus sylvatica purpurea', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata'], 'places': ['japanese garden', 'zen garden', 'formal garden', 'roof garden', 'yard'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7167.HEIC.compressed.jpg,photos_196 197,197,2019-04-21 11:39:50-07:00,2019-04-21 11:39:50-07:00,"""California Buckeye in bloom""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03747303895704,-101.90859688456833,"{'objects': ['Aesculus californica', 'Smoketree', 'Redbud', 'Wisteria', 'California lilac', 'Japanese maple, full moon maple, Acer japonicum', 'smoke tree, smoke bush', 'scarlet wisteria tree, vegetable hummingbird, Sesbania grandiflora', 'redbud, Cercis canadensis', 'Japanese wistaria, Wisteria floribunda'], 'places': ['japanese garden', 'zen garden', 'yard', 'botanical garden', 'formal garden'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7168.HEIC.compressed.jpg,photos_197 198,198,2019-04-21 11:41:20-07:00,2019-04-21 11:41:20-07:00,"""Beautiful smoketree in the yard.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03744678293821,-101.90867801416366,"{'objects': ['Smoketree', 'Aesculus californica', 'Parlour maple', 'Crape myrtle', 'Silver Maple', 'Japanese maple, full moon maple, Acer japonicum', 'smoke tree, smoke bush', 'red maple, scarlet maple, swamp maple, Acer rubrum', 'Oregon maple, big-leaf maple, Acer macrophyllum', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua'], 'places': ['yard', 'driveway', 'japanese garden', 'porch', 'house'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7169.HEIC.compressed.jpg,photos_198 199,199,2019-04-21 11:41:39-07:00,2019-04-21 11:41:39-07:00,"""Beautiful smoketree in the driveway.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03745391049196,-101.90858260799229,"{'objects': ['Smoketree', 'Aesculus californica', 'Maple', 'Parlour maple', 'Black maple', 'Japanese maple, full moon maple, Acer japonicum', 'red maple, scarlet maple, swamp maple, Acer rubrum', 'Oregon maple, big-leaf maple, Acer macrophyllum', 'smoke tree, smoke bush', 'California box elder, Acer negundo Californicum'], 'places': ['driveway', 'yard', 'house', 'japanese garden', 'lawn'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7170.HEIC.compressed.jpg,photos_199 200,200,2019-04-23 08:14:56-07:00,2019-04-23 08:14:56-07:00,"""Fragrant beauty.""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03756368984783,-101.90861829943243,"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'Lavandula dentata', 'English lavender', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'purple sage, chaparral sage, Salvia leucophylla', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['driveway', 'patio', 'zen garden', 'yard', 'mountain path'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7173-EFFECTS.jpg.compressed.jpg,photos_200 201,201,2019-04-23 08:14:55-07:00,2019-04-23 08:14:55-07:00,"""Fragrant beauty.""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03756368984783,-101.90861829943243,"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'Lavandula dentata', 'Egyptian lavender', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'purple sage, chaparral sage, Salvia leucophylla', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['driveway', 'patio', 'yard', 'zen garden', 'lawn'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7173.HEIC.compressed.jpg,photos_201 202,202,2019-04-23 12:25:08-07:00,2019-04-23 12:25:08-07:00,Grocery shopping done!,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03745841888442,-101.90857329064792,"{'objects': ['Receipt', 'Coupon', 'Shopping list', 'Nutrition facts label', 'Voucher', 'checkout, checkout counter', 'bite, collation, snack', 'grocery bag', 'cash register, register', 'smoothie'], 'places': ['supermarket', 'drugstore', 'delicatessen', 'pantry', 'cafeteria'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7175.HEIC.compressed.jpg,photos_202 203,203,2019-04-24 18:32:53-07:00,2019-04-24 18:32:53-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0619556,-112.1084528,"{'objects': ['Canyon', 'National park', 'Geographical feature', 'State park', 'Landform', 'overlook', 'canyon, canon', 'precipice', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['canyon', 'butte', 'valley', 'crevasse', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7176.HEIC.compressed.jpg,photos_203 204,204,2019-04-24 18:35:19-07:00,2019-04-24 18:35:19-07:00,"""Awe-inspiring beauty.""","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088944,"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'Geographical feature', 'Panorama', 'precipice', 'overlook', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'canyon, canon', 'chasm'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7177.HEIC.compressed.jpg,photos_204 205,205,2019-04-24 18:35:28-07:00,2019-04-24 18:35:28-07:00,"""Awe-inspiring beauty.""","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621722,-112.1088861,"{'objects': ['Canyon', 'National park', 'Panorama', 'Geographical feature', 'Geological phenomenon', 'overlook', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'canyon, canon', 'precipice', 'chasm'], 'places': ['canyon', 'crevasse', 'butte', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7178.HEIC.compressed.jpg,photos_205 206,206,2019-04-24 18:35:38-07:00,2019-04-24 18:35:38-07:00,"""Awe-inspiring beauty.""","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621722,-112.1088778,"{'objects': ['Canyon', 'National park', 'Landform', 'Geological phenomenon', 'Panorama', 'geological formation, formation', 'ridge', 'butte', 'moraine', 'peak, crown, crest, top, tip, summit'], 'places': ['canyon', 'butte', 'mountain', 'crevasse', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7179.HEIC.compressed.jpg,photos_206 207,207,2019-04-24 18:43:55-07:00,2019-04-24 18:43:55-07:00,"""Awe-inspiring beauty.""","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062125,-112.1087889,"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Landform', 'Geological phenomenon', 'canyon, canon', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'overlook', 'precipice', 'butte'], 'places': ['canyon', 'butte', 'cliff', 'valley', 'crevasse'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7186.HEIC.compressed.jpg,photos_207 208,208,2019-04-24 18:45:25-07:00,2019-04-24 18:45:25-07:00,"""Awe-inspiring beauty.""","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0620833,-112.1088639,"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Geological phenomenon', 'Eagle summit', 'overlook', 'canyon, canon', 'precipice', 'chasm', 'gorge'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7187.HEIC.compressed.jpg,photos_208 209,209,2019-04-24 18:50:35-07:00,2019-04-24 18:50:35-07:00,"""Awe-inspiring beauty.""","Grand Canyon, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0629583,-112.1095972,"{'objects': ['Canyon', 'National park', 'Landform', 'Geographical feature', 'Geology', 'canyon, canon', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'precipice', 'overlook', 'geological formation, formation'], 'places': ['canyon', 'butte', 'cliff', 'valley', 'crevasse'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7189.HEIC.compressed.jpg,photos_209 210,210,2019-04-24 18:52:17-07:00,2019-04-24 18:52:17-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0626,-112.1107639,"{'objects': ['Canyon', 'National park', 'State park', 'Arizona Cypress', 'Outcrop', 'canyon, canon', 'overlook', 'ridge', 'gorge', 'precipice'], 'places': ['canyon', 'butte', 'vegetation desert', 'valley', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7190-EFFECTS.jpg.compressed.jpg,photos_210 211,211,2019-04-24 18:52:16-07:00,2019-04-24 18:52:16-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0626,-112.1107639,"{'objects': ['Canyon', 'National park', 'Ridge', 'State park', 'Arizona Cypress', 'overlook', 'canyon, canon', 'ridge', 'ridge, ridgeline', 'butte'], 'places': ['canyon', 'butte', 'vegetation desert', 'valley', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7190.HEIC.compressed.jpg,photos_211 212,212,2019-04-24 18:55:48-07:00,2019-04-24 18:55:48-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632028,-112.1114972,"{'objects': ['Canyon', 'National park', 'State park', 'Panorama', 'Geological phenomenon', 'overlook', 'canyon, canon', 'precipice', 'gorge', 'chasm'], 'places': ['canyon', 'butte', 'crevasse', 'valley', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7191.HEIC.compressed.jpg,photos_212 213,213,2019-04-24 18:55:59-07:00,2019-04-24 18:55:59-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0633083,-112.1118083,"{'objects': ['Canyon', 'National park', 'Panorama', 'Geographical feature', 'Geological phenomenon', 'overlook', 'canyon, canon', 'precipice', 'geological formation, formation', 'gorge'], 'places': ['canyon', 'butte', 'cliff', 'valley', 'crevasse'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7192.HEIC.compressed.jpg,photos_213 214,214,2019-04-24 18:59:17-07:00,2019-04-24 18:59:17-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,"{'objects': ['Canyon', 'Kaibab Squirrel', 'California condor', 'Dog hiking', 'National park', 'overlook', 'California condor, Gymnogyps californianus', 'precipice', 'kachina', 'chasm'], 'places': ['canyon', 'cliff', 'butte', 'valley', 'crevasse'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7193.HEIC.compressed.jpg,photos_214 215,215,2019-04-24 18:59:23-07:00,2019-04-24 18:59:23-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'State park', 'Geographical feature', 'overlook', 'canyon, canon', 'gorge', 'precipice', 'chasm'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7194.HEIC.compressed.jpg,photos_215 216,216,2019-04-24 18:59:30-07:00,2019-04-24 18:59:30-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,"{'objects': ['Canyon', 'National park', 'State park', 'Geological phenomenon', 'Geology', 'overlook', 'canyon, canon', 'gorge', 'precipice', 'chasm'], 'places': ['canyon', 'butte', 'cliff', 'valley', 'rock arch'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7195.HEIC.compressed.jpg,photos_216 217,217,2019-04-24 19:06:22-07:00,2019-04-24 19:06:22-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0645306,-112.1132667,"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'State park', 'Geographical feature', 'overlook', 'canyon, canon', 'precipice', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7196.HEIC.compressed.jpg,photos_217 218,218,2019-04-24 19:07:27-07:00,2019-04-24 19:07:27-07:00,"""A new day dawns.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0644083,-112.1134722,"{'objects': ['Sunrise', 'Canyon', 'Two needle pinyon pine', 'Western juniper', 'National park', 'overlook', 'descent, declivity, fall, decline, declination, declension, downslope', 'gorge', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'table-mountain pine, prickly pine, hickory pine, Pinus pungens'], 'places': ['canyon', 'valley', 'cliff', 'butte', 'campsite'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7197.HEIC.compressed.jpg,photos_218 219,219,2019-04-24 19:10:19-07:00,2019-04-24 19:10:19-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0649139,-112.1152111,"{'objects': ['Canyon', 'National park', 'Panorama', 'State park', 'Geological phenomenon', 'canyon, canon', 'overlook', 'gorge', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'butte', 'cliff', 'crevasse', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7198.HEIC.compressed.jpg,photos_219 220,220,2019-04-24 19:10:24-07:00,2019-04-24 19:10:24-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0649139,-112.1152111,"{'objects': ['Canyon', 'National park', 'Panorama', 'State park', 'Granite dome', 'canyon, canon', 'overlook', 'wraparound', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'moraine'], 'places': ['canyon', 'butte', 'cliff', 'crevasse', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7199.HEIC.compressed.jpg,photos_220 221,221,2019-04-24 19:13:51-07:00,2019-04-24 19:13:51-07:00,"""Awe-inspiring beauty.""","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.065675,-112.1167972,"{'objects': ['Canyon', 'National park', 'Western juniper', 'Arizona Cypress', 'Two needle pinyon pine', 'overlook', 'precipice', 'chasm', 'canyon, canon', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['canyon', 'crevasse', 'butte', 'cliff', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7200.HEIC.compressed.jpg,photos_221 222,222,2019-04-24 19:13:55-07:00,2019-04-24 19:13:55-07:00,"""Awe-inspiring beauty.""","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.065675,-112.1167972,"{'objects': ['Canyon', 'National park', 'Western juniper', 'State park', 'Red juniper', 'overlook', 'precipice', 'chasm', 'wilderness, wild', 'canyon, canon'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7201.HEIC.compressed.jpg,photos_222 223,223,2019-04-24 19:15:23-07:00,2019-04-24 19:15:23-07:00,"""Awe-inspiring beauty.""","Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0595167,-112.11605,"{'objects': ['Canyon', 'Sunrise', 'Panorama', 'National park', 'Sunset', 'overlook', 'descent, declivity, fall, decline, declination, declension, downslope', 'canyon, canon', 'cliff dwelling', 'geographic point, geographical point'], 'places': ['canyon', 'butte', 'valley', 'crevasse', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7202.HEIC.compressed.jpg,photos_223 224,224,2019-04-24 19:21:41-07:00,2019-04-24 19:21:41-07:00,"""Awe-inspiring beauty.""","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0658417,-112.1168139,"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'Panorama', 'Geology', 'overlook', 'precipice', 'canyon, canon', 'gorge', 'chasm'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7221.HEIC.compressed.jpg,photos_224 225,225,2019-04-24 19:21:48-07:00,2019-04-24 19:21:48-07:00,"""Awe-inspiring beauty.""","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'Geographical feature', 'Geology', 'overlook', 'precipice', 'canyon, canon', 'chasm', 'gorge'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7222.HEIC.compressed.jpg,photos_225 226,226,2019-04-25 05:37:52-07:00,2019-04-25 05:37:52-07:00,"""Awe-inspiring beauty.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602028,-112.1063833,"{'objects': ['Canyon', 'Sunrise', 'Sunset', 'Dawn', 'Horizon', 'descent, declivity, fall, decline, declination, declension, downslope', 'canyon, canon', 'overlook', 'precipice', 'gorge'], 'places': ['canyon', 'butte', 'crevasse', 'valley', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7223.HEIC.compressed.jpg,photos_226 227,227,2019-04-25 05:39:19-07:00,2019-04-25 05:39:19-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0610167,-112.1069806,"{'objects': ['Canyon', 'Sunrise', 'Panorama', 'National park', 'Sunset', 'overlook', 'descent, declivity, fall, decline, declination, declension, downslope', 'canyon, canon', 'gorge', 'chasm'], 'places': ['canyon', 'crevasse', 'valley', 'butte', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7224.HEIC.compressed.jpg,photos_227 228,228,2019-04-25 05:41:32-07:00,2019-04-25 05:41:32-07:00,"""Awe-inspiring beauty.""","Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0591917,-112.1162806,"{'objects': ['Canyon', 'Sunrise', 'Dawn', 'Sunset', 'Panorama', 'overlook', 'canyon, canon', 'descent, declivity, fall, decline, declination, declension, downslope', 'peak, crown, crest, top, tip, summit', 'gorge'], 'places': ['canyon', 'butte', 'valley', 'mountain', 'crevasse'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7225.HEIC.compressed.jpg,photos_228 229,229,2019-04-25 05:43:36-07:00,2019-04-25 05:43:36-07:00,"""Awe-inspiring beauty.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601278,-112.1067583,"{'objects': ['Canyon', 'Sunrise', 'Lens flare', 'National park', 'Dawn', 'overlook', 'canyon, canon', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'descent, declivity, fall, decline, declination, declension, downslope', 'mount, setting'], 'places': ['canyon', 'valley', 'butte', 'cliff', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7230.HEIC.compressed.jpg,photos_229 230,230,2019-04-25 05:43:42-07:00,2019-04-25 05:43:42-07:00,"""A new day dawns.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.1067111,"{'objects': ['Sunrise', 'Canyon', 'Lens flare', 'Panorama', 'Sundowner', 'overlook', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'canyon, canon', 'descent, declivity, fall, decline, declination, declension, downslope', 'peak, crown, crest, top, tip, summit'], 'places': ['canyon', 'valley', 'butte', 'crevasse', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7231.HEIC.compressed.jpg,photos_230 231,231,2019-04-25 05:44:01-07:00,2019-04-25 05:44:01-07:00,"""A new day dawns.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601667,-112.1066806,"{'objects': ['Sunrise', 'Lens flare', 'Sundowner', 'Eagle summit', 'Canyon', 'peak, crown, crest, top, tip, summit', 'overlook', 'canyon, canon', 'ridge', 'calash, caleche, calash top'], 'places': ['canyon', 'butte', 'valley', 'mountain', 'crevasse'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7234.HEIC.compressed.jpg,photos_231 232,232,2019-04-25 05:44:16-07:00,2019-04-25 05:44:16-07:00,"""A burst of light in the canyon.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,"{'objects': ['Lens flare', 'Sundowner', 'Sunrise', 'Eagle summit', 'Panorama', 'rundle, spoke, rung', 'peak, crown, crest, top, tip, summit', 'canyon, canon', 'South African', 'mount, setting'], 'places': ['canyon', 'valley', 'mountain', 'butte', 'crevasse'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7235.HEIC.compressed.jpg,photos_232 233,233,2019-04-25 05:44:18-07:00,2019-04-25 05:44:18-07:00,"""A new day dawns.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,"{'objects': ['Sunrise', 'Lens flare', 'Canyon', 'Sunset', 'Sundowner', 'sun, Sun', 'overlook', 'parhelion, mock sun, sundog', 'canyon, canon', 'aperture'], 'places': ['canyon', 'crevasse', 'valley', 'butte', 'mountain'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7236.HEIC.compressed.jpg,photos_233 234,234,2019-04-25 05:44:23-07:00,2019-04-25 05:44:23-07:00,"""A burst of light in the canyon.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,"{'objects': ['Lens flare', 'Sunrise', 'Canyon', 'Sundowner', 'Sunset', 'overlook', 'canyon, canon', 'cliff, drop, drop-off', 'gorge', 'precipice'], 'places': ['canyon', 'butte', 'valley', 'cliff', 'mountain'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7237.HEIC.compressed.jpg,photos_234 235,235,2019-04-25 05:45:05-07:00,2019-04-25 05:45:05-07:00,"""A new day dawns.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601472,-112.106575,"{'objects': ['Sunrise', 'Canyon', 'Sunset', 'Lens flare', 'Eagle summit', 'overlook', 'gorge', 'descent, declivity, fall, decline, declination, declension, downslope', 'canyon, canon', 'precipice'], 'places': ['canyon', 'crevasse', 'valley', 'cliff', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7238.HEIC.compressed.jpg,photos_235 236,236,2019-04-25 05:46:17-07:00,2019-04-25 05:46:17-07:00,"""A new day dawns.""","Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0592583,-112.1160139,"{'objects': ['Sunrise', 'Sundowner', 'Lens flare', 'Wadi', 'Alpine aster', 'canyon, canon', 'South African', 'overlook', 'gorge', 'sun, Sun'], 'places': ['canyon', 'valley', 'butte', 'badlands', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7239.HEIC.compressed.jpg,photos_236 237,237,2019-04-25 05:46:26-07:00,2019-04-25 05:46:26-07:00,"""A new day dawns.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0603056,-112.1064694,"{'objects': ['Sunrise', 'Eagle summit', 'Lens flare', 'Sunset', 'Summit', 'whitebark pine, whitebarked pine, Pinus albicaulis', 'bill, peak, eyeshade, visor, vizor', 'bristlecone pine, Rocky Mountain bristlecone pine, Pinus aristata', 'peak, crown, crest, top, tip, summit', 'alpinist'], 'places': ['canyon', 'valley', 'mountain', 'butte', 'badlands'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7240.HEIC.compressed.jpg,photos_237 238,238,2019-04-25 05:47:17-07:00,2019-04-25 05:47:17-07:00,"""Awe-inspiring beauty.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602528,-112.1067361,"{'objects': ['Canyon', 'National park', 'Cliff dwelling', 'Cliff', 'Panorama', 'overlook', 'precipice', 'cliff dwelling', 'chasm', 'canyon, canon'], 'places': ['canyon', 'cliff', 'crevasse', 'butte', 'mountain path'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7241.HEIC.compressed.jpg,photos_238 239,239,2019-04-25 05:47:39-07:00,2019-04-25 05:47:39-07:00,"""A new day dawns.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,"{'objects': ['Sunrise', 'Lens flare', 'Canyon', 'Sunset', 'Corona', 'overlook', 'gorge', 'canyon, canon', 'precipice', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['canyon', 'valley', 'cliff', 'crevasse', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7242.HEIC.compressed.jpg,photos_239 240,240,2019-04-25 05:47:50-07:00,2019-04-25 05:47:50-07:00,"""A new day dawns.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,"{'objects': ['Sunrise', 'Canyon', 'Lens flare', 'Sunset', 'Panorama', 'overlook', 'canyon, canon', 'gorge', 'sun, Sun', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['canyon', 'valley', 'crevasse', 'rock arch', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7243-EFFECTS.jpg.compressed.jpg,photos_240 241,241,2019-04-25 05:47:49-07:00,2019-04-25 05:47:49-07:00,"""Awe-inspiring beauty.""","Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,"{'objects': ['Canyon', 'Sunrise', 'Lens flare', 'Sunset', 'National park', 'overlook', 'gorge', 'canyon, canon', 'descent, declivity, fall, decline, declination, declension, downslope', 'precipice'], 'places': ['canyon', 'valley', 'crevasse', 'cliff', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7243.HEIC.compressed.jpg,photos_241 242,242,2019-04-25 05:54:16-07:00,2019-04-25 05:54:16-07:00,"""Majestic Elk""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0616194,-112.1087111,"{'objects': ['Elk', 'Bighorn', 'Barbary sheep', 'Feral goat', 'Grazing', 'wapiti, elk, American elk, Cervus elaphus canadensis', 'aoudad, arui, audad, Barbary sheep, maned sheep, Ammotragus lervia', 'mule deer, burro deer, Odocoileus hemionus', 'red deer, elk, American elk, wapiti, Cervus elaphus', 'elk, European elk, moose, Alces alces'], 'places': ['pasture', 'campsite', 'park', 'outdoor museum', 'butte'], 'tags': ['animal']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7244.HEIC.compressed.jpg,photos_242 243,243,2019-04-25 05:54:36-07:00,2019-04-25 05:54:36-07:00,"""Enjoying the view.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0616417,-112.1086056,"{'objects': ['Grazing', 'Elk', 'Arabian camel', 'Camel', 'Bighorn', 'camel', 'Arabian camel, dromedary, Camelus dromedarius', 'wapiti, elk, American elk, Cervus elaphus canadensis', 'red deer, elk, American elk, wapiti, Cervus elaphus', 'bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis'], 'places': ['driveway', 'corral', 'watering hole', 'park', 'outdoor diner'], 'tags': ['animal']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7245.HEIC.compressed.jpg,photos_243 244,244,2019-04-25 05:59:41-07:00,2019-04-25 05:59:41-07:00,"""Awe-inspiring beauty.""","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0623139,-112.1087639,"{'objects': ['Canyon', 'Sunrise', 'National park', 'Eagle summit', 'Lens flare', 'overlook', 'canyon, canon', 'gorge', 'descent, declivity, fall, decline, declination, declension, downslope', 'ridge'], 'places': ['canyon', 'valley', 'cliff', 'mountain', 'crevasse'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7246.HEIC.compressed.jpg,photos_244 245,245,2019-04-25 06:10:13-07:00,2019-04-25 06:10:13-07:00,"""Awe-inspiring beauty.""","Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0593028,-112.1160444,"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Cinder cone', 'Geological phenomenon', 'overlook', 'precipice', 'chasm', 'canyon, canon', 'geographic point, geographical point'], 'places': ['canyon', 'crevasse', 'butte', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7247.HEIC.compressed.jpg,photos_245 246,246,2019-04-25 06:40:46-07:00,2019-04-25 06:40:46-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0647917,-112.1226056,"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Landform', 'Panorama', 'overlook', 'butte', 'precipice', 'moraine', 'geographic point, geographical point'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7248.HEIC.compressed.jpg,photos_246 247,247,2019-04-25 06:43:27-07:00,2019-04-25 06:43:27-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0648639,-112.12243610000002,"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Landform', 'Geological phenomenon', 'overlook', 'canyon, canon', 'moraine', 'butte', 'gorge'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7249.HEIC.compressed.jpg,photos_247 248,248,2019-04-25 07:03:31-07:00,2019-04-25 07:03:31-07:00,"""Nature's Artwork""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0581694,-112.1264333,"{'objects': ['Geological phenomenon', 'Geology', 'Rockfall', 'Poster board', 'Outcrop', 'geological formation, formation', 'sign', 'outcrop, outcropping, rock outcrop', 'poster, posting, placard, notice, bill, card', 'repository, monument'], 'places': ['cliff', 'canyon', 'outdoor museum', 'rock arch', 'badlands'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7250.HEIC.compressed.jpg,photos_248 249,249,2019-04-25 07:21:47-07:00,2019-04-25 07:21:47-07:00,"""Awe-inspiring beauty.""","1.5 Mile Resthouse, Bright Angel Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0590972,-112.1394972,"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Alluvial fan', 'Geological phenomenon', 'overlook', 'chasm', 'precipice', 'canyon, canon', 'moraine'], 'places': ['canyon', 'crevasse', 'butte', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7251.HEIC.compressed.jpg,photos_249 250,250,2019-04-25 07:27:41-07:00,2019-04-25 07:27:41-07:00,"""A peaceful view.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0573194,-112.1321556,"{'objects': ['Two needle pinyon pine', 'Arizona Cypress', 'Red juniper', 'Western juniper', 'Mexican pinyon', 'gymnospermous tree', 'shade tree', 'Arizona cypress, Cupressus arizonica', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'treelet'], 'places': ['canyon', 'butte', 'vegetation desert', 'cliff', 'crevasse'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7252.HEIC.compressed.jpg,photos_250 251,251,2019-04-25 07:27:43-07:00,2019-04-25 07:27:43-07:00,"""A peaceful view.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0573194,-112.1321556,"{'objects': ['Two needle pinyon pine', 'Arizona Cypress', 'Red juniper', 'Western juniper', 'Gambel oak', 'shade tree', 'gymnospermous tree', 'Arizona cypress, Cupressus arizonica', 'treelet', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa'], 'places': ['canyon', 'butte', 'crevasse', 'vegetation desert', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7253.HEIC.compressed.jpg,photos_251 252,252,2019-04-25 08:54:45-07:00,2019-04-25 08:54:45-07:00,"""Awe-inspiring beauty.""","Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0630694,-112.1239611,"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Cinder cone', 'Landform', 'overlook', 'canyon, canon', 'moraine', 'precipice', 'chasm'], 'places': ['canyon', 'crevasse', 'butte', 'valley', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7254.HEIC.compressed.jpg,photos_252 253,253,2019-04-25 14:38:48-07:00,2019-04-25 14:38:48-07:00,"""Nature's beauty.""","AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8663472,-111.7747417,"{'objects': ['Landscaping', 'Arizona Cypress', 'Panorama', 'Butte', 'Canyon', 'butte', 'dude ranch', 'outcrop, outcropping, rock outcrop', 'overlook', 'backyard'], 'places': ['butte', 'canyon', 'vegetation desert', 'outdoor church', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7261.HEIC.compressed.jpg,photos_253 254,254,2019-04-25 14:39:05-07:00,2019-04-25 14:39:05-07:00,"""Exploring nature's beauty.""","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8665167,-111.7749417,"{'objects': ['Landscaping', 'Canyon', 'Arizona Cypress', 'Panorama', 'State park', 'butte', 'dude ranch', 'overlook', 'mountainside, versant', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'butte', 'vegetation desert', 'mountain', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7262.HEIC.compressed.jpg,photos_254 255,255,2019-04-25 17:54:13-07:00,2019-04-25 17:54:13-07:00,"""A view of Butte from the Butte.""","Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535194,-111.7898167,"{'objects': ['Butte', 'Cinder cone', 'Granite dome', 'Volcanic plug', 'Organ pipe', 'butte', 'broken arch', 'overlook', 'tract, piece of land, piece of ground, parcel of land, parcel', 'geological formation, formation'], 'places': ['butte', 'valley', 'canyon', 'mountain', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7267.HEIC.compressed.jpg,photos_255 256,256,2019-04-25 18:01:35-07:00,2019-04-25 18:01:35-07:00,"""Awe-inspiring beauty.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8540111,-111.7882222,"{'objects': ['Canyon', 'Cliff dwelling', 'Butte', 'Valley', 'Promontory', 'cliff dwelling', 'broken arch', 'butte', 'tract, piece of land, piece of ground, parcel of land, parcel', 'overlook'], 'places': ['canyon', 'butte', 'valley', 'vegetation desert', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7268.HEIC.compressed.jpg,photos_256 257,257,2019-04-25 18:03:14-07:00,2019-04-25 18:03:14-07:00,"""Awe-inspiring beauty.""","322, Oak Creek Boulevard, Oak Creek Dev No. 1, Sedona, Yavapai County, Arizona, 86336, United States",34.8590389,-111.7877972,"{'objects': ['Canyon', 'Arizona Cypress', 'Cliff dwelling', 'Butte', ""Devil's bridge"", 'cliff dwelling', 'broken arch', 'butte', 'kachina', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'butte', 'vegetation desert', 'valley', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7269.HEIC.compressed.jpg,photos_257 258,258,2019-04-25 18:15:41-07:00,2019-04-25 18:15:41-07:00,"""Awe-inspiring beauty.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.855111099999995,-111.7809833,"{'objects': ['Canyon', 'Cinder cone', 'State park', 'Alluvial fan', 'Organ pipe', 'wilderness, wild', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'broken arch', 'tract, piece of land, piece of ground, parcel of land, parcel', 'kachina'], 'places': ['canyon', 'valley', 'vegetation desert', 'campsite', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7270.HEIC.compressed.jpg,photos_258 259,259,2019-04-25 18:22:55-07:00,2019-04-25 18:22:55-07:00,A breathtaking view.,"Brewer Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8564722,-111.7794333,"{'objects': ['Panorama', ""Colorado four o'clock"", 'Hiking', 'Cliff dwelling', 'Valley', 'overlook', 'cliff dwelling', 'butte', 'descent, declivity, fall, decline, declination, declension, downslope', 'cliff, drop, drop-off'], 'places': ['valley', 'butte', 'cliff', 'canyon', 'rock arch'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7271.HEIC.compressed.jpg,photos_259 260,260,2019-04-25 18:24:57-07:00,2019-04-25 18:24:57-07:00,"""Awe-inspiring beauty.""","Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States",34.8558583,-111.779075,"{'objects': ['Canyon', 'Cliff dwelling', ""Devil's bridge"", 'Cinder cone', 'Hiking', 'cliff dwelling', 'overlook', 'broken arch', 'outcrop, outcropping, rock outcrop', 'butte'], 'places': ['canyon', 'butte', 'valley', 'rock arch', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7273.HEIC.compressed.jpg,photos_260 261,261,2019-04-25 18:25:06-07:00,2019-04-25 18:25:06-07:00,"""Awe-inspiring beauty.""","Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States",34.8558528,-111.7791056,"{'objects': ['Canyon', 'Hiking', 'Cliff dwelling', 'Hiking boot', 'Valley', 'cliff dwelling', 'overlook', 'descent, declivity, fall, decline, declination, declension, downslope', 'broken arch', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'valley', 'rock arch', 'butte', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7274.HEIC.compressed.jpg,photos_261 262,262,2019-04-25 18:42:55-07:00,2019-04-25 18:42:55-07:00,"""A burst of color.""","2, Emblem Place, Sedona, Yavapai County, Arizona, 86336, United States",34.8613389,-111.7809306,"{'objects': ['Rainbow', 'Rainbow', 'Atmospheric phenomenon', ""Colorado four o'clock"", 'Rainbow smelt', 'broken arch', 'atmospheric phenomenon', 'madras', 'serape, sarape', 'butte'], 'places': ['canyon', 'butte', 'mountain', 'valley', 'arch'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7276.HEIC.compressed.jpg,photos_262 263,263,2019-04-25 18:43:03-07:00,2019-04-25 18:43:03-07:00,"""A burst of color.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.854675,-111.7834917,"{'objects': ['Rainbow', 'Rainbow', 'Three sisters', 'Atmospheric phenomenon', 'Natural arch', 'broken arch', 'atmospheric phenomenon', 'half-and-half', 'madras', 'beam'], 'places': ['canyon', 'rock arch', 'arch', 'valley', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7277.HEIC.compressed.jpg,photos_263 264,264,2019-04-25 18:43:05-07:00,2019-04-25 18:43:05-07:00,"""A burst of color.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546306,-111.7835833,"{'objects': ['Rainbow', 'Rainbow', 'Natural arch', 'Three sisters', 'Atmospheric phenomenon', 'broken arch', 'atmospheric phenomenon', 'madras', 'Moorish arch, horseshoe arch', 'windfall'], 'places': ['canyon', 'rock arch', 'valley', 'arch', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7278.HEIC.compressed.jpg,photos_264 265,265,2019-04-25 18:43:14-07:00,2019-04-25 18:43:14-07:00,"""A burst of color.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546972,-111.7836083,"{'objects': ['Rainbow', 'Rainbow', 'Geological phenomenon', ""Colorado four o'clock"", 'Canyon', 'broken arch', 'atmospheric phenomenon', 'cliff, drop, drop-off', 'soil horizon', 'canyon, canon'], 'places': ['canyon', 'valley', 'butte', 'rock arch', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7279.HEIC.compressed.jpg,photos_265 266,266,2019-04-25 18:43:22-07:00,2019-04-25 18:43:22-07:00,"""A burst of color.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546778,-111.7836,"{'objects': ['Rainbow', 'Rainbow', ""Colorado four o'clock"", 'Atmospheric phenomenon', 'Rainbow smelt', 'atmospheric phenomenon', 'broken arch', 'beam', 'madras', 'serape, sarape'], 'places': ['butte', 'rock arch', 'mountain', 'valley', 'arch'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7280.HEIC.compressed.jpg,photos_266 267,267,2019-04-25 18:43:39-07:00,2019-04-25 18:43:39-07:00,"""A burst of color.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546833,-111.7836389,"{'objects': ['Rainbow', 'Rainbow', 'Atmospheric phenomenon', 'Natural arch', 'Rainbow smelt', 'broken arch', 'atmospheric phenomenon', 'madras', 'kachina', 'soil horizon'], 'places': ['canyon', 'rock arch', 'valley', 'arch', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7281.HEIC.compressed.jpg,photos_267 268,268,2019-04-25 18:43:43-07:00,2019-04-25 18:43:43-07:00,"""A burst of color.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546667,-111.7836528,"{'objects': ['Rainbow', 'Rainbow', 'Atmospheric phenomenon', 'Natural arch', 'Rainbow smelt', 'broken arch', 'atmospheric phenomenon', 'madras', 'Moorish arch, horseshoe arch', 'beam'], 'places': ['canyon', 'rock arch', 'valley', 'arch', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7282.HEIC.compressed.jpg,photos_268 269,269,2019-04-25 18:43:58-07:00,2019-04-25 18:43:58-07:00,"""A burst of color.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546528,-111.7836528,"{'objects': ['Rainbow', 'Rainbow', 'Natural arch', 'Atmospheric phenomenon', 'State park', 'broken arch', 'atmospheric phenomenon', 'madras', 'soil horizon', 'kachina'], 'places': ['canyon', 'rock arch', 'valley', 'butte', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7283.HEIC.compressed.jpg,photos_269 270,270,2019-04-25 18:44:04-07:00,2019-04-25 18:44:04-07:00,"""A burst of color.""","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546722,-111.7836444,"{'objects': ['Rainbow', 'Rainbow', 'Atmospheric phenomenon', 'Natural arch', 'State park', 'broken arch', 'atmospheric phenomenon', 'madras', 'soil horizon', 'kachina'], 'places': ['canyon', 'rock arch', 'valley', 'butte', 'arch'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7284.HEIC.compressed.jpg,photos_270 271,271,2019-04-26 00:48:52+00:00,2019-04-26 00:48:52+00:00,"""A burst of color.""",Soul Buoy,0.0,0.0,"{'objects': ['Rainbow', 'Rainbow', 'Panorama', 'Canyon', 'Atmospheric phenomenon', 'broken arch', 'kachina', 'atmospheric phenomenon', 'butte', 'cliff dwelling'], 'places': ['canyon', 'valley', 'butte', 'rock arch', 'mountain'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7286.HEIC.compressed.jpg,photos_271 272,272,2019-04-25 18:53:16-07:00,2019-04-25 18:53:16-07:00,"""Awe-inspiring beauty.""","Airport Loop Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8557583,-111.7853917,"{'objects': ['Canyon', 'Panorama', 'Valley', 'Cliff dwelling', 'Butte', 'cliff dwelling', 'butte', 'mountainside, versant', 'tract, piece of land, piece of ground, parcel of land, parcel', 'kachina'], 'places': ['canyon', 'valley', 'butte', 'mountain', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7287.HEIC.compressed.jpg,photos_272 273,273,2019-04-25 18:56:35-07:00,2019-04-25 18:56:35-07:00,"""A burst of color.""","Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States",34.8538778,-111.7857056,"{'objects': ['Rainbow', 'Rainbow', ""Colorado four o'clock"", 'Atmospheric phenomenon', 'Butte', 'broken arch', 'atmospheric phenomenon', 'butte', 'madras', 'serape, sarape'], 'places': ['butte', 'rock arch', 'mountain', 'arch', 'canyon'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7288.HEIC.compressed.jpg,photos_273 274,274,2019-04-25 18:56:37-07:00,2019-04-25 18:56:37-07:00,"""A burst of color.""","Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States",34.8538778,-111.7857056,"{'objects': ['Rainbow', 'Rainbow', ""Colorado four o'clock"", 'Atmospheric phenomenon', 'Butte', 'broken arch', 'atmospheric phenomenon', 'butte', 'flagpole, flagstaff', 'madras'], 'places': ['butte', 'rock arch', 'canyon', 'arch', 'mountain'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7289.HEIC.compressed.jpg,photos_274 275,275,2019-04-25 19:01:34-07:00,2019-04-25 19:01:34-07:00,A breathtaking view.,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8537222,-111.7884833,"{'objects': ['Panorama', ""Devil's bridge"", 'Valley', 'Canyon', 'Narrows', 'wraparound', 'broken arch', 'butte', 'afterglow', 'valley, vale'], 'places': ['valley', 'canyon', 'butte', 'driveway', 'desert road'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7290.HEIC.compressed.jpg,photos_275 276,276,2019-04-25 19:08:31-07:00,2019-04-25 19:08:31-07:00,"""A majestic view.""","Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535111,-111.7897722,"{'objects': ['Arizona Cypress', 'Sunset', 'State park', 'Panorama', 'Canyon', 'atmospheric phenomenon', 'afterglow', 'broken arch', 'butte', 'wilderness, wild'], 'places': ['canyon', 'valley', 'butte', 'mountain', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7291.HEIC.compressed.jpg,photos_276 277,277,2019-04-25 19:08:41-07:00,2019-04-25 19:08:41-07:00,Exploring the beauty of nature.,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.85352780000001,-111.7897861,"{'objects': ['Panorama', 'Arizona Cypress', 'Canyon', 'Escarpment', 'Butte', 'wraparound', 'butte', 'broken arch', 'atmospheric phenomenon', 'kachina'], 'places': ['canyon', 'butte', 'valley', 'mountain', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7292.HEIC.compressed.jpg,photos_277 278,278,2019-04-25 19:08:56-07:00,2019-04-25 19:08:56-07:00,"""A majestic view of Arizona Cypress in the Butte.""","Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535167,-111.7897806,"{'objects': ['Arizona Cypress', 'Butte', 'Panorama', 'Canyon', 'Valley', 'butte', 'broken arch', 'tract, piece of land, piece of ground, parcel of land, parcel', 'overlook', 'outcrop, outcropping, rock outcrop'], 'places': ['butte', 'canyon', 'valley', 'mountain', 'vegetation desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7293.HEIC.compressed.jpg,photos_278 279,279,2019-04-26 10:42:14-07:00,2019-04-26 10:42:14-07:00,"""A peaceful moment in the garden.""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8646694,-111.8129722,"{'objects': ['Smoketree', 'Landscaping', 'Red juniper', 'Backyard', 'Patio', 'backyard', 'resort area, playground, vacation spot', 'overlook', 'yard', 'yard'], 'places': ['patio', 'yard', 'courtyard', 'vegetation desert', 'park'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7303.HEIC.compressed.jpg,photos_279 280,280,2019-04-26 15:57:32-06:00,2019-04-26 15:57:32-06:00,"""A journey through the desert.""","US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5476611,-111.6233278,"{'objects': ['Dirt road', 'Road', 'Road trip', 'Highway', 'Desert paintbrush', 'road, route', 'sagebrush, sage brush', 'driveway, drive, private road', 'trail', 'trail'], 'places': ['desert road', 'highway', 'canyon', 'field road', 'driveway'], 'tags': ['vehicle']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7308.HEIC.compressed.jpg,photos_280 281,281,2019-04-26 15:57:35-06:00,2019-04-26 15:57:35-06:00,Exploring the desert.,"US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5475528,-111.6231472,"{'objects': ['Canyon', 'Road trip', 'Dirt road', 'Desert paintbrush', 'American frontier', 'sagebrush, sage brush', 'dude ranch', 'horse-trail', 'road, route', 'butte'], 'places': ['desert road', 'canyon', 'butte', 'highway', 'badlands'], 'tags': ['vehicle']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7309.HEIC.compressed.jpg,photos_281 282,282,2019-04-26 15:58:00-06:00,2019-04-26 15:58:00-06:00,"""A journey through the desert.""","US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5475306,-111.6231222,"{'objects': ['Highway', 'Road trip', 'Road', 'Road surface', 'Panorama', 'road, route', 'divided highway, dual carriageway', 'asphalt', 'blacktop, blacktopping', 'sagebrush, sage brush'], 'places': ['desert road', 'highway', 'canyon', 'field road', 'butte'], 'tags': ['vehicle']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7310.HEIC.compressed.jpg,photos_282 283,283,2019-04-26 16:12:26-06:00,2019-04-26 16:12:26-06:00,"""A view of Butte from the Butte.""","US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607028,-111.6331472,"{'objects': ['Butte', 'Desert paintbrush', 'Canyon', 'Plateau', 'Algific talus slope', 'butte', 'ridge, ridgeline', 'geological formation, formation', 'outcrop, outcropping, rock outcrop', 'cliff dwelling'], 'places': ['butte', 'canyon', 'vegetation desert', 'cliff', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7311-EFFECTS.jpg.compressed.jpg,photos_283 284,284,2019-04-26 16:12:25-06:00,2019-04-26 16:12:25-06:00,"""A unique landscape.""","US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607028,-111.6331472,"{'objects': ['Algific talus slope', 'Butte', 'Desert paintbrush', 'Alluvial fan', 'Outcrop', 'butte', 'outcrop, outcropping, rock outcrop', 'ridge, ridgeline', 'geological formation, formation', 'cliff dwelling'], 'places': ['butte', 'canyon', 'vegetation desert', 'cliff', 'valley'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7311.HEIC.compressed.jpg,photos_284 285,285,2019-04-26 16:12:48-06:00,2019-04-26 16:12:48-06:00,"""A view of Butte from the Butte.""","US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607472,-111.6335361,"{'objects': ['Butte', 'Outcrop', 'Promontory', 'Cliff dwelling', 'Algific talus slope', 'butte', 'outcrop, outcropping, rock outcrop', 'cliff dwelling', 'geological formation, formation', 'ridge, ridgeline'], 'places': ['butte', 'cliff', 'canyon', 'rock arch', 'mountain'], 'tags': ['building']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7312.HEIC.compressed.jpg,photos_285 286,286,2019-04-26 23:24:16+00:00,2019-04-26 23:24:16+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Submarine canyon', 'Narrows', 'Natural arch', 'canyon, canon', 'gorge', 'geological formation, formation', 'broken arch', 'pothole, chuckhole'], 'places': ['canyon', 'crevasse', 'rock arch', 'cliff', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7313.HEIC.compressed.jpg,photos_286 287,287,2019-04-26 23:24:21+00:00,2019-04-26 23:24:21+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Natural arch', 'Canyoning', 'Submarine canyon', 'Narrows', 'canyon, canon', 'broken arch', 'gorge', 'geological formation, formation', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'arch', 'alcove'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7314.HEIC.compressed.jpg,photos_287 288,288,2019-04-26 23:25:46+00:00,2019-04-26 23:25:46+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Strata', 'Geological phenomenon', 'Submarine canyon', 'canyon, canon', 'geological formation, formation', 'broken arch', 'gorge', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'alcove'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7315.HEIC.compressed.jpg,photos_288 289,289,2019-04-26 22:25:50+00:00,2019-04-26 22:25:50+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Narrows', 'Natural arch', 'Submarine canyon', 'canyon, canon', 'gorge', 'broken arch', 'geological formation, formation', 'pothole, chuckhole'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'alcove'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7316-EFFECTS.jpg.compressed.jpg,photos_289 290,290,2019-04-26 22:25:49+00:00,2019-04-26 22:25:49+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Narrows', 'Submarine canyon', 'Natural arch', 'canyon, canon', 'broken arch', 'gorge', 'geological formation, formation', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'alcove', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7316.HEIC.compressed.jpg,photos_290 291,291,2019-04-26 22:25:52+00:00,2019-04-26 22:25:52+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Submarine canyon', 'Geological phenomenon', 'Narrows', 'canyon, canon', 'geological formation, formation', 'gorge', 'broken arch', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'sand desert', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7317-EFFECTS.jpg.compressed.jpg,photos_291 292,292,2019-04-26 22:25:51+00:00,2019-04-26 22:25:51+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Natural arch', 'Narrows', 'Submarine canyon', 'canyon, canon', 'broken arch', 'geological formation, formation', 'gorge', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'alcove'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7317.HEIC.compressed.jpg,photos_292 293,293,2019-04-26 22:35:51+00:00,2019-04-26 22:35:51+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Narrows', 'Submarine canyon', 'Geological phenomenon', 'canyon, canon', 'gorge', 'geological formation, formation', 'broken arch', 'chasm'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'alcove'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7322.HEIC.compressed.jpg,photos_293 294,294,2019-04-26 22:46:16+00:00,2019-04-26 22:46:16+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Submarine canyon', 'Natural arch', 'Alluvial fan', 'canyon, canon', 'geological formation, formation', 'gorge', 'broken arch', 'arroyo'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'sand desert'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7323.HEIC.compressed.jpg,photos_294 295,295,2019-04-26 22:46:21+00:00,2019-04-26 22:46:21+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Alluvial fan', 'Geological phenomenon', 'Dune', 'canyon, canon', 'geological formation, formation', 'dune, sand dune', 'background, desktop, screen background', 'gorge'], 'places': ['canyon', 'sand desert', 'crevasse', 'rock arch', 'desert road'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7324.HEIC.compressed.jpg,photos_295 296,296,2019-04-26 22:46:24+00:00,2019-04-26 22:46:24+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Alluvial fan', 'Submarine canyon', 'Dune', 'canyon, canon', 'geological formation, formation', 'dune, sand dune', 'gorge', 'arroyo'], 'places': ['canyon', 'crevasse', 'sand desert', 'rock arch', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7325.HEIC.compressed.jpg,photos_296 297,297,2019-04-26 22:47:48+00:00,2019-04-26 22:47:48+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Canyoning', 'Geological phenomenon', 'Submarine canyon', 'Erosion', 'canyon, canon', 'geological formation, formation', 'gorge', 'cavern', 'semidesert'], 'places': ['canyon', 'crevasse', 'sand desert', 'rock arch', 'alcove'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7326.HEIC.compressed.jpg,photos_297 298,298,2019-04-26 22:48:26+00:00,2019-04-26 22:48:26+00:00,Exploring the castle.,Soul Buoy,0.0,0.0,"{'objects': ['Estonian hound', 'Panorama', 'Baltic clam', 'Frikadeller', 'Houttuynia', 'battlement, crenelation, crenellation', 'Lithuanian', 'castle', 'vesture', 'bastion, citadel'], 'places': ['castle', 'downtown', 'tower', 'residential neighborhood', 'roof garden'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7327.HEIC.compressed.jpg,photos_298 299,299,2019-04-26 23:09:12+00:00,2019-04-26 23:09:12+00:00,Exploring history in the open air.,Soul Buoy,0.0,0.0,"{'objects': ['Open-air museum', 'Picture frame', 'Square', 'Enclosure', 'Digital photo frame', 'outside mirror', 'frame, framing', 'picture frame', 'square', 'square'], 'places': ['outdoor museum', 'park', 'botanical garden', 'outdoor library', 'yard'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7330.HEIC.compressed.jpg,photos_299 300,300,2019-04-26 23:09:13+00:00,2019-04-26 23:09:13+00:00,Caffeinated and ready to go.,Soul Buoy,0.0,0.0,"{'objects': ['Cortado', 'Espresso con panna', 'Flat white', 'Ristretto', 'Affogato', 'espresso', 'bite, collation, snack', 'sweet roll, coffee roll', 'cafe, coffeehouse, coffee shop, coffee bar', 'caffe latte, latte'], 'places': ['coffee shop', 'delicatessen', 'restaurant', 'shop bakery', 'restaurant kitchen'], 'tags': ['food']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7331.HEIC.compressed.jpg,photos_300 301,301,2019-04-26 18:04:06-07:00,2019-04-26 18:04:06-07:00,Harbor views for days.,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9951667,-111.4875333,"{'objects': ['Panorama', 'Narrows', 'Submarine canyon', 'State park', 'Cove', 'overlook', 'cove', 'cove', 'marina', 'bay'], 'places': ['harbor', 'campsite', 'canyon', 'lagoon', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7334.HEIC.compressed.jpg,photos_301 302,302,2019-04-27 08:00:20-07:00,2019-04-27 08:00:20-07:00,"""A tranquil desert oasis.""","Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9951528,-111.4876111,"{'objects': ['Dry lake', 'State park', 'Submarine canyon', 'Landform', 'Lacustrine plain', 'reservoir, artificial lake, man-made lake', 'butte', 'body of water, water', 'reservoir', 'lake'], 'places': ['butte', 'natural lake', 'watering hole', 'vegetation desert', 'golf course'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7335.HEIC.compressed.jpg,photos_302 303,303,2019-04-27 15:32:17+00:00,2019-04-27 15:32:17+00:00,Exploring the Grand Canyon.,Soul Buoy,0.0,0.0,"{'objects': ['Web page', 'Canyon', 'Tour guide', 'Website', 'Geocaching', 'driveway, drive, private road', 'guide', 'geographical area, geographic area, geographical region, geographic region', 'pass, mountain pass, notch', 'hoodoo'], 'places': ['canyon', 'badlands', 'desert road', 'butte', 'driveway'], 'tags': ['document']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7337.PNG.compressed.jpg,photos_303 304,304,2019-04-27 09:03:39-07:00,2019-04-27 09:03:39-07:00,"""A peaceful oasis in the desert.""","Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9949833,-111.48645,"{'objects': ['Dry lake', 'Camp', 'Human settlement', 'Drought', 'Kia mohave/borrego', 'housing, lodging, living accommodations', 'campsite, campground, camping site, camping ground, bivouac, encampment, camping area', 'reservoir, artificial lake, man-made lake', 'site, land site', 'dude ranch'], 'places': ['campsite', 'manufactured home', 'harbor', 'army base', 'landfill'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7338.HEIC.compressed.jpg,photos_304 305,305,2019-04-27 09:38:35-07:00,2019-04-27 09:38:35-07:00,"""A peaceful oasis.""","Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9966167,-111.4895861,"{'objects': ['Dry lake', 'Submarine canyon', 'Cliff jumping', 'Water ski', 'Drought', 'water ski', 'reservoir', 'reservoir, artificial lake, man-made lake', 'body of water, water', 'inlet, recess'], 'places': ['swimming hole', 'natural lake', 'watering hole', 'dam', 'canyon'], 'tags': ['vehicle']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7339.HEIC.compressed.jpg,photos_305 306,306,2019-04-27 10:38:44-07:00,2019-04-27 10:38:44-07:00,"""A peaceful oasis.""","Navajo Viewpoint, Lake Shore Drive, Wahweap, Coconino County, Arizona, United States",36.9640528,-111.4913028,"{'objects': ['Dry lake', 'Submarine canyon', 'Reservoir', 'Cliff jumping', 'Logrolling', 'reservoir, artificial lake, man-made lake', 'reservoir', 'body of water, water', 'lake', 'pit, quarry, stone pit'], 'places': ['swimming hole', 'natural lake', 'dam', 'watering hole', 'canyon'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7340.HEIC.compressed.jpg,photos_306 307,307,2019-04-27 15:47:52-06:00,2019-04-27 15:47:52-06:00,"""A lonely cinder cone in the desert.""","UT-12, Garfield County, Utah, 84764, United States",37.6828944,-112.1249611,"{'objects': ['Cinder cone', 'Two needle pinyon pine', 'Western juniper', 'Western yellow pine', 'Alluvial fan', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'western white pine, silver pine, mountain pine, Pinus monticola', ""Jeffrey pine, Jeffrey's pine, black pine, Pinus jeffreyi"", 'sagebrush, sage brush', 'butte'], 'places': ['vegetation desert', 'butte', 'canyon', 'desert road', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7342.HEIC.compressed.jpg,photos_307 308,308,2019-04-27 15:48:04-06:00,2019-04-27 15:48:04-06:00,"""Awe-inspiring view.""","UT-12, Garfield County, Utah, 84764, United States",37.6828833,-112.1249861,"{'objects': ['Cinder cone', 'Two needle pinyon pine', 'Western juniper', 'Panorama', 'Caldera', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'sagebrush, sage brush', 'overlook', 'butte', 'hoodoo'], 'places': ['canyon', 'butte', 'desert road', 'vegetation desert', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7343.HEIC.compressed.jpg,photos_308 309,309,2019-04-27 16:17:22-06:00,2019-04-27 16:17:22-06:00,"""A view of the outdoors.""","Tropic, Garfield County, Utah, 84776, United States",37.6216861,-112.1092444,"{'objects': ['Window', 'Window valance', 'Window film', 'Daylighting', 'Window treatment', 'double-hung window', 'casement window', 'pivoting window', 'dormer window', 'sliding window'], 'places': ['indoor bow window', 'outdoor cabin', 'attic', 'mountain', 'canyon'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7344.HEIC.compressed.jpg,photos_309 310,310,2019-04-27 17:45:04-06:00,2019-04-27 17:45:04-06:00,"""Awe-inspiring beauty.""","Rim Trail, Garfield County, Utah, United States",37.6239861,-112.1665583,"{'objects': ['Canyon', 'Cinder cone', 'Erosion', 'National park', 'Geological phenomenon', 'hoodoo', 'geological formation, formation', 'canyon, canon', 'badlands', 'chasm'], 'places': ['canyon', 'badlands', 'cliff', 'butte', 'mountain path'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7355.HEIC.compressed.jpg,photos_310 311,311,2019-04-27 18:00:27-06:00,2019-04-27 18:00:27-06:00,"""Awe-inspiring beauty.""","Rim Trail, Garfield County, Utah, 84764, United States",37.6278444,-112.1636722,"{'objects': ['Canyon', 'National park', 'Cinder cone', 'Geological phenomenon', 'Landform', 'hoodoo', 'geological formation, formation', 'canyon, canon', 'American larch, tamarack, black larch, Larix laricina', 'ridge, ridgeline'], 'places': ['canyon', 'badlands', 'butte', 'valley', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7356.HEIC.compressed.jpg,photos_311 312,312,2019-04-27 18:05:34-06:00,2019-04-27 18:05:34-06:00,"""Awe-inspiring view.""","Rim Trail, Garfield County, Utah, 84764, United States",37.6279528,-112.1637944,"{'objects': ['Cinder cone', 'Canyon', 'National park', 'Western juniper', 'Landform', 'hoodoo', 'geological formation, formation', 'broken arch', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'yellow pine'], 'places': ['canyon', 'rock arch', 'butte', 'valley', 'cliff'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7357.HEIC.compressed.jpg,photos_312 313,313,2019-04-27 18:14:23-06:00,2019-04-27 18:14:23-06:00,"""A peaceful escape.""","Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6279556,-112.1632083,"{'objects': ['Shortstraw pine', 'Shortstraw pine', 'Two needle pinyon pine', 'Western juniper', 'Prostrate Juniper', 'ancient pine, Pinus longaeva', 'bristlecone pine, Rocky Mountain bristlecone pine, Pinus aristata', 'hoodoo', 'western white pine, silver pine, mountain pine, Pinus monticola', 'whitebark pine, whitebarked pine, Pinus albicaulis'], 'places': ['canyon', 'butte', 'badlands', 'cliff', 'vegetation desert'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7358.HEIC.compressed.jpg,photos_313 314,314,2019-04-27 18:20:03-06:00,2019-04-27 18:20:03-06:00,"""Awe-inspiring beauty.""","Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6283389,-112.1629639,"{'objects': ['Canyon', 'National park', 'Cinder cone', 'Geological phenomenon', 'Geographical feature', 'hoodoo', 'canyon, canon', 'geological formation, formation', 'chasm', 'broken arch'], 'places': ['canyon', 'badlands', 'cliff', 'valley', 'butte'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7362.HEIC.compressed.jpg,photos_314 315,315,2019-04-27 18:20:12-06:00,2019-04-27 18:20:12-06:00,"""Awe-inspiring beauty.""","Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6281611,-112.1627278,"{'objects': ['Canyon', 'Cinder cone', 'National park', 'Geological phenomenon', 'Geographical feature', 'hoodoo', 'geological formation, formation', 'canyon, canon', 'chasm', 'badlands'], 'places': ['canyon', 'cliff', 'badlands', 'butte', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7363.HEIC.compressed.jpg,photos_315 316,316,2019-04-27 18:27:33-06:00,2019-04-27 18:27:33-06:00,"""Awe-inspiring beauty.""","Queen's Garden Trail, Garfield County, Utah, United States",37.6272861,-112.1615222,"{'objects': ['Canyon', 'National park', 'Cinder cone', 'Erosion', 'Western juniper', 'hoodoo', 'geological formation, formation', 'canyon, canon', 'ridge, ridgeline', 'chasm'], 'places': ['canyon', 'rock arch', 'cliff', 'badlands', 'mountain path'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7364.HEIC.compressed.jpg,photos_316 317,317,2019-04-27 18:34:01-06:00,2019-04-27 18:34:01-06:00,"""Awe-inspiring beauty.""","Queen's Garden Trail, Garfield County, Utah, United States",37.627075,-112.1595611,"{'objects': ['American larch', 'Larix lyalliiSubalpine Larch', 'Larch', 'Oregon pine', 'Arizona Cypress', 'larch, larch tree', 'American larch, tamarack, black larch, Larix laricina', 'gymnospermous tree', 'western larch, western tamarack, Oregon larch, Larix occidentalis', 'Arizona cypress, Cupressus arizonica'], 'places': ['canyon', 'cliff', 'vegetation desert', 'badlands', 'tree farm'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7368.HEIC.compressed.jpg,photos_317 318,318,2019-04-28 01:43:08+00:00,2019-04-28 01:43:08+00:00,"""Awe-inspiring beauty.""",Soul Buoy,0.0,0.0,"{'objects': ['Canyon', 'Cinder cone', 'National park', 'Panorama', 'Smoketree', 'hoodoo', 'canyon, canon', 'geological formation, formation', 'broken arch', 'wilderness, wild'], 'places': ['canyon', 'rock arch', 'badlands', 'cliff', 'mountain path'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7369.HEIC.compressed.jpg,photos_318 319,319,2019-04-27 18:43:44-06:00,2019-04-27 18:43:44-06:00,"""Taking a break.""","Tropic Trail, Tropic, Garfield County, Utah, 84776, United States",37.6205056,-112.1375417,"{'objects': ['Kaibab Squirrel', 'Organ Mountains Chipmunk', ""Abert's squirrel"", ""Douglas' squirrel"", 'Chipmunk', 'mantled ground squirrel, Citellus lateralis', 'eastern chipmunk, hackee, striped squirrel, ground squirrel, Tamias striatus', 'tree squirrel', 'rock squirrel, Citellus variegatus', 'chipmunk'], 'places': ['watering hole', 'vegetation desert', 'badlands', 'sand desert', 'yard'], 'tags': []}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7370.HEIC.compressed.jpg,photos_319 320,320,2019-04-27 18:43:48-06:00,2019-04-27 18:43:48-06:00,"""Taking a break.""","Tropic Trail, Tropic, Garfield County, Utah, 84776, United States",37.6205056,-112.1375417,"{'objects': ['Organ Mountains Chipmunk', 'Ground squirrels', 'Chipmunk', 'Antelope squirrels', 'Eastern chipmunk', 'eastern chipmunk, hackee, striped squirrel, ground squirrel, Tamias striatus', 'chipmunk', 'mantled ground squirrel, Citellus lateralis', 'ground squirrel, gopher, spermophile', 'rock squirrel, Citellus variegatus'], 'places': ['watering hole', 'badlands', 'sand desert', 'canyon', 'park'], 'tags': ['animal']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7371.HEIC.compressed.jpg,photos_320 321,321,2019-04-27 18:50:14-06:00,2019-04-27 18:50:14-06:00,"""Awe-inspiring beauty.""","Queen's Garden Trail, Garfield County, Utah, United States",37.6254361,-112.160675,"{'objects': ['Canyon', 'Cinder cone', 'National park', 'Panorama', 'Erosion', 'hoodoo', 'geological formation, formation', 'broken arch', 'canyon, canon', 'kachina'], 'places': ['canyon', 'rock arch', 'cliff', 'butte', 'valley'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7372.HEIC.compressed.jpg,photos_321 322,322,2019-04-27 19:13:37-06:00,2019-04-27 19:13:37-06:00,"""A rocky outcrop in the cliff face.""","Queen's Garden Trail, Garfield County, Utah, United States",37.6269417,-112.1591556,"{'objects': ['Outcrop', 'Algific talus slope', 'Rockfall', 'Quarry', 'Cliff', 'geological formation, formation', 'escarpment, scarp', 'butte', 'outcrop, outcropping, rock outcrop', 'sediment, deposit'], 'places': ['cliff', 'butte', 'badlands', 'canyon', 'volcano'], 'tags': ['plant']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7373.HEIC.compressed.jpg,photos_322 323,323,2019-04-27 19:34:15-06:00,2019-04-27 19:34:15-06:00,"""Awe-inspiring view.""","Rim Trail, Garfield County, Utah, 84764, United States",37.6267389,-112.1653222,"{'objects': ['Cinder cone', 'National park', 'Canyon', 'Panorama', 'Geological phenomenon', 'hoodoo', 'overlook', 'geological formation, formation', 'canyon, canon', 'wilderness, wild'], 'places': ['canyon', 'butte', 'cliff', 'mountain path', 'badlands'], 'tags': ['scenery']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7374.HEIC.compressed.jpg,photos_323 324,324,2019-04-29 11:49:07-07:00,2019-04-29 11:49:07-07:00,"""Freshly brewed.""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037453019547755,-101.90859062649028,"{'objects': ['Single-origin coffee', 'Roasted grain beverage', 'Coffee', 'Caffeinated drink', 'Caffeine', 'packet', 'Yemeni', 'sandbag', 'bag', 'packaging'], 'places': ['coffee shop', 'supermarket', 'pantry', 'street', 'delicatessen'], 'tags': ['commodity products']}",digital_data/images/google_photos/part 2/Google Photos/Photos from 2019/IMG_7375.HEIC.compressed.jpg,photos_324 ================================================ FILE: sample_data/photos.sampled.json ================================================ [ { "Unnamed: 0":0, "start_time":"2019-04-18 00:01:26+00:00", "end_time":"2019-04-18 00:01:26+00:00", "textDescription":"\"Taking the stage.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Performance', 'Performing arts', 'Musical Performance Sports', 'Modern dance', 'Public speaking', 'performer, performing artist', 'stage', 'auditorium', 'broadcasting', 'kanzu'], 'places': ['performance arena', 'indoor stage', 'auditorium', 'outdoor stage', 'television studio'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/0566797F-A10A-46EB-BDAD-59C01F19EBD9.jpg.compressed.jpg", "id":"photos_0" }, { "Unnamed: 0":1, "start_time":"2019-03-31 06:58:44+00:00", "end_time":"2019-03-31 06:58:44+00:00", "textDescription":"Freshly-baked egg tarts!", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Egg tart', 'Custard tart', 'Portuguese food', 'P\u00e2tisserie', 'Natillas', 'baked goods', 'Madeira', 'patisserie', 'pastry, pastry dough', 'bite, collation, snack'], 'places': ['shop bakery', 'delicatessen', 'supermarket', 'food court', 'indoor market'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/3FF4E970-B938-42E6-B780-DEEE6751F7CF.jpg.compressed.jpg", "id":"photos_1" }, { "Unnamed: 0":2, "start_time":"2019-04-15 14:58:30+00:00", "end_time":"2019-04-15 14:58:30+00:00", "textDescription":"\"A sea of possibilities.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Very large floating structure', 'Convention center', 'Sport venue', 'Panorama', 'Artificial island', 'conference center, conference house', 'waterfront', 'dock, dockage, docking facility', 'houseboat', 'hotel'], 'places': ['conference center', 'heliport', 'outdoor hotel', 'roof garden', 'ski slope'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/E0B47B5E-39E7-46C2-985A-CD4853168938.jpg.compressed.jpg", "id":"photos_2" }, { "Unnamed: 0":3, "start_time":"2019-04-25 15:57:11+00:00", "end_time":"2019-04-25 15:57:11+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'National park', 'Cinder cone', 'Geographical feature', 'Landform', 'overlook', 'canyon, canon', 'moraine', 'precipice', 'butte'], 'places': ['canyon', 'butte', 'crevasse', 'valley', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/F35BC31C-7BB0-447B-8E21-7A2ACEF826D0.jpg.compressed.jpg", "id":"photos_3" }, { "Unnamed: 0":4, "start_time":"2019-03-03 07:41:47-08:00", "end_time":"2019-03-03 07:41:47-08:00", "textDescription":"\"New outfit, here I come!\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374333973, "long":-101.9085506521, "details":"{'objects': ['Receipt', 'Wristband', 'Active shirt', 'Coupon', 'Cargo pants', 'bill, peak, eyeshade, visor, vizor', 'grab bag', 'polo shirt, sport shirt', 'checkout, checkout counter', 'safety belt, life belt, safety harness'], 'places': ['clothing store', 'hardware store', 'exterior gazebo', 'fabric store', 'pet shop'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6900.HEIC.compressed.jpg", "id":"photos_4" }, { "Unnamed: 0":5, "start_time":"2019-03-03 07:42:11-08:00", "end_time":"2019-03-03 07:42:11-08:00", "textDescription":"\"Booked and paid!\"", "address":"2968, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375514743, "long":-101.9086043234, "details":"{'objects': ['Receipt', 'Coupon', 'Voucher', 'Ticket', 'Invoice', 'cowboy hat, ten-gallon hat', 'book', 'paper', 'cowboy boot', 'windfall'], 'places': ['bookstore', 'outdoor inn', 'restaurant', 'outdoor diner', 'stable'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6901.HEIC.compressed.jpg", "id":"photos_5" }, { "Unnamed: 0":6, "start_time":"2019-03-03 07:42:35-08:00", "end_time":"2019-03-03 07:42:35-08:00", "textDescription":"\"Filling a prescription.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374333973, "long":-101.9085506521, "details":"{'objects': ['Prescription drug', 'Antifungal medication', 'Medicine', 'Pharmaceutical drug', 'Medicine chest', 'pill bottle', 'packet', 'vitamin B12, cobalamin, cyanocobalamin, antipernicious anemia factor', 'vitamin B6, pyridoxine, pyridoxal, pyridoxamine, adermin', 'multivitamin, multivitamin pill'], 'places': ['pharmacy', 'drugstore', 'hospital room', 'hospital', 'waiting room'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6902.HEIC.compressed.jpg", "id":"photos_6" }, { "Unnamed: 0":7, "start_time":"2019-03-05 19:36:00-08:00", "end_time":"2019-03-05 19:36:00-08:00", "textDescription":"\"Exploring new possibilities.\"", "address":"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "lat":35.0179184986, "long":-101.9167301641, "details":"{'objects': ['Boy scouts of america', 'Eagle scout', 'Girl scouts of the usa', 'Jamboree', 'Scout', 'Cub Scout', 'Boy Scout', 'boy scout', 'service club', 'assembly'], 'places': ['recreation room', 'classroom', 'indoor museum', 'waiting room', 'lecture room'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6907.HEIC.compressed.jpg", "id":"photos_7" }, { "Unnamed: 0":8, "start_time":"2019-03-06 19:46:40-08:00", "end_time":"2019-03-06 19:46:40-08:00", "textDescription":"\"A Home for Every Family\"", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0372938518, "long":-101.9086901976, "details":"{'objects': ['Real estate', 'Non-fiction', 'Photo caption', 'Plan', 'Text', 'planner', 'article', 'book', 'spread, paste', 'feature, lineament'], 'places': ['residential neighborhood', 'slum', 'outdoor apartment building', 'street', 'home office'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6908.HEIC.compressed.jpg", "id":"photos_8" }, { "Unnamed: 0":9, "start_time":"2019-03-11 16:27:43+00:00", "end_time":"2019-03-11 16:27:43+00:00", "textDescription":"\"A traditional Icelandic treat in a cozy setting.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Hangikj\u00f6t', 'F\u00e5rik\u00e5l', 'M\u00e4mmi', 'Sm\u00f6rg\u00e5sbord', 'Br\u00e4nnboll', 'automobile horn, car horn, motor horn, horn, hooter', 'appliance, contraption, contrivance, convenience, gadget, gizmo, gismo, widget', 'dialog box, panel', 'Swedish meatball', 'triviality, trivia, trifle, small beer'], 'places': ['sauna', 'shower', 'raft', 'bar', 'waterfall'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6919.PNG.compressed.jpg", "id":"photos_9" }, { "Unnamed: 0":10, "start_time":"2019-03-18 09:20:41-07:00", "end_time":"2019-03-18 09:20:41-07:00", "textDescription":"\"A full house.\"", "address":"Helium Road, Randall County, Texas, 79119, United States", "lat":35.0971159258, "long":-101.9541498213, "details":"{'objects': ['Auditorium', 'Academic conference', 'Academic institution', 'Business school', 'Projection screen', 'auditorium', 'peristyle', 'quad, quadrangle', 'assembly hall', 'praetorium, pretorium'], 'places': ['auditorium', 'campus', 'amphitheater', 'lecture room', 'conference center'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6923.HEIC.compressed.jpg", "id":"photos_10" }, { "Unnamed: 0":11, "start_time":"2019-03-18 09:31:03-07:00", "end_time":"2019-03-18 09:31:03-07:00", "textDescription":"\"Exploring new ideas at the conference.\"", "address":"Helium Road, Randall County, Texas, 79119, United States", "lat":35.0971159258, "long":-101.9541498213, "details":"{'objects': ['Academic conference', 'Conference hall', 'Presentation', 'Ultron', 'Hall', 'autopilot, automatic pilot, robot pilot', 'android, humanoid, mechanical man', 'splashboard, splasher, dashboard', 'hexapod', 'Homo sapiens sapiens, modern man'], 'places': ['conference center', 'auditorium', 'lecture room', 'conference room', 'public atrium'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6924.HEIC.compressed.jpg", "id":"photos_11" }, { "Unnamed: 0":12, "start_time":"2019-03-18 10:43:51-07:00", "end_time":"2019-03-18 10:43:51-07:00", "textDescription":"\"Sharing knowledge.\"", "address":"Helium Road, Randall County, Texas, 79119, United States", "lat":35.0971159258, "long":-101.9541498213, "details":"{'objects': ['Presentation', 'Diagram', 'Lecture', 'Educational software', 'Statistical graphics', 'feature, lineament', 'model, simulation', 'golden shower tree, drumstick tree, purging cassia, pudding pipe tree, canafistola, canafistula, Cassia fistula', 'framework', 'linden, linden tree, basswood, lime, lime tree'], 'places': ['lecture room', 'auditorium', 'sandbox', 'broadleaf forest', 'tree house'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6925.HEIC.compressed.jpg", "id":"photos_12" }, { "Unnamed: 0":13, "start_time":"2019-03-18 10:44:49-07:00", "end_time":"2019-03-18 10:44:49-07:00", "textDescription":"\"Sharing knowledge.\"", "address":"Helium Road, Randall County, Texas, 79119, United States", "lat":35.0971159258, "long":-101.9541498213, "details":"{'objects': ['Presentation', 'Learning', 'Educational software', 'Lecture', 'Public speaking', 'psycholinguist', 'communication system', 'social scientist', 'feature, lineament', 'Latin'], 'places': ['lecture room', 'classroom', 'conference room', 'auditorium', 'conference center'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6926.HEIC.compressed.jpg", "id":"photos_13" }, { "Unnamed: 0":14, "start_time":"2019-03-18 13:00:08-07:00", "end_time":"2019-03-18 13:00:08-07:00", "textDescription":"\"Gathering to learn and share knowledge.\"", "address":"Helium Road, Randall County, Texas, 79119, United States", "lat":35.0971481286, "long":-101.9538599961, "details":"{'objects': ['Academic conference', 'Confirmation', 'Zha cai', 'Place card', 'Falafel', 'microeconomist, microeconomic expert', 'falafel, felafel', 'social scientist', 'economist, economic expert', 'publication'], 'places': ['reception', 'assembly line', 'conference center', 'corral', 'auditorium'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6928.HEIC.compressed.jpg", "id":"photos_14" }, { "Unnamed: 0":15, "start_time":"2019-03-18 15:52:33-07:00", "end_time":"2019-03-18 15:52:33-07:00", "textDescription":"\"Healing begins here.\"", "address":"Helium Road, Randall County, Texas, 79119, United States", "lat":35.0971159258, "long":-101.9541498213, "details":"{'objects': ['Hospital', 'Radiology', 'Medical imaging', 'Presentation', 'Nurse', 'hospital room', 'emergency room, ER', 'facility, installation', 'medical building, health facility, healthcare facility', 'ward, hospital ward'], 'places': ['hospital', 'hospital room', 'operating room', 'nursing home', 'lecture room'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6930.HEIC.compressed.jpg", "id":"photos_15" }, { "Unnamed: 0":16, "start_time":"2019-03-18 16:05:51-07:00", "end_time":"2019-03-18 16:05:51-07:00", "textDescription":"Academic minds come together.", "address":"Helium Road, Randall County, Texas, 79119, United States", "lat":35.0971159258, "long":-101.9541498213, "details":"{'objects': ['Academic conference', 'Presentation', 'Podium', 'Event', 'Conversation', 'panel', 'dialog box, panel', 'panelist, panellist', 'microeconomist, microeconomic expert', 'quad, quadrangle'], 'places': ['conference room', 'auditorium', 'crosswalk', 'lecture room', 'conference center'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6931.HEIC.compressed.jpg", "id":"photos_16" }, { "Unnamed: 0":17, "start_time":"2019-03-19 12:32:09-07:00", "end_time":"2019-03-19 12:32:09-07:00", "textDescription":"\"Incarcerated.\"", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0371865091, "long":-101.9085399178, "details":"{'objects': ['Invoice', 'Envelope', 'Voucher', 'Letter', 'Mail', 'envelope', 'envelope', 'envelope', 'envelope, gasbag', 'mailer'], 'places': ['jail cell', 'house', 'driveway', 'lawn', 'courthouse'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6935.HEIC.compressed.jpg", "id":"photos_17" }, { "Unnamed: 0":18, "start_time":"2019-03-22 19:06:44-07:00", "end_time":"2019-03-22 19:06:44-07:00", "textDescription":"Grocery shopping time!", "address":"Randall County, Texas, United States", "lat":35.0689599416, "long":-101.9117172611, "details":"{'objects': ['Shopping list', 'Invoice', 'Recipe', 'Receipt', 'Clipboard', 'checkout, checkout counter', 'shopping cart', 'shopping', 'cart', 'shopping basket'], 'places': ['supermarket', 'shop bakery', 'outdoor general store', 'candy store', 'loading dock'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6936.HEIC.compressed.jpg", "id":"photos_18" }, { "Unnamed: 0":19, "start_time":"2019-03-23 09:36:05-07:00", "end_time":"2019-03-23 09:36:05-07:00", "textDescription":"Exploring nature.", "address":"Castro County, Texas, United States", "lat":34.7224041086, "long":-102.0198864767, "details":"{'objects': ['Camp', 'Troop', 'Boy scouts of america', 'Jamboree', 'Camp furniture', 'Cub Scout', 'boy scout', 'Boy Scout', 'service club', 'wall tent'], 'places': ['campsite', 'dining hall', 'outdoor general store', 'outdoor cabin', 'picnic area'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6938.HEIC.compressed.jpg", "id":"photos_19" }, { "Unnamed: 0":20, "start_time":"2019-03-27 11:42:43+09:00", "end_time":"2019-03-27 11:42:43+09:00", "textDescription":"\"Achievement Recognized\"", "address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "lat":37.4551, "long":126.9504, "details":"{'objects': ['Academic certificate', 'Commemorative plaque', 'Award', 'Shuanghuan sceo', 'Diploma', 'commemorative', 'case, display case, showcase, vitrine', 'shantung', 'keepsake, souvenir, token, relic', 'licentiate'], 'places': ['archive', 'campus', 'office', 'embassy', 'heliport'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6943.HEIC.compressed.jpg", "id":"photos_20" }, { "Unnamed: 0":21, "start_time":"2019-03-27 11:42:50+09:00", "end_time":"2019-03-27 11:42:50+09:00", "textDescription":"\"Achievement Recognized\"", "address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "lat":37.4551, "long":126.9504, "details":"{'objects': ['Academic certificate', 'Award', 'Commemorative plaque', 'Display case', 'Souvenir', 'commemorative', 'case, display case, showcase, vitrine', 'plenipotentiary', 'office, business office', 'headquarters, central office, main office, home office, home base'], 'places': ['office', 'embassy', 'reception', 'archive', 'indoor museum'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6944.HEIC.compressed.jpg", "id":"photos_21" }, { "Unnamed: 0":22, "start_time":"2019-03-27 13:45:36+09:00", "end_time":"2019-03-27 13:45:36+09:00", "textDescription":"\"Exploring new ideas at the conference.\"", "address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "lat":37.4551, "long":126.951, "details":"{'objects': ['Academic conference', 'University', 'Banner', 'Academic institution', 'Science fair', 'university', 'signboard, sign', 'exhibition hall, exhibition area', 'student center', 'banner, streamer'], 'places': ['conference center', 'science museum', 'campus', 'outdoor museum', 'lobby'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6945.HEIC.compressed.jpg", "id":"photos_22" }, { "Unnamed: 0":23, "start_time":"2019-03-27 13:45:47+09:00", "end_time":"2019-03-27 13:45:47+09:00", "textDescription":"\"Uniting for success.\"", "address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "lat":37.4552, "long":126.951, "details":"{'objects': ['University', 'Academic institution', 'Banner', 'Science fair', 'National university', 'university', 'student center', 'exhibition hall, exhibition area', 'banner, streamer', 'signboard, sign'], 'places': ['conference center', 'science museum', 'campus', 'outdoor museum', 'lobby'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6946.HEIC.compressed.jpg", "id":"photos_23" }, { "Unnamed: 0":24, "start_time":"2019-03-27 13:45:47+09:00", "end_time":"2019-03-27 13:45:47+09:00", "textDescription":"\"Exploring the University Campus\"", "address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "lat":37.4552, "long":126.951, "details":"{'objects': ['University', 'Academic institution', 'National university', 'Banner', 'Science fair', 'university', 'student center', 'signboard, sign', 'exhibition hall, exhibition area', 'banner, streamer'], 'places': ['campus', 'science museum', 'conference center', 'outdoor museum', 'lobby'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6947.HEIC.compressed.jpg", "id":"photos_24" }, { "Unnamed: 0":25, "start_time":"2019-03-27 18:36:03+09:00", "end_time":"2019-03-27 18:36:03+09:00", "textDescription":"Fresh Fish Catch!", "address":"Bangbae-ro, Bangbae 4(sa)-dong, Seocho-gu, Seoul, 06557, South Korea", "lat":37.494, "long":126.9903, "details":"{'objects': ['Fish products', 'Fish meal', 'Fish head curry', 'Fried fish', 'Butterfish', 'butterfish, stromateid fish, stromateid', 'food fish', 'rockfish', 'horse mackerel, jack mackerel, Spanish mackerel, saurel, Trachurus symmetricus', 'sashimi'], 'places': ['fishpond', 'restaurant', 'boat deck', 'ocean', 'sushi bar'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6952.HEIC.compressed.jpg", "id":"photos_25" }, { "Unnamed: 0":26, "start_time":"2019-03-28 06:38:09+09:00", "end_time":"2019-03-28 06:38:09+09:00", "textDescription":"Traveling the world.", "address":"Incheon International Airport Terminal 1, 271, Gonghang-ro, Unseo-dong, Jung-gu, Incheon, 22382, South Korea", "lat":37.4496, "long":126.4536, "details":"{'objects': ['Airport', 'Airport terminal', 'Check-in', 'Airpot', 'Jet bridge', 'baggage claim', 'air terminal, airport terminal', 'airport, airdrome, aerodrome, drome', 'air traveler, air traveller', 'baggage, luggage'], 'places': ['airport terminal', 'runway', 'food court', 'platform train station', 'ticket booth'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6953.HEIC.compressed.jpg", "id":"photos_26" }, { "Unnamed: 0":27, "start_time":"2019-03-28 04:34:33+00:00", "end_time":"2019-03-28 04:34:33+00:00", "textDescription":"\"Powering the industrial future.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Toyota voltz', 'Vortex', 'Automobile repair shop', 'Toyota vista', 'Toyota yaris verso', 'Venturi tube', 'location', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'vermouth', 'topographic point, place, spot'], 'places': ['industrial area', 'viaduct', 'fastfood restaurant', 'server room', 'gas station'], 'tags': ['vehicle']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6954.PNG.compressed.jpg", "id":"photos_27" }, { "Unnamed: 0":28, "start_time":"2019-03-28 20:38:13+09:00", "end_time":"2019-03-28 20:38:13+09:00", "textDescription":"Tasty Tsukudani!", "address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "lat":35.6644, "long":139.7301, "details":"{'objects': ['Tsukudani', 'Scroll', 'Document', 'Receipt', 'Homework', 'paper', 'menu', 'date', 'sheet, flat solid', 'shoji'], 'places': ['restaurant', 'hotel room', 'archive', 'sushi bar', 'restaurant kitchen'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6955.HEIC.compressed.jpg", "id":"photos_28" }, { "Unnamed: 0":29, "start_time":"2019-03-28 20:47:46+09:00", "end_time":"2019-03-28 20:47:46+09:00", "textDescription":"Enjoying a hot pot of Nabemono.", "address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "lat":35.6644, "long":139.7301, "details":"{'objects': ['Nabemono', 'Kaiseki', 'Sukiyaki', 'Pot-au-feu', 'Ainu cuisine', 'sukiyaki', 'oxtail soup', 'sashimi', 'dish', 'dish'], 'places': ['sushi bar', 'restaurant', 'restaurant kitchen', 'delicatessen', 'fishpond'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6956.HEIC.compressed.jpg", "id":"photos_29" }, { "Unnamed: 0":30, "start_time":"2019-03-28 21:36:34+09:00", "end_time":"2019-03-28 21:36:34+09:00", "textDescription":"\"Delicious Ainu cuisine!\"", "address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "lat":35.6644, "long":139.7301, "details":"{'objects': ['Ainu cuisine', 'Kaiseki', 'Okinawan cuisine', 'Japanese cuisine', 'Nabemono', 'plate, scale, shell', 'taro, taro root, cocoyam, dasheen, edda', 'bite, collation, snack', 'dish', 'dish'], 'places': ['restaurant', 'sushi bar', 'restaurant kitchen', 'fastfood restaurant', 'dining room'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6957.HEIC.compressed.jpg", "id":"photos_30" }, { "Unnamed: 0":31, "start_time":"2019-03-28 23:25:42+09:00", "end_time":"2019-03-28 23:25:42+09:00", "textDescription":"Freshly-sliced sashimi.", "address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "lat":35.6644, "long":139.7301, "details":"{'objects': ['Sashimi', 'Tataki', 'Narutomaki', 'Kaiseki', 'Yomari', 'sashimi', 'plum sauce', 'sushi', 'peach sauce', 'dish'], 'places': ['sushi bar', 'restaurant', 'restaurant kitchen', 'delicatessen', 'dining room'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6958.HEIC.compressed.jpg", "id":"photos_31" }, { "Unnamed: 0":32, "start_time":"2019-03-28 23:25:52+09:00", "end_time":"2019-03-28 23:25:52+09:00", "textDescription":"\"A sweet treat!\"", "address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "lat":35.6644, "long":139.7301, "details":"{'objects': ['Quince dessert', 'Gelatin dessert', 'Red bean ice', 'Tataki', 'Siu mei', 'sashimi', 'fondant', 'peach sauce', 'edible fruit', 'sushi'], 'places': ['sushi bar', 'restaurant', 'restaurant kitchen', 'delicatessen', 'ice floe'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6959.HEIC.compressed.jpg", "id":"photos_32" }, { "Unnamed: 0":33, "start_time":"2019-03-29 09:12:12+09:00", "end_time":"2019-03-29 09:12:12+09:00", "textDescription":"\"A healthy start to the day!\"", "address":"Grand Hyatt Tokyo, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-6122, Japan", "lat":35.6595, "long":139.7283, "details":"{'objects': ['Muesli', 'Granola', 'Breakfast', 'Superfood', 'Wheatberry', 'breakfast', 'bite, collation, snack', 'wheat, wheat berry', 'porridge', 'oatmeal, rolled oats'], 'places': ['cafeteria', 'dining hall', 'delicatessen', 'restaurant', 'coffee shop'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6960.HEIC.compressed.jpg", "id":"photos_33" }, { "Unnamed: 0":34, "start_time":"2019-03-29 10:08:09+09:00", "end_time":"2019-03-29 10:08:09+09:00", "textDescription":"\"A traditional Japanese instrument.\"", "address":"Moto-Azabu 3-chome, Minato, Tokyo, 106-0046, Japan", "lat":35.6574, "long":139.7273, "details":"{'objects': ['Taish\u014dgoto', 'Shrine', 'Shinto shrine', 'Temple', 'Temple', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'shrine', 'temple', 'temple'], 'places': ['asia temple', 'japanese garden', 'courtyard', 'formal garden', 'yard'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6961.HEIC.compressed.jpg", "id":"photos_34" }, { "Unnamed: 0":35, "start_time":"2019-03-29 10:13:09+09:00", "end_time":"2019-03-29 10:13:09+09:00", "textDescription":"\"Spring beauty.\"", "address":"Aiiku Hospital, \u6728\u4e0b\u5742, Minami-Azabu 5-chome, Minato, Tokyo, 106-0047, Japan", "lat":35.6536, "long":139.726, "details":"{'objects': ['Cherry blossom', 'Blossom', 'Prunus', 'White day', 'Spring pancake', 'fuji, fuji cherry, Prunus incisa', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'cherry, cherry tree', 'flowering cherry', 'angiospermous tree, flowering tree'], 'places': ['street', 'residential neighborhood', 'campus', 'phone booth', 'park'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6962.HEIC.compressed.jpg", "id":"photos_35" }, { "Unnamed: 0":36, "start_time":"2019-03-29 10:53:41+09:00", "end_time":"2019-03-29 10:53:41+09:00", "textDescription":"Celebrating Children's Day in the city.", "address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "lat":35.638, "long":139.7063, "details":"{'objects': ['Koinobori', 'Cherry blossom', 'Yukigassen', 'Higashi', 'Gomashio', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'flowering cherry', 'signboard, sign', 'canal', 'umbrellawort'], 'places': ['urban canal', 'natural canal', 'river', 'water moat', 'street'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6963.HEIC.compressed.jpg", "id":"photos_36" }, { "Unnamed: 0":37, "start_time":"2019-03-29 10:54:16+09:00", "end_time":"2019-03-29 10:54:16+09:00", "textDescription":"\"Urban beauty.\"", "address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "lat":35.6380917, "long":139.7062083, "details":"{'objects': ['Cherry blossom', 'Higashi', 'Canal', 'Blossom', 'Yukigassen', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'Japanese flowering cherry, Prunus sieboldii', 'flowering cherry', 'canal'], 'places': ['urban canal', 'natural canal', 'river', 'creek', 'water moat'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6964-EFFECTS.jpg.compressed.jpg", "id":"photos_37" }, { "Unnamed: 0":38, "start_time":"2019-03-29 10:54:15+09:00", "end_time":"2019-03-29 10:54:15+09:00", "textDescription":"\"Urban beauty.\"", "address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "lat":35.6381, "long":139.7062, "details":"{'objects': ['Cherry blossom', 'Higashi', 'Canal', 'Blossom', 'Yukigassen', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'Japanese flowering cherry, Prunus sieboldii', 'canal'], 'places': ['urban canal', 'natural canal', 'river', 'creek', 'water moat'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6964.HEIC.compressed.jpg", "id":"photos_38" }, { "Unnamed: 0":39, "start_time":"2019-03-29 10:54:51+09:00", "end_time":"2019-03-29 10:54:51+09:00", "textDescription":"Celebrating Children's Day in the city.", "address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "lat":35.6381, "long":139.7062, "details":"{'objects': ['Koinobori', 'Cherry blossom', 'Yukigassen', 'Higashi', 'Tsukudani', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'banner, streamer', 'Japanese flowering cherry, Prunus sieboldii', 'flowering cherry'], 'places': ['urban canal', 'river', 'natural canal', 'bridge', 'water moat'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6965.HEIC.compressed.jpg", "id":"photos_39" }, { "Unnamed: 0":40, "start_time":"2019-03-29 10:54:59+09:00", "end_time":"2019-03-29 10:54:59+09:00", "textDescription":"\"Urban beauty.\"", "address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "lat":35.6381, "long":139.7062, "details":"{'objects': ['Cherry blossom', 'Higashi', 'Canal', 'Yukigassen', 'Blossom', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'canal', 'flowering almond, oriental bush cherry, Prunus japonica'], 'places': ['urban canal', 'natural canal', 'river', 'water moat', 'creek'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6966.HEIC.compressed.jpg", "id":"photos_40" }, { "Unnamed: 0":41, "start_time":"2019-03-29 10:56:04+09:00", "end_time":"2019-03-29 10:56:04+09:00", "textDescription":"\"Urban beauty.\"", "address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "lat":35.6381, "long":139.7062, "details":"{'objects': ['Cherry blossom', 'Koinobori', 'Higashi', 'Yukigassen', 'Pink', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'canal', 'banner, streamer', 'signboard, sign', 'flowering cherry'], 'places': ['urban canal', 'natural canal', 'river', 'creek', 'street'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6967.HEIC.compressed.jpg", "id":"photos_41" }, { "Unnamed: 0":42, "start_time":"2019-03-29 10:56:37+09:00", "end_time":"2019-03-29 10:56:37+09:00", "textDescription":"\"Urban beauty.\"", "address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "lat":35.6381, "long":139.7062, "details":"{'objects': ['Cherry blossom', 'Prunus', 'Blossom', 'Prunus spinosa', 'Higashi', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'Japanese flowering cherry, Prunus sieboldii', 'flowering almond, oriental bush cherry, Prunus japonica'], 'places': ['urban canal', 'natural canal', 'water moat', 'river', 'berth'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6968.HEIC.compressed.jpg", "id":"photos_42" }, { "Unnamed: 0":43, "start_time":"2019-03-29 12:28:58+09:00", "end_time":"2019-03-29 12:28:58+09:00", "textDescription":"\"Ancient Temple Gate\"", "address":"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan", "lat":35.7105, "long":139.7602, "details":"{'objects': ['Gate', 'Makunouchi', 'Japanese architecture', 'Taish\u014dgoto', 'Taid\u014d', 'gate', 'head gate', 'shrine', 'temple', 'temple'], 'places': ['asia temple', 'pavilion', 'campus', 'pagoda', 'outdoor doorway'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6970.HEIC.compressed.jpg", "id":"photos_43" }, { "Unnamed: 0":44, "start_time":"2019-03-29 16:15:45+09:00", "end_time":"2019-03-29 16:15:45+09:00", "textDescription":"\"Spring in the city.\"", "address":"Shibadaimon 1-chome, Minato, Tokyo, 105-8511, Japan", "lat":35.6594, "long":139.7516, "details":"{'objects': ['Cherry blossom', 'Makunouchi', 'Yukigassen', 'Japanese architecture', 'Fujara', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'angiospermous tree, flowering tree', 'fuji, fuji cherry, Prunus incisa', 'Japanese oak, Lithocarpus glabra, Lithocarpus glaber', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua'], 'places': ['plaza', 'courtyard', 'outdoor hotel', 'office building', 'residential neighborhood'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6973.HEIC.compressed.jpg", "id":"photos_44" }, { "Unnamed: 0":45, "start_time":"2019-03-29 16:23:59+09:00", "end_time":"2019-03-29 16:23:59+09:00", "textDescription":"\"Finding balance.\"", "address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "lat":35.6603, "long":139.7477, "details":"{'objects': ['Yoga', 'Aikido', 'Shorinji kempo', 'Yoga mat', 'Tensoba', 'picnic', 'sumo ring', 'pyramidal tent', 'temple', 'temple'], 'places': ['tower', 'pagoda', 'park', 'picnic area', 'outdoor church'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6974.HEIC.compressed.jpg", "id":"photos_45" }, { "Unnamed: 0":46, "start_time":"2019-03-29 16:24:07+09:00", "end_time":"2019-03-29 16:24:07+09:00", "textDescription":"Enjoying a picnic in the park.", "address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "lat":35.6603, "long":139.7477, "details":"{'objects': ['Picnic', 'Queue area', 'Cherry blossom', 'Public space', 'Kotatsu', 'picnic', 'sumo ring', 'pyramidal tent', 'position, place', 'campsite, campground, camping site, camping ground, bivouac, encampment, camping area'], 'places': ['picnic area', 'park', 'campsite', 'outdoor church', 'outdoor stage'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6976.HEIC.compressed.jpg", "id":"photos_46" }, { "Unnamed: 0":47, "start_time":"2019-03-29 16:24:56+09:00", "end_time":"2019-03-29 16:24:56+09:00", "textDescription":"\"A touch of spring.\"", "address":"Shiba Junior High School & Senior High School, \u5207\u901a\u5742, Shibakoen 3-chome, Minato, Tokyo, 105-6216, Japan", "lat":35.6603, "long":139.7471, "details":"{'objects': ['Cherry blossom', 'Blossom', 'White day', 'Tower', 'Tower running', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'tower'], 'places': ['tower', 'park', 'pagoda', 'skyscraper', 'campus'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6977.HEIC.compressed.jpg", "id":"photos_47" }, { "Unnamed: 0":48, "start_time":"2019-03-29 16:25:06+09:00", "end_time":"2019-03-29 16:25:06+09:00", "textDescription":"\"A touch of spring.\"", "address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "lat":35.6604, "long":139.7474, "details":"{'objects': ['Cherry blossom', 'White day', 'Transmission tower', 'Tower', 'Blossom', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'tower', 'flowering cherry'], 'places': ['tower', 'skyscraper', 'park', 'pagoda', 'campus'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6978.HEIC.compressed.jpg", "id":"photos_48" }, { "Unnamed: 0":49, "start_time":"2019-03-29 16:26:16+09:00", "end_time":"2019-03-29 16:26:16+09:00", "textDescription":"\"A touch of spring.\"", "address":"Tokyo Prince Hotel, Iwaida-dori, Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "lat":35.6601, "long":139.7473, "details":"{'objects': ['Cherry blossom', 'White day', 'Blossom', 'Prunus', 'Transmission tower', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata', 'fuji, fuji cherry, Prunus incisa', 'flowering cherry', 'cherry, cherry tree', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua'], 'places': ['tower', 'park', 'pagoda', 'campus', 'botanical garden'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6979.HEIC.compressed.jpg", "id":"photos_49" }, { "Unnamed: 0":50, "start_time":"2019-03-29 18:25:08+09:00", "end_time":"2019-03-29 18:25:08+09:00", "textDescription":"Freshly shaved Katsuobushi.", "address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "lat":35.6604, "long":139.7287, "details":"{'objects': ['Katsuobushi', 'Ikebana', 'Restaurant', 'Anago', 'Kaiseki', 'dining area', 'restaurant, eating house, eating place, eatery', 'scape, flower stalk', 'flower arrangement, floral arrangement', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua'], 'places': ['restaurant', 'dining room', 'sushi bar', 'restaurant kitchen', 'alcove'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6980.HEIC.compressed.jpg", "id":"photos_50" }, { "Unnamed: 0":51, "start_time":"2019-03-29 18:25:24+09:00", "end_time":"2019-03-29 18:25:24+09:00", "textDescription":"\"A place to gather and share ideas.\"", "address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "lat":35.6604, "long":139.7286, "details":"{'objects': ['Dining room', 'Recreation room', 'Conference room table', 'Eagle medallion', 'Wall sticker', 'conference room', 'dining area', 'boardroom, council chamber', 'smoking room', 'recreation room, rec room'], 'places': ['conference room', 'dining room', 'recreation room', 'restaurant', 'indoor booth'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6981.HEIC.compressed.jpg", "id":"photos_51" }, { "Unnamed: 0":52, "start_time":"2019-03-29 18:26:53+09:00", "end_time":"2019-03-29 18:26:53+09:00", "textDescription":"\"Freshly made Anago sushi!\"", "address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "lat":35.6604, "long":139.7287, "details":"{'objects': ['Anago', 'Katsuobushi', 'Kaiseki', 'Hiyashi ch\u016bka', 'Japanese cuisine', 'dining area', 'restaurant, eating house, eating place, eatery', 'leather strip', 'dining room, dining-room', 'lacquerware'], 'places': ['sushi bar', 'restaurant', 'restaurant kitchen', 'dining room', 'zen garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6982.HEIC.compressed.jpg", "id":"photos_52" }, { "Unnamed: 0":53, "start_time":"2019-03-29 18:27:16+09:00", "end_time":"2019-03-29 18:27:16+09:00", "textDescription":"Freshly shaved Katsuobushi.", "address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "lat":35.6604, "long":139.7286, "details":"{'objects': ['Katsuobushi', 'Anago', 'Ikebana', 'Kombu', 'Kaiseki', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'dining area', 'lacquerware', 'scape, flower stalk', 'restaurant, eating house, eating place, eatery'], 'places': ['restaurant', 'sushi bar', 'dining room', 'restaurant kitchen', 'zen garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6983.HEIC.compressed.jpg", "id":"photos_53" }, { "Unnamed: 0":54, "start_time":"2019-03-29 19:20:53+09:00", "end_time":"2019-03-29 19:20:53+09:00", "textDescription":"Freshly prepared osechi sushi.", "address":"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan", "lat":35.6602, "long":139.7289, "details":"{'objects': ['Osechi', 'Kaiseki', 'Japanese cuisine', 'Ekiben', 'Katsuobushi', 'sukiyaki', 'bite, collation, snack', 'miso', 'tray', 'wasabi'], 'places': ['sushi bar', 'zen garden', 'restaurant', 'restaurant kitchen', 'japanese garden'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6984.HEIC.compressed.jpg", "id":"photos_54" }, { "Unnamed: 0":55, "start_time":"2019-03-29 21:28:05+09:00", "end_time":"2019-03-29 21:28:05+09:00", "textDescription":"Delicious Taro Cake!", "address":"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan", "lat":35.6604, "long":139.7288, "details":"{'objects': ['Taro cake', 'Dessert', 'Agedashi tofu', 'Kaiseki', 'Osechi', 'parfait', 'dessert, sweet, afters', 'frozen dessert', 'oil cake', 'peach ice cream'], 'places': ['restaurant', 'ice cream parlor', 'dining hall', 'cafeteria', 'zen garden'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6985.HEIC.compressed.jpg", "id":"photos_55" }, { "Unnamed: 0":56, "start_time":"2019-03-30 14:15:37+09:00", "end_time":"2019-03-30 14:15:37+09:00", "textDescription":"Ready for takeoff.", "address":"191L, Kuko Higashi-dori, Narita, Sanmu, Chiba Prefecture, 282-0004, Japan", "lat":35.76, "long":140.3898, "details":"{'objects': ['Aircraft cabin', 'Movie', 'Flight', 'Dvd', 'Airline', 'plane seat', 'culture medium, medium', 'widebody aircraft, wide-body aircraft, wide-body, twin-aisle airplane', 'boarding', 'air traveler, air traveller'], 'places': ['airplane cabin', 'cockpit', 'galley', 'waiting room', 'landing deck'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6986.HEIC.compressed.jpg", "id":"photos_56" }, { "Unnamed: 0":57, "start_time":"2019-03-31 10:51:04+08:00", "end_time":"2019-03-31 10:51:04+08:00", "textDescription":"Caffeine fix.", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5277, "details":"{'objects': ['Espressino', 'Espresso', 'Ristretto', 'Cortado', 'Caff\u00e8 americano', 'espresso', 'demitasse', 'coffee cup', 'coffee, java', 'tamp, tamper, tamping bar'], 'places': ['coffee shop', 'ski slope', 'mountain', 'volcano', 'cafeteria'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6988.HEIC.compressed.jpg", "id":"photos_57" }, { "Unnamed: 0":58, "start_time":"2019-03-31 10:51:41+08:00", "end_time":"2019-03-31 10:51:41+08:00", "textDescription":"\"A cozy spot for coffee and conversation.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5277, "details":"{'objects': ['Coffeehouse', 'Caf\u00e9', 'Barista', 'Dandelion coffee', 'Ipoh white coffee', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'caffe latte, latte', 'coffee, java', 'coffee, coffee tree'], 'places': ['coffee shop', 'indoor general store', 'bar', 'beer hall', 'cafeteria'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6989.HEIC.compressed.jpg", "id":"photos_58" }, { "Unnamed: 0":59, "start_time":"2019-03-31 11:17:52+08:00", "end_time":"2019-03-31 11:17:52+08:00", "textDescription":"\"A cozy spot for coffee and conversation.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5277, "details":"{'objects': ['Coffeehouse', 'Caf\u00e9', 'Hoppang', 'Dandelion coffee', 'Kopi tubruk', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'coffee, java', 'coffee, coffee tree', 'mezzanine, mezzanine floor, entresol'], 'places': ['coffee shop', 'bar', 'indoor general store', 'shop bakery', 'indoor pub'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6990.HEIC.compressed.jpg", "id":"photos_59" }, { "Unnamed: 0":60, "start_time":"2019-03-31 11:17:57+08:00", "end_time":"2019-03-31 11:17:57+08:00", "textDescription":"\"A cozy spot for coffee and conversation.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5277, "details":"{'objects': ['Coffeehouse', 'Caf\u00e9', 'Ipoh white coffee', 'Hoppang', 'Barista', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'brasserie', 'coffee, java', 'bakery, bakeshop, bakehouse'], 'places': ['coffee shop', 'bar', 'indoor general store', 'beer hall', 'shop bakery'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6991.HEIC.compressed.jpg", "id":"photos_60" }, { "Unnamed: 0":61, "start_time":"2019-03-31 11:23:27+08:00", "end_time":"2019-03-31 11:23:27+08:00", "textDescription":"\"Celebrating success!\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5277, "details":"{'objects': ['Award', 'Trophy', 'Shortstraw pine', 'Shortstraw pine', 'Karatalas', 'kauri pine, dammar pine', 'pine, pine tree, true pine', 'deodar, deodar cedar, Himalayan cedar, Cedrus deodara', 'timber tree', 'spruce'], 'places': ['coffee shop', 'tree house', 'delicatessen', 'restaurant', 'home office'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6992.HEIC.compressed.jpg", "id":"photos_61" }, { "Unnamed: 0":62, "start_time":"2019-03-31 11:29:26+08:00", "end_time":"2019-03-31 11:29:26+08:00", "textDescription":"Fresh sushi and drinks.", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5276, "details":"{'objects': ['Caf\u00e9', 'Cascara sagrada', 'Bar', 'Restaurant', 'Coffeehouse', 'brasserie', 'cafe, coffeehouse, coffee shop, coffee bar', 'mezzanine, mezzanine floor, entresol', 'automat', 'automat'], 'places': ['sushi bar', 'bar', 'restaurant', 'coffee shop', 'delicatessen'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6993.HEIC.compressed.jpg", "id":"photos_62" }, { "Unnamed: 0":63, "start_time":"2019-03-31 11:29:35+08:00", "end_time":"2019-03-31 11:29:35+08:00", "textDescription":"\"A cozy spot for a cup of coffee.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5276, "details":"{'objects': ['Caf\u00e9', 'Bar', 'Restaurant', 'Retail', 'Delicatessen', 'brasserie', 'bar', 'bar', 'bar', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['bar', 'restaurant', 'beer hall', 'indoor general store', 'delicatessen'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6994.HEIC.compressed.jpg", "id":"photos_63" }, { "Unnamed: 0":64, "start_time":"2019-03-31 13:38:53+08:00", "end_time":"2019-03-31 13:38:53+08:00", "textDescription":"\"Reaching new heights.\"", "address":"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan", "lat":25.0393, "long":121.5656, "details":"{'objects': ['Skyscraper', 'Tower running', 'Landmark', 'Tower', 'Monolith', 'skyscraper', 'landmark', 'tower', 'control tower', 'government building'], 'places': ['skyscraper', 'tower', 'office building', 'downtown', 'plaza'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6997.HEIC.compressed.jpg", "id":"photos_64" }, { "Unnamed: 0":65, "start_time":"2019-03-31 13:38:56+08:00", "end_time":"2019-03-31 13:38:56+08:00", "textDescription":"\"Reaching new heights.\"", "address":"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan", "lat":25.0392, "long":121.5656, "details":"{'objects': ['Tower running', 'Skyscraper', 'Landmark', 'Tower', 'Monolith', 'skyscraper', 'landmark', 'tower', 'control tower', 'intersection, crossroad, crossway, crossing, carrefour'], 'places': ['skyscraper', 'tower', 'crosswalk', 'downtown', 'plaza'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6998.HEIC.compressed.jpg", "id":"photos_65" }, { "Unnamed: 0":66, "start_time":"2019-03-31 14:02:19+08:00", "end_time":"2019-03-31 14:02:19+08:00", "textDescription":"\"A view from the top.\"", "address":"Taipei City Hall (City Hall Rd.), City Hall Road, Xinglong Village, Xinyi District, Xingya, Taipei, 11008, Taiwan", "lat":25.0378, "long":121.5634, "details":"{'objects': ['Landmark', 'Tower', 'Skyscraper', 'Control tower', 'Tower running', 'landmark', 'tower', 'skyscraper', 'control tower', 'national monument'], 'places': ['tower', 'skyscraper', 'office building', 'outdoor hotel', 'conference center'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_6999.HEIC.compressed.jpg", "id":"photos_66" }, { "Unnamed: 0":67, "start_time":"2019-03-31 14:07:01+08:00", "end_time":"2019-03-31 14:07:01+08:00", "textDescription":"\"The seat of power.\"", "address":"Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan", "lat":25.0379, "long":121.5607, "details":"{'objects': ['Presidential palace', 'Concert hall', 'Taiwanese opera', 'Conference hall', 'Convention center', 'assembly hall', 'concert hall', 'government building', 'exhibition hall, exhibition area', 'conference center, conference house'], 'places': ['conference center', 'legislative chamber', 'asia temple', 'performance arena', 'pavilion'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7001.HEIC.compressed.jpg", "id":"photos_67" }, { "Unnamed: 0":68, "start_time":"2019-03-31 14:08:35+08:00", "end_time":"2019-03-31 14:08:35+08:00", "textDescription":"\"A burst of color.\"", "address":"Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan", "lat":25.0387, "long":121.5604, "details":"{'objects': ['Impatiens', 'Groundcover', 'Botanical garden', 'Park', 'Landscaping', 'flowerbed, flower bed, bed of flowers', 'pink, garden pink', 'periwinkle, rose periwinkle, Madagascar periwinkle, old maid, Cape periwinkle, red periwinkle, cayenne jasmine, Catharanthus roseus, Vinca rosea', 'zoysia', 'portulaca'], 'places': ['botanical garden', 'formal garden', 'park', 'lawn', 'topiary garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7002.HEIC.compressed.jpg", "id":"photos_68" }, { "Unnamed: 0":69, "start_time":"2019-03-31 14:11:10+08:00", "end_time":"2019-03-31 14:11:10+08:00", "textDescription":"\"The seat of power.\"", "address":"Sun Yat-sen Memorial Hall, 505, Section 4, Ren'ai Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 11073, Taiwan", "lat":25.0397, "long":121.5603, "details":"{'objects': ['Presidential palace', 'Shuanghuan sceo', 'Statue', 'Taiwan passport', 'Lei cha', 'honor guard, guard of honor', 'government building', 'chancellery', 'Unknown Soldier', 'military policeman, MP'], 'places': ['legislative chamber', 'conference center', 'entrance hall', 'embassy', 'mausoleum'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7003.HEIC.compressed.jpg", "id":"photos_69" }, { "Unnamed: 0":70, "start_time":"2019-03-31 14:25:17+08:00", "end_time":"2019-03-31 14:25:17+08:00", "textDescription":"\"A sweet treat!\"", "address":"Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928, Guangfu South Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 10694, Taiwan", "lat":25.0386, "long":121.5578, "details":"{'objects': ['White mulberry', 'Coffeehouse', 'White coffee', 'Single-origin coffee', 'Azuki bean', 'coffee, coffee tree', 'rain tree, saman, monkeypod, monkey pod, zaman, zamang, Albizia saman', 'coffee bean, coffee berry, coffee', 'cafe, coffeehouse, coffee shop, coffee bar', 'bean tree'], 'places': ['coffee shop', 'shop bakery', 'indoor general store', 'tree house', 'gift shop'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7004.HEIC.compressed.jpg", "id":"photos_70" }, { "Unnamed: 0":71, "start_time":"2019-04-01 11:46:03+08:00", "end_time":"2019-04-01 11:46:03+08:00", "textDescription":"\"A cozy spot for coffee and conversation.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5277, "details":"{'objects': ['Coffeehouse', 'Caf\u00e9', 'Roasted barley tea', 'Hojicha', 'Barista', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'perfumery', 'tobacco shop, tobacconist shop, tobacconist', 'shop, store'], 'places': ['coffee shop', 'indoor general store', 'beer hall', 'delicatessen', 'bar'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7006.HEIC.compressed.jpg", "id":"photos_71" }, { "Unnamed: 0":72, "start_time":"2019-04-01 11:46:13+08:00", "end_time":"2019-04-01 11:46:13+08:00", "textDescription":"\"A cup of coffee and a moment of peace.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5277, "details":"{'objects': ['Caf\u00e9', 'Coffeehouse', 'Barista', 'Cafeteria', 'Restaurant', 'cafe, coffeehouse, coffee shop, coffee bar', 'restaurant, eating house, eating place, eatery', 'brasserie', 'tamp, tamper, tamping bar', 'cafeteria'], 'places': ['coffee shop', 'restaurant kitchen', 'cafeteria', 'restaurant', 'beer hall'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7007.HEIC.compressed.jpg", "id":"photos_72" }, { "Unnamed: 0":73, "start_time":"2019-04-01 11:46:18+08:00", "end_time":"2019-04-01 11:46:18+08:00", "textDescription":"\"A cozy spot for coffee and conversation.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5277, "details":"{'objects': ['Coffeehouse', 'Caf\u00e9', 'Barista', 'Hojicha', 'Roasted barley tea', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'restaurant, eating house, eating place, eatery', 'cafeteria', 'coffee, java'], 'places': ['coffee shop', 'restaurant kitchen', 'indoor general store', 'cafeteria', 'shop bakery'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7008.HEIC.compressed.jpg", "id":"photos_73" }, { "Unnamed: 0":74, "start_time":"2019-04-01 11:50:40+08:00", "end_time":"2019-04-01 11:50:40+08:00", "textDescription":"\"A classic Singaporean breakfast.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5276, "details":"{'objects': ['Kaya toast', 'Melt sandwich', 'Creamed eggs on toast', 'Welsh rarebit', 'Roti john', 'open-face sandwich, open sandwich', 'toast', 'sandwich', 'French toast', 'bite, collation, snack'], 'places': ['delicatessen', 'restaurant', 'shop bakery', 'trench', 'kitchen'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7009.HEIC.compressed.jpg", "id":"photos_74" }, { "Unnamed: 0":75, "start_time":"2019-04-01 13:05:56+08:00", "end_time":"2019-04-01 13:05:56+08:00", "textDescription":"\"A cup of coffee and a moment of peace.\"", "address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "lat":25.0437, "long":121.5276, "details":"{'objects': ['Caf\u00e9', 'Coffeehouse', 'Barista', 'Bar', 'Hojicha', 'cafe, coffeehouse, coffee shop, coffee bar', 'tamp, tamper, tamping bar', 'bar', 'bar', 'bar'], 'places': ['coffee shop', 'restaurant kitchen', 'bar', 'restaurant', 'cafeteria'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7011.HEIC.compressed.jpg", "id":"photos_75" }, { "Unnamed: 0":76, "start_time":"2019-04-01 13:10:47+08:00", "end_time":"2019-04-01 13:10:47+08:00", "textDescription":"\"Outdated technology discarded.\"", "address":"1914 Connection, Jinshan North Road, KuanHua Market, Meihua Village, Zhongzheng District, Huashan, Taipei, 10053, Taiwan", "lat":25.0437, "long":121.5299, "details":"{'objects': ['Motherboard', 'Cpu cache', 'CPU', 'Electronic component', 'Circuit component', 'CPU board, mother board', 'circuit board, circuit card, board, card, plug-in, add-in', 'printed circuit', 'chip, microchip, micro chip, silicon chip, microprocessor chip', 'integrated circuit, microcircuit'], 'places': ['junkyard', 'assembly line', 'landfill', 'hardware store', 'archive'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7012.HEIC.compressed.jpg", "id":"photos_76" }, { "Unnamed: 0":77, "start_time":"2019-04-01 14:08:24+08:00", "end_time":"2019-04-01 14:08:24+08:00", "textDescription":"\"Traditional Taiwanese Opera in the Legislative Chamber\"", "address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "lat":25.0348, "long":121.5216, "details":"{'objects': ['Taiwanese opera', 'Taiwan passport', 'Shuanghuan sceo', 'Statue', 'Function hall', 'chancellery', 'hall', 'hall', 'hall', 'national monument'], 'places': ['legislative chamber', 'throne room', 'lecture room', 'mausoleum', 'palace'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7013.HEIC.compressed.jpg", "id":"photos_77" }, { "Unnamed: 0":78, "start_time":"2019-04-01 14:09:49+08:00", "end_time":"2019-04-01 14:09:49+08:00", "textDescription":"\"A symbol of democracy.\"", "address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "lat":25.0347, "long":121.5218, "details":"{'objects': ['Statue', 'Shuanghuan sceo', 'Taiwanese opera', 'Taiwan passport', 'Presidential palace', 'chair of state', 'national monument', 'legislator', 'government building', 'shantung'], 'places': ['legislative chamber', 'lecture room', 'courthouse', 'mausoleum', 'throne room'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7014.HEIC.compressed.jpg", "id":"photos_78" }, { "Unnamed: 0":79, "start_time":"2019-04-01 14:09:52+08:00", "end_time":"2019-04-01 14:09:52+08:00", "textDescription":"\"A symbol of democracy.\"", "address":"\u4e2d\u6b63\u7d00\u5ff5\u5802\u9285\u50cf\u5927\u5ef3, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan", "lat":25.0346, "long":121.5219, "details":"{'objects': ['Statue', 'Shuanghuan sceo', 'Taiwanese opera', 'Legislator', 'Lei cha', 'chair of state', 'legislator', 'national monument', 'lawgiver, lawmaker', 'shantung'], 'places': ['legislative chamber', 'lecture room', 'courthouse', 'throne room', 'mausoleum'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7015.HEIC.compressed.jpg", "id":"photos_79" }, { "Unnamed: 0":80, "start_time":"2019-04-01 14:12:25+08:00", "end_time":"2019-04-01 14:12:25+08:00", "textDescription":"\"The Presidential Palace of Asia.\"", "address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "lat":25.0348, "long":121.5216, "details":"{'objects': ['Presidential palace', 'Chinese architecture', 'Taiwanese opera', 'Palace', 'Ssangyong istana', 'palace', 'palace', 'temple', 'temple', 'place of worship, house of prayer, house of God, house of worship'], 'places': ['asia temple', 'palace', 'formal garden', 'throne room', 'mausoleum'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7016.HEIC.compressed.jpg", "id":"photos_80" }, { "Unnamed: 0":81, "start_time":"2019-04-01 14:13:29+08:00", "end_time":"2019-04-01 14:13:29+08:00", "textDescription":"\"The Presidential Palace of Asia.\"", "address":"Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, Taiwan", "lat":25.0352, "long":121.5212, "details":"{'objects': ['Presidential palace', 'Chinese architecture', 'Taiwanese opera', 'Palace', 'Temple', 'palace', 'palace', 'temple', 'temple', 'national monument'], 'places': ['asia temple', 'palace', 'legislative chamber', 'formal garden', 'mausoleum'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7017.HEIC.compressed.jpg", "id":"photos_81" }, { "Unnamed: 0":82, "start_time":"2019-04-01 14:19:18+08:00", "end_time":"2019-04-01 14:19:18+08:00", "textDescription":"\"Ancient beauty.\"", "address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "lat":25.0352, "long":121.5219, "details":"{'objects': ['Chinese architecture', 'Presidential palace', 'Palace', 'Unesco world heritage site', 'Taiwan passport', 'palace', 'palace', 'china', 'temple', 'temple'], 'places': ['asia temple', 'palace', 'formal garden', 'plaza', 'legislative chamber'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7018.HEIC.compressed.jpg", "id":"photos_82" }, { "Unnamed: 0":83, "start_time":"2019-04-01 14:32:33+08:00", "end_time":"2019-04-01 14:32:33+08:00", "textDescription":"\"Ancient beauty.\"", "address":"\u5357\u5074\u6a13\u68af\u51fa\u53e3, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10013, Taiwan", "lat":25.0352, "long":121.519, "details":"{'objects': ['Chinese architecture', 'Taiwanese opera', 'Temple', 'Temple', 'Presidential palace', 'temple', 'temple', 'palace', 'palace', 'assembly hall'], 'places': ['asia temple', 'legislative chamber', 'palace', 'mausoleum', 'pavilion'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7019.HEIC.compressed.jpg", "id":"photos_83" }, { "Unnamed: 0":84, "start_time":"2019-04-01 14:32:43+08:00", "end_time":"2019-04-01 14:32:43+08:00", "textDescription":"\"Ancient beauty.\"", "address":"Democracy Boulevard, Linsen South Road Motor Tunnel, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan", "lat":25.0357, "long":121.5201, "details":"{'objects': ['Chinese architecture', 'Taiwanese opera', 'Temple', 'Temple', 'Presidential palace', 'temple', 'temple', 'assembly hall', 'palace', 'palace'], 'places': ['asia temple', 'legislative chamber', 'palace', 'mausoleum', 'pavilion'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7020.HEIC.compressed.jpg", "id":"photos_84" }, { "Unnamed: 0":85, "start_time":"2019-04-01 14:34:37+08:00", "end_time":"2019-04-01 14:34:37+08:00", "textDescription":"\"The Presidential Palace of Asia.\"", "address":"Liberty Square, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10001, Taiwan", "lat":25.0359, "long":121.5192, "details":"{'objects': ['Presidential palace', 'Temple', 'Temple', 'Taiwanese opera', 'Mortuary temple', 'temple', 'temple', 'place of worship, house of prayer, house of God, house of worship', 'mausoleum', 'palace'], 'places': ['asia temple', 'legislative chamber', 'mausoleum', 'palace', 'formal garden'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7021.HEIC.compressed.jpg", "id":"photos_85" }, { "Unnamed: 0":86, "start_time":"2019-04-01 18:04:00+08:00", "end_time":"2019-04-01 18:04:00+08:00", "textDescription":"\"A view from the top.\"", "address":"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "lat":25.027, "long":121.5741, "details":"{'objects': ['Observation tower', 'Taro', 'Bamboo shoot', 'Taiwan passport', 'Mount scenery', 'landmark', 'tower', 'macrozamia', 'control tower', 'lookout, observation tower, lookout station, observatory'], 'places': ['tower', 'pagoda', 'skyscraper', 'mountain', 'asia temple'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7022.HEIC.compressed.jpg", "id":"photos_86" }, { "Unnamed: 0":87, "start_time":"2019-04-01 18:10:42+08:00", "end_time":"2019-04-01 18:10:42+08:00", "textDescription":"\"A majestic view.\"", "address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0269, "long":121.5744, "details":"{'objects': ['Mount scenery', 'Taiwan passport', 'Yuanyang', 'Stinky tofu', 'Calung', 'city, metropolis, urban center', 'urban area, populated area', 'china', 'range, mountain range, range of mountains, chain, mountain chain, chain of mountains', 'mountain, mount'], 'places': ['downtown', 'mountain', 'residential neighborhood', 'valley', 'skyscraper'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7023.HEIC.compressed.jpg", "id":"photos_87" }, { "Unnamed: 0":88, "start_time":"2019-04-01 18:16:02+08:00", "end_time":"2019-04-01 18:16:02+08:00", "textDescription":"\"A view from the top.\"", "address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Liuhe Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0268, "long":121.5745, "details":"{'objects': ['Landmark', 'Tower', 'Tower running', 'Taro', 'Geography cone', 'landmark', 'tower', 'control tower', 'national monument', 'skyscraper'], 'places': ['tower', 'skyscraper', 'pagoda', 'asia temple', 'volcano'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7024.HEIC.compressed.jpg", "id":"photos_88" }, { "Unnamed: 0":89, "start_time":"2019-04-01 18:16:44+08:00", "end_time":"2019-04-01 18:16:44+08:00", "textDescription":"Exploring Taiwan.", "address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0272, "long":121.5729, "details":"{'objects': ['Taiwan passport', 'Mount scenery', 'Stinky tofu', 'Calung', 'Metropolitan area', 'city, metropolis, urban center', 'urban area, populated area', 'landmark', 'city district', 'china'], 'places': ['downtown', 'residential neighborhood', 'mountain', 'tower', 'skyscraper'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7025.HEIC.compressed.jpg", "id":"photos_89" }, { "Unnamed: 0":90, "start_time":"2019-04-01 18:18:23+08:00", "end_time":"2019-04-01 18:18:23+08:00", "textDescription":"\"A view from the top.\"", "address":"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0268139, "long":121.5743944, "details":"{'objects': ['Landmark', 'Tower running', 'Tower', 'Control tower', 'Transmission tower', 'landmark', 'tower', 'control tower', 'skyscraper', 'national monument'], 'places': ['tower', 'skyscraper', 'office building', 'downtown', 'volcano'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7026.HEIC.compressed.jpg", "id":"photos_90" }, { "Unnamed: 0":91, "start_time":"2019-04-01 18:18:34+08:00", "end_time":"2019-04-01 18:18:34+08:00", "textDescription":"\"A view from the top.\"", "address":"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0268083, "long":121.5743861, "details":"{'objects': ['Landmark', 'Tower running', 'Tower', 'Transmission tower', 'Skyscraper', 'landmark', 'tower', 'skyscraper', 'control tower', 'supporting tower'], 'places': ['tower', 'skyscraper', 'asia temple', 'pagoda', 'mountain'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7027.HEIC.compressed.jpg", "id":"photos_91" }, { "Unnamed: 0":92, "start_time":"2019-04-01 18:18:54+08:00", "end_time":"2019-04-01 18:18:54+08:00", "textDescription":"\"A view from the top.\"", "address":"\u8c61\u5c71\u770b\u53f0\u5317, 101\u5854\u6a132\u865f\u651d\u5f71\u5e73\u53f0, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0268722, "long":121.5744083, "details":"{'objects': ['Landmark', 'Tower running', 'Tower', 'Taiwan passport', 'Taro', 'landmark', 'tower', 'control tower', 'skyscraper', 'national monument'], 'places': ['tower', 'skyscraper', 'volcano', 'downtown', 'asia temple'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7028.HEIC.compressed.jpg", "id":"photos_92" }, { "Unnamed: 0":93, "start_time":"2019-04-01 18:19:16+08:00", "end_time":"2019-04-01 18:19:16+08:00", "textDescription":"Exploring Taiwan.", "address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0269, "long":121.5745, "details":"{'objects': ['Taiwan passport', 'Youtiao', 'Panorama', 'City', 'Calung', 'city, metropolis, urban center', 'urban area, populated area', 'landmark', 'city district', 'golden shower tree, drumstick tree, purging cassia, pudding pipe tree, canafistola, canafistula, Cassia fistula'], 'places': ['downtown', 'asia temple', 'skyscraper', 'residential neighborhood', 'mountain'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7029.HEIC.compressed.jpg", "id":"photos_93" }, { "Unnamed: 0":94, "start_time":"2019-04-01 18:27:54+08:00", "end_time":"2019-04-01 18:27:54+08:00", "textDescription":"\"Majestic beauty.\"", "address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0269, "long":121.5744, "details":"{'objects': ['Mount scenery', 'City', 'Taiwan passport', 'Metropolitan area', 'Cityscape', 'city, metropolis, urban center', 'mountain, mount', 'landmark', 'urban area, populated area', 'range, mountain range, range of mountains, chain, mountain chain, chain of mountains'], 'places': ['mountain', 'skyscraper', 'tower', 'downtown', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7030.HEIC.compressed.jpg", "id":"photos_94" }, { "Unnamed: 0":95, "start_time":"2019-04-01 18:28:24+08:00", "end_time":"2019-04-01 18:28:24+08:00", "textDescription":"\"A majestic view.\"", "address":"\u6960\u6960\u76f8\u671b, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0271, "long":121.5732, "details":"{'objects': ['Mount scenery', 'Gaohu', 'Cityscape', 'City', 'Skyline', 'city, metropolis, urban center', 'urban area, populated area', 'china', 'mountain, mount', 'city district'], 'places': ['downtown', 'mountain', 'skyscraper', 'residential neighborhood', 'tower'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7031.HEIC.compressed.jpg", "id":"photos_95" }, { "Unnamed: 0":96, "start_time":"2019-04-01 18:30:30+08:00", "end_time":"2019-04-01 18:30:30+08:00", "textDescription":"Exploring Taiwan.", "address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0269, "long":121.5745, "details":"{'objects': ['Taiwan passport', 'Youtiao', 'Mount scenery', 'Metropolitan area', 'City', 'city, metropolis, urban center', 'urban area, populated area', 'landmark', 'china', 'mountain, mount'], 'places': ['tower', 'downtown', 'skyscraper', 'mountain', 'residential neighborhood'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7032.HEIC.compressed.jpg", "id":"photos_96" }, { "Unnamed: 0":97, "start_time":"2019-04-01 18:30:38+08:00", "end_time":"2019-04-01 18:30:38+08:00", "textDescription":"\"A majestic view.\"", "address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0269, "long":121.5745, "details":"{'objects': ['Mount scenery', 'City', 'Metropolitan area', 'Cityscape', 'Taiwan passport', 'city, metropolis, urban center', 'urban area, populated area', 'mountain, mount', 'descent, declivity, fall, decline, declination, declension, downslope', 'landmark'], 'places': ['downtown', 'mountain', 'skyscraper', 'residential neighborhood', 'tower'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7033.HEIC.compressed.jpg", "id":"photos_97" }, { "Unnamed: 0":98, "start_time":"2019-04-01 18:30:50+08:00", "end_time":"2019-04-01 18:30:50+08:00", "textDescription":"\"Majestic beauty.\"", "address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0269, "long":121.5745, "details":"{'objects': ['Mount scenery', 'Taiwan passport', 'Youtiao', 'Metropolitan area', 'City', 'city, metropolis, urban center', 'landmark', 'urban area, populated area', 'mountain, mount', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['mountain', 'tower', 'downtown', 'skyscraper', 'residential neighborhood'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7034.HEIC.compressed.jpg", "id":"photos_98" }, { "Unnamed: 0":99, "start_time":"2019-04-01 18:33:02+08:00", "end_time":"2019-04-01 18:33:02+08:00", "textDescription":"\"A peaceful view.\"", "address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0269, "long":121.5745, "details":"{'objects': ['Mount scenery', 'Gaohu', 'Skyline', 'Cityscape', 'Hafei ruiyi', 'city, metropolis, urban center', 'urban area, populated area', 'china', 'hairpin', 'range, mountain range, range of mountains, chain, mountain chain, chain of mountains'], 'places': ['residential neighborhood', 'mountain', 'downtown', 'heliport', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7035.HEIC.compressed.jpg", "id":"photos_99" }, { "Unnamed: 0":100, "start_time":"2019-04-01 18:33:52+08:00", "end_time":"2019-04-01 18:33:52+08:00", "textDescription":"\"A view from the top.\"", "address":"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "lat":25.0267528, "long":121.5742333, "details":"{'objects': ['Control tower', 'Landmark', 'Tower', 'Observation tower', 'Tower running', 'control tower', 'landmark', 'tower', 'skyscraper', 'night-light'], 'places': ['tower', 'skyscraper', 'volcano', 'office building', 'mountain'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7036.HEIC.compressed.jpg", "id":"photos_100" }, { "Unnamed: 0":101, "start_time":"2019-04-01 18:34:03+08:00", "end_time":"2019-04-01 18:34:03+08:00", "textDescription":"\"A view from the top.\"", "address":"101\u5854\u6a131\u865f\u651d\u5f71\u5e73\u53f0, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "lat":25.0272722, "long":121.5731361, "details":"{'objects': ['Landmark', 'Control tower', 'Tower', 'Chinese new year', 'Tower running', 'landmark', 'control tower', 'tower', 'candy cane', 'skyscraper'], 'places': ['tower', 'skyscraper', 'office building', 'volcano', 'pagoda'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7037.HEIC.compressed.jpg", "id":"photos_101" }, { "Unnamed: 0":102, "start_time":"2019-04-01 18:34:13+08:00", "end_time":"2019-04-01 18:34:13+08:00", "textDescription":"Exploring the world from Taiwan.", "address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0272694, "long":121.5730139, "details":"{'objects': ['Taiwan passport', 'City', 'Mount scenery', 'Transmission tower', 'Cityscape', 'city, metropolis, urban center', 'landmark', 'skyscraper', 'tower', 'mountain, mount'], 'places': ['skyscraper', 'tower', 'mountain', 'downtown', 'residential neighborhood'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7038.HEIC.compressed.jpg", "id":"photos_102" }, { "Unnamed: 0":103, "start_time":"2019-04-01 18:34:18+08:00", "end_time":"2019-04-01 18:34:18+08:00", "textDescription":"Exploring Taiwan.", "address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0273167, "long":121.5730667, "details":"{'objects': ['Taiwan passport', 'City', 'Cityscape', 'Mount scenery', 'Youtiao', 'city, metropolis, urban center', 'landmark', 'urban area, populated area', 'tower', 'control tower'], 'places': ['tower', 'skyscraper', 'downtown', 'mountain', 'residential neighborhood'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7039.HEIC.compressed.jpg", "id":"photos_103" }, { "Unnamed: 0":104, "start_time":"2019-04-01 18:44:00+08:00", "end_time":"2019-04-01 18:44:00+08:00", "textDescription":"\"Youtiao in the Tower\"", "address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0274, "long":121.5723, "details":"{'objects': ['Youtiao', 'Mount scenery', 'Bamboo shoot', 'Taiwan passport', 'Transmission tower', 'landmark', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'city, metropolis, urban center', 'lookout, observation tower, lookout station, observatory', 'tower'], 'places': ['tower', 'skyscraper', 'mountain', 'downtown', 'residential neighborhood'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7040.HEIC.compressed.jpg", "id":"photos_104" }, { "Unnamed: 0":105, "start_time":"2019-04-01 18:47:11+08:00", "end_time":"2019-04-01 18:47:11+08:00", "textDescription":"Enjoying the view.", "address":"\u8c61\u5c71\u81ea\u7136\u6b65\u9053, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0272, "long":121.5732, "details":"{'objects': ['Panorama', 'Mount scenery', 'Youtiao', 'Canopy walkway', 'Hiking', 'rose chestnut, ironwood, ironwood tree, Mesua ferrea', 'golden shower tree, drumstick tree, purging cassia, pudding pipe tree, canafistola, canafistula, Cassia fistula', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'urban area, populated area', 'mountain ebony, orchid tree, Bauhinia variegata'], 'places': ['park', 'bamboo forest', 'pagoda', 'valley', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7041.HEIC.compressed.jpg", "id":"photos_105" }, { "Unnamed: 0":106, "start_time":"2019-04-01 18:54:00+08:00", "end_time":"2019-04-01 18:54:00+08:00", "textDescription":"\"A view from the top.\"", "address":"\u56db\u7378\u5c71\u6b65\u9053\u610f\u8c61\u62cd\u7167\u5ea7\u6905, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "lat":25.0274, "long":121.5716, "details":"{'objects': ['Tower', 'Skyscraper', 'Landmark', 'Tower running', 'Red stripe', 'tower', 'skyscraper', 'landmark', 'control tower', 'candy cane'], 'places': ['tower', 'skyscraper', 'office building', 'volcano', 'elevator shaft'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7042.HEIC.compressed.jpg", "id":"photos_106" }, { "Unnamed: 0":107, "start_time":"2019-04-02 19:09:25-07:00", "end_time":"2019-04-02 19:09:25-07:00", "textDescription":"\"Find your path to success.\"", "address":"State Highway 217, Randall County, Texas, United States", "lat":34.9839338071, "long":-101.7872104899, "details":"{'objects': ['Self-help book', 'Biography', 'Non-fiction', 'Book cover', 'Bisquick', 'book', 'olive', 'olive', 'denim, dungaree, jean', 'top, cover'], 'places': ['bookstore', 'indoor general store', 'gift shop', 'candy store', 'nursing home'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7043.HEIC.compressed.jpg", "id":"photos_107" }, { "Unnamed: 0":108, "start_time":"2019-04-02 19:10:05-07:00", "end_time":"2019-04-02 19:10:05-07:00", "textDescription":"\"Finding Solutions at Home\"", "address":"State Highway 217, Randall County, Texas, United States", "lat":34.9837942616, "long":-101.7873500354, "details":"{'objects': ['Self-help book', 'Book cover', 'Non-fiction', 'Science book', 'Prune', 'book', 'top, cover', 'organdy, organdie', 'elderberry', 'hagberry'], 'places': ['pantry', 'pharmacy', 'nursing home', 'galley', 'bookstore'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7044.HEIC.compressed.jpg", "id":"photos_108" }, { "Unnamed: 0":109, "start_time":"2019-04-02 19:16:56-07:00", "end_time":"2019-04-02 19:16:56-07:00", "textDescription":"\"Find your path to success.\"", "address":"State Highway 217, Randall County, Texas, United States", "lat":34.9839338071, "long":-101.7872104899, "details":"{'objects': ['Self-help book', 'Book cover', 'Book', 'Novel', 'Non-fiction', 'book', 'packet', 'top, cover', 'publication', 'packaging'], 'places': ['bookstore', 'office', 'gift shop', 'coffee shop', 'marsh'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7045.HEIC.compressed.jpg", "id":"photos_109" }, { "Unnamed: 0":110, "start_time":"2019-04-03 08:53:44-07:00", "end_time":"2019-04-03 08:53:44-07:00", "textDescription":"\"Hotel Room Invoice\"", "address":"2968, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375514743, "long":-101.9086043234, "details":"{'objects': ['Invoice', 'Document', 'Receipt', 'Mail', 'Mail', 'mailer', 'envelope', 'envelope', 'envelope', 'envelope, gasbag'], 'places': ['hotel room', 'motel', 'jail cell', 'nursing home', 'lobby'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7046.HEIC.compressed.jpg", "id":"photos_110" }, { "Unnamed: 0":111, "start_time":"2019-04-06 12:16:12-07:00", "end_time":"2019-04-06 12:16:12-07:00", "textDescription":"\"A splash of color.\"", "address":"2968, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375729428, "long":-101.9084111066, "details":"{'objects': ['Lupinus mutabilis', 'Fernleaf lavender', 'Saffron crocus', 'Camas', 'Tommie crocus', \"wild lupine, sundial lupine, Indian beet, old-maid's bonnet, Lupinus perennis\", 'blazing star, button snakeroot, gayfeather, snakeroot', 'false lupine, golden pea, yellow pea, Thermopsis macrophylla', 'dwarf iris, Iris cristata', \"purple clematis, purple virgin's bower, mountain clematis, Clematis verticillaris\"], 'places': ['botanical garden', 'formal garden', 'yard', 'zen garden', 'japanese garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7047.HEIC.compressed.jpg", "id":"photos_111" }, { "Unnamed: 0":112, "start_time":"2019-04-06 12:16:37-07:00", "end_time":"2019-04-06 12:16:37-07:00", "textDescription":"\"Fragrant beauty in the formal garden.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374539534, "long":-101.9084895634, "details":"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'French lavender', 'Lavandula dentata', 'Egyptian lavender', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'blazing star, button snakeroot, gayfeather, snakeroot', \"bog rose, wild pink, dragon's mouth, Arethusa bulbosa\"], 'places': ['formal garden', 'botanical garden', 'japanese garden', 'topiary garden', 'yard'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7048-EFFECTS.jpg.compressed.jpg", "id":"photos_112" }, { "Unnamed: 0":113, "start_time":"2019-04-06 12:16:36-07:00", "end_time":"2019-04-06 12:16:36-07:00", "textDescription":"\"Fragrant beauty in the formal garden.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374539534, "long":-101.9084895634, "details":"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'French lavender', 'Lavandula dentata', 'Egyptian lavender', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'blazing star, button snakeroot, gayfeather, snakeroot', \"bog rose, wild pink, dragon's mouth, Arethusa bulbosa\"], 'places': ['formal garden', 'botanical garden', 'japanese garden', 'topiary garden', 'yard'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7048.HEIC.compressed.jpg", "id":"photos_113" }, { "Unnamed: 0":114, "start_time":"2019-04-06 12:17:05-07:00", "end_time":"2019-04-06 12:17:05-07:00", "textDescription":"\"Fragrant beauty in the formal garden.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374333973, "long":-101.9085506521, "details":"{'objects': ['Fernleaf lavender', 'Camas', 'Lupinus mutabilis', 'Lavandula lanata', 'Saffron crocus', \"wild lupine, sundial lupine, Indian beet, old-maid's bonnet, Lupinus perennis\", 'spike lavender, French lavender, Lavandula latifolia', 'blazing star, button snakeroot, gayfeather, snakeroot', 'French lavender, Lavandula stoechas', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['formal garden', 'botanical garden', 'yard', 'zen garden', 'japanese garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7049.HEIC.compressed.jpg", "id":"photos_114" }, { "Unnamed: 0":115, "start_time":"2019-04-06 12:17:19-07:00", "end_time":"2019-04-06 12:17:19-07:00", "textDescription":"\"Fragrant beauty in the formal garden.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375205059, "long":-101.9085112895, "details":"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'Egyptian lavender', 'French lavender', 'Lavandula dentata', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'wild sage, wild clary, vervain sage, Salvia verbenaca', 'iris, flag, fleur-de-lis, sword lily'], 'places': ['formal garden', 'roof garden', 'yard', 'zen garden', 'topiary garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7050.HEIC.compressed.jpg", "id":"photos_115" }, { "Unnamed: 0":116, "start_time":"2019-04-06 12:17:32-07:00", "end_time":"2019-04-06 12:17:32-07:00", "textDescription":"\"Fragrant beauty in the formal garden.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375205059, "long":-101.9085112895, "details":"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'Camas', 'Egyptian lavender', 'Iris japonica', 'purple willow, red willow, red osier, basket willow, purple osier, Salix purpurea', 'spike lavender, French lavender, Lavandula latifolia', 'snow plant, Sarcodes sanguinea', 'French lavender, Lavandula stoechas', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['formal garden', 'japanese garden', 'botanical garden', 'yard', 'zen garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7051.HEIC.compressed.jpg", "id":"photos_116" }, { "Unnamed: 0":117, "start_time":"2019-04-06 12:17:40-07:00", "end_time":"2019-04-06 12:17:40-07:00", "textDescription":"\"A tranquil oasis in the garden.\"", "address":"2968, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375622085, "long":-101.908507715, "details":"{'objects': ['Smoketree', 'Redbud', 'Aesculus californica', 'Polygalaceae', 'Camas', 'smoke tree, smoke bush', 'purple willow, red willow, red osier, basket willow, purple osier, Salix purpurea', 'umbrella tree, umbrella magnolia, elkwood, elk-wood, Magnolia tripetala', 'flowering almond, oriental bush cherry, Prunus japonica', 'Japanese maple, full moon maple, Acer japonicum'], 'places': ['formal garden', 'botanical garden', 'japanese garden', 'yard', 'zen garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7052.HEIC.compressed.jpg", "id":"photos_117" }, { "Unnamed: 0":118, "start_time":"2019-04-10 15:59:42-07:00", "end_time":"2019-04-10 15:59:42-07:00", "textDescription":"\"A splash of color in the desert.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0373379482, "long":-101.9088202539, "details":"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'Egyptian lavender', 'California lilac', 'spike lavender, French lavender, Lavandula latifolia', 'purple sage, chaparral sage, Salvia leucophylla', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', \"purple heather, Brewer's mountain heather, Phyllodoce breweri\"], 'places': ['vegetation desert', 'yard', 'zen garden', 'botanical garden', 'lawn'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7053-EFFECTS.jpg.compressed.jpg", "id":"photos_118" }, { "Unnamed: 0":119, "start_time":"2019-04-10 15:59:41-07:00", "end_time":"2019-04-10 15:59:41-07:00", "textDescription":"\"A splash of color in the desert.\"", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0372723833, "long":-101.9088834144, "details":"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'California lilac', 'Egyptian lavender', 'purple sage, chaparral sage, Salvia leucophylla', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['vegetation desert', 'yard', 'botanical garden', 'lawn', 'zen garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7053.HEIC.compressed.jpg", "id":"photos_119" }, { "Unnamed: 0":120, "start_time":"2019-04-11 16:03:08-07:00", "end_time":"2019-04-11 16:03:08-07:00", "textDescription":"\"Fragrant beauty in the formal garden.\"", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0372938518, "long":-101.9086901976, "details":"{'objects': ['Lavandula lanata', 'Fernleaf lavender', 'Lavandula dentata', 'French lavender', 'English lavender', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'verbena, vervain', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['formal garden', 'zen garden', 'roof garden', 'lawn', 'driveway'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7055.HEIC.compressed.jpg", "id":"photos_120" }, { "Unnamed: 0":121, "start_time":"2019-04-11 17:50:51-07:00", "end_time":"2019-04-11 17:50:51-07:00", "textDescription":"California Buckeye in bloom.", "address":"2962, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0370684322, "long":-101.9084862465, "details":"{'objects': ['Aesculus californica', 'Chinese hawthorn', 'California laurel', 'Fruit tree', 'Crabapple', 'angiospermous tree, flowering tree', 'tangerine, tangerine tree', 'almond tree', 'mandarin, mandarin orange, mandarin orange tree, Citrus reticulata', 'clementine, clementine tree'], 'places': ['orchard', 'yard', 'lawn', 'zen garden', 'corral'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7056.HEIC.compressed.jpg", "id":"photos_121" }, { "Unnamed: 0":122, "start_time":"2019-04-11 17:50:53-07:00", "end_time":"2019-04-11 17:50:53-07:00", "textDescription":"A burst of citrus in the orchard.", "address":"2962, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0370684322, "long":-101.9084862465, "details":"{'objects': ['Calamondin', 'California laurel', 'Chinese hawthorn', 'Prunus spinosa', 'Fruit tree', 'angiospermous tree, flowering tree', 'almond tree', 'mandarin, mandarin orange, mandarin orange tree, Citrus reticulata', 'loquat, loquat tree, Japanese medlar, Japanese plum, Eriobotrya japonica', 'kumquat, cumquat, kumquat tree'], 'places': ['orchard', 'yard', 'corral', 'zen garden', 'japanese garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7057.HEIC.compressed.jpg", "id":"photos_122" }, { "Unnamed: 0":123, "start_time":"2019-04-11 17:51:04-07:00", "end_time":"2019-04-11 17:51:04-07:00", "textDescription":"\"A bounty of fruit.\"", "address":"2962, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0370523308, "long":-101.9086311591, "details":"{'objects': ['Fruit tree', 'Crabapple', 'Prunus', 'Prunus spinosa', 'Wild crabapple', 'apple tree', 'peach, peach tree, Prunus persica', 'angiospermous tree, flowering tree', 'Southern crab apple, flowering crab, Malus angustifolia', 'almond tree'], 'places': ['orchard', 'yard', 'lawn', 'cultivated field', 'tree farm'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7058-EFFECTS.jpg.compressed.jpg", "id":"photos_123" }, { "Unnamed: 0":124, "start_time":"2019-04-11 17:51:03-07:00", "end_time":"2019-04-11 17:51:03-07:00", "textDescription":"\"A splash of color.\"", "address":"2962, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0370469637, "long":-101.9086794633, "details":"{'objects': ['Crabapple', 'Fruit tree', 'Wild crabapple', 'Vinegar tree', 'Cedar bay cherry', 'apple tree', 'almond tree', 'peach, peach tree, Prunus persica', 'fruit tree', 'angiospermous tree, flowering tree'], 'places': ['orchard', 'yard', 'lawn', 'tree farm', 'corral'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7058.HEIC.compressed.jpg", "id":"photos_124" }, { "Unnamed: 0":125, "start_time":"2019-04-13 13:08:12-07:00", "end_time":"2019-04-13 13:08:12-07:00", "textDescription":"\"A splash of color in the desert.\"", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0372938518, "long":-101.9086901976, "details":"{'objects': ['Fernleaf lavender', 'Egyptian lavender', 'Lavandula lanata', 'French lavender', 'Lavandula dentata', 'blazing star, Mentzelia livicaulis, Mentzelia laevicaulis', \"common unicorn plant, devil's claw, common devil's claw, elephant-tusk, proboscis flower, ram's horn, Proboscidea louisianica\", 'wild sage, wild clary, vervain sage, Salvia verbenaca', 'spike lavender, French lavender, Lavandula latifolia', 'purple sage, chaparral sage, Salvia leucophylla'], 'places': ['vegetation desert', 'yard', 'wild field', 'zen garden', 'cultivated field'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7059.HEIC.compressed.jpg", "id":"photos_125" }, { "Unnamed: 0":126, "start_time":"2019-04-13 13:23:32-07:00", "end_time":"2019-04-13 13:23:32-07:00", "textDescription":"\"A splash of color in the desert.\"", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0372938518, "long":-101.9086901976, "details":"{'objects': ['Fernleaf lavender', 'French lavender', 'Egyptian lavender', 'Lavandula lanata', 'Lavandula dentata', 'purple sage, chaparral sage, Salvia leucophylla', \"California fuchsia, humming bird's trumpet, Epilobium canum canum, Zauschneria californica\", 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', \"common unicorn plant, devil's claw, common devil's claw, elephant-tusk, proboscis flower, ram's horn, Proboscidea louisianica\"], 'places': ['vegetation desert', 'lawn', 'yard', 'zen garden', 'house'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7060.HEIC.compressed.jpg", "id":"photos_126" }, { "Unnamed: 0":127, "start_time":"2019-04-13 13:23:49-07:00", "end_time":"2019-04-13 13:23:49-07:00", "textDescription":"California Poppies in bloom.", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0371650406, "long":-101.9087331346, "details":"{'objects': ['Eschscholzia californica', 'Narrow-leaved sundrops', 'Corn poppy', 'Tree poppy', 'Poppy family', 'California poppy, Eschscholtzia californica', 'wind poppy, flaming poppy, Stylomecon heterophyllum, Papaver heterophyllum', 'matilija poppy, California tree poppy, Romneya coulteri', 'corn poppy, field poppy, Flanders poppy, Papaver rhoeas', 'Iceland poppy, Papaver alpinum'], 'places': ['yard', 'wild field', 'lawn', 'cultivated field', 'hayfield'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7061.HEIC.compressed.jpg", "id":"photos_127" }, { "Unnamed: 0":128, "start_time":"2019-04-13 13:24:21-07:00", "end_time":"2019-04-13 13:24:21-07:00", "textDescription":"\"Fragrant beauty.\"", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0372938518, "long":-101.9086901976, "details":"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'Egyptian lavender', 'Lavandula dentata', 'purple sage, chaparral sage, Salvia leucophylla', 'spike lavender, French lavender, Lavandula latifolia', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'French lavender, Lavandula stoechas', 'blazing star, button snakeroot, gayfeather, snakeroot'], 'places': ['yard', 'driveway', 'vegetation desert', 'zen garden', 'lawn'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7062.HEIC.compressed.jpg", "id":"photos_128" }, { "Unnamed: 0":129, "start_time":"2019-04-14 08:23:09-07:00", "end_time":"2019-04-14 08:23:09-07:00", "textDescription":"\"A splash of color in the desert.\"", "address":"2968, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375622085, "long":-101.908507715, "details":"{'objects': ['Rock rose', 'Polygalaceae', 'California wild rose', 'Pink evening primrose', 'Subshrub', 'rockrose, rock rose', 'flowering shrub', 'pink, garden pink', 'portulaca', 'Wynnea sparassoides'], 'places': ['vegetation desert', 'botanical garden', 'yard', 'wild field', 'driveway'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7063.HEIC.compressed.jpg", "id":"photos_129" }, { "Unnamed: 0":130, "start_time":"2019-04-14 08:23:14-07:00", "end_time":"2019-04-14 08:23:14-07:00", "textDescription":"\"A splash of color in the desert.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374333973, "long":-101.9085506521, "details":"{'objects': ['Rock rose', 'Subshrub', 'Polygalaceae', 'Garden cosmos', 'Spurflowers', 'rockrose, rock rose', 'maiden pink, Dianthus deltoides', 'china pink, rainbow pink, Dianthus chinensis', 'Swan River daisy, Brachycome Iberidifolia', 'pink, garden pink'], 'places': ['vegetation desert', 'botanical garden', 'yard', 'wild field', 'park'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7064.HEIC.compressed.jpg", "id":"photos_130" }, { "Unnamed: 0":131, "start_time":"2019-04-14 11:09:42-07:00", "end_time":"2019-04-14 11:09:42-07:00", "textDescription":"\"Beauty in the Garden\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374333973, "long":-101.9085506521, "details":"{'objects': ['Rock rose', 'Eschscholzia californica', 'Large-flowered evening primrose ', 'Mentzelia lindleyi', 'Spurflowers', 'rockrose, rock rose', 'portulaca', 'Swan River daisy, Brachycome Iberidifolia', 'rose moss, sun plant, Portulaca grandiflora', 'wandflower, Sparaxis tricolor'], 'places': ['botanical garden', 'vegetation desert', 'lawn', 'yard', 'wild field'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7065.HEIC.compressed.jpg", "id":"photos_131" }, { "Unnamed: 0":132, "start_time":"2019-04-14 11:09:56-07:00", "end_time":"2019-04-14 11:09:56-07:00", "textDescription":"\"A splash of color in the desert.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374333973, "long":-101.9085506521, "details":"{'objects': ['Rock rose', 'Spurflowers', 'Zinnia angustifolia', 'Blanket flowers', 'Candytuft', 'rockrose, rock rose', 'Swan River daisy, Brachycome Iberidifolia', 'rose moss, sun plant, Portulaca grandiflora', 'portulaca', 'maiden pink, Dianthus deltoides'], 'places': ['vegetation desert', 'botanical garden', 'yard', 'wild field', 'lawn'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7066.HEIC.compressed.jpg", "id":"photos_132" }, { "Unnamed: 0":133, "start_time":"2019-04-14 19:19:06-07:00", "end_time":"2019-04-14 19:19:06-07:00", "textDescription":"\"A peaceful retreat in nature.\"", "address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "lat":49.288, "long":-123.1128, "details":"{'objects': ['Eco hotel', 'Convention center', 'Very large floating structure', 'Floating restaurant', 'Hotel', 'waterfront', 'hotel', 'conference center, conference house', 'houseboat', 'sun deck'], 'places': ['outdoor hotel', 'heliport', 'conference center', 'roof garden', 'hotel room'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7067.HEIC.compressed.jpg", "id":"photos_133" }, { "Unnamed: 0":134, "start_time":"2019-04-14 19:28:23-07:00", "end_time":"2019-04-14 19:28:23-07:00", "textDescription":"\"A view from above.\"", "address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "lat":49.2879, "long":-123.1127, "details":"{'objects': ['Convention center', 'Roof', 'Hotel', 'Eco hotel', 'Resort', 'roof', 'roof', 'hotel', 'waterfront', 'conference center, conference house'], 'places': ['roof garden', 'outdoor hotel', 'conference center', 'heliport', 'outdoor swimming pool'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7070.HEIC.compressed.jpg", "id":"photos_134" }, { "Unnamed: 0":135, "start_time":"2019-04-14 20:40:40-07:00", "end_time":"2019-04-14 20:40:40-07:00", "textDescription":"\"A modern marvel.\"", "address":"999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "lat":49.2882, "long":-123.1128, "details":"{'objects': ['Cable-stayed bridge', 'Segmental bridge', 'Fixed link', 'Skyway', 'Self-anchored suspension bridge', 'spinnaker', 'sail', 'marina', 'port', 'strip lighting'], 'places': ['bridge', 'harbor', 'restaurant', 'berth', 'outdoor hotel'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7071.HEIC.compressed.jpg", "id":"photos_135" }, { "Unnamed: 0":136, "start_time":"2019-04-15 08:03:01-07:00", "end_time":"2019-04-15 08:03:01-07:00", "textDescription":"\"A gathering place for all.\"", "address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "lat":49.288, "long":-123.1127, "details":"{'objects': ['Convention center', 'Hotel', 'Mixed-use', 'Very large floating structure', 'Artificial island', 'waterfront', 'hotel', 'conference center, conference house', 'sun deck', 'roof'], 'places': ['outdoor hotel', 'heliport', 'roof garden', 'conference center', 'hotel room'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7073.HEIC.compressed.jpg", "id":"photos_136" }, { "Unnamed: 0":137, "start_time":"2019-04-15 08:03:20-07:00", "end_time":"2019-04-15 08:03:20-07:00", "textDescription":"\"A view of the conference center.\"", "address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "lat":49.288, "long":-123.1128, "details":"{'objects': ['Panorama', 'Convention center', 'Resort', 'Peninsula', 'Beach ridge', 'waterfront', 'conference center, conference house', 'bay', 'hotel', 'oceanfront'], 'places': ['conference center', 'heliport', 'outdoor hotel', 'harbor', 'coast'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7074.HEIC.compressed.jpg", "id":"photos_137" }, { "Unnamed: 0":138, "start_time":"2019-04-15 12:16:09-07:00", "end_time":"2019-04-15 12:16:09-07:00", "textDescription":"\"Step into style.\"", "address":"Canada Place, West Waterfront Road, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "lat":49.2883, "long":-123.1144, "details":"{'objects': ['Shoe', 'Slip-on shoe', 'Walking shoe', 'Golf shoe', 'Running shoe', 'shoe', 'shoe', 'running shoe', 'heel', 'shoebox'], 'places': ['shoe shop', 'wave', 'indoor booth', 'dressing room', 'iceberg'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7075.HEIC.compressed.jpg", "id":"photos_138" }, { "Unnamed: 0":139, "start_time":"2019-04-15 12:34:01-07:00", "end_time":"2019-04-15 12:34:01-07:00", "textDescription":"\"Tasty and healthy!\"", "address":"Fairmont Pacific Rim, 1038, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "lat":49.2883, "long":-123.1167, "details":"{'objects': ['Veggie burger', 'Kiwiburger', 'Hamburger', 'Fast food', 'American food', 'hamburger, beefburger, burger', 'fast food', 'cheeseburger', 'convenience food', 'food, nutrient'], 'places': ['fastfood restaurant', 'restaurant', 'outdoor diner', 'food court', 'cafeteria'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7076.HEIC.compressed.jpg", "id":"photos_139" }, { "Unnamed: 0":140, "start_time":"2019-04-15 13:45:18-07:00", "end_time":"2019-04-15 13:45:18-07:00", "textDescription":"\"Cooking made easy!\"", "address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2898, "long":-123.116, "details":"{'objects': ['Electric griddle', 'Waffle iron', 'Sandwich toaster', 'Food warmer', 'Toaster oven', 'waffle iron', 'griddle', 'toaster oven', 'appliance', 'toaster'], 'places': ['kitchen', 'galley', 'restaurant kitchen', 'car interior', 'television room'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7078.HEIC.compressed.jpg", "id":"photos_140" }, { "Unnamed: 0":141, "start_time":"2019-04-15 13:47:29-07:00", "end_time":"2019-04-15 13:47:29-07:00", "textDescription":"\"Keeping it warm.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2898, "long":-123.1163, "details":"{'objects': ['Food warmer', 'Food dehydrator', 'Toaster oven', 'Food steamer', 'Oven', 'toaster oven', 'oven', 'microwave, microwave oven', 'gas oven', 'gas oven'], 'places': ['indoor booth', 'pizzeria', 'kitchen', 'restaurant kitchen', 'conference room'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7079.HEIC.compressed.jpg", "id":"photos_141" }, { "Unnamed: 0":142, "start_time":"2019-04-15 13:47:35-07:00", "end_time":"2019-04-15 13:47:35-07:00", "textDescription":"\"Preserving the harvest.\"", "address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2898, "long":-123.1159, "details":"{'objects': ['Food dehydrator', 'Bread machine', 'Food steamer', 'Breadbox', 'Sandwich toaster', 'toaster oven', 'bread-bin, breadbox', 'kitchen appliance', 'toaster', 'appliance'], 'places': ['kitchen', 'galley', 'restaurant kitchen', 'shop bakery', 'sauna'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7080.HEIC.compressed.jpg", "id":"photos_142" }, { "Unnamed: 0":143, "start_time":"2019-04-15 14:19:43-07:00", "end_time":"2019-04-15 14:19:43-07:00", "textDescription":"Brewing up a fresh cup of coffee.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2883, "long":-123.1165, "details":"{'objects': ['Barista', 'Single-origin coffee', 'Espresso machine', 'Coffeemaker', 'Drip coffee maker', 'espresso maker', 'coffee maker', 'tamp, tamper, tamping bar', 'espresso', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['coffee shop', 'galley', 'indoor booth', 'cafeteria', 'conference center'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7081.HEIC.compressed.jpg", "id":"photos_143" }, { "Unnamed: 0":144, "start_time":"2019-04-15 14:19:45-07:00", "end_time":"2019-04-15 14:19:45-07:00", "textDescription":"\"Freshly brewed.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2883, "long":-123.1165, "details":"{'objects': ['Single-origin coffee', 'Barista', 'Espresso machine', 'Espresso', 'Drip coffee maker', 'espresso maker', 'coffee maker', 'espresso', 'tamp, tamper, tamping bar', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['coffee shop', 'indoor booth', 'galley', 'conference center', 'indoor general store'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7082.HEIC.compressed.jpg", "id":"photos_144" }, { "Unnamed: 0":145, "start_time":"2019-04-15 14:19:50-07:00", "end_time":"2019-04-15 14:19:50-07:00", "textDescription":"\"Freshly brewed.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2883, "long":-123.1166, "details":"{'objects': ['Single-origin coffee', 'Barista', 'Espresso machine', 'Portafilter', 'Drip coffee maker', 'espresso maker', 'cafe, coffeehouse, coffee shop, coffee bar', 'coffee maker', 'espresso', 'tamp, tamper, tamping bar'], 'places': ['coffee shop', 'indoor booth', 'galley', 'indoor general store', 'bar'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7083.HEIC.compressed.jpg", "id":"photos_145" }, { "Unnamed: 0":146, "start_time":"2019-04-15 14:19:55-07:00", "end_time":"2019-04-15 14:19:55-07:00", "textDescription":"Brewing up a fresh cup of coffee.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2883, "long":-123.1166, "details":"{'objects': ['Barista', 'Espresso machine', 'Portafilter', 'Ristretto', 'Cortado', 'espresso maker', 'tamp, tamper, tamping bar', 'roaster', 'cafe, coffeehouse, coffee shop, coffee bar', 'coffee maker'], 'places': ['coffee shop', 'indoor general store', 'galley', 'assembly line', 'cockpit'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7084.HEIC.compressed.jpg", "id":"photos_146" }, { "Unnamed: 0":147, "start_time":"2019-04-15 14:19:56-07:00", "end_time":"2019-04-15 14:19:56-07:00", "textDescription":"Brewing up a fresh cup of coffee.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2884, "long":-123.1167, "details":"{'objects': ['Barista', 'Espresso machine', 'Portafilter', 'Cortado', 'Coffee grinder', 'espresso maker', 'tamp, tamper, tamping bar', 'espresso', 'roaster', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['coffee shop', 'indoor general store', 'galley', 'assembly line', 'cockpit'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7085.HEIC.compressed.jpg", "id":"photos_147" }, { "Unnamed: 0":148, "start_time":"2019-04-15 14:20:02-07:00", "end_time":"2019-04-15 14:20:02-07:00", "textDescription":"Brewing a perfect cup.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2884, "long":-123.1167, "details":"{'objects': ['Portafilter', 'Lever', 'Coffee grinder', 'Beer tap', 'Tap wrench', 'tamp, tamper, tamping bar', 'lever', 'lever', 'espresso maker', 'lever, lever tumbler'], 'places': ['coffee shop', 'bar', 'galley', 'lock chamber', 'restaurant kitchen'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7086.HEIC.compressed.jpg", "id":"photos_148" }, { "Unnamed: 0":149, "start_time":"2019-04-15 14:20:03-07:00", "end_time":"2019-04-15 14:20:03-07:00", "textDescription":"Brewing a perfect cup.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2884, "long":-123.1168, "details":"{'objects': ['Portafilter', 'Corzetti', 'Coffee grinder', 'Lever', 'Moka pot', 'tamp, tamper, tamping bar', 'espresso maker', 'lever', 'lever', 'espresso'], 'places': ['coffee shop', 'galley', 'bar', 'lock chamber', 'delicatessen'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7087.HEIC.compressed.jpg", "id":"photos_149" }, { "Unnamed: 0":150, "start_time":"2019-04-15 14:20:07-07:00", "end_time":"2019-04-15 14:20:07-07:00", "textDescription":"Brewing a perfect cup.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2884, "long":-123.1168, "details":"{'objects': ['Espresso machine', 'Barista', 'Single-origin coffee', 'Coffeemaker', 'Drip coffee maker', 'espresso maker', 'coffee maker', 'cafe, coffeehouse, coffee shop, coffee bar', 'espresso', 'tamp, tamper, tamping bar'], 'places': ['coffee shop', 'indoor booth', 'indoor general store', 'galley', 'conference center'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7088.HEIC.compressed.jpg", "id":"photos_150" }, { "Unnamed: 0":151, "start_time":"2019-04-15 14:20:07-07:00", "end_time":"2019-04-15 14:20:07-07:00", "textDescription":"Brewing up a fresh cup of coffee.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2884, "long":-123.1168, "details":"{'objects': ['Barista', 'Espresso machine', 'Single-origin coffee', 'Coffeemaker', 'Ristretto', 'espresso maker', 'coffee maker', 'espresso', 'cafe, coffeehouse, coffee shop, coffee bar', 'roaster'], 'places': ['coffee shop', 'indoor booth', 'indoor general store', 'galley', 'conference center'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7089.HEIC.compressed.jpg", "id":"photos_151" }, { "Unnamed: 0":152, "start_time":"2019-04-15 14:20:08-07:00", "end_time":"2019-04-15 14:20:08-07:00", "textDescription":"Brewing a perfect cup.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2884, "long":-123.1168, "details":"{'objects': ['Espresso machine', 'Barista', 'Espressino', 'Ristretto', 'Single-origin coffee', 'espresso maker', 'espresso', 'roaster', 'coffee maker', 'tamp, tamper, tamping bar'], 'places': ['coffee shop', 'galley', 'indoor booth', 'indoor general store', 'delicatessen'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7090.HEIC.compressed.jpg", "id":"photos_152" }, { "Unnamed: 0":153, "start_time":"2019-04-15 14:20:19-07:00", "end_time":"2019-04-15 14:20:19-07:00", "textDescription":"Brewing a perfect cup.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2883, "long":-123.1165, "details":"{'objects': ['Espresso machine', 'Barista', 'Single-origin coffee', 'Coffee grinder', 'Espressino', 'espresso maker', 'roaster', 'espresso', 'coffee maker', 'cafe, coffeehouse, coffee shop, coffee bar'], 'places': ['coffee shop', 'indoor booth', 'galley', 'indoor general store', 'conference center'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7091.HEIC.compressed.jpg", "id":"photos_153" }, { "Unnamed: 0":154, "start_time":"2019-04-15 14:20:20-07:00", "end_time":"2019-04-15 14:20:20-07:00", "textDescription":"Brewing up a fresh cup of coffee.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2883, "long":-123.1165, "details":"{'objects': ['Barista', 'Espresso machine', 'Coffee grinder', 'Single-origin coffee', 'Roasted grain beverage', 'roaster', 'espresso maker', 'cafe, coffeehouse, coffee shop, coffee bar', 'espresso', 'coffee maker'], 'places': ['coffee shop', 'galley', 'indoor booth', 'delicatessen', 'indoor general store'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7092.HEIC.compressed.jpg", "id":"photos_154" }, { "Unnamed: 0":155, "start_time":"2019-04-15 15:21:26-07:00", "end_time":"2019-04-15 15:21:26-07:00", "textDescription":"\"A peaceful view.\"", "address":"Bellaggio Caf\u00e9 & Gelateria, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2884, "long":-123.1149, "details":"{'objects': ['Harbor', 'Seaplane tender', 'Strait', 'Bulk carrier', 'Cruiseferry', 'waterfront', 'harbor, harbour', 'tugboat, tug, towboat, tower', 'dock, dockage, docking facility', 'container ship, containership, container vessel'], 'places': ['harbor', 'berth', 'pier', 'mountain snowy', 'coast'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7093.HEIC.compressed.jpg", "id":"photos_155" }, { "Unnamed: 0":156, "start_time":"2019-04-15 15:25:50-07:00", "end_time":"2019-04-15 15:25:50-07:00", "textDescription":"Celebrating Victoria Day in the harbor.", "address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "lat":49.2879, "long":-123.1128, "details":"{'objects': ['Victoria day', 'Lacustrine plain', 'Strait', 'Body of water', 'Panorama', 'waterfront', 'body of water, water', 'geographical area, geographic area, geographical region, geographic region', 'tract, piece of land, piece of ground, parcel of land, parcel', 'land, dry land, earth, ground, solid ground, terra firma'], 'places': ['harbor', 'coast', 'mountain', 'berth', 'downtown'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7094.HEIC.compressed.jpg", "id":"photos_156" }, { "Unnamed: 0":157, "start_time":"2019-04-15 15:25:58-07:00", "end_time":"2019-04-15 15:25:58-07:00", "textDescription":"Aerial view of the heliport.", "address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "lat":49.288, "long":-123.1125, "details":"{'objects': ['Panorama', 'Artificial island', 'Convention center', 'Victoria day', 'Very large floating structure', 'waterfront', 'conference center, conference house', 'body of water, water', 'sun deck', 'hotel'], 'places': ['heliport', 'conference center', 'outdoor hotel', 'hotel room', 'harbor'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7095.HEIC.compressed.jpg", "id":"photos_157" }, { "Unnamed: 0":158, "start_time":"2019-04-15 18:30:43-07:00", "end_time":"2019-04-15 18:30:43-07:00", "textDescription":"\"Ready for the show!\"", "address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2898, "long":-123.116, "details":"{'objects': ['Stage', 'Performance', 'Auditorium', 'Public speaking', 'Projection screen', 'stage', 'auditorium', 'projection', 'cardioid microphone', 'bandstand, outdoor stage, stand'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'amphitheater'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7099.HEIC.compressed.jpg", "id":"photos_158" }, { "Unnamed: 0":159, "start_time":"2019-04-15 18:30:48-07:00", "end_time":"2019-04-15 18:30:48-07:00", "textDescription":"\"Ready for the show!\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2897, "long":-123.116, "details":"{'objects': ['Stage', 'Performance', 'Auditorium', 'Concert', 'Projection screen', 'stage', 'auditorium', 'projection', 'gig', 'cardioid microphone'], 'places': ['indoor stage', 'performance arena', 'outdoor stage', 'auditorium', 'amphitheater'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7100.HEIC.compressed.jpg", "id":"photos_159" }, { "Unnamed: 0":160, "start_time":"2019-04-15 18:31:20-07:00", "end_time":"2019-04-15 18:31:20-07:00", "textDescription":"\"A captivating performance.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896, "long":-123.116, "details":"{'objects': ['Performance', 'Stage', 'Concert', 'Auditorium', 'Rock concert', 'stage', 'auditorium', 'gig', 'performer, performing artist', 'video recording, video'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'public atrium'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7101.HEIC.compressed.jpg", "id":"photos_160" }, { "Unnamed: 0":161, "start_time":"2019-04-15 18:31:22-07:00", "end_time":"2019-04-15 18:31:22-07:00", "textDescription":"\"A captivating performance.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896, "long":-123.116, "details":"{'objects': ['Performance', 'Stage', 'Concert', 'Auditorium', 'Musical Performance Sports', 'stage', 'auditorium', 'gig', 'performer, performing artist', 'video recording, video'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'ballroom'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7102.HEIC.compressed.jpg", "id":"photos_161" }, { "Unnamed: 0":162, "start_time":"2019-04-16 07:52:35-07:00", "end_time":"2019-04-16 07:52:35-07:00", "textDescription":"\"Explore the possibilities with an interactive kiosk.\"", "address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "lat":49.2885, "long":-123.1177, "details":"{'objects': ['Interactive kiosk', 'Copy stand', 'Kiosk', 'Enterprise software', 'Display advertising', 'booth, cubicle, stall, kiosk', 'stall, stand, sales booth', 'stand', 'display, video display', 'voting booth'], 'places': ['indoor booth', 'ticket booth', 'public atrium', 'elevator lobby', 'phone booth'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7106.HEIC.compressed.jpg", "id":"photos_162" }, { "Unnamed: 0":163, "start_time":"2019-04-16 07:52:38-07:00", "end_time":"2019-04-16 07:52:38-07:00", "textDescription":"\"Explore the possibilities with an interactive kiosk.\"", "address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "lat":49.2885, "long":-123.1176, "details":"{'objects': ['Interactive kiosk', 'Kiosk', 'Copy stand', 'Room divider', 'Photo booth', 'booth, cubicle, stall, kiosk', 'stall, stand, sales booth', 'stand', 'display, video display', 'voting booth'], 'places': ['indoor booth', 'ticket booth', 'phone booth', 'elevator lobby', 'conference center'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7107.HEIC.compressed.jpg", "id":"photos_163" }, { "Unnamed: 0":164, "start_time":"2019-04-16 07:52:47-07:00", "end_time":"2019-04-16 07:52:47-07:00", "textDescription":"\"Explore the possibilities with an interactive kiosk.\"", "address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "lat":49.2885, "long":-123.1177, "details":"{'objects': ['Interactive kiosk', 'Copy stand', 'Enterprise software', 'Room divider', 'Kiosk', 'booth, cubicle, stall, kiosk', 'stand', 'stall, stand, sales booth', 'facility, installation', 'partition, divider'], 'places': ['indoor booth', 'ticket booth', 'entrance hall', 'phone booth', 'elevator lobby'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7108.HEIC.compressed.jpg", "id":"photos_164" }, { "Unnamed: 0":165, "start_time":"2019-04-16 07:52:51-07:00", "end_time":"2019-04-16 07:52:51-07:00", "textDescription":"\"Explore the possibilities with an interactive kiosk.\"", "address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "lat":49.2885, "long":-123.1176, "details":"{'objects': ['Interactive kiosk', 'Room divider', 'Queue area', 'Copy stand', 'Kiosk', 'booth, cubicle, stall, kiosk', 'passageway', 'stand', 'partition, divider', 'anteroom, antechamber, entrance hall, hall, foyer, lobby, vestibule'], 'places': ['indoor booth', 'elevator lobby', 'entrance hall', 'lobby', 'corridor'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7109.HEIC.compressed.jpg", "id":"photos_165" }, { "Unnamed: 0":166, "start_time":"2019-04-16 10:02:50-07:00", "end_time":"2019-04-16 10:02:50-07:00", "textDescription":"\"Ready to present!\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2897, "long":-123.1159, "details":"{'objects': ['Presentation', 'Public speaking', 'Map', 'Africanis', 'Ndol\u00e9', 'samite', 'map', 'African', 'projection', 'Black African'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'conference center'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7110.HEIC.compressed.jpg", "id":"photos_166" }, { "Unnamed: 0":167, "start_time":"2019-04-16 10:35:31-07:00", "end_time":"2019-04-16 10:35:31-07:00", "textDescription":"\"Healthy and delicious!\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2897, "long":-123.1165, "details":"{'objects': ['Superfood', 'Beef brain', 'Coffee substitute', 'Brain', 'Brain', 'green mayonnaise, sauce verte', 'dietary supplement', 'food, nutrient', 'micronutrient', 'smoothie'], 'places': ['coffee shop', 'cafeteria', 'broadleaf forest', 'restaurant', 'bar'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7111.HEIC.compressed.jpg", "id":"photos_167" }, { "Unnamed: 0":168, "start_time":"2019-04-16 11:33:45-07:00", "end_time":"2019-04-16 11:33:45-07:00", "textDescription":"\"Ready to rock!\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896, "long":-123.116, "details":"{'objects': ['Microphone stand', 'Otamatone', 'Public speaking', 'Speaker', 'Lectern', 'cardioid microphone', 'Speaker', 'Segway, Segway Human Transporter, Segway HT', 'speaker, talker, utterer, verbalizer, verbaliser', 'front projector'], 'places': ['indoor stage', 'performance arena', 'outdoor stage', 'auditorium', 'conference room'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7113.HEIC.compressed.jpg", "id":"photos_168" }, { "Unnamed: 0":169, "start_time":"2019-04-16 15:58:10-07:00", "end_time":"2019-04-16 15:58:10-07:00", "textDescription":"\"Sharing ideas.\"", "address":"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "lat":49.2891, "long":-123.1175, "details":"{'objects': ['Presentation', 'Tzouras', 'Website', 'Foundation', 'Organization', 'framework', 'web site, website, internet site, site', 'housing, lodging, living accommodations', 'executive, executive director', 'dowel, dowel pin, joggle'], 'places': ['conference room', 'conference center', 'archive', 'building facade', 'stable'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7116.HEIC.compressed.jpg", "id":"photos_169" }, { "Unnamed: 0":170, "start_time":"2019-04-17 08:56:50-07:00", "end_time":"2019-04-17 08:56:50-07:00", "textDescription":"\"Speaking to a crowd.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2894, "long":-123.1161, "details":"{'objects': ['Public speaking', 'Presentation', 'Lecture', 'Learning', 'Audience', 'social scientist', 'projection', 'speaker, talker, utterer, verbalizer, verbaliser', 'culture medium, medium', 'sociologist'], 'places': ['auditorium', 'lecture room', 'performance arena', 'indoor stage', 'public atrium'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7118.HEIC.compressed.jpg", "id":"photos_170" }, { "Unnamed: 0":171, "start_time":"2019-04-17 09:16:52-07:00", "end_time":"2019-04-17 09:16:52-07:00", "textDescription":"\"Speaking to a crowd.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2895, "long":-123.1161, "details":"{'objects': ['Public speaking', 'Presentation', 'Projection screen', 'Conference hall', 'Multimedia projector', 'projection', 'auditorium', 'stage', 'Speaker', 'cardioid microphone'], 'places': ['auditorium', 'indoor stage', 'performance arena', 'lecture room', 'outdoor stage'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7119.HEIC.compressed.jpg", "id":"photos_171" }, { "Unnamed: 0":172, "start_time":"2019-04-17 09:51:56-07:00", "end_time":"2019-04-17 09:51:56-07:00", "textDescription":"\"Tech on the go.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2897, "long":-123.116, "details":"{'objects': ['Ipad', 'Digital photo frame', 'Screenshot', 'Snapshot', 'Screen', 'screen', 'display, video display', 'flat panel display, FPD', 'picture frame', 'stunt'], 'places': ['runway', 'street', 'staircase', 'crosswalk', 'sandbox'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7122.HEIC.compressed.jpg", "id":"photos_172" }, { "Unnamed: 0":173, "start_time":"2019-04-17 12:32:29-07:00", "end_time":"2019-04-17 12:32:29-07:00", "textDescription":"\"Urban living at its finest.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896, "long":-123.1159, "details":"{'objects': ['Mixed-use', 'Presentation', 'Skyscraper', 'Building', 'Tower', 'skyscraper', 'projection', 'tower', 'high-rise, tower block', 'building complex, complex'], 'places': ['skyscraper', 'tower', 'building facade', 'conference center', 'office building'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7124.HEIC.compressed.jpg", "id":"photos_173" }, { "Unnamed: 0":174, "start_time":"2019-04-17 12:35:20-07:00", "end_time":"2019-04-17 12:35:20-07:00", "textDescription":"\"Putting for glory!\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896, "long":-123.1161, "details":"{'objects': ['Pitch and putt', 'Indoor games and sports', 'Ladder golf', 'Public speaking', 'Speed golf', 'practice range', 'course', 'course', 'golf course, links course', 'projection'], 'places': ['performance arena', 'golf course', 'outdoor ice skating rink', 'ski slope', 'indoor ice skating rink'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7126.HEIC.compressed.jpg", "id":"photos_174" }, { "Unnamed: 0":175, "start_time":"2019-04-17 12:43:24-07:00", "end_time":"2019-04-17 12:43:24-07:00", "textDescription":"\"Sustainable hospitality at its finest.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896, "long":-123.1161, "details":"{'objects': ['Eco hotel', 'Resort', 'Presentation', 'Resort town', 'Conference hall', 'resort, resort hotel, holiday resort', 'housing, lodging, living accommodations', 'resort area, playground, vacation spot', 'housing', 'resort hotel, spa'], 'places': ['conference center', 'outdoor hotel', 'public atrium', 'auditorium', 'campus'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7127.HEIC.compressed.jpg", "id":"photos_175" }, { "Unnamed: 0":176, "start_time":"2019-04-17 12:43:27-07:00", "end_time":"2019-04-17 12:43:27-07:00", "textDescription":"\"A tranquil oasis in the city.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896, "long":-123.1159, "details":"{'objects': ['Eco hotel', 'Presentation', 'Outdoor structure', 'Artificial island', 'Canopy walkway', 'solar house', 'housing, lodging, living accommodations', 'slide, playground slide, sliding board', 'projection', 'resort area, playground, vacation spot'], 'places': ['public atrium', 'performance arena', 'indoor stage', 'roof garden', 'exterior balcony'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7128.HEIC.compressed.jpg", "id":"photos_176" }, { "Unnamed: 0":177, "start_time":"2019-04-17 13:44:56-07:00", "end_time":"2019-04-17 13:44:56-07:00", "textDescription":"Academic minds come together.", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2895, "long":-123.115, "details":"{'objects': ['Academic conference', 'Conference hall', 'Seminar', 'Yarrow', 'Public speaking', 'conference table, council table, council board', 'panel', 'social scientist', 'microeconomist, microeconomic expert', 'rafter, balk, baulk'], 'places': ['conference room', 'conference center', 'lecture room', 'recreation room', 'waiting room'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7129.HEIC.compressed.jpg", "id":"photos_177" }, { "Unnamed: 0":178, "start_time":"2019-04-17 18:34:48-07:00", "end_time":"2019-04-17 18:34:48-07:00", "textDescription":"\"Speaking Under the Sea\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2898, "long":-123.1161, "details":"{'objects': ['Public speaking', 'Deep-submergence vehicle', 'Presentation', 'Marine biology', 'Marine invertebrates', \"ocean floor, sea floor, ocean bottom, seabed, sea bottom, Davy Jones's locker, Davy Jones\", 'projection', 'submersible', 'front projector', 'sea pen'], 'places': ['ocean deep underwater', 'ocean', 'iceberg', 'ice shelf', 'aquarium'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7131.HEIC.compressed.jpg", "id":"photos_178" }, { "Unnamed: 0":179, "start_time":"2019-04-18 09:25:03-07:00", "end_time":"2019-04-18 09:25:03-07:00", "textDescription":"\"A stark reminder of our waste.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896, "long":-123.1157, "details":"{'objects': ['Presentation', 'Public speaking', 'Offshore drilling', 'Speech', 'Event', 'projection', 'social scientist', 'representation', 'stacks', 'scientist'], 'places': ['landfill', 'ocean', 'auditorium', 'outdoor stage', 'wind farm'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7134.HEIC.compressed.jpg", "id":"photos_179" }, { "Unnamed: 0":180, "start_time":"2019-04-18 11:48:54-07:00", "end_time":"2019-04-18 11:48:54-07:00", "textDescription":"\"Speaking to the crowd.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896083, "long":-123.1156611, "details":"{'objects': ['Public speaking', 'Presentation', 'Projection screen', 'Stage', 'Speech', 'stage', 'Speaker', 'background, desktop, screen background', 'projection', 'slacks'], 'places': ['indoor stage', 'auditorium', 'outdoor stage', 'performance arena', 'conference room'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7138.HEIC.compressed.jpg", "id":"photos_180" }, { "Unnamed: 0":181, "start_time":"2019-04-18 12:29:21-07:00", "end_time":"2019-04-18 12:29:21-07:00", "textDescription":"\"Complete the setup.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2887917, "long":-123.1161111, "details":"{'objects': ['Hardware accessory', 'Mobile phone accessories', 'Presentation', 'Flash memory', 'Router', 'connection, connexion, connector, connecter, connective', 'read-only memory, ROM, read-only storage, fixed storage', 'dongle', 'flash memory', 'router'], 'places': ['home theater', 'performance arena', 'indoor stage', 'assembly line', 'computer room'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7142.HEIC.compressed.jpg", "id":"photos_181" }, { "Unnamed: 0":182, "start_time":"2019-04-18 16:25:56-07:00", "end_time":"2019-04-18 16:25:56-07:00", "textDescription":"\"Learning to communicate effectively.\"", "address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "lat":49.2881972, "long":-123.1155778, "details":"{'objects': ['Public speaking', 'Academic conference', 'Seminar', 'Social group', 'Class', 'crucible, melting pot', 'speaker, talker, utterer, verbalizer, verbaliser', 'orator, speechmaker, rhetorician, public speaker, speechifier', 'choir', 'hijab'], 'places': ['classroom', 'conference room', 'auditorium', 'conference center', 'lobby'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7143.HEIC.compressed.jpg", "id":"photos_182" }, { "Unnamed: 0":183, "start_time":"2019-04-18 17:10:13-07:00", "end_time":"2019-04-18 17:10:13-07:00", "textDescription":"\"Aerialist in flight.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2893528, "long":-123.1158, "details":"{'objects': ['Aerialist', 'Trapeze', 'Static trapeze', 'Flying trapeze', 'Stunt', 'aerialist', 'trapeze', 'acrobat', 'circus acrobat', 'stunt'], 'places': ['performance arena', 'indoor stage', 'indoor hangar', 'auditorium', 'arch'], 'tags': ['animal']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7147.HEIC.compressed.jpg", "id":"photos_183" }, { "Unnamed: 0":184, "start_time":"2019-04-19 11:21:20-07:00", "end_time":"2019-04-19 11:21:20-07:00", "textDescription":"\"Speaking to the crowd.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896694, "long":-123.1161028, "details":"{'objects': ['Public speaking', 'Singing', 'Stage', 'Concert', 'Performance', 'stage', 'auditorium', 'cardioid microphone', 'gig', 'speaker, talker, utterer, verbalizer, verbaliser'], 'places': ['indoor stage', 'performance arena', 'auditorium', 'outdoor stage', 'amphitheater'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7153.HEIC.compressed.jpg", "id":"photos_184" }, { "Unnamed: 0":185, "start_time":"2019-04-19 11:22:29-07:00", "end_time":"2019-04-19 11:22:29-07:00", "textDescription":"\"Speaking to the crowd.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2897194, "long":-123.1159972, "details":"{'objects': ['Public speaking', 'Singing', 'Stage', 'Performance', 'Conformation show', 'stage', 'Mountie', 'choir', 'cowboy hat, ten-gallon hat', 'gig'], 'places': ['indoor stage', 'performance arena', 'outdoor stage', 'auditorium', 'corral'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7154.HEIC.compressed.jpg", "id":"photos_185" }, { "Unnamed: 0":186, "start_time":"2019-04-19 11:34:21-07:00", "end_time":"2019-04-19 11:34:21-07:00", "textDescription":"\"Ready to present!\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2896806, "long":-123.1160278, "details":"{'objects': ['Presentation', 'Event', 'Public speaking', 'Conference hall', 'Broadcasting', 'broadcasting', 'speaker, talker, utterer, verbalizer, verbaliser', 'stage', 'television, telecasting, TV, video', 'auditorium'], 'places': ['auditorium', 'indoor stage', 'outdoor stage', 'performance arena', 'conference center'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7155.HEIC.compressed.jpg", "id":"photos_186" }, { "Unnamed: 0":187, "start_time":"2019-04-19 11:37:25-07:00", "end_time":"2019-04-19 11:37:25-07:00", "textDescription":"\"Ready to present!\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2897222, "long":-123.1160056, "details":"{'objects': ['Presentation', 'Public speaking', 'Award ceremony', 'Event', 'Conference hall', 'display, video display', 'stage', 'projection', 'broadcasting', 'video recording, video'], 'places': ['indoor stage', 'auditorium', 'performance arena', 'conference center', 'outdoor stage'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7156.HEIC.compressed.jpg", "id":"photos_187" }, { "Unnamed: 0":188, "start_time":"2019-04-19 11:38:46-07:00", "end_time":"2019-04-19 11:38:46-07:00", "textDescription":"\"Speaking to a crowd.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.2895472, "long":-123.1160139, "details":"{'objects': ['Public speaking', 'Presentation', 'Event', 'Audience', 'Stage', 'projection', 'stage', 'auditorium', 'display, video display', 'speaker, talker, utterer, verbalizer, verbaliser'], 'places': ['auditorium', 'indoor stage', 'performance arena', 'public atrium', 'outdoor stage'], 'tags': ['animal']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7157.HEIC.compressed.jpg", "id":"photos_188" }, { "Unnamed: 0":189, "start_time":"2019-04-19 11:39:45-07:00", "end_time":"2019-04-19 11:39:45-07:00", "textDescription":"\"Speaking to a crowd.\"", "address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "lat":49.28975, "long":-123.1159056, "details":"{'objects': ['Public speaking', 'Presentation', 'Auditorium', 'Conference hall', 'Award ceremony', 'auditorium', 'speaker, talker, utterer, verbalizer, verbaliser', 'stage', 'projection', 'broadcasting'], 'places': ['auditorium', 'indoor stage', 'performance arena', 'conference center', 'public atrium'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7158.HEIC.compressed.jpg", "id":"photos_189" }, { "Unnamed: 0":190, "start_time":"2019-04-20 11:12:11-07:00", "end_time":"2019-04-20 11:12:11-07:00", "textDescription":"\"Luxury at its finest.\"", "address":"Old School Iron, 3928, Business Park Drive, Western Business Park, Amarillo, Randall County, Texas, 79110, United States", "lat":35.144139221, "long":-101.8799902973, "details":"{'objects': ['Tesla bluestar', 'Tesla', 'Musk', 'Tesla roadster', 'Electric car', 'copilot, co-pilot', 'electric, electric automobile, electric car', 'tourist, tourer, holidaymaker', 'fjord, fiord', 'dashboard, fascia'], 'places': ['car interior', 'wind farm', 'crevasse', 'desert road', 'cockpit'], 'tags': ['vehicle']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7161.HEIC.compressed.jpg", "id":"photos_190" }, { "Unnamed: 0":191, "start_time":"2019-04-20 13:02:58-07:00", "end_time":"2019-04-20 13:02:58-07:00", "textDescription":"\"Fragrant beauty in the formal garden.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374447112, "long":-101.9085727432, "details":"{'objects': ['Fernleaf lavender', 'English lavender', 'French lavender', 'Aubretia', 'Garden phlox', 'purple sage, chaparral sage, Salvia leucophylla', 'blazing star, Mentzelia livicaulis, Mentzelia laevicaulis', 'wild sage, wild clary, vervain sage, Salvia verbenaca', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'common sage, ramona, Salvia officinalis'], 'places': ['formal garden', 'zen garden', 'driveway', 'yard', 'patio'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7162.HEIC.compressed.jpg", "id":"photos_191" }, { "Unnamed: 0":192, "start_time":"2019-04-20 14:04:32-07:00", "end_time":"2019-04-20 14:04:32-07:00", "textDescription":"\"Grab and go!\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.037471622, "long":-101.9085482369, "details":"{'objects': ['Energy bar', 'Trail mix', 'Animal source foods', 'Spread', 'Whole food', 'bite, collation, snack', 'packet', 'grab bag', 'spread, paste', 'candy bar'], 'places': ['pantry', 'candy store', 'bar', 'assembly line', 'archive'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7163.HEIC.compressed.jpg", "id":"photos_192" }, { "Unnamed: 0":193, "start_time":"2019-04-20 17:58:49-07:00", "end_time":"2019-04-20 17:58:49-07:00", "textDescription":"\"Medical care in progress.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375025582, "long":-101.9086103024, "details":"{'objects': ['Invoice', 'Document', 'Letter', 'Receipt', 'Health care', 'envelope', 'envelope', 'envelope', 'envelope, gasbag', 'mailer'], 'places': ['hospital', 'hospital room', 'manufactured home', 'jail cell', 'hotel room'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7164.HEIC.compressed.jpg", "id":"photos_193" }, { "Unnamed: 0":194, "start_time":"2019-04-20 17:58:54-07:00", "end_time":"2019-04-20 17:58:54-07:00", "textDescription":"\"Medical care in progress.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374793614, "long":-101.9086024986, "details":"{'objects': ['Invoice', 'Voucher', 'Receipt', 'Document', 'Letter', 'envelope', 'envelope', 'envelope', 'Spam', 'policyholder'], 'places': ['hospital room', 'hospital', 'hotel room', 'manufactured home', 'motel'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7165.HEIC.compressed.jpg", "id":"photos_194" }, { "Unnamed: 0":195, "start_time":"2019-04-21 10:33:26-07:00", "end_time":"2019-04-21 10:33:26-07:00", "textDescription":"\"A splash of color in the woods.\"", "address":"2968, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0376662128, "long":-101.9086255236, "details":"{'objects': ['Sweet pepperbush', 'Spirea', 'Viburnum prunifolium', 'Groundcover', 'Subshrub', 'blueberry, blueberry bush', 'flowering shrub', 'blue pimpernel, blue skullcap, mad-dog skullcap, mad-dog weed, Scutellaria lateriflora', 'Oregon grape, Oregon holly grape, hollygrape, mountain grape, holly-leaves barberry, Mahonia aquifolium', 'spirea, spiraea'], 'places': ['broadleaf forest', 'lawn', 'yard', 'botanical garden', 'vegetation desert'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7166.HEIC.compressed.jpg", "id":"photos_195" }, { "Unnamed: 0":196, "start_time":"2019-04-21 11:39:34-07:00", "end_time":"2019-04-21 11:39:34-07:00", "textDescription":"\"California Buckeye in bloom\"", "address":"2964, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0373257755, "long":-101.9088371497, "details":"{'objects': ['Aesculus californica', 'Smoketree', 'Parlour maple', 'Garden', 'Prunus spinosa', 'Japanese maple, full moon maple, Acer japonicum', 'red maple, scarlet maple, swamp maple, Acer rubrum', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua', 'copper beech, purple beech, Fagus sylvatica atropunicea, Fagus purpurea, Fagus sylvatica purpurea', 'oriental cherry, Japanese cherry, Japanese flowering cherry, Prunus serrulata'], 'places': ['japanese garden', 'zen garden', 'formal garden', 'roof garden', 'yard'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7167.HEIC.compressed.jpg", "id":"photos_196" }, { "Unnamed: 0":197, "start_time":"2019-04-21 11:39:50-07:00", "end_time":"2019-04-21 11:39:50-07:00", "textDescription":"\"California Buckeye in bloom\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.037473039, "long":-101.9085968846, "details":"{'objects': ['Aesculus californica', 'Smoketree', 'Redbud', 'Wisteria', 'California lilac', 'Japanese maple, full moon maple, Acer japonicum', 'smoke tree, smoke bush', 'scarlet wisteria tree, vegetable hummingbird, Sesbania grandiflora', 'redbud, Cercis canadensis', 'Japanese wistaria, Wisteria floribunda'], 'places': ['japanese garden', 'zen garden', 'yard', 'botanical garden', 'formal garden'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7168.HEIC.compressed.jpg", "id":"photos_197" }, { "Unnamed: 0":198, "start_time":"2019-04-21 11:41:20-07:00", "end_time":"2019-04-21 11:41:20-07:00", "textDescription":"\"Beautiful smoketree in the yard.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374467829, "long":-101.9086780142, "details":"{'objects': ['Smoketree', 'Aesculus californica', 'Parlour maple', 'Crape myrtle', 'Silver Maple', 'Japanese maple, full moon maple, Acer japonicum', 'smoke tree, smoke bush', 'red maple, scarlet maple, swamp maple, Acer rubrum', 'Oregon maple, big-leaf maple, Acer macrophyllum', 'varnish tree, lacquer tree, Chinese lacquer tree, Japanese lacquer tree, Japanese varnish tree, Japanese sumac, Toxicodendron vernicifluum, Rhus verniciflua'], 'places': ['yard', 'driveway', 'japanese garden', 'porch', 'house'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7169.HEIC.compressed.jpg", "id":"photos_198" }, { "Unnamed: 0":199, "start_time":"2019-04-21 11:41:39-07:00", "end_time":"2019-04-21 11:41:39-07:00", "textDescription":"\"Beautiful smoketree in the driveway.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374539105, "long":-101.908582608, "details":"{'objects': ['Smoketree', 'Aesculus californica', 'Maple', 'Parlour maple', 'Black maple', 'Japanese maple, full moon maple, Acer japonicum', 'red maple, scarlet maple, swamp maple, Acer rubrum', 'Oregon maple, big-leaf maple, Acer macrophyllum', 'smoke tree, smoke bush', 'California box elder, Acer negundo Californicum'], 'places': ['driveway', 'yard', 'house', 'japanese garden', 'lawn'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7170.HEIC.compressed.jpg", "id":"photos_199" }, { "Unnamed: 0":200, "start_time":"2019-04-23 08:14:56-07:00", "end_time":"2019-04-23 08:14:56-07:00", "textDescription":"\"Fragrant beauty.\"", "address":"2968, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375636898, "long":-101.9086182994, "details":"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'Lavandula dentata', 'English lavender', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'purple sage, chaparral sage, Salvia leucophylla', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['driveway', 'patio', 'zen garden', 'yard', 'mountain path'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7173-EFFECTS.jpg.compressed.jpg", "id":"photos_200" }, { "Unnamed: 0":201, "start_time":"2019-04-23 08:14:55-07:00", "end_time":"2019-04-23 08:14:55-07:00", "textDescription":"\"Fragrant beauty.\"", "address":"2968, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0375636898, "long":-101.9086182994, "details":"{'objects': ['Fernleaf lavender', 'French lavender', 'Lavandula lanata', 'Lavandula dentata', 'Egyptian lavender', 'spike lavender, French lavender, Lavandula latifolia', 'French lavender, Lavandula stoechas', 'English lavender, Lavandula angustifolia, Lavandula officinalis', 'purple sage, chaparral sage, Salvia leucophylla', 'wild sage, wild clary, vervain sage, Salvia verbenaca'], 'places': ['driveway', 'patio', 'yard', 'zen garden', 'lawn'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7173.HEIC.compressed.jpg", "id":"photos_201" }, { "Unnamed: 0":202, "start_time":"2019-04-23 12:25:08-07:00", "end_time":"2019-04-23 12:25:08-07:00", "textDescription":"Grocery shopping done!", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374584189, "long":-101.9085732906, "details":"{'objects': ['Receipt', 'Coupon', 'Shopping list', 'Nutrition facts label', 'Voucher', 'checkout, checkout counter', 'bite, collation, snack', 'grocery bag', 'cash register, register', 'smoothie'], 'places': ['supermarket', 'drugstore', 'delicatessen', 'pantry', 'cafeteria'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7175.HEIC.compressed.jpg", "id":"photos_202" }, { "Unnamed: 0":203, "start_time":"2019-04-24 18:32:53-07:00", "end_time":"2019-04-24 18:32:53-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0619556, "long":-112.1084528, "details":"{'objects': ['Canyon', 'National park', 'Geographical feature', 'State park', 'Landform', 'overlook', 'canyon, canon', 'precipice', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['canyon', 'butte', 'valley', 'crevasse', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7176.HEIC.compressed.jpg", "id":"photos_203" }, { "Unnamed: 0":204, "start_time":"2019-04-24 18:35:19-07:00", "end_time":"2019-04-24 18:35:19-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.062175, "long":-112.1088944, "details":"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'Geographical feature', 'Panorama', 'precipice', 'overlook', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'canyon, canon', 'chasm'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7177.HEIC.compressed.jpg", "id":"photos_204" }, { "Unnamed: 0":205, "start_time":"2019-04-24 18:35:28-07:00", "end_time":"2019-04-24 18:35:28-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0621722, "long":-112.1088861, "details":"{'objects': ['Canyon', 'National park', 'Panorama', 'Geographical feature', 'Geological phenomenon', 'overlook', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'canyon, canon', 'precipice', 'chasm'], 'places': ['canyon', 'crevasse', 'butte', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7178.HEIC.compressed.jpg", "id":"photos_205" }, { "Unnamed: 0":206, "start_time":"2019-04-24 18:35:38-07:00", "end_time":"2019-04-24 18:35:38-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0621722, "long":-112.1088778, "details":"{'objects': ['Canyon', 'National park', 'Landform', 'Geological phenomenon', 'Panorama', 'geological formation, formation', 'ridge', 'butte', 'moraine', 'peak, crown, crest, top, tip, summit'], 'places': ['canyon', 'butte', 'mountain', 'crevasse', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7179.HEIC.compressed.jpg", "id":"photos_206" }, { "Unnamed: 0":207, "start_time":"2019-04-24 18:43:55-07:00", "end_time":"2019-04-24 18:43:55-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.062125, "long":-112.1087889, "details":"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Landform', 'Geological phenomenon', 'canyon, canon', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'overlook', 'precipice', 'butte'], 'places': ['canyon', 'butte', 'cliff', 'valley', 'crevasse'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7186.HEIC.compressed.jpg", "id":"photos_207" }, { "Unnamed: 0":208, "start_time":"2019-04-24 18:45:25-07:00", "end_time":"2019-04-24 18:45:25-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0620833, "long":-112.1088639, "details":"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Geological phenomenon', 'Eagle summit', 'overlook', 'canyon, canon', 'precipice', 'chasm', 'gorge'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7187.HEIC.compressed.jpg", "id":"photos_208" }, { "Unnamed: 0":209, "start_time":"2019-04-24 18:50:35-07:00", "end_time":"2019-04-24 18:50:35-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Grand Canyon, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0629583, "long":-112.1095972, "details":"{'objects': ['Canyon', 'National park', 'Landform', 'Geographical feature', 'Geology', 'canyon, canon', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'precipice', 'overlook', 'geological formation, formation'], 'places': ['canyon', 'butte', 'cliff', 'valley', 'crevasse'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7189.HEIC.compressed.jpg", "id":"photos_209" }, { "Unnamed: 0":210, "start_time":"2019-04-24 18:52:17-07:00", "end_time":"2019-04-24 18:52:17-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0626, "long":-112.1107639, "details":"{'objects': ['Canyon', 'National park', 'State park', 'Arizona Cypress', 'Outcrop', 'canyon, canon', 'overlook', 'ridge', 'gorge', 'precipice'], 'places': ['canyon', 'butte', 'vegetation desert', 'valley', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7190-EFFECTS.jpg.compressed.jpg", "id":"photos_210" }, { "Unnamed: 0":211, "start_time":"2019-04-24 18:52:16-07:00", "end_time":"2019-04-24 18:52:16-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0626, "long":-112.1107639, "details":"{'objects': ['Canyon', 'National park', 'Ridge', 'State park', 'Arizona Cypress', 'overlook', 'canyon, canon', 'ridge', 'ridge, ridgeline', 'butte'], 'places': ['canyon', 'butte', 'vegetation desert', 'valley', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7190.HEIC.compressed.jpg", "id":"photos_211" }, { "Unnamed: 0":212, "start_time":"2019-04-24 18:55:48-07:00", "end_time":"2019-04-24 18:55:48-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0632028, "long":-112.1114972, "details":"{'objects': ['Canyon', 'National park', 'State park', 'Panorama', 'Geological phenomenon', 'overlook', 'canyon, canon', 'precipice', 'gorge', 'chasm'], 'places': ['canyon', 'butte', 'crevasse', 'valley', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7191.HEIC.compressed.jpg", "id":"photos_212" }, { "Unnamed: 0":213, "start_time":"2019-04-24 18:55:59-07:00", "end_time":"2019-04-24 18:55:59-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0633083, "long":-112.1118083, "details":"{'objects': ['Canyon', 'National park', 'Panorama', 'Geographical feature', 'Geological phenomenon', 'overlook', 'canyon, canon', 'precipice', 'geological formation, formation', 'gorge'], 'places': ['canyon', 'butte', 'cliff', 'valley', 'crevasse'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7192.HEIC.compressed.jpg", "id":"photos_213" }, { "Unnamed: 0":214, "start_time":"2019-04-24 18:59:17-07:00", "end_time":"2019-04-24 18:59:17-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0632556, "long":-112.1116944, "details":"{'objects': ['Canyon', 'Kaibab Squirrel', 'California condor', 'Dog hiking', 'National park', 'overlook', 'California condor, Gymnogyps californianus', 'precipice', 'kachina', 'chasm'], 'places': ['canyon', 'cliff', 'butte', 'valley', 'crevasse'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7193.HEIC.compressed.jpg", "id":"photos_214" }, { "Unnamed: 0":215, "start_time":"2019-04-24 18:59:23-07:00", "end_time":"2019-04-24 18:59:23-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0632556, "long":-112.1116944, "details":"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'State park', 'Geographical feature', 'overlook', 'canyon, canon', 'gorge', 'precipice', 'chasm'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7194.HEIC.compressed.jpg", "id":"photos_215" }, { "Unnamed: 0":216, "start_time":"2019-04-24 18:59:30-07:00", "end_time":"2019-04-24 18:59:30-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0632556, "long":-112.1116944, "details":"{'objects': ['Canyon', 'National park', 'State park', 'Geological phenomenon', 'Geology', 'overlook', 'canyon, canon', 'gorge', 'precipice', 'chasm'], 'places': ['canyon', 'butte', 'cliff', 'valley', 'rock arch'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7195.HEIC.compressed.jpg", "id":"photos_216" }, { "Unnamed: 0":217, "start_time":"2019-04-24 19:06:22-07:00", "end_time":"2019-04-24 19:06:22-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0645306, "long":-112.1132667, "details":"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'State park', 'Geographical feature', 'overlook', 'canyon, canon', 'precipice', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7196.HEIC.compressed.jpg", "id":"photos_217" }, { "Unnamed: 0":218, "start_time":"2019-04-24 19:07:27-07:00", "end_time":"2019-04-24 19:07:27-07:00", "textDescription":"\"A new day dawns.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0644083, "long":-112.1134722, "details":"{'objects': ['Sunrise', 'Canyon', 'Two needle pinyon pine', 'Western juniper', 'National park', 'overlook', 'descent, declivity, fall, decline, declination, declension, downslope', 'gorge', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'table-mountain pine, prickly pine, hickory pine, Pinus pungens'], 'places': ['canyon', 'valley', 'cliff', 'butte', 'campsite'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7197.HEIC.compressed.jpg", "id":"photos_218" }, { "Unnamed: 0":219, "start_time":"2019-04-24 19:10:19-07:00", "end_time":"2019-04-24 19:10:19-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0649139, "long":-112.1152111, "details":"{'objects': ['Canyon', 'National park', 'Panorama', 'State park', 'Geological phenomenon', 'canyon, canon', 'overlook', 'gorge', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'butte', 'cliff', 'crevasse', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7198.HEIC.compressed.jpg", "id":"photos_219" }, { "Unnamed: 0":220, "start_time":"2019-04-24 19:10:24-07:00", "end_time":"2019-04-24 19:10:24-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0649139, "long":-112.1152111, "details":"{'objects': ['Canyon', 'National park', 'Panorama', 'State park', 'Granite dome', 'canyon, canon', 'overlook', 'wraparound', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'moraine'], 'places': ['canyon', 'butte', 'cliff', 'crevasse', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7199.HEIC.compressed.jpg", "id":"photos_220" }, { "Unnamed: 0":221, "start_time":"2019-04-24 19:13:51-07:00", "end_time":"2019-04-24 19:13:51-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.065675, "long":-112.1167972, "details":"{'objects': ['Canyon', 'National park', 'Western juniper', 'Arizona Cypress', 'Two needle pinyon pine', 'overlook', 'precipice', 'chasm', 'canyon, canon', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['canyon', 'crevasse', 'butte', 'cliff', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7200.HEIC.compressed.jpg", "id":"photos_221" }, { "Unnamed: 0":222, "start_time":"2019-04-24 19:13:55-07:00", "end_time":"2019-04-24 19:13:55-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.065675, "long":-112.1167972, "details":"{'objects': ['Canyon', 'National park', 'Western juniper', 'State park', 'Red juniper', 'overlook', 'precipice', 'chasm', 'wilderness, wild', 'canyon, canon'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7201.HEIC.compressed.jpg", "id":"photos_222" }, { "Unnamed: 0":223, "start_time":"2019-04-24 19:15:23-07:00", "end_time":"2019-04-24 19:15:23-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0595167, "long":-112.11605, "details":"{'objects': ['Canyon', 'Sunrise', 'Panorama', 'National park', 'Sunset', 'overlook', 'descent, declivity, fall, decline, declination, declension, downslope', 'canyon, canon', 'cliff dwelling', 'geographic point, geographical point'], 'places': ['canyon', 'butte', 'valley', 'crevasse', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7202.HEIC.compressed.jpg", "id":"photos_223" }, { "Unnamed: 0":224, "start_time":"2019-04-24 19:21:41-07:00", "end_time":"2019-04-24 19:21:41-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0658417, "long":-112.1168139, "details":"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'Panorama', 'Geology', 'overlook', 'precipice', 'canyon, canon', 'gorge', 'chasm'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7221.HEIC.compressed.jpg", "id":"photos_224" }, { "Unnamed: 0":225, "start_time":"2019-04-24 19:21:48-07:00", "end_time":"2019-04-24 19:21:48-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0659556, "long":-112.1167833, "details":"{'objects': ['Canyon', 'National park', 'Geological phenomenon', 'Geographical feature', 'Geology', 'overlook', 'precipice', 'canyon, canon', 'chasm', 'gorge'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7222.HEIC.compressed.jpg", "id":"photos_225" }, { "Unnamed: 0":226, "start_time":"2019-04-25 05:37:52-07:00", "end_time":"2019-04-25 05:37:52-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0602028, "long":-112.1063833, "details":"{'objects': ['Canyon', 'Sunrise', 'Sunset', 'Dawn', 'Horizon', 'descent, declivity, fall, decline, declination, declension, downslope', 'canyon, canon', 'overlook', 'precipice', 'gorge'], 'places': ['canyon', 'butte', 'crevasse', 'valley', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7223.HEIC.compressed.jpg", "id":"photos_226" }, { "Unnamed: 0":227, "start_time":"2019-04-25 05:39:19-07:00", "end_time":"2019-04-25 05:39:19-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0610167, "long":-112.1069806, "details":"{'objects': ['Canyon', 'Sunrise', 'Panorama', 'National park', 'Sunset', 'overlook', 'descent, declivity, fall, decline, declination, declension, downslope', 'canyon, canon', 'gorge', 'chasm'], 'places': ['canyon', 'crevasse', 'valley', 'butte', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7224.HEIC.compressed.jpg", "id":"photos_227" }, { "Unnamed: 0":228, "start_time":"2019-04-25 05:41:32-07:00", "end_time":"2019-04-25 05:41:32-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0591917, "long":-112.1162806, "details":"{'objects': ['Canyon', 'Sunrise', 'Dawn', 'Sunset', 'Panorama', 'overlook', 'canyon, canon', 'descent, declivity, fall, decline, declination, declension, downslope', 'peak, crown, crest, top, tip, summit', 'gorge'], 'places': ['canyon', 'butte', 'valley', 'mountain', 'crevasse'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7225.HEIC.compressed.jpg", "id":"photos_228" }, { "Unnamed: 0":229, "start_time":"2019-04-25 05:43:36-07:00", "end_time":"2019-04-25 05:43:36-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0601278, "long":-112.1067583, "details":"{'objects': ['Canyon', 'Sunrise', 'Lens flare', 'National park', 'Dawn', 'overlook', 'canyon, canon', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'descent, declivity, fall, decline, declination, declension, downslope', 'mount, setting'], 'places': ['canyon', 'valley', 'butte', 'cliff', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7230.HEIC.compressed.jpg", "id":"photos_229" }, { "Unnamed: 0":230, "start_time":"2019-04-25 05:43:42-07:00", "end_time":"2019-04-25 05:43:42-07:00", "textDescription":"\"A new day dawns.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0601722, "long":-112.1067111, "details":"{'objects': ['Sunrise', 'Canyon', 'Lens flare', 'Panorama', 'Sundowner', 'overlook', 'Seven Wonders of the Ancient World, Seven Wonders of the World', 'canyon, canon', 'descent, declivity, fall, decline, declination, declension, downslope', 'peak, crown, crest, top, tip, summit'], 'places': ['canyon', 'valley', 'butte', 'crevasse', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7231.HEIC.compressed.jpg", "id":"photos_230" }, { "Unnamed: 0":231, "start_time":"2019-04-25 05:44:01-07:00", "end_time":"2019-04-25 05:44:01-07:00", "textDescription":"\"A new day dawns.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0601667, "long":-112.1066806, "details":"{'objects': ['Sunrise', 'Lens flare', 'Sundowner', 'Eagle summit', 'Canyon', 'peak, crown, crest, top, tip, summit', 'overlook', 'canyon, canon', 'ridge', 'calash, caleche, calash top'], 'places': ['canyon', 'butte', 'valley', 'mountain', 'crevasse'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7234.HEIC.compressed.jpg", "id":"photos_231" }, { "Unnamed: 0":232, "start_time":"2019-04-25 05:44:16-07:00", "end_time":"2019-04-25 05:44:16-07:00", "textDescription":"\"A burst of light in the canyon.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0601722, "long":-112.106675, "details":"{'objects': ['Lens flare', 'Sundowner', 'Sunrise', 'Eagle summit', 'Panorama', 'rundle, spoke, rung', 'peak, crown, crest, top, tip, summit', 'canyon, canon', 'South African', 'mount, setting'], 'places': ['canyon', 'valley', 'mountain', 'butte', 'crevasse'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7235.HEIC.compressed.jpg", "id":"photos_232" }, { "Unnamed: 0":233, "start_time":"2019-04-25 05:44:18-07:00", "end_time":"2019-04-25 05:44:18-07:00", "textDescription":"\"A new day dawns.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0601722, "long":-112.106675, "details":"{'objects': ['Sunrise', 'Lens flare', 'Canyon', 'Sunset', 'Sundowner', 'sun, Sun', 'overlook', 'parhelion, mock sun, sundog', 'canyon, canon', 'aperture'], 'places': ['canyon', 'crevasse', 'valley', 'butte', 'mountain'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7236.HEIC.compressed.jpg", "id":"photos_233" }, { "Unnamed: 0":234, "start_time":"2019-04-25 05:44:23-07:00", "end_time":"2019-04-25 05:44:23-07:00", "textDescription":"\"A burst of light in the canyon.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0601722, "long":-112.106675, "details":"{'objects': ['Lens flare', 'Sunrise', 'Canyon', 'Sundowner', 'Sunset', 'overlook', 'canyon, canon', 'cliff, drop, drop-off', 'gorge', 'precipice'], 'places': ['canyon', 'butte', 'valley', 'cliff', 'mountain'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7237.HEIC.compressed.jpg", "id":"photos_234" }, { "Unnamed: 0":235, "start_time":"2019-04-25 05:45:05-07:00", "end_time":"2019-04-25 05:45:05-07:00", "textDescription":"\"A new day dawns.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0601472, "long":-112.106575, "details":"{'objects': ['Sunrise', 'Canyon', 'Sunset', 'Lens flare', 'Eagle summit', 'overlook', 'gorge', 'descent, declivity, fall, decline, declination, declension, downslope', 'canyon, canon', 'precipice'], 'places': ['canyon', 'crevasse', 'valley', 'cliff', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7238.HEIC.compressed.jpg", "id":"photos_235" }, { "Unnamed: 0":236, "start_time":"2019-04-25 05:46:17-07:00", "end_time":"2019-04-25 05:46:17-07:00", "textDescription":"\"A new day dawns.\"", "address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0592583, "long":-112.1160139, "details":"{'objects': ['Sunrise', 'Sundowner', 'Lens flare', 'Wadi', 'Alpine aster', 'canyon, canon', 'South African', 'overlook', 'gorge', 'sun, Sun'], 'places': ['canyon', 'valley', 'butte', 'badlands', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7239.HEIC.compressed.jpg", "id":"photos_236" }, { "Unnamed: 0":237, "start_time":"2019-04-25 05:46:26-07:00", "end_time":"2019-04-25 05:46:26-07:00", "textDescription":"\"A new day dawns.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0603056, "long":-112.1064694, "details":"{'objects': ['Sunrise', 'Eagle summit', 'Lens flare', 'Sunset', 'Summit', 'whitebark pine, whitebarked pine, Pinus albicaulis', 'bill, peak, eyeshade, visor, vizor', 'bristlecone pine, Rocky Mountain bristlecone pine, Pinus aristata', 'peak, crown, crest, top, tip, summit', 'alpinist'], 'places': ['canyon', 'valley', 'mountain', 'butte', 'badlands'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7240.HEIC.compressed.jpg", "id":"photos_237" }, { "Unnamed: 0":238, "start_time":"2019-04-25 05:47:17-07:00", "end_time":"2019-04-25 05:47:17-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0602528, "long":-112.1067361, "details":"{'objects': ['Canyon', 'National park', 'Cliff dwelling', 'Cliff', 'Panorama', 'overlook', 'precipice', 'cliff dwelling', 'chasm', 'canyon, canon'], 'places': ['canyon', 'cliff', 'crevasse', 'butte', 'mountain path'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7241.HEIC.compressed.jpg", "id":"photos_238" }, { "Unnamed: 0":239, "start_time":"2019-04-25 05:47:39-07:00", "end_time":"2019-04-25 05:47:39-07:00", "textDescription":"\"A new day dawns.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0602917, "long":-112.106575, "details":"{'objects': ['Sunrise', 'Lens flare', 'Canyon', 'Sunset', 'Corona', 'overlook', 'gorge', 'canyon, canon', 'precipice', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['canyon', 'valley', 'cliff', 'crevasse', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7242.HEIC.compressed.jpg", "id":"photos_239" }, { "Unnamed: 0":240, "start_time":"2019-04-25 05:47:50-07:00", "end_time":"2019-04-25 05:47:50-07:00", "textDescription":"\"A new day dawns.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0602917, "long":-112.106575, "details":"{'objects': ['Sunrise', 'Canyon', 'Lens flare', 'Sunset', 'Panorama', 'overlook', 'canyon, canon', 'gorge', 'sun, Sun', 'descent, declivity, fall, decline, declination, declension, downslope'], 'places': ['canyon', 'valley', 'crevasse', 'rock arch', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7243-EFFECTS.jpg.compressed.jpg", "id":"photos_240" }, { "Unnamed: 0":241, "start_time":"2019-04-25 05:47:49-07:00", "end_time":"2019-04-25 05:47:49-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0602917, "long":-112.106575, "details":"{'objects': ['Canyon', 'Sunrise', 'Lens flare', 'Sunset', 'National park', 'overlook', 'gorge', 'canyon, canon', 'descent, declivity, fall, decline, declination, declension, downslope', 'precipice'], 'places': ['canyon', 'valley', 'crevasse', 'cliff', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7243.HEIC.compressed.jpg", "id":"photos_241" }, { "Unnamed: 0":242, "start_time":"2019-04-25 05:54:16-07:00", "end_time":"2019-04-25 05:54:16-07:00", "textDescription":"\"Majestic Elk\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0616194, "long":-112.1087111, "details":"{'objects': ['Elk', 'Bighorn', 'Barbary sheep', 'Feral goat', 'Grazing', 'wapiti, elk, American elk, Cervus elaphus canadensis', 'aoudad, arui, audad, Barbary sheep, maned sheep, Ammotragus lervia', 'mule deer, burro deer, Odocoileus hemionus', 'red deer, elk, American elk, wapiti, Cervus elaphus', 'elk, European elk, moose, Alces alces'], 'places': ['pasture', 'campsite', 'park', 'outdoor museum', 'butte'], 'tags': ['animal']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7244.HEIC.compressed.jpg", "id":"photos_242" }, { "Unnamed: 0":243, "start_time":"2019-04-25 05:54:36-07:00", "end_time":"2019-04-25 05:54:36-07:00", "textDescription":"\"Enjoying the view.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0616417, "long":-112.1086056, "details":"{'objects': ['Grazing', 'Elk', 'Arabian camel', 'Camel', 'Bighorn', 'camel', 'Arabian camel, dromedary, Camelus dromedarius', 'wapiti, elk, American elk, Cervus elaphus canadensis', 'red deer, elk, American elk, wapiti, Cervus elaphus', 'bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis'], 'places': ['driveway', 'corral', 'watering hole', 'park', 'outdoor diner'], 'tags': ['animal']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7245.HEIC.compressed.jpg", "id":"photos_243" }, { "Unnamed: 0":244, "start_time":"2019-04-25 05:59:41-07:00", "end_time":"2019-04-25 05:59:41-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0623139, "long":-112.1087639, "details":"{'objects': ['Canyon', 'Sunrise', 'National park', 'Eagle summit', 'Lens flare', 'overlook', 'canyon, canon', 'gorge', 'descent, declivity, fall, decline, declination, declension, downslope', 'ridge'], 'places': ['canyon', 'valley', 'cliff', 'mountain', 'crevasse'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7246.HEIC.compressed.jpg", "id":"photos_244" }, { "Unnamed: 0":245, "start_time":"2019-04-25 06:10:13-07:00", "end_time":"2019-04-25 06:10:13-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0593028, "long":-112.1160444, "details":"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Cinder cone', 'Geological phenomenon', 'overlook', 'precipice', 'chasm', 'canyon, canon', 'geographic point, geographical point'], 'places': ['canyon', 'crevasse', 'butte', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7247.HEIC.compressed.jpg", "id":"photos_245" }, { "Unnamed: 0":246, "start_time":"2019-04-25 06:40:46-07:00", "end_time":"2019-04-25 06:40:46-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0647917, "long":-112.1226056, "details":"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Landform', 'Panorama', 'overlook', 'butte', 'precipice', 'moraine', 'geographic point, geographical point'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7248.HEIC.compressed.jpg", "id":"photos_246" }, { "Unnamed: 0":247, "start_time":"2019-04-25 06:43:27-07:00", "end_time":"2019-04-25 06:43:27-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0648639, "long":-112.1224361, "details":"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Landform', 'Geological phenomenon', 'overlook', 'canyon, canon', 'moraine', 'butte', 'gorge'], 'places': ['canyon', 'butte', 'crevasse', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7249.HEIC.compressed.jpg", "id":"photos_247" }, { "Unnamed: 0":248, "start_time":"2019-04-25 07:03:31-07:00", "end_time":"2019-04-25 07:03:31-07:00", "textDescription":"\"Nature's Artwork\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0581694, "long":-112.1264333, "details":"{'objects': ['Geological phenomenon', 'Geology', 'Rockfall', 'Poster board', 'Outcrop', 'geological formation, formation', 'sign', 'outcrop, outcropping, rock outcrop', 'poster, posting, placard, notice, bill, card', 'repository, monument'], 'places': ['cliff', 'canyon', 'outdoor museum', 'rock arch', 'badlands'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7250.HEIC.compressed.jpg", "id":"photos_248" }, { "Unnamed: 0":249, "start_time":"2019-04-25 07:21:47-07:00", "end_time":"2019-04-25 07:21:47-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"1.5 Mile Resthouse, Bright Angel Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0590972, "long":-112.1394972, "details":"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Alluvial fan', 'Geological phenomenon', 'overlook', 'chasm', 'precipice', 'canyon, canon', 'moraine'], 'places': ['canyon', 'crevasse', 'butte', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7251.HEIC.compressed.jpg", "id":"photos_249" }, { "Unnamed: 0":250, "start_time":"2019-04-25 07:27:41-07:00", "end_time":"2019-04-25 07:27:41-07:00", "textDescription":"\"A peaceful view.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0573194, "long":-112.1321556, "details":"{'objects': ['Two needle pinyon pine', 'Arizona Cypress', 'Red juniper', 'Western juniper', 'Mexican pinyon', 'gymnospermous tree', 'shade tree', 'Arizona cypress, Cupressus arizonica', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'treelet'], 'places': ['canyon', 'butte', 'vegetation desert', 'cliff', 'crevasse'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7252.HEIC.compressed.jpg", "id":"photos_250" }, { "Unnamed: 0":251, "start_time":"2019-04-25 07:27:43-07:00", "end_time":"2019-04-25 07:27:43-07:00", "textDescription":"\"A peaceful view.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0573194, "long":-112.1321556, "details":"{'objects': ['Two needle pinyon pine', 'Arizona Cypress', 'Red juniper', 'Western juniper', 'Gambel oak', 'shade tree', 'gymnospermous tree', 'Arizona cypress, Cupressus arizonica', 'treelet', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa'], 'places': ['canyon', 'butte', 'crevasse', 'vegetation desert', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7253.HEIC.compressed.jpg", "id":"photos_251" }, { "Unnamed: 0":252, "start_time":"2019-04-25 08:54:45-07:00", "end_time":"2019-04-25 08:54:45-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "lat":36.0630694, "long":-112.1239611, "details":"{'objects': ['Canyon', 'National park', 'Geographical feature', 'Cinder cone', 'Landform', 'overlook', 'canyon, canon', 'moraine', 'precipice', 'chasm'], 'places': ['canyon', 'crevasse', 'butte', 'valley', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7254.HEIC.compressed.jpg", "id":"photos_252" }, { "Unnamed: 0":253, "start_time":"2019-04-25 14:38:48-07:00", "end_time":"2019-04-25 14:38:48-07:00", "textDescription":"\"Nature's beauty.\"", "address":"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8663472, "long":-111.7747417, "details":"{'objects': ['Landscaping', 'Arizona Cypress', 'Panorama', 'Butte', 'Canyon', 'butte', 'dude ranch', 'outcrop, outcropping, rock outcrop', 'overlook', 'backyard'], 'places': ['butte', 'canyon', 'vegetation desert', 'outdoor church', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7261.HEIC.compressed.jpg", "id":"photos_253" }, { "Unnamed: 0":254, "start_time":"2019-04-25 14:39:05-07:00", "end_time":"2019-04-25 14:39:05-07:00", "textDescription":"\"Exploring nature's beauty.\"", "address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8665167, "long":-111.7749417, "details":"{'objects': ['Landscaping', 'Canyon', 'Arizona Cypress', 'Panorama', 'State park', 'butte', 'dude ranch', 'overlook', 'mountainside, versant', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'butte', 'vegetation desert', 'mountain', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7262.HEIC.compressed.jpg", "id":"photos_254" }, { "Unnamed: 0":255, "start_time":"2019-04-25 17:54:13-07:00", "end_time":"2019-04-25 17:54:13-07:00", "textDescription":"\"A view of Butte from the Butte.\"", "address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8535194, "long":-111.7898167, "details":"{'objects': ['Butte', 'Cinder cone', 'Granite dome', 'Volcanic plug', 'Organ pipe', 'butte', 'broken arch', 'overlook', 'tract, piece of land, piece of ground, parcel of land, parcel', 'geological formation, formation'], 'places': ['butte', 'valley', 'canyon', 'mountain', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7267.HEIC.compressed.jpg", "id":"photos_255" }, { "Unnamed: 0":256, "start_time":"2019-04-25 18:01:35-07:00", "end_time":"2019-04-25 18:01:35-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8540111, "long":-111.7882222, "details":"{'objects': ['Canyon', 'Cliff dwelling', 'Butte', 'Valley', 'Promontory', 'cliff dwelling', 'broken arch', 'butte', 'tract, piece of land, piece of ground, parcel of land, parcel', 'overlook'], 'places': ['canyon', 'butte', 'valley', 'vegetation desert', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7268.HEIC.compressed.jpg", "id":"photos_256" }, { "Unnamed: 0":257, "start_time":"2019-04-25 18:03:14-07:00", "end_time":"2019-04-25 18:03:14-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"322, Oak Creek Boulevard, Oak Creek Dev No. 1, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8590389, "long":-111.7877972, "details":"{'objects': ['Canyon', 'Arizona Cypress', 'Cliff dwelling', 'Butte', \"Devil's bridge\", 'cliff dwelling', 'broken arch', 'butte', 'kachina', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'butte', 'vegetation desert', 'valley', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7269.HEIC.compressed.jpg", "id":"photos_257" }, { "Unnamed: 0":258, "start_time":"2019-04-25 18:15:41-07:00", "end_time":"2019-04-25 18:15:41-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8551111, "long":-111.7809833, "details":"{'objects': ['Canyon', 'Cinder cone', 'State park', 'Alluvial fan', 'Organ pipe', 'wilderness, wild', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'broken arch', 'tract, piece of land, piece of ground, parcel of land, parcel', 'kachina'], 'places': ['canyon', 'valley', 'vegetation desert', 'campsite', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7270.HEIC.compressed.jpg", "id":"photos_258" }, { "Unnamed: 0":259, "start_time":"2019-04-25 18:22:55-07:00", "end_time":"2019-04-25 18:22:55-07:00", "textDescription":"A breathtaking view.", "address":"Brewer Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8564722, "long":-111.7794333, "details":"{'objects': ['Panorama', \"Colorado four o'clock\", 'Hiking', 'Cliff dwelling', 'Valley', 'overlook', 'cliff dwelling', 'butte', 'descent, declivity, fall, decline, declination, declension, downslope', 'cliff, drop, drop-off'], 'places': ['valley', 'butte', 'cliff', 'canyon', 'rock arch'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7271.HEIC.compressed.jpg", "id":"photos_259" }, { "Unnamed: 0":260, "start_time":"2019-04-25 18:24:57-07:00", "end_time":"2019-04-25 18:24:57-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8558583, "long":-111.779075, "details":"{'objects': ['Canyon', 'Cliff dwelling', \"Devil's bridge\", 'Cinder cone', 'Hiking', 'cliff dwelling', 'overlook', 'broken arch', 'outcrop, outcropping, rock outcrop', 'butte'], 'places': ['canyon', 'butte', 'valley', 'rock arch', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7273.HEIC.compressed.jpg", "id":"photos_260" }, { "Unnamed: 0":261, "start_time":"2019-04-25 18:25:06-07:00", "end_time":"2019-04-25 18:25:06-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8558528, "long":-111.7791056, "details":"{'objects': ['Canyon', 'Hiking', 'Cliff dwelling', 'Hiking boot', 'Valley', 'cliff dwelling', 'overlook', 'descent, declivity, fall, decline, declination, declension, downslope', 'broken arch', 'outcrop, outcropping, rock outcrop'], 'places': ['canyon', 'valley', 'rock arch', 'butte', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7274.HEIC.compressed.jpg", "id":"photos_261" }, { "Unnamed: 0":262, "start_time":"2019-04-25 18:42:55-07:00", "end_time":"2019-04-25 18:42:55-07:00", "textDescription":"\"A burst of color.\"", "address":"2, Emblem Place, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8613389, "long":-111.7809306, "details":"{'objects': ['Rainbow', 'Rainbow', 'Atmospheric phenomenon', \"Colorado four o'clock\", 'Rainbow smelt', 'broken arch', 'atmospheric phenomenon', 'madras', 'serape, sarape', 'butte'], 'places': ['canyon', 'butte', 'mountain', 'valley', 'arch'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7276.HEIC.compressed.jpg", "id":"photos_262" }, { "Unnamed: 0":263, "start_time":"2019-04-25 18:43:03-07:00", "end_time":"2019-04-25 18:43:03-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.854675, "long":-111.7834917, "details":"{'objects': ['Rainbow', 'Rainbow', 'Three sisters', 'Atmospheric phenomenon', 'Natural arch', 'broken arch', 'atmospheric phenomenon', 'half-and-half', 'madras', 'beam'], 'places': ['canyon', 'rock arch', 'arch', 'valley', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7277.HEIC.compressed.jpg", "id":"photos_263" }, { "Unnamed: 0":264, "start_time":"2019-04-25 18:43:05-07:00", "end_time":"2019-04-25 18:43:05-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8546306, "long":-111.7835833, "details":"{'objects': ['Rainbow', 'Rainbow', 'Natural arch', 'Three sisters', 'Atmospheric phenomenon', 'broken arch', 'atmospheric phenomenon', 'madras', 'Moorish arch, horseshoe arch', 'windfall'], 'places': ['canyon', 'rock arch', 'valley', 'arch', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7278.HEIC.compressed.jpg", "id":"photos_264" }, { "Unnamed: 0":265, "start_time":"2019-04-25 18:43:14-07:00", "end_time":"2019-04-25 18:43:14-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8546972, "long":-111.7836083, "details":"{'objects': ['Rainbow', 'Rainbow', 'Geological phenomenon', \"Colorado four o'clock\", 'Canyon', 'broken arch', 'atmospheric phenomenon', 'cliff, drop, drop-off', 'soil horizon', 'canyon, canon'], 'places': ['canyon', 'valley', 'butte', 'rock arch', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7279.HEIC.compressed.jpg", "id":"photos_265" }, { "Unnamed: 0":266, "start_time":"2019-04-25 18:43:22-07:00", "end_time":"2019-04-25 18:43:22-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8546778, "long":-111.7836, "details":"{'objects': ['Rainbow', 'Rainbow', \"Colorado four o'clock\", 'Atmospheric phenomenon', 'Rainbow smelt', 'atmospheric phenomenon', 'broken arch', 'beam', 'madras', 'serape, sarape'], 'places': ['butte', 'rock arch', 'mountain', 'valley', 'arch'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7280.HEIC.compressed.jpg", "id":"photos_266" }, { "Unnamed: 0":267, "start_time":"2019-04-25 18:43:39-07:00", "end_time":"2019-04-25 18:43:39-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8546833, "long":-111.7836389, "details":"{'objects': ['Rainbow', 'Rainbow', 'Atmospheric phenomenon', 'Natural arch', 'Rainbow smelt', 'broken arch', 'atmospheric phenomenon', 'madras', 'kachina', 'soil horizon'], 'places': ['canyon', 'rock arch', 'valley', 'arch', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7281.HEIC.compressed.jpg", "id":"photos_267" }, { "Unnamed: 0":268, "start_time":"2019-04-25 18:43:43-07:00", "end_time":"2019-04-25 18:43:43-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8546667, "long":-111.7836528, "details":"{'objects': ['Rainbow', 'Rainbow', 'Atmospheric phenomenon', 'Natural arch', 'Rainbow smelt', 'broken arch', 'atmospheric phenomenon', 'madras', 'Moorish arch, horseshoe arch', 'beam'], 'places': ['canyon', 'rock arch', 'valley', 'arch', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7282.HEIC.compressed.jpg", "id":"photos_268" }, { "Unnamed: 0":269, "start_time":"2019-04-25 18:43:58-07:00", "end_time":"2019-04-25 18:43:58-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8546528, "long":-111.7836528, "details":"{'objects': ['Rainbow', 'Rainbow', 'Natural arch', 'Atmospheric phenomenon', 'State park', 'broken arch', 'atmospheric phenomenon', 'madras', 'soil horizon', 'kachina'], 'places': ['canyon', 'rock arch', 'valley', 'butte', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7283.HEIC.compressed.jpg", "id":"photos_269" }, { "Unnamed: 0":270, "start_time":"2019-04-25 18:44:04-07:00", "end_time":"2019-04-25 18:44:04-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8546722, "long":-111.7836444, "details":"{'objects': ['Rainbow', 'Rainbow', 'Atmospheric phenomenon', 'Natural arch', 'State park', 'broken arch', 'atmospheric phenomenon', 'madras', 'soil horizon', 'kachina'], 'places': ['canyon', 'rock arch', 'valley', 'butte', 'arch'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7284.HEIC.compressed.jpg", "id":"photos_270" }, { "Unnamed: 0":271, "start_time":"2019-04-26 00:48:52+00:00", "end_time":"2019-04-26 00:48:52+00:00", "textDescription":"\"A burst of color.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Rainbow', 'Rainbow', 'Panorama', 'Canyon', 'Atmospheric phenomenon', 'broken arch', 'kachina', 'atmospheric phenomenon', 'butte', 'cliff dwelling'], 'places': ['canyon', 'valley', 'butte', 'rock arch', 'mountain'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7286.HEIC.compressed.jpg", "id":"photos_271" }, { "Unnamed: 0":272, "start_time":"2019-04-25 18:53:16-07:00", "end_time":"2019-04-25 18:53:16-07:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Airport Loop Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8557583, "long":-111.7853917, "details":"{'objects': ['Canyon', 'Panorama', 'Valley', 'Cliff dwelling', 'Butte', 'cliff dwelling', 'butte', 'mountainside, versant', 'tract, piece of land, piece of ground, parcel of land, parcel', 'kachina'], 'places': ['canyon', 'valley', 'butte', 'mountain', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7287.HEIC.compressed.jpg", "id":"photos_272" }, { "Unnamed: 0":273, "start_time":"2019-04-25 18:56:35-07:00", "end_time":"2019-04-25 18:56:35-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8538778, "long":-111.7857056, "details":"{'objects': ['Rainbow', 'Rainbow', \"Colorado four o'clock\", 'Atmospheric phenomenon', 'Butte', 'broken arch', 'atmospheric phenomenon', 'butte', 'madras', 'serape, sarape'], 'places': ['butte', 'rock arch', 'mountain', 'arch', 'canyon'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7288.HEIC.compressed.jpg", "id":"photos_273" }, { "Unnamed: 0":274, "start_time":"2019-04-25 18:56:37-07:00", "end_time":"2019-04-25 18:56:37-07:00", "textDescription":"\"A burst of color.\"", "address":"Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8538778, "long":-111.7857056, "details":"{'objects': ['Rainbow', 'Rainbow', \"Colorado four o'clock\", 'Atmospheric phenomenon', 'Butte', 'broken arch', 'atmospheric phenomenon', 'butte', 'flagpole, flagstaff', 'madras'], 'places': ['butte', 'rock arch', 'canyon', 'arch', 'mountain'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7289.HEIC.compressed.jpg", "id":"photos_274" }, { "Unnamed: 0":275, "start_time":"2019-04-25 19:01:34-07:00", "end_time":"2019-04-25 19:01:34-07:00", "textDescription":"A breathtaking view.", "address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "lat":34.8537222, "long":-111.7884833, "details":"{'objects': ['Panorama', \"Devil's bridge\", 'Valley', 'Canyon', 'Narrows', 'wraparound', 'broken arch', 'butte', 'afterglow', 'valley, vale'], 'places': ['valley', 'canyon', 'butte', 'driveway', 'desert road'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7290.HEIC.compressed.jpg", "id":"photos_275" }, { "Unnamed: 0":276, "start_time":"2019-04-25 19:08:31-07:00", "end_time":"2019-04-25 19:08:31-07:00", "textDescription":"\"A majestic view.\"", "address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8535111, "long":-111.7897722, "details":"{'objects': ['Arizona Cypress', 'Sunset', 'State park', 'Panorama', 'Canyon', 'atmospheric phenomenon', 'afterglow', 'broken arch', 'butte', 'wilderness, wild'], 'places': ['canyon', 'valley', 'butte', 'mountain', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7291.HEIC.compressed.jpg", "id":"photos_276" }, { "Unnamed: 0":277, "start_time":"2019-04-25 19:08:41-07:00", "end_time":"2019-04-25 19:08:41-07:00", "textDescription":"Exploring the beauty of nature.", "address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8535278, "long":-111.7897861, "details":"{'objects': ['Panorama', 'Arizona Cypress', 'Canyon', 'Escarpment', 'Butte', 'wraparound', 'butte', 'broken arch', 'atmospheric phenomenon', 'kachina'], 'places': ['canyon', 'butte', 'valley', 'mountain', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7292.HEIC.compressed.jpg", "id":"photos_277" }, { "Unnamed: 0":278, "start_time":"2019-04-25 19:08:56-07:00", "end_time":"2019-04-25 19:08:56-07:00", "textDescription":"\"A majestic view of Arizona Cypress in the Butte.\"", "address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8535167, "long":-111.7897806, "details":"{'objects': ['Arizona Cypress', 'Butte', 'Panorama', 'Canyon', 'Valley', 'butte', 'broken arch', 'tract, piece of land, piece of ground, parcel of land, parcel', 'overlook', 'outcrop, outcropping, rock outcrop'], 'places': ['butte', 'canyon', 'valley', 'mountain', 'vegetation desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7293.HEIC.compressed.jpg", "id":"photos_278" }, { "Unnamed: 0":279, "start_time":"2019-04-26 10:42:14-07:00", "end_time":"2019-04-26 10:42:14-07:00", "textDescription":"\"A peaceful moment in the garden.\"", "address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "lat":34.8646694, "long":-111.8129722, "details":"{'objects': ['Smoketree', 'Landscaping', 'Red juniper', 'Backyard', 'Patio', 'backyard', 'resort area, playground, vacation spot', 'overlook', 'yard', 'yard'], 'places': ['patio', 'yard', 'courtyard', 'vegetation desert', 'park'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7303.HEIC.compressed.jpg", "id":"photos_279" }, { "Unnamed: 0":280, "start_time":"2019-04-26 15:57:32-06:00", "end_time":"2019-04-26 15:57:32-06:00", "textDescription":"\"A journey through the desert.\"", "address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "lat":36.5476611, "long":-111.6233278, "details":"{'objects': ['Dirt road', 'Road', 'Road trip', 'Highway', 'Desert paintbrush', 'road, route', 'sagebrush, sage brush', 'driveway, drive, private road', 'trail', 'trail'], 'places': ['desert road', 'highway', 'canyon', 'field road', 'driveway'], 'tags': ['vehicle']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7308.HEIC.compressed.jpg", "id":"photos_280" }, { "Unnamed: 0":281, "start_time":"2019-04-26 15:57:35-06:00", "end_time":"2019-04-26 15:57:35-06:00", "textDescription":"Exploring the desert.", "address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "lat":36.5475528, "long":-111.6231472, "details":"{'objects': ['Canyon', 'Road trip', 'Dirt road', 'Desert paintbrush', 'American frontier', 'sagebrush, sage brush', 'dude ranch', 'horse-trail', 'road, route', 'butte'], 'places': ['desert road', 'canyon', 'butte', 'highway', 'badlands'], 'tags': ['vehicle']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7309.HEIC.compressed.jpg", "id":"photos_281" }, { "Unnamed: 0":282, "start_time":"2019-04-26 15:58:00-06:00", "end_time":"2019-04-26 15:58:00-06:00", "textDescription":"\"A journey through the desert.\"", "address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "lat":36.5475306, "long":-111.6231222, "details":"{'objects': ['Highway', 'Road trip', 'Road', 'Road surface', 'Panorama', 'road, route', 'divided highway, dual carriageway', 'asphalt', 'blacktop, blacktopping', 'sagebrush, sage brush'], 'places': ['desert road', 'highway', 'canyon', 'field road', 'butte'], 'tags': ['vehicle']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7310.HEIC.compressed.jpg", "id":"photos_282" }, { "Unnamed: 0":283, "start_time":"2019-04-26 16:12:26-06:00", "end_time":"2019-04-26 16:12:26-06:00", "textDescription":"\"A view of Butte from the Butte.\"", "address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "lat":36.6607028, "long":-111.6331472, "details":"{'objects': ['Butte', 'Desert paintbrush', 'Canyon', 'Plateau', 'Algific talus slope', 'butte', 'ridge, ridgeline', 'geological formation, formation', 'outcrop, outcropping, rock outcrop', 'cliff dwelling'], 'places': ['butte', 'canyon', 'vegetation desert', 'cliff', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7311-EFFECTS.jpg.compressed.jpg", "id":"photos_283" }, { "Unnamed: 0":284, "start_time":"2019-04-26 16:12:25-06:00", "end_time":"2019-04-26 16:12:25-06:00", "textDescription":"\"A unique landscape.\"", "address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "lat":36.6607028, "long":-111.6331472, "details":"{'objects': ['Algific talus slope', 'Butte', 'Desert paintbrush', 'Alluvial fan', 'Outcrop', 'butte', 'outcrop, outcropping, rock outcrop', 'ridge, ridgeline', 'geological formation, formation', 'cliff dwelling'], 'places': ['butte', 'canyon', 'vegetation desert', 'cliff', 'valley'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7311.HEIC.compressed.jpg", "id":"photos_284" }, { "Unnamed: 0":285, "start_time":"2019-04-26 16:12:48-06:00", "end_time":"2019-04-26 16:12:48-06:00", "textDescription":"\"A view of Butte from the Butte.\"", "address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "lat":36.6607472, "long":-111.6335361, "details":"{'objects': ['Butte', 'Outcrop', 'Promontory', 'Cliff dwelling', 'Algific talus slope', 'butte', 'outcrop, outcropping, rock outcrop', 'cliff dwelling', 'geological formation, formation', 'ridge, ridgeline'], 'places': ['butte', 'cliff', 'canyon', 'rock arch', 'mountain'], 'tags': ['building']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7312.HEIC.compressed.jpg", "id":"photos_285" }, { "Unnamed: 0":286, "start_time":"2019-04-26 23:24:16+00:00", "end_time":"2019-04-26 23:24:16+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Submarine canyon', 'Narrows', 'Natural arch', 'canyon, canon', 'gorge', 'geological formation, formation', 'broken arch', 'pothole, chuckhole'], 'places': ['canyon', 'crevasse', 'rock arch', 'cliff', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7313.HEIC.compressed.jpg", "id":"photos_286" }, { "Unnamed: 0":287, "start_time":"2019-04-26 23:24:21+00:00", "end_time":"2019-04-26 23:24:21+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Natural arch', 'Canyoning', 'Submarine canyon', 'Narrows', 'canyon, canon', 'broken arch', 'gorge', 'geological formation, formation', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'arch', 'alcove'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7314.HEIC.compressed.jpg", "id":"photos_287" }, { "Unnamed: 0":288, "start_time":"2019-04-26 23:25:46+00:00", "end_time":"2019-04-26 23:25:46+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Strata', 'Geological phenomenon', 'Submarine canyon', 'canyon, canon', 'geological formation, formation', 'broken arch', 'gorge', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'alcove'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7315.HEIC.compressed.jpg", "id":"photos_288" }, { "Unnamed: 0":289, "start_time":"2019-04-26 22:25:50+00:00", "end_time":"2019-04-26 22:25:50+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Narrows', 'Natural arch', 'Submarine canyon', 'canyon, canon', 'gorge', 'broken arch', 'geological formation, formation', 'pothole, chuckhole'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'alcove'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7316-EFFECTS.jpg.compressed.jpg", "id":"photos_289" }, { "Unnamed: 0":290, "start_time":"2019-04-26 22:25:49+00:00", "end_time":"2019-04-26 22:25:49+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Narrows', 'Submarine canyon', 'Natural arch', 'canyon, canon', 'broken arch', 'gorge', 'geological formation, formation', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'alcove', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7316.HEIC.compressed.jpg", "id":"photos_290" }, { "Unnamed: 0":291, "start_time":"2019-04-26 22:25:52+00:00", "end_time":"2019-04-26 22:25:52+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Submarine canyon', 'Geological phenomenon', 'Narrows', 'canyon, canon', 'geological formation, formation', 'gorge', 'broken arch', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'sand desert', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7317-EFFECTS.jpg.compressed.jpg", "id":"photos_291" }, { "Unnamed: 0":292, "start_time":"2019-04-26 22:25:51+00:00", "end_time":"2019-04-26 22:25:51+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Natural arch', 'Narrows', 'Submarine canyon', 'canyon, canon', 'broken arch', 'geological formation, formation', 'gorge', 'overhang'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'alcove'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7317.HEIC.compressed.jpg", "id":"photos_292" }, { "Unnamed: 0":293, "start_time":"2019-04-26 22:35:51+00:00", "end_time":"2019-04-26 22:35:51+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Narrows', 'Submarine canyon', 'Geological phenomenon', 'canyon, canon', 'gorge', 'geological formation, formation', 'broken arch', 'chasm'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'alcove'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7322.HEIC.compressed.jpg", "id":"photos_293" }, { "Unnamed: 0":294, "start_time":"2019-04-26 22:46:16+00:00", "end_time":"2019-04-26 22:46:16+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Submarine canyon', 'Natural arch', 'Alluvial fan', 'canyon, canon', 'geological formation, formation', 'gorge', 'broken arch', 'arroyo'], 'places': ['canyon', 'rock arch', 'crevasse', 'cliff', 'sand desert'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7323.HEIC.compressed.jpg", "id":"photos_294" }, { "Unnamed: 0":295, "start_time":"2019-04-26 22:46:21+00:00", "end_time":"2019-04-26 22:46:21+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Alluvial fan', 'Geological phenomenon', 'Dune', 'canyon, canon', 'geological formation, formation', 'dune, sand dune', 'background, desktop, screen background', 'gorge'], 'places': ['canyon', 'sand desert', 'crevasse', 'rock arch', 'desert road'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7324.HEIC.compressed.jpg", "id":"photos_295" }, { "Unnamed: 0":296, "start_time":"2019-04-26 22:46:24+00:00", "end_time":"2019-04-26 22:46:24+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Alluvial fan', 'Submarine canyon', 'Dune', 'canyon, canon', 'geological formation, formation', 'dune, sand dune', 'gorge', 'arroyo'], 'places': ['canyon', 'crevasse', 'sand desert', 'rock arch', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7325.HEIC.compressed.jpg", "id":"photos_296" }, { "Unnamed: 0":297, "start_time":"2019-04-26 22:47:48+00:00", "end_time":"2019-04-26 22:47:48+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Canyoning', 'Geological phenomenon', 'Submarine canyon', 'Erosion', 'canyon, canon', 'geological formation, formation', 'gorge', 'cavern', 'semidesert'], 'places': ['canyon', 'crevasse', 'sand desert', 'rock arch', 'alcove'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7326.HEIC.compressed.jpg", "id":"photos_297" }, { "Unnamed: 0":298, "start_time":"2019-04-26 22:48:26+00:00", "end_time":"2019-04-26 22:48:26+00:00", "textDescription":"Exploring the castle.", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Estonian hound', 'Panorama', 'Baltic clam', 'Frikadeller', 'Houttuynia', 'battlement, crenelation, crenellation', 'Lithuanian', 'castle', 'vesture', 'bastion, citadel'], 'places': ['castle', 'downtown', 'tower', 'residential neighborhood', 'roof garden'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7327.HEIC.compressed.jpg", "id":"photos_298" }, { "Unnamed: 0":299, "start_time":"2019-04-26 23:09:12+00:00", "end_time":"2019-04-26 23:09:12+00:00", "textDescription":"Exploring history in the open air.", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Open-air museum', 'Picture frame', 'Square', 'Enclosure', 'Digital photo frame', 'outside mirror', 'frame, framing', 'picture frame', 'square', 'square'], 'places': ['outdoor museum', 'park', 'botanical garden', 'outdoor library', 'yard'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7330.HEIC.compressed.jpg", "id":"photos_299" }, { "Unnamed: 0":300, "start_time":"2019-04-26 23:09:13+00:00", "end_time":"2019-04-26 23:09:13+00:00", "textDescription":"Caffeinated and ready to go.", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Cortado', 'Espresso con panna', 'Flat white', 'Ristretto', 'Affogato', 'espresso', 'bite, collation, snack', 'sweet roll, coffee roll', 'cafe, coffeehouse, coffee shop, coffee bar', 'caffe latte, latte'], 'places': ['coffee shop', 'delicatessen', 'restaurant', 'shop bakery', 'restaurant kitchen'], 'tags': ['food']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7331.HEIC.compressed.jpg", "id":"photos_300" }, { "Unnamed: 0":301, "start_time":"2019-04-26 18:04:06-07:00", "end_time":"2019-04-26 18:04:06-07:00", "textDescription":"Harbor views for days.", "address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "lat":36.9951667, "long":-111.4875333, "details":"{'objects': ['Panorama', 'Narrows', 'Submarine canyon', 'State park', 'Cove', 'overlook', 'cove', 'cove', 'marina', 'bay'], 'places': ['harbor', 'campsite', 'canyon', 'lagoon', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7334.HEIC.compressed.jpg", "id":"photos_301" }, { "Unnamed: 0":302, "start_time":"2019-04-27 08:00:20-07:00", "end_time":"2019-04-27 08:00:20-07:00", "textDescription":"\"A tranquil desert oasis.\"", "address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "lat":36.9951528, "long":-111.4876111, "details":"{'objects': ['Dry lake', 'State park', 'Submarine canyon', 'Landform', 'Lacustrine plain', 'reservoir, artificial lake, man-made lake', 'butte', 'body of water, water', 'reservoir', 'lake'], 'places': ['butte', 'natural lake', 'watering hole', 'vegetation desert', 'golf course'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7335.HEIC.compressed.jpg", "id":"photos_302" }, { "Unnamed: 0":303, "start_time":"2019-04-27 15:32:17+00:00", "end_time":"2019-04-27 15:32:17+00:00", "textDescription":"Exploring the Grand Canyon.", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Web page', 'Canyon', 'Tour guide', 'Website', 'Geocaching', 'driveway, drive, private road', 'guide', 'geographical area, geographic area, geographical region, geographic region', 'pass, mountain pass, notch', 'hoodoo'], 'places': ['canyon', 'badlands', 'desert road', 'butte', 'driveway'], 'tags': ['document']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7337.PNG.compressed.jpg", "id":"photos_303" }, { "Unnamed: 0":304, "start_time":"2019-04-27 09:03:39-07:00", "end_time":"2019-04-27 09:03:39-07:00", "textDescription":"\"A peaceful oasis in the desert.\"", "address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "lat":36.9949833, "long":-111.48645, "details":"{'objects': ['Dry lake', 'Camp', 'Human settlement', 'Drought', 'Kia mohave\/borrego', 'housing, lodging, living accommodations', 'campsite, campground, camping site, camping ground, bivouac, encampment, camping area', 'reservoir, artificial lake, man-made lake', 'site, land site', 'dude ranch'], 'places': ['campsite', 'manufactured home', 'harbor', 'army base', 'landfill'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7338.HEIC.compressed.jpg", "id":"photos_304" }, { "Unnamed: 0":305, "start_time":"2019-04-27 09:38:35-07:00", "end_time":"2019-04-27 09:38:35-07:00", "textDescription":"\"A peaceful oasis.\"", "address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "lat":36.9966167, "long":-111.4895861, "details":"{'objects': ['Dry lake', 'Submarine canyon', 'Cliff jumping', 'Water ski', 'Drought', 'water ski', 'reservoir', 'reservoir, artificial lake, man-made lake', 'body of water, water', 'inlet, recess'], 'places': ['swimming hole', 'natural lake', 'watering hole', 'dam', 'canyon'], 'tags': ['vehicle']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7339.HEIC.compressed.jpg", "id":"photos_305" }, { "Unnamed: 0":306, "start_time":"2019-04-27 10:38:44-07:00", "end_time":"2019-04-27 10:38:44-07:00", "textDescription":"\"A peaceful oasis.\"", "address":"Navajo Viewpoint, Lake Shore Drive, Wahweap, Coconino County, Arizona, United States", "lat":36.9640528, "long":-111.4913028, "details":"{'objects': ['Dry lake', 'Submarine canyon', 'Reservoir', 'Cliff jumping', 'Logrolling', 'reservoir, artificial lake, man-made lake', 'reservoir', 'body of water, water', 'lake', 'pit, quarry, stone pit'], 'places': ['swimming hole', 'natural lake', 'dam', 'watering hole', 'canyon'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7340.HEIC.compressed.jpg", "id":"photos_306" }, { "Unnamed: 0":307, "start_time":"2019-04-27 15:47:52-06:00", "end_time":"2019-04-27 15:47:52-06:00", "textDescription":"\"A lonely cinder cone in the desert.\"", "address":"UT-12, Garfield County, Utah, 84764, United States", "lat":37.6828944, "long":-112.1249611, "details":"{'objects': ['Cinder cone', 'Two needle pinyon pine', 'Western juniper', 'Western yellow pine', 'Alluvial fan', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'western white pine, silver pine, mountain pine, Pinus monticola', \"Jeffrey pine, Jeffrey's pine, black pine, Pinus jeffreyi\", 'sagebrush, sage brush', 'butte'], 'places': ['vegetation desert', 'butte', 'canyon', 'desert road', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7342.HEIC.compressed.jpg", "id":"photos_307" }, { "Unnamed: 0":308, "start_time":"2019-04-27 15:48:04-06:00", "end_time":"2019-04-27 15:48:04-06:00", "textDescription":"\"Awe-inspiring view.\"", "address":"UT-12, Garfield County, Utah, 84764, United States", "lat":37.6828833, "long":-112.1249861, "details":"{'objects': ['Cinder cone', 'Two needle pinyon pine', 'Western juniper', 'Panorama', 'Caldera', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'sagebrush, sage brush', 'overlook', 'butte', 'hoodoo'], 'places': ['canyon', 'butte', 'desert road', 'vegetation desert', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7343.HEIC.compressed.jpg", "id":"photos_308" }, { "Unnamed: 0":309, "start_time":"2019-04-27 16:17:22-06:00", "end_time":"2019-04-27 16:17:22-06:00", "textDescription":"\"A view of the outdoors.\"", "address":"Tropic, Garfield County, Utah, 84776, United States", "lat":37.6216861, "long":-112.1092444, "details":"{'objects': ['Window', 'Window valance', 'Window film', 'Daylighting', 'Window treatment', 'double-hung window', 'casement window', 'pivoting window', 'dormer window', 'sliding window'], 'places': ['indoor bow window', 'outdoor cabin', 'attic', 'mountain', 'canyon'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7344.HEIC.compressed.jpg", "id":"photos_309" }, { "Unnamed: 0":310, "start_time":"2019-04-27 17:45:04-06:00", "end_time":"2019-04-27 17:45:04-06:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Garfield County, Utah, United States", "lat":37.6239861, "long":-112.1665583, "details":"{'objects': ['Canyon', 'Cinder cone', 'Erosion', 'National park', 'Geological phenomenon', 'hoodoo', 'geological formation, formation', 'canyon, canon', 'badlands', 'chasm'], 'places': ['canyon', 'badlands', 'cliff', 'butte', 'mountain path'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7355.HEIC.compressed.jpg", "id":"photos_310" }, { "Unnamed: 0":311, "start_time":"2019-04-27 18:00:27-06:00", "end_time":"2019-04-27 18:00:27-06:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Rim Trail, Garfield County, Utah, 84764, United States", "lat":37.6278444, "long":-112.1636722, "details":"{'objects': ['Canyon', 'National park', 'Cinder cone', 'Geological phenomenon', 'Landform', 'hoodoo', 'geological formation, formation', 'canyon, canon', 'American larch, tamarack, black larch, Larix laricina', 'ridge, ridgeline'], 'places': ['canyon', 'badlands', 'butte', 'valley', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7356.HEIC.compressed.jpg", "id":"photos_311" }, { "Unnamed: 0":312, "start_time":"2019-04-27 18:05:34-06:00", "end_time":"2019-04-27 18:05:34-06:00", "textDescription":"\"Awe-inspiring view.\"", "address":"Rim Trail, Garfield County, Utah, 84764, United States", "lat":37.6279528, "long":-112.1637944, "details":"{'objects': ['Cinder cone', 'Canyon', 'National park', 'Western juniper', 'Landform', 'hoodoo', 'geological formation, formation', 'broken arch', 'ponderosa, ponderosa pine, western yellow pine, bull pine, Pinus ponderosa', 'yellow pine'], 'places': ['canyon', 'rock arch', 'butte', 'valley', 'cliff'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7357.HEIC.compressed.jpg", "id":"photos_312" }, { "Unnamed: 0":313, "start_time":"2019-04-27 18:14:23-06:00", "end_time":"2019-04-27 18:14:23-06:00", "textDescription":"\"A peaceful escape.\"", "address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "lat":37.6279556, "long":-112.1632083, "details":"{'objects': ['Shortstraw pine', 'Shortstraw pine', 'Two needle pinyon pine', 'Western juniper', 'Prostrate Juniper', 'ancient pine, Pinus longaeva', 'bristlecone pine, Rocky Mountain bristlecone pine, Pinus aristata', 'hoodoo', 'western white pine, silver pine, mountain pine, Pinus monticola', 'whitebark pine, whitebarked pine, Pinus albicaulis'], 'places': ['canyon', 'butte', 'badlands', 'cliff', 'vegetation desert'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7358.HEIC.compressed.jpg", "id":"photos_313" }, { "Unnamed: 0":314, "start_time":"2019-04-27 18:20:03-06:00", "end_time":"2019-04-27 18:20:03-06:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "lat":37.6283389, "long":-112.1629639, "details":"{'objects': ['Canyon', 'National park', 'Cinder cone', 'Geological phenomenon', 'Geographical feature', 'hoodoo', 'canyon, canon', 'geological formation, formation', 'chasm', 'broken arch'], 'places': ['canyon', 'badlands', 'cliff', 'valley', 'butte'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7362.HEIC.compressed.jpg", "id":"photos_314" }, { "Unnamed: 0":315, "start_time":"2019-04-27 18:20:12-06:00", "end_time":"2019-04-27 18:20:12-06:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "lat":37.6281611, "long":-112.1627278, "details":"{'objects': ['Canyon', 'Cinder cone', 'National park', 'Geological phenomenon', 'Geographical feature', 'hoodoo', 'geological formation, formation', 'canyon, canon', 'chasm', 'badlands'], 'places': ['canyon', 'cliff', 'badlands', 'butte', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7363.HEIC.compressed.jpg", "id":"photos_315" }, { "Unnamed: 0":316, "start_time":"2019-04-27 18:27:33-06:00", "end_time":"2019-04-27 18:27:33-06:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Queen's Garden Trail, Garfield County, Utah, United States", "lat":37.6272861, "long":-112.1615222, "details":"{'objects': ['Canyon', 'National park', 'Cinder cone', 'Erosion', 'Western juniper', 'hoodoo', 'geological formation, formation', 'canyon, canon', 'ridge, ridgeline', 'chasm'], 'places': ['canyon', 'rock arch', 'cliff', 'badlands', 'mountain path'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7364.HEIC.compressed.jpg", "id":"photos_316" }, { "Unnamed: 0":317, "start_time":"2019-04-27 18:34:01-06:00", "end_time":"2019-04-27 18:34:01-06:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Queen's Garden Trail, Garfield County, Utah, United States", "lat":37.627075, "long":-112.1595611, "details":"{'objects': ['American larch', 'Larix lyalliiSubalpine Larch', 'Larch', 'Oregon pine', 'Arizona Cypress', 'larch, larch tree', 'American larch, tamarack, black larch, Larix laricina', 'gymnospermous tree', 'western larch, western tamarack, Oregon larch, Larix occidentalis', 'Arizona cypress, Cupressus arizonica'], 'places': ['canyon', 'cliff', 'vegetation desert', 'badlands', 'tree farm'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7368.HEIC.compressed.jpg", "id":"photos_317" }, { "Unnamed: 0":318, "start_time":"2019-04-28 01:43:08+00:00", "end_time":"2019-04-28 01:43:08+00:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Soul Buoy", "lat":0.0, "long":0.0, "details":"{'objects': ['Canyon', 'Cinder cone', 'National park', 'Panorama', 'Smoketree', 'hoodoo', 'canyon, canon', 'geological formation, formation', 'broken arch', 'wilderness, wild'], 'places': ['canyon', 'rock arch', 'badlands', 'cliff', 'mountain path'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7369.HEIC.compressed.jpg", "id":"photos_318" }, { "Unnamed: 0":319, "start_time":"2019-04-27 18:43:44-06:00", "end_time":"2019-04-27 18:43:44-06:00", "textDescription":"\"Taking a break.\"", "address":"Tropic Trail, Tropic, Garfield County, Utah, 84776, United States", "lat":37.6205056, "long":-112.1375417, "details":"{'objects': ['Kaibab Squirrel', 'Organ Mountains Chipmunk', \"Abert's squirrel\", \"Douglas' squirrel\", 'Chipmunk', 'mantled ground squirrel, Citellus lateralis', 'eastern chipmunk, hackee, striped squirrel, ground squirrel, Tamias striatus', 'tree squirrel', 'rock squirrel, Citellus variegatus', 'chipmunk'], 'places': ['watering hole', 'vegetation desert', 'badlands', 'sand desert', 'yard'], 'tags': []}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7370.HEIC.compressed.jpg", "id":"photos_319" }, { "Unnamed: 0":320, "start_time":"2019-04-27 18:43:48-06:00", "end_time":"2019-04-27 18:43:48-06:00", "textDescription":"\"Taking a break.\"", "address":"Tropic Trail, Tropic, Garfield County, Utah, 84776, United States", "lat":37.6205056, "long":-112.1375417, "details":"{'objects': ['Organ Mountains Chipmunk', 'Ground squirrels', 'Chipmunk', 'Antelope squirrels', 'Eastern chipmunk', 'eastern chipmunk, hackee, striped squirrel, ground squirrel, Tamias striatus', 'chipmunk', 'mantled ground squirrel, Citellus lateralis', 'ground squirrel, gopher, spermophile', 'rock squirrel, Citellus variegatus'], 'places': ['watering hole', 'badlands', 'sand desert', 'canyon', 'park'], 'tags': ['animal']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7371.HEIC.compressed.jpg", "id":"photos_320" }, { "Unnamed: 0":321, "start_time":"2019-04-27 18:50:14-06:00", "end_time":"2019-04-27 18:50:14-06:00", "textDescription":"\"Awe-inspiring beauty.\"", "address":"Queen's Garden Trail, Garfield County, Utah, United States", "lat":37.6254361, "long":-112.160675, "details":"{'objects': ['Canyon', 'Cinder cone', 'National park', 'Panorama', 'Erosion', 'hoodoo', 'geological formation, formation', 'broken arch', 'canyon, canon', 'kachina'], 'places': ['canyon', 'rock arch', 'cliff', 'butte', 'valley'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7372.HEIC.compressed.jpg", "id":"photos_321" }, { "Unnamed: 0":322, "start_time":"2019-04-27 19:13:37-06:00", "end_time":"2019-04-27 19:13:37-06:00", "textDescription":"\"A rocky outcrop in the cliff face.\"", "address":"Queen's Garden Trail, Garfield County, Utah, United States", "lat":37.6269417, "long":-112.1591556, "details":"{'objects': ['Outcrop', 'Algific talus slope', 'Rockfall', 'Quarry', 'Cliff', 'geological formation, formation', 'escarpment, scarp', 'butte', 'outcrop, outcropping, rock outcrop', 'sediment, deposit'], 'places': ['cliff', 'butte', 'badlands', 'canyon', 'volcano'], 'tags': ['plant']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7373.HEIC.compressed.jpg", "id":"photos_322" }, { "Unnamed: 0":323, "start_time":"2019-04-27 19:34:15-06:00", "end_time":"2019-04-27 19:34:15-06:00", "textDescription":"\"Awe-inspiring view.\"", "address":"Rim Trail, Garfield County, Utah, 84764, United States", "lat":37.6267389, "long":-112.1653222, "details":"{'objects': ['Cinder cone', 'National park', 'Canyon', 'Panorama', 'Geological phenomenon', 'hoodoo', 'overlook', 'geological formation, formation', 'canyon, canon', 'wilderness, wild'], 'places': ['canyon', 'butte', 'cliff', 'mountain path', 'badlands'], 'tags': ['scenery']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7374.HEIC.compressed.jpg", "id":"photos_323" }, { "Unnamed: 0":324, "start_time":"2019-04-29 11:49:07-07:00", "end_time":"2019-04-29 11:49:07-07:00", "textDescription":"\"Freshly brewed.\"", "address":"2966, Greg Street, Randall County, Texas, 79015, United States", "lat":35.0374530195, "long":-101.9085906265, "details":"{'objects': ['Single-origin coffee', 'Roasted grain beverage', 'Coffee', 'Caffeinated drink', 'Caffeine', 'packet', 'Yemeni', 'sandbag', 'bag', 'packaging'], 'places': ['coffee shop', 'supermarket', 'pantry', 'street', 'delicatessen'], 'tags': ['commodity products']}", "img_url":"digital_data\/images\/google_photos\/part 2\/Google Photos\/Photos from 2019\/IMG_7375.HEIC.compressed.jpg", "id":"photos_324" } ] ================================================ FILE: sample_data/places.sampled.csv ================================================ start_time,end_time,textDescription,start_address,start_lat,start_long,end_address,end_lat,end_long,id 2019-04-18 00:01:26+00:00,2019-04-18 00:01:26+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_26991 2019-03-31 06:58:44+00:00,2019-03-31 06:58:44+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_26992 2019-03-19 00:05:14+00:00,2019-03-19 00:05:14+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_26995 2019-04-15 14:58:30+00:00,2019-04-15 14:58:30+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_26997 2019-04-25 15:57:11+00:00,2019-04-25 15:57:11+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_26998 2019-04-27 17:28:58-07:00,2019-04-27 17:28:58-07:00,"Exploring Lamb County, TX","County Road 307, Lamb County, Texas, 79369, United States",33.88986233451486,-102.14000426342562,"County Road 307, Lamb County, Texas, 79369, United States",33.88986233451486,-102.14000426342562,places_27028 2019-03-03 07:41:47-08:00,2019-03-03 07:41:47-08:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,places_27172 2019-03-03 07:42:11-08:00,2019-03-03 07:42:11-08:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03755147425116,-101.90860432341586,"2968, Greg Street, Randall County, Texas, 79015, United States",35.03755147425116,-101.90860432341586,places_27173 2019-03-03 07:42:35-08:00,2019-03-03 07:42:35-08:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,places_27174 2019-03-05 18:13:01-08:00,2019-03-05 18:13:01-08:00,"""Throwbacks Sports Bar: Amarillo's Best!""","Throwbacks Sports Bar, 7150, Bell Street, Amarillo, Randall County, Texas, 79109, United States",35.13263561760009,-101.9023999166812,"Throwbacks Sports Bar, 7150, Bell Street, Amarillo, Randall County, Texas, 79109, United States",35.13263561760009,-101.9023999166812,places_27175 2019-03-05 18:13:04-08:00,2019-03-05 18:13:04-08:00,"""Throwbacks Sports Bar: Amarillo's Best!""","Throwbacks Sports Bar, 7150, Bell Street, Amarillo, Randall County, Texas, 79109, United States",35.13263561760009,-101.9023999166812,"Throwbacks Sports Bar, 7150, Bell Street, Amarillo, Randall County, Texas, 79109, United States",35.13263561760009,-101.9023999166812,places_27176 2019-03-05 19:31:46-08:00,2019-03-05 19:31:46-08:00,"Biking in Randall County, Texas","Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.017886295811834,-101.91701998929815,"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.017886295811834,-101.91701998929815,places_27177 2019-03-05 19:31:47-08:00,2019-03-05 19:31:47-08:00,"Biking in Randall County, Texas","Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.01803657555976,-101.91678383540862,"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.01803657555976,-101.91678383540862,places_27178 2019-03-05 19:36:00-08:00,2019-03-05 19:36:00-08:00,"Biking in Randall County, Texas","Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.01791849861497,-101.9167301640701,"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.01791849861497,-101.9167301640701,places_27179 2019-03-06 19:46:40-08:00,2019-03-06 19:46:40-08:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,places_27180 2019-03-07 19:17:33-08:00,2019-03-07 19:17:33-08:00,"Amarillo, Texas","W Loop 335 S, Amarillo, Randall County, Texas, 79119, United States",35.12855659587139,-101.95697293370378,"W Loop 335 S, Amarillo, Randall County, Texas, 79119, United States",35.12855659587139,-101.95697293370378,places_27181 2019-03-10 17:42:28-07:00,2019-03-10 17:42:28-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08824942063148,-101.7760683200371,"Claude Highway, Randall County, Texas, 79118, United States",35.08824942063148,-101.7760683200371,places_27182 2019-03-10 17:42:30-07:00,2019-03-10 17:42:30-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08838896611168,-101.77592877455692,"Claude Highway, Randall County, Texas, 79118, United States",35.08838896611168,-101.77592877455692,places_27183 2019-03-10 17:42:31-07:00,2019-03-10 17:42:31-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08837823184396,-101.77602538296628,"Claude Highway, Randall County, Texas, 79118, United States",35.08837823184396,-101.77602538296628,places_27184 2019-03-10 17:42:32-07:00,2019-03-10 17:42:32-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08837823184396,-101.77602538296628,"Claude Highway, Randall County, Texas, 79118, United States",35.08837823184396,-101.77602538296628,places_27185 2019-03-10 17:46:32-07:00,2019-03-10 17:46:32-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08794886113572,-101.77654062781622,"Claude Highway, Randall County, Texas, 79118, United States",35.08794886113572,-101.77654062781622,places_27186 2019-03-10 17:46:34-07:00,2019-03-10 17:46:34-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08806693808049,-101.77659429915477,"Claude Highway, Randall County, Texas, 79118, United States",35.08806693808049,-101.77659429915477,places_27187 2019-03-10 17:47:15-07:00,2019-03-10 17:47:15-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08771270724614,-101.77643328513912,"Claude Highway, Randall County, Texas, 79118, United States",35.08771270724614,-101.77643328513912,places_27188 2019-03-10 17:47:16-07:00,2019-03-10 17:47:16-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08771270724614,-101.77643328513912,"Claude Highway, Randall County, Texas, 79118, United States",35.08771270724614,-101.77643328513912,places_27189 2019-03-10 17:47:17-07:00,2019-03-10 17:47:17-07:00,"Randall County, Texas","Claude Highway, Randall County, Texas, 79118, United States",35.08771270724614,-101.77643328513912,"Claude Highway, Randall County, Texas, 79118, United States",35.08771270724614,-101.77643328513912,places_27190 2019-03-11 16:27:43+00:00,2019-03-11 16:27:43+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27191 2019-03-13 16:23:07+00:00,2019-03-13 16:23:07+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27192 2019-03-17 12:59:42-07:00,2019-03-17 12:59:42-07:00,"""Exploring Randall County, Texas""","Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.01831566652016,-101.91650474444822,"Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States",35.01831566652016,-101.91650474444822,places_27193 2019-03-18 09:20:41-07:00,2019-03-18 09:20:41-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,places_27194 2019-03-18 09:31:03-07:00,2019-03-18 09:31:03-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,places_27195 2019-03-18 10:43:51-07:00,2019-03-18 10:43:51-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,places_27196 2019-03-18 10:44:49-07:00,2019-03-18 10:44:49-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,places_27197 2019-03-18 10:46:41-07:00,2019-03-18 10:46:41-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,places_27198 2019-03-18 13:00:08-07:00,2019-03-18 13:00:08-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.097148128560605,-101.95385999606872,"Helium Road, Randall County, Texas, 79119, United States",35.097148128560605,-101.95385999606872,places_27199 2019-03-18 13:12:49-07:00,2019-03-18 13:12:49-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09701931734814,-101.95390293313956,"Helium Road, Randall County, Texas, 79119, United States",35.09701931734814,-101.95390293313956,places_27200 2019-03-18 15:52:33-07:00,2019-03-18 15:52:33-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,places_27201 2019-03-18 16:05:51-07:00,2019-03-18 16:05:51-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,places_27202 2019-03-18 17:02:12-07:00,2019-03-18 17:02:12-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.097126660025225,-101.95405321288746,"Helium Road, Randall County, Texas, 79119, United States",35.097126660025225,-101.95405321288746,places_27203 2019-03-18 17:02:21-07:00,2019-03-18 17:02:21-07:00,"Helium Road, Texas","Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,"Helium Road, Randall County, Texas, 79119, United States",35.09711592575748,-101.95414982129678,places_27204 2019-03-19 12:32:09-07:00,2019-03-19 12:32:09-07:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.03718650914911,-101.90853991780963,"2964, Greg Street, Randall County, Texas, 79015, United States",35.03718650914911,-101.90853991780963,places_27205 2019-03-22 19:06:44-07:00,2019-03-22 19:06:44-07:00,"Exploring Randall County, Texas","Randall County, Texas, United States",35.06895994156193,-101.9117172610509,"Randall County, Texas, United States",35.06895994156193,-101.9117172610509,places_27206 2019-03-23 07:50:06-07:00,2019-03-23 07:50:06-07:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03755147425116,-101.90860432341586,"2968, Greg Street, Randall County, Texas, 79015, United States",35.03755147425116,-101.90860432341586,places_27207 2019-03-23 09:36:05-07:00,2019-03-23 09:36:05-07:00,"Exploring Castro County, Texas","Castro County, Texas, United States",34.72240410864033,-102.0198864767347,"Castro County, Texas, United States",34.72240410864033,-102.0198864767347,places_27208 2019-03-23 09:36:12-07:00,2019-03-23 09:36:12-07:00,"Exploring Castro County, Texas","Castro County, Texas, United States",34.72240410864033,-102.0198864767347,"Castro County, Texas, United States",34.72240410864033,-102.0198864767347,places_27209 2019-03-23 20:50:05-07:00,2019-03-23 20:50:05-07:00,Charlie's Furniture Amarillo,"Charlie's Furniture, 3700, South Soncy Road, Amarillo, Randall County, Texas, 79119, United States",35.16672765183763,-101.93941167173506,"Charlie's Furniture, 3700, South Soncy Road, Amarillo, Randall County, Texas, 79119, United States",35.16672765183763,-101.93941167173506,places_27210 2019-03-27 11:42:43+09:00,2019-03-27 11:42:43+09:00,Exploring Seoul National University,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.9504,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.9504,places_27211 2019-03-27 11:42:50+09:00,2019-03-27 11:42:50+09:00,Exploring Seoul National University,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.9504,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.9504,places_27212 2019-03-27 13:45:36+09:00,2019-03-27 13:45:36+09:00,Exploring Seoul National University,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.951,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4551,126.951,places_27213 2019-03-27 13:45:47+09:00,2019-03-27 13:45:47+09:00,Exploring Seoul National University,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4552,126.951,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4552,126.951,places_27214 2019-03-27 13:45:47+09:00,2019-03-27 13:45:47+09:00,Exploring Seoul National University,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4552,126.951,"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea",37.4552,126.951,places_27215 2019-03-27 15:47:16+09:00,2019-03-27 15:47:16+09:00,"Yangpyeong-ro 28da-gil, Seoul","Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea",37.5413,126.8909,"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea",37.5413,126.8909,places_27216 2019-03-27 15:47:22+09:00,2019-03-27 15:47:22+09:00,"Yangpyeong-ro 28da-gil, Seoul","Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea",37.5413,126.8909,"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea",37.5413,126.8909,places_27217 2019-03-27 15:47:29+09:00,2019-03-27 15:47:29+09:00,"Yangpyeong-ro 28da-gil, Seoul","Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea",37.5413,126.8909,"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea",37.5413,126.8909,places_27218 2019-03-27 08:30:38+00:00,2019-03-27 08:30:38+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27219 2019-03-27 18:36:03+09:00,2019-03-27 18:36:03+09:00,Exploring Seoul's Seocho-gu,"Bangbae-ro, Bangbae 4(sa)-dong, Seocho-gu, Seoul, 06557, South Korea",37.494,126.9903,"Bangbae-ro, Bangbae 4(sa)-dong, Seocho-gu, Seoul, 06557, South Korea",37.494,126.9903,places_27220 2019-03-28 06:38:09+09:00,2019-03-28 06:38:09+09:00,Incheon Int'l Airport Terminal 1,"Incheon International Airport Terminal 1, 271, Gonghang-ro, Unseo-dong, Jung-gu, Incheon, 22382, South Korea",37.4496,126.4536,"Incheon International Airport Terminal 1, 271, Gonghang-ro, Unseo-dong, Jung-gu, Incheon, 22382, South Korea",37.4496,126.4536,places_27221 2019-03-28 04:34:33+00:00,2019-03-28 04:34:33+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27222 2019-03-28 20:38:13+09:00,2019-03-28 20:38:13+09:00,Roppongi's Asahi Shokudo,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,places_27223 2019-03-28 20:47:46+09:00,2019-03-28 20:47:46+09:00,Roppongi's Asahi Shokudo,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,places_27224 2019-03-28 21:36:34+09:00,2019-03-28 21:36:34+09:00,Roppongi's Asahi Shokudo,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,places_27225 2019-03-28 23:25:42+09:00,2019-03-28 23:25:42+09:00,Roppongi's Asahi Shokudo,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,places_27226 2019-03-28 23:25:52+09:00,2019-03-28 23:25:52+09:00,Roppongi's Asahi Shokudo,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,"Asahi Shokudo, 龍土町美術館通り, Roppongi, Minato, Tokyo, 106-0033, Japan",35.6644,139.7301,places_27227 2019-03-29 09:12:12+09:00,2019-03-29 09:12:12+09:00,Grand Hyatt Tokyo,"Grand Hyatt Tokyo, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-6122, Japan",35.6595,139.7283,"Grand Hyatt Tokyo, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-6122, Japan",35.6595,139.7283,places_27228 2019-03-29 10:08:09+09:00,2019-03-29 10:08:09+09:00,"Moto-Azabu, Tokyo","Moto-Azabu 3-chome, Minato, Tokyo, 106-0046, Japan",35.6574,139.7273,"Moto-Azabu 3-chome, Minato, Tokyo, 106-0046, Japan",35.6574,139.7273,places_27229 2019-03-29 10:13:09+09:00,2019-03-29 10:13:09+09:00,Aiiku Hospital in Tokyo,"Aiiku Hospital, 木下坂, Minami-Azabu 5-chome, Minato, Tokyo, 106-0047, Japan",35.6536,139.726,"Aiiku Hospital, 木下坂, Minami-Azabu 5-chome, Minato, Tokyo, 106-0047, Japan",35.6536,139.726,places_27230 2019-03-29 10:53:41+09:00,2019-03-29 10:53:41+09:00,"Exploring Naka-Meguro, Tokyo","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.638,139.7063,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.638,139.7063,places_27231 2019-03-29 10:54:16+09:00,2019-03-29 10:54:16+09:00,"Exploring Naka-Meguro, Tokyo","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6380917,139.7062083,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6380917,139.7062083,places_27232 2019-03-29 10:54:15+09:00,2019-03-29 10:54:15+09:00,"Exploring Naka-Meguro, Tokyo","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,places_27233 2019-03-29 10:54:51+09:00,2019-03-29 10:54:51+09:00,"Exploring Naka-Meguro, Tokyo","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,places_27234 2019-03-29 10:54:59+09:00,2019-03-29 10:54:59+09:00,"Exploring Naka-Meguro, Tokyo","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,places_27235 2019-03-29 10:56:04+09:00,2019-03-29 10:56:04+09:00,"Exploring Naka-Meguro, Tokyo","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,places_27236 2019-03-29 10:56:37+09:00,2019-03-29 10:56:37+09:00,"Exploring Naka-Meguro, Tokyo","中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,"中里橋, 新茶屋坂通り, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan",35.6381,139.7062,places_27237 2019-03-29 12:28:58+09:00,2019-03-29 12:28:58+09:00,"University of Tokyo, Tokyo","University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan",35.7105,139.7602,"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan",35.7105,139.7602,places_27238 2019-03-29 13:04:14+09:00,2019-03-29 13:04:14+09:00,"University of Tokyo, Tokyo","University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan",35.7105,139.7603,"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan",35.7105,139.7603,places_27239 2019-03-29 13:04:17+09:00,2019-03-29 13:04:17+09:00,"University of Tokyo, Tokyo","University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan",35.7105,139.7603,"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan",35.7105,139.7603,places_27240 2019-03-29 16:15:45+09:00,2019-03-29 16:15:45+09:00,Tokyo's Shibadaimon,"Shibadaimon 1-chome, Minato, Tokyo, 105-8511, Japan",35.6594,139.7516,"Shibadaimon 1-chome, Minato, Tokyo, 105-8511, Japan",35.6594,139.7516,places_27241 2019-03-29 16:23:59+09:00,2019-03-29 16:23:59+09:00,Tokyo's Shibakoen,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6603,139.74769999999998,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6603,139.74769999999998,places_27242 2019-03-29 16:24:02+09:00,2019-03-29 16:24:02+09:00,Tokyo's Shibakoen,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6603,139.74779999999998,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6603,139.74779999999998,places_27243 2019-03-29 16:24:07+09:00,2019-03-29 16:24:07+09:00,Tokyo's Shibakoen,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6603,139.74769999999998,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6603,139.74769999999998,places_27244 2019-03-29 16:24:56+09:00,2019-03-29 16:24:56+09:00,Tokyo's Shiba Junior & Senior High School,"Shiba Junior High School & Senior High School, 切通坂, Shibakoen 3-chome, Minato, Tokyo, 105-6216, Japan",35.6603,139.7471,"Shiba Junior High School & Senior High School, 切通坂, Shibakoen 3-chome, Minato, Tokyo, 105-6216, Japan",35.6603,139.7471,places_27245 2019-03-29 16:25:06+09:00,2019-03-29 16:25:06+09:00,Tokyo's Shibakoen,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6604,139.7474,"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6604,139.7474,places_27246 2019-03-29 16:26:16+09:00,2019-03-29 16:26:16+09:00,Tokyo Prince Hotel,"Tokyo Prince Hotel, Iwaida-dori, Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6601,139.7473,"Tokyo Prince Hotel, Iwaida-dori, Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan",35.6601,139.7473,places_27247 2019-03-29 18:25:08+09:00,2019-03-29 18:25:08+09:00,Exploring Roppongi Hills,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7287,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7287,places_27248 2019-03-29 18:25:24+09:00,2019-03-29 18:25:24+09:00,Exploring Roppongi Hills,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7286,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7286,places_27249 2019-03-29 18:26:53+09:00,2019-03-29 18:26:53+09:00,Exploring Roppongi Hills,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7287,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7287,places_27250 2019-03-29 18:27:16+09:00,2019-03-29 18:27:16+09:00,Exploring Roppongi Hills,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7286,"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan",35.6604,139.7286,places_27251 2019-03-29 19:20:53+09:00,2019-03-29 19:20:53+09:00,"Exploring Roppongi Hills, Tokyo","Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan",35.6602,139.72889999999998,"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan",35.6602,139.72889999999998,places_27252 2019-03-29 21:28:05+09:00,2019-03-29 21:28:05+09:00,"Exploring Roppongi Hills, Tokyo","Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan",35.6604,139.7288,"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan",35.6604,139.7288,places_27253 2019-03-30 14:15:37+09:00,2019-03-30 14:15:37+09:00,"Narita, Japan","191L, Kuko Higashi-dori, Narita, Sanmu, Chiba Prefecture, 282-0004, Japan",35.76,140.38979999999998,"191L, Kuko Higashi-dori, Narita, Sanmu, Chiba Prefecture, 282-0004, Japan",35.76,140.38979999999998,places_27254 2019-03-31 10:51:04+08:00,2019-03-31 10:51:04+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27255 2019-03-31 10:51:41+08:00,2019-03-31 10:51:41+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27256 2019-03-31 11:17:52+08:00,2019-03-31 11:17:52+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27257 2019-03-31 11:17:57+08:00,2019-03-31 11:17:57+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27258 2019-03-31 11:23:27+08:00,2019-03-31 11:23:27+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27259 2019-03-31 11:29:26+08:00,2019-03-31 11:29:26+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,places_27260 2019-03-31 11:29:35+08:00,2019-03-31 11:29:35+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,places_27261 2019-03-31 11:46:18+08:00,2019-03-31 11:46:18+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27262 2019-03-31 11:46:22+08:00,2019-03-31 11:46:22+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27263 2019-03-31 13:38:53+08:00,2019-03-31 13:38:53+08:00,Exploring Eslite XinYi Store,"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan",25.0393,121.5656,"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan",25.0393,121.5656,places_27264 2019-03-31 13:38:56+08:00,2019-03-31 13:38:56+08:00,Exploring Eslite XinYi Store,"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan",25.0392,121.5656,"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan",25.0392,121.5656,places_27265 2019-03-31 14:02:19+08:00,2019-03-31 14:02:19+08:00,Exploring Taipei City Hall,"Taipei City Hall (City Hall Rd.), City Hall Road, Xinglong Village, Xinyi District, Xingya, Taipei, 11008, Taiwan",25.0378,121.5634,"Taipei City Hall (City Hall Rd.), City Hall Road, Xinglong Village, Xinyi District, Xingya, Taipei, 11008, Taiwan",25.0378,121.5634,places_27266 2019-03-31 14:07:01+08:00,2019-03-31 14:07:01+08:00,"Exploring Xinglong Village, Taiwan","Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan",25.0379,121.5607,"Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan",25.0379,121.5607,places_27267 2019-03-31 14:08:35+08:00,2019-03-31 14:08:35+08:00,"Exploring Xinglong Village, Taiwan","Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan",25.0387,121.5604,"Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan",25.0387,121.5604,places_27268 2019-03-31 14:11:10+08:00,2019-03-31 14:11:10+08:00,"""Exploring Sun Yat-sen Memorial Hall""","Sun Yat-sen Memorial Hall, 505, Section 4, Ren'ai Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 11073, Taiwan",25.0397,121.5603,"Sun Yat-sen Memorial Hall, 505, Section 4, Ren'ai Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 11073, Taiwan",25.0397,121.5603,places_27269 2019-03-31 14:25:17+08:00,2019-03-31 14:25:17+08:00,"Bigtom美國冰淇淋咖啡館 in Chezeng, Taipei","Bigtom美國冰淇淋咖啡館, Guangfu South Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 10694, Taiwan",25.0386,121.5578,"Bigtom美國冰淇淋咖啡館, Guangfu South Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 10694, Taiwan",25.0386,121.5578,places_27270 2019-04-01 11:46:03+08:00,2019-04-01 11:46:03+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27271 2019-04-01 11:46:13+08:00,2019-04-01 11:46:13+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27272 2019-04-01 11:46:18+08:00,2019-04-01 11:46:18+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.52769999999998,places_27273 2019-04-01 11:50:40+08:00,2019-04-01 11:50:40+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,places_27274 2019-04-01 13:05:56+08:00,2019-04-01 13:05:56+08:00,"Cama Cafe in Huashan, Taipei","cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan",25.0437,121.5276,places_27275 2019-04-01 13:10:47+08:00,2019-04-01 13:10:47+08:00,Taipei's KuanHua Market,"1914 Connection, Jinshan North Road, KuanHua Market, Meihua Village, Zhongzheng District, Huashan, Taipei, 10053, Taiwan",25.0437,121.5299,"1914 Connection, Jinshan North Road, KuanHua Market, Meihua Village, Zhongzheng District, Huashan, Taipei, 10053, Taiwan",25.0437,121.5299,places_27276 2019-04-01 14:08:24+08:00,2019-04-01 14:08:24+08:00,Exploring Chiang Kai-shek Memorial Hall,"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.034800000000004,121.5216,"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.034800000000004,121.5216,places_27277 2019-04-01 14:09:49+08:00,2019-04-01 14:09:49+08:00,Exploring Chiang Kai-shek Memorial Hall,"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.0347,121.52179999999998,"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.0347,121.52179999999998,places_27278 2019-04-01 14:09:52+08:00,2019-04-01 14:09:52+08:00,Taipei's Democracy Boulevard,"中正紀念堂銅像大廳, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan",25.0346,121.52189999999996,"中正紀念堂銅像大廳, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan",25.0346,121.52189999999996,places_27279 2019-04-01 14:12:25+08:00,2019-04-01 14:12:25+08:00,Exploring Chiang Kai-shek Memorial Hall,"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.034800000000004,121.5216,"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.034800000000004,121.5216,places_27280 2019-04-01 14:13:29+08:00,2019-04-01 14:13:29+08:00,"Exploring Longtsakoo, Taiwan","Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, Taiwan",25.0352,121.52119999999998,"Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, Taiwan",25.0352,121.52119999999998,places_27281 2019-04-01 14:19:18+08:00,2019-04-01 14:19:18+08:00,Exploring Chiang Kai-shek Memorial Hall,"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.0352,121.52189999999996,"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan",25.0352,121.52189999999996,places_27282 2019-04-01 14:32:33+08:00,2019-04-01 14:32:33+08:00,"Exploring Longtsakoo, Taipei","南側樓梯出口, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10013, Taiwan",25.0352,121.519,"南側樓梯出口, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10013, Taiwan",25.0352,121.519,places_27283 2019-04-01 14:32:43+08:00,2019-04-01 14:32:43+08:00,"Exploring Longtsakoo, Taiwan","Democracy Boulevard, Linsen South Road Motor Tunnel, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan",25.0357,121.5201,"Democracy Boulevard, Linsen South Road Motor Tunnel, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan",25.0357,121.5201,places_27284 2019-04-01 14:34:37+08:00,2019-04-01 14:34:37+08:00,Taipei's Liberty Square,"Liberty Square, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10001, Taiwan",25.0359,121.51919999999998,"Liberty Square, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10001, Taiwan",25.0359,121.51919999999998,places_27285 2019-04-01 18:04:00+08:00,2019-04-01 18:04:00+08:00,Photographing Platform in Taipei,"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.027,121.5741,"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.027,121.5741,places_27286 2019-04-01 18:10:42+08:00,2019-04-01 18:10:42+08:00,"Exploring Sanli Village, Taipei","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.57439999999998,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.57439999999998,places_27287 2019-04-01 18:16:02+08:00,2019-04-01 18:16:02+08:00,Exploring Liuhe Village Trail,"象山親山步道主線(稜線), Liuhe Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268,121.5745,"象山親山步道主線(稜線), Liuhe Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268,121.5745,places_27288 2019-04-01 18:16:44+08:00,2019-04-01 18:16:44+08:00,Exploring Taipei: 梅花球場,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272,121.5729,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272,121.5729,places_27289 2019-04-01 18:18:23+08:00,2019-04-01 18:18:23+08:00,Exploring Xiangshan Tunnel,"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268139,121.5743944,"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268139,121.5743944,places_27290 2019-04-01 18:18:34+08:00,2019-04-01 18:18:34+08:00,Exploring Xiangshan Tunnel,"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268083,121.5743861,"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0268083,121.5743861,places_27291 2019-04-01 18:18:54+08:00,2019-04-01 18:18:54+08:00,Exploring Taipei from the Xinyi District,"象山看台北, 101塔樓2號攝影平台, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.026872200000003,121.5744083,"象山看台北, 101塔樓2號攝影平台, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.026872200000003,121.5744083,places_27292 2019-04-01 18:19:16+08:00,2019-04-01 18:19:16+08:00,"Exploring Sanli Village, Taipei","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,places_27293 2019-04-01 18:27:54+08:00,2019-04-01 18:27:54+08:00,"Exploring Sanli Village, Taipei","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.57439999999998,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.57439999999998,places_27294 2019-04-01 18:28:24+08:00,2019-04-01 18:28:24+08:00,"Exploring Sanli Village, Taipei","楠楠相望, 象山親山步道主線(稜線), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0271,121.5732,"楠楠相望, 象山親山步道主線(稜線), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0271,121.5732,places_27295 2019-04-01 18:30:30+08:00,2019-04-01 18:30:30+08:00,"Exploring Sanli Village, Taipei","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,places_27296 2019-04-01 18:30:38+08:00,2019-04-01 18:30:38+08:00,"Exploring Sanli Village, Taipei","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,places_27297 2019-04-01 18:30:50+08:00,2019-04-01 18:30:50+08:00,"Exploring Sanli Village, Taipei","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,places_27298 2019-04-01 18:33:02+08:00,2019-04-01 18:33:02+08:00,"Exploring Sanli Village, Taipei","象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,"象山親山步道松德院區線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0269,121.5745,places_27299 2019-04-01 18:33:52+08:00,2019-04-01 18:33:52+08:00,Photographing Platform in Taipei,"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.0267528,121.5742333,"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.0267528,121.5742333,places_27300 2019-04-01 18:34:03+08:00,2019-04-01 18:34:03+08:00,"""Photography Platform at 101 Tower""","101塔樓1號攝影平台, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.0272722,121.5731361,"101塔樓1號攝影平台, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan",25.0272722,121.5731361,places_27301 2019-04-01 18:34:13+08:00,2019-04-01 18:34:13+08:00,Exploring Taipei: 梅花球場,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272694,121.5730139,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272694,121.5730139,places_27302 2019-04-01 18:34:18+08:00,2019-04-01 18:34:18+08:00,Exploring Taipei: 梅花球場,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0273167,121.5730667,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0273167,121.5730667,places_27303 2019-04-01 18:44:00+08:00,2019-04-01 18:44:00+08:00,Exploring Taipei: 梅花球場,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0274,121.5723,"梅花球場, 象山親山步道永春亭線, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0274,121.5723,places_27304 2019-04-01 18:47:11+08:00,2019-04-01 18:47:11+08:00,Exploring Nature at 象山自然步道,"象山自然步道, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272,121.5732,"象山自然步道, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0272,121.5732,places_27305 2019-04-01 18:54:00+08:00,2019-04-01 18:54:00+08:00,Exploring Taipei's Elephant Mountain Trail,"四獸山步道意象拍照座椅, 象山親山步道主線(稜線), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0274,121.5716,"四獸山步道意象拍照座椅, 象山親山步道主線(稜線), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan",25.0274,121.5716,places_27306 2019-04-02 19:09:25-07:00,2019-04-02 19:09:25-07:00,"Randall County, Texas","State Highway 217, Randall County, Texas, United States",34.98393380705451,-101.787210489917,"State Highway 217, Randall County, Texas, United States",34.98393380705451,-101.787210489917,places_27307 2019-04-02 19:10:05-07:00,2019-04-02 19:10:05-07:00,"Randall County, Texas","State Highway 217, Randall County, Texas, United States",34.98379426157431,-101.78735003539722,"State Highway 217, Randall County, Texas, United States",34.98379426157431,-101.78735003539722,places_27308 2019-04-02 19:16:56-07:00,2019-04-02 19:16:56-07:00,"Randall County, Texas","State Highway 217, Randall County, Texas, United States",34.98393380705451,-101.787210489917,"State Highway 217, Randall County, Texas, United States",34.98393380705451,-101.787210489917,places_27309 2019-04-03 08:53:44-07:00,2019-04-03 08:53:44-07:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03755147425116,-101.90860432341586,"2968, Greg Street, Randall County, Texas, 79015, United States",35.03755147425116,-101.90860432341586,places_27310 2019-04-06 12:16:12-07:00,2019-04-06 12:16:12-07:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.037572942786554,-101.90841110659711,"2968, Greg Street, Randall County, Texas, 79015, United States",35.037572942786554,-101.90841110659711,places_27311 2019-04-06 12:16:37-07:00,2019-04-06 12:16:37-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037453953429015,-101.9084895633598,"2966, Greg Street, Randall County, Texas, 79015, United States",35.037453953429015,-101.9084895633598,places_27312 2019-04-06 12:16:36-07:00,2019-04-06 12:16:36-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037453953429015,-101.9084895633598,"2966, Greg Street, Randall County, Texas, 79015, United States",35.037453953429015,-101.9084895633598,places_27313 2019-04-06 12:17:05-07:00,2019-04-06 12:17:05-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,places_27314 2019-04-06 12:17:19-07:00,2019-04-06 12:17:19-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03752050588879,-101.90851128951766,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03752050588879,-101.90851128951766,places_27315 2019-04-06 12:17:32-07:00,2019-04-06 12:17:32-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03752050588879,-101.90851128951766,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03752050588879,-101.90851128951766,places_27316 2019-04-06 12:17:40-07:00,2019-04-06 12:17:40-07:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.037562208518864,-101.9085077150065,"2968, Greg Street, Randall County, Texas, 79015, United States",35.037562208518864,-101.9085077150065,places_27317 2019-04-10 15:59:42-07:00,2019-04-10 15:59:42-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03733794819794,-101.90882025394504,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03733794819794,-101.90882025394504,places_27318 2019-04-10 15:59:41-07:00,2019-04-10 15:59:41-07:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.0372723832908,-101.90888341437628,"2964, Greg Street, Randall County, Texas, 79015, United States",35.0372723832908,-101.90888341437628,places_27319 2019-04-11 16:03:08-07:00,2019-04-11 16:03:08-07:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,places_27320 2019-04-11 17:50:51-07:00,2019-04-11 17:50:51-07:00,"""Texas Home on Greg Street""","2962, Greg Street, Randall County, Texas, 79015, United States",35.03706843220435,-101.90848624647114,"2962, Greg Street, Randall County, Texas, 79015, United States",35.03706843220435,-101.90848624647114,places_27321 2019-04-11 17:50:53-07:00,2019-04-11 17:50:53-07:00,"""Texas Home on Greg Street""","2962, Greg Street, Randall County, Texas, 79015, United States",35.03706843220435,-101.90848624647114,"2962, Greg Street, Randall County, Texas, 79015, United States",35.03706843220435,-101.90848624647114,places_27322 2019-04-11 17:51:04-07:00,2019-04-11 17:51:04-07:00,"""Texas Home on Greg Street""","2962, Greg Street, Randall County, Texas, 79015, United States",35.037052330802794,-101.90863115908512,"2962, Greg Street, Randall County, Texas, 79015, United States",35.037052330802794,-101.90863115908512,places_27323 2019-04-11 17:51:03-07:00,2019-04-11 17:51:03-07:00,"""Texas Home on Greg Street""","2962, Greg Street, Randall County, Texas, 79015, United States",35.03704696366893,-101.9086794632898,"2962, Greg Street, Randall County, Texas, 79015, United States",35.03704696366893,-101.9086794632898,places_27324 2019-04-13 13:08:12-07:00,2019-04-13 13:08:12-07:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,places_27325 2019-04-13 13:23:32-07:00,2019-04-13 13:23:32-07:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,places_27326 2019-04-13 13:23:49-07:00,2019-04-13 13:23:49-07:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.03716504061369,-101.90873313462832,"2964, Greg Street, Randall County, Texas, 79015, United States",35.03716504061369,-101.90873313462832,places_27327 2019-04-13 13:24:21-07:00,2019-04-13 13:24:21-07:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,"2964, Greg Street, Randall County, Texas, 79015, United States",35.037293851826185,-101.9086901975575,places_27328 2019-04-14 08:23:09-07:00,2019-04-14 08:23:09-07:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.037562208518864,-101.9085077150065,"2968, Greg Street, Randall County, Texas, 79015, United States",35.037562208518864,-101.9085077150065,places_27329 2019-04-14 08:23:14-07:00,2019-04-14 08:23:14-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,places_27330 2019-04-14 11:09:42-07:00,2019-04-14 11:09:42-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,places_27331 2019-04-14 11:09:56-07:00,2019-04-14 11:09:56-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03743339730636,-101.90855065207734,places_27332 2019-04-14 19:19:06-07:00,2019-04-14 19:19:06-07:00,Vancouver's Canada Place,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1128,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1128,places_27333 2019-04-14 19:28:23-07:00,2019-04-14 19:28:23-07:00,Vancouver's Canada Place,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.28790000000001,-123.1127,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.28790000000001,-123.1127,places_27334 2019-04-14 20:40:40-07:00,2019-04-14 20:40:40-07:00,"Exploring Gastown, Vancouver","999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2882,-123.1128,"999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2882,-123.1128,places_27335 2019-04-15 08:03:01-07:00,2019-04-15 08:03:01-07:00,Vancouver's Canada Place,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1127,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1127,places_27336 2019-04-15 08:03:20-07:00,2019-04-15 08:03:20-07:00,Vancouver's Canada Place,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1128,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.1128,places_27337 2019-04-15 12:16:09-07:00,2019-04-15 12:16:09-07:00,Vancouver's Canada Place,"Canada Place, West Waterfront Road, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2883,-123.1144,"Canada Place, West Waterfront Road, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2883,-123.1144,places_27338 2019-04-15 12:34:01-07:00,2019-04-15 12:34:01-07:00,"Luxury in Gastown, Vancouver","Fairmont Pacific Rim, 1038, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2883,-123.1167,"Fairmont Pacific Rim, 1038, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2883,-123.1167,places_27339 2019-04-15 13:45:18-07:00,2019-04-15 13:45:18-07:00,Gastown Nail Salon,"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.116,"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.116,places_27340 2019-04-15 13:47:29-07:00,2019-04-15 13:47:29-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1163,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1163,places_27341 2019-04-15 13:47:35-07:00,2019-04-15 13:47:35-07:00,Gastown Nail Salon,"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1159,"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1159,places_27342 2019-04-15 14:19:43-07:00,2019-04-15 14:19:43-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,places_27343 2019-04-15 14:19:45-07:00,2019-04-15 14:19:45-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,places_27344 2019-04-15 14:19:50-07:00,2019-04-15 14:19:50-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.1166,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.1166,places_27345 2019-04-15 14:19:55-07:00,2019-04-15 14:19:55-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.1166,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.1166,places_27346 2019-04-15 14:19:56-07:00,2019-04-15 14:19:56-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1167,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1167,places_27347 2019-04-15 14:20:02-07:00,2019-04-15 14:20:02-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1167,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1167,places_27348 2019-04-15 14:20:03-07:00,2019-04-15 14:20:03-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,places_27349 2019-04-15 14:20:07-07:00,2019-04-15 14:20:07-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,places_27350 2019-04-15 14:20:07-07:00,2019-04-15 14:20:07-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,places_27351 2019-04-15 14:20:08-07:00,2019-04-15 14:20:08-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1168,places_27352 2019-04-15 14:20:19-07:00,2019-04-15 14:20:19-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,places_27353 2019-04-15 14:20:20-07:00,2019-04-15 14:20:20-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2883,-123.11649999999996,places_27354 2019-04-15 15:21:26-07:00,2019-04-15 15:21:26-07:00,Gastown's Bellaggio Café & Gelateria,"Bellaggio Café & Gelateria, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1149,"Bellaggio Café & Gelateria, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2884,-123.1149,places_27355 2019-04-15 15:25:50-07:00,2019-04-15 15:25:50-07:00,Vancouver's Canada Place,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.28790000000001,-123.1128,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.28790000000001,-123.1128,places_27356 2019-04-15 15:25:58-07:00,2019-04-15 15:25:58-07:00,Vancouver's Canada Place,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.11249999999998,"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada",49.288,-123.11249999999998,places_27357 2019-04-15 17:05:24-07:00,2019-04-15 17:05:24-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,places_27358 2019-04-15 17:16:37-07:00,2019-04-15 17:16:37-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,places_27359 2019-04-15 18:13:08-07:00,2019-04-15 18:13:08-07:00,Gastown Nail Salon,"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1156,"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1156,places_27360 2019-04-15 18:30:43-07:00,2019-04-15 18:30:43-07:00,Gastown Nail Salon,"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.116,"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.116,places_27361 2019-04-15 18:30:48-07:00,2019-04-15 18:30:48-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,places_27362 2019-04-15 18:31:20-07:00,2019-04-15 18:31:20-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,places_27363 2019-04-15 18:31:22-07:00,2019-04-15 18:31:22-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,places_27364 2019-04-15 18:34:27-07:00,2019-04-15 18:34:27-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1157,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1157,places_27365 2019-04-15 18:53:48-07:00,2019-04-15 18:53:48-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1159,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1159,places_27366 2019-04-15 20:31:18-07:00,2019-04-15 20:31:18-07:00,Vancouver's Olympic Cauldron,"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2891,-123.11779999999996,"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2891,-123.11779999999996,places_27367 2019-04-16 07:52:35-07:00,2019-04-16 07:52:35-07:00,Vancouver's Shaw Tower,"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1177,"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1177,places_27368 2019-04-16 07:52:38-07:00,2019-04-16 07:52:38-07:00,Vancouver's Shaw Tower,"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1176,"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1176,places_27369 2019-04-16 07:52:47-07:00,2019-04-16 07:52:47-07:00,Vancouver's Shaw Tower,"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1177,"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1177,places_27370 2019-04-16 07:52:51-07:00,2019-04-16 07:52:51-07:00,Vancouver's Shaw Tower,"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1176,"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada",49.2885,-123.1176,places_27371 2019-04-16 10:02:50-07:00,2019-04-16 10:02:50-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1159,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1159,places_27372 2019-04-16 10:35:31-07:00,2019-04-16 10:35:31-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.11649999999996,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.11649999999996,places_27373 2019-04-16 11:19:47-07:00,2019-04-16 11:19:47-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1161,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1161,places_27374 2019-04-16 11:33:45-07:00,2019-04-16 11:33:45-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,places_27375 2019-04-16 12:43:45-07:00,2019-04-16 12:43:45-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.116,places_27376 2019-04-16 12:43:50-07:00,2019-04-16 12:43:50-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.116,places_27377 2019-04-16 15:58:10-07:00,2019-04-16 15:58:10-07:00,Vancouver's Olympic Cauldron,"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2891,-123.1175,"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada",49.2891,-123.1175,places_27378 2019-04-16 18:44:28-07:00,2019-04-16 18:44:28-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,places_27379 2019-04-17 08:56:50-07:00,2019-04-17 08:56:50-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2894,-123.1161,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2894,-123.1161,places_27380 2019-04-17 09:16:52-07:00,2019-04-17 09:16:52-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.1161,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.1161,places_27381 2019-04-17 09:30:42-07:00,2019-04-17 09:30:42-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1159,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.1159,places_27382 2019-04-17 09:34:50-07:00,2019-04-17 09:34:50-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,places_27383 2019-04-17 09:51:56-07:00,2019-04-17 09:51:56-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897,-123.116,places_27384 2019-04-17 11:32:25-07:00,2019-04-17 11:32:25-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,places_27385 2019-04-17 12:32:29-07:00,2019-04-17 12:32:29-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,places_27386 2019-04-17 12:35:17-07:00,2019-04-17 12:35:17-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1163,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1163,places_27387 2019-04-17 12:35:20-07:00,2019-04-17 12:35:20-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1161,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1161,places_27388 2019-04-17 12:43:24-07:00,2019-04-17 12:43:24-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1161,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1161,places_27389 2019-04-17 12:43:27-07:00,2019-04-17 12:43:27-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,places_27390 2019-04-17 13:44:56-07:00,2019-04-17 13:44:56-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.115,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2895,-123.115,places_27391 2019-04-17 18:34:48-07:00,2019-04-17 18:34:48-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1161,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1161,places_27392 2019-04-17 18:37:48-07:00,2019-04-17 18:37:48-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.116,places_27393 2019-04-18 09:00:47-07:00,2019-04-18 09:00:47-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1159,places_27394 2019-04-18 09:25:03-07:00,2019-04-18 09:25:03-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1157,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896,-123.1157,places_27395 2019-04-18 10:00:34-07:00,2019-04-18 10:00:34-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1161,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2898,-123.1161,places_27396 2019-04-18 11:45:23-07:00,2019-04-18 11:45:23-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896278,-123.1160139,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896278,-123.1160139,places_27397 2019-04-18 11:48:54-07:00,2019-04-18 11:48:54-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896083,-123.1156611,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896083,-123.1156611,places_27398 2019-04-18 12:01:17-07:00,2019-04-18 12:01:17-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897306,-123.115775,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897306,-123.115775,places_27399 2019-04-18 12:03:14-07:00,2019-04-18 12:03:14-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2894833,-123.11611109999998,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2894833,-123.11611109999998,places_27400 2019-04-18 12:18:17-07:00,2019-04-18 12:18:17-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2888139,-123.1159972,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2888139,-123.1159972,places_27401 2019-04-18 12:29:21-07:00,2019-04-18 12:29:21-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2887917,-123.11611109999998,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2887917,-123.11611109999998,places_27402 2019-04-18 16:25:56-07:00,2019-04-18 16:25:56-07:00,Vancouver's Canada Place,"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881972,-123.1155778,"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881972,-123.1155778,places_27403 2019-04-18 16:26:01-07:00,2019-04-18 16:26:01-07:00,Vancouver's Canada Place,"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881972,-123.1155778,"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881972,-123.1155778,places_27404 2019-04-18 16:26:04-07:00,2019-04-18 16:26:04-07:00,Vancouver's Canada Place,"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881611,-123.1155778,"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881611,-123.1155778,places_27405 2019-04-18 16:26:07-07:00,2019-04-18 16:26:07-07:00,Vancouver's Canada Place,"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881611,-123.1155778,"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada",49.2881611,-123.1155778,places_27406 2019-04-18 17:10:13-07:00,2019-04-18 17:10:13-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2893528,-123.11579999999998,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2893528,-123.11579999999998,places_27407 2019-04-18 17:10:17-07:00,2019-04-18 17:10:17-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2893528,-123.11579999999998,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2893528,-123.11579999999998,places_27408 2019-04-18 17:27:02-07:00,2019-04-18 17:27:02-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896917,-123.11579999999998,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896917,-123.11579999999998,places_27409 2019-04-18 17:54:04-07:00,2019-04-18 17:54:04-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896806,-123.1157694,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896806,-123.1157694,places_27410 2019-04-18 19:46:42-07:00,2019-04-18 19:46:42-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2882722,-123.1162639,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2882722,-123.1162639,places_27411 2019-04-18 19:46:47-07:00,2019-04-18 19:46:47-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2882611,-123.11625,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2882611,-123.11625,places_27412 2019-04-19 11:21:20-07:00,2019-04-19 11:21:20-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896694,-123.1161028,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896694,-123.1161028,places_27413 2019-04-19 11:22:29-07:00,2019-04-19 11:22:29-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897194,-123.1159972,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897194,-123.1159972,places_27414 2019-04-19 11:34:21-07:00,2019-04-19 11:34:21-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896806,-123.1160278,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2896806,-123.1160278,places_27415 2019-04-19 11:37:25-07:00,2019-04-19 11:37:25-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897222,-123.1160056,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897222,-123.1160056,places_27416 2019-04-19 11:38:46-07:00,2019-04-19 11:38:46-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.28954720000001,-123.1160139,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.28954720000001,-123.1160139,places_27417 2019-04-19 11:39:45-07:00,2019-04-19 11:39:45-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.28975,-123.1159056,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.28975,-123.1159056,places_27418 2019-04-19 11:41:51-07:00,2019-04-19 11:41:51-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897111,-123.11592779999998,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897111,-123.11592779999998,places_27419 2019-04-19 11:42:16-07:00,2019-04-19 11:42:16-07:00,Vancouver Convention Centre West,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897222,-123.11598329999998,"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada",49.2897222,-123.11598329999998,places_27420 2019-04-20 11:12:11-07:00,2019-04-20 11:12:11-07:00,"Old School Iron in Amarillo, TX","Old School Iron, 3928, Business Park Drive, Western Business Park, Amarillo, Randall County, Texas, 79110, United States",35.14413922100794,-101.87999029728296,"Old School Iron, 3928, Business Park Drive, Western Business Park, Amarillo, Randall County, Texas, 79110, United States",35.14413922100794,-101.87999029728296,places_27421 2019-04-20 13:02:58-07:00,2019-04-20 13:02:58-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03744471122455,-101.90857274320028,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03744471122455,-101.90857274320028,places_27422 2019-04-20 14:04:32-07:00,2019-04-20 14:04:32-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.0374716220337,-101.90854823686712,"2966, Greg Street, Randall County, Texas, 79015, United States",35.0374716220337,-101.90854823686712,places_27423 2019-04-20 17:58:49-07:00,2019-04-20 17:58:49-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037502558193225,-101.90861030240296,"2966, Greg Street, Randall County, Texas, 79015, United States",35.037502558193225,-101.90861030240296,places_27424 2019-04-20 17:58:54-07:00,2019-04-20 17:58:54-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037479361440695,-101.90860249859033,"2966, Greg Street, Randall County, Texas, 79015, United States",35.037479361440695,-101.90860249859033,places_27425 2019-04-21 10:33:26-07:00,2019-04-21 10:33:26-07:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03766621283866,-101.90862552359462,"2968, Greg Street, Randall County, Texas, 79015, United States",35.03766621283866,-101.90862552359462,places_27426 2019-04-21 11:39:34-07:00,2019-04-21 11:39:34-07:00,"""Texas Home on Greg Street""","2964, Greg Street, Randall County, Texas, 79015, United States",35.03732577553836,-101.9088371496824,"2964, Greg Street, Randall County, Texas, 79015, United States",35.03732577553836,-101.9088371496824,places_27427 2019-04-21 11:39:50-07:00,2019-04-21 11:39:50-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03747303895704,-101.90859688456833,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03747303895704,-101.90859688456833,places_27428 2019-04-21 11:41:20-07:00,2019-04-21 11:41:20-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03744678293821,-101.90867801416366,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03744678293821,-101.90867801416366,places_27429 2019-04-21 11:41:39-07:00,2019-04-21 11:41:39-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03745391049196,-101.90858260799229,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03745391049196,-101.90858260799229,places_27430 2019-04-22 19:13:15-07:00,2019-04-22 19:13:15-07:00,"Exploring Randall County, Texas","Myatt Drive, Randall County, Texas, 79119, United States",35.0991566710626,-101.95215682201444,"Myatt Drive, Randall County, Texas, 79119, United States",35.0991566710626,-101.95215682201444,places_27431 2019-04-22 19:24:01-07:00,2019-04-22 19:24:01-07:00,"Exploring Randall County, Texas","Myatt Drive, Randall County, Texas, 79119, United States",35.0991566710626,-101.95215682201444,"Myatt Drive, Randall County, Texas, 79119, United States",35.0991566710626,-101.95215682201444,places_27432 2019-04-23 08:14:56-07:00,2019-04-23 08:14:56-07:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03756368984783,-101.90861829943243,"2968, Greg Street, Randall County, Texas, 79015, United States",35.03756368984783,-101.90861829943243,places_27433 2019-04-23 08:14:55-07:00,2019-04-23 08:14:55-07:00,"""Texas Home on Greg Street""","2968, Greg Street, Randall County, Texas, 79015, United States",35.03756368984783,-101.90861829943243,"2968, Greg Street, Randall County, Texas, 79015, United States",35.03756368984783,-101.90861829943243,places_27434 2019-04-23 09:58:20-07:00,2019-04-23 09:58:20-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03744321916134,-101.9085861717692,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03744321916134,-101.9085861717692,places_27435 2019-04-23 12:25:08-07:00,2019-04-23 12:25:08-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.03745841888442,-101.90857329064792,"2966, Greg Street, Randall County, Texas, 79015, United States",35.03745841888442,-101.90857329064792,places_27436 2019-04-24 18:32:53-07:00,2019-04-24 18:32:53-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0619556,-112.1084528,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0619556,-112.1084528,places_27437 2019-04-24 18:35:19-07:00,2019-04-24 18:35:19-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088944,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088944,places_27438 2019-04-24 18:35:28-07:00,2019-04-24 18:35:28-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621722,-112.1088861,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621722,-112.1088861,places_27439 2019-04-24 18:35:38-07:00,2019-04-24 18:35:38-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621722,-112.1088778,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621722,-112.1088778,places_27440 2019-04-24 18:40:38-07:00,2019-04-24 18:40:38-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621389,-112.1088639,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621389,-112.1088639,places_27441 2019-04-24 18:40:41-07:00,2019-04-24 18:40:41-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621417,-112.1088722,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621417,-112.1088722,places_27442 2019-04-24 18:41:36-07:00,2019-04-24 18:41:36-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621722,-112.1088861,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0621722,-112.1088861,places_27443 2019-04-24 18:41:41-07:00,2019-04-24 18:41:41-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088778,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088778,places_27444 2019-04-24 18:41:43-07:00,2019-04-24 18:41:43-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088778,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088778,places_27445 2019-04-24 18:41:46-07:00,2019-04-24 18:41:46-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088778,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062175,-112.1088778,places_27446 2019-04-24 18:43:55-07:00,2019-04-24 18:43:55-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062125,-112.1087889,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.062125,-112.1087889,places_27447 2019-04-24 18:45:25-07:00,2019-04-24 18:45:25-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0620833,-112.1088639,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0620833,-112.1088639,places_27448 2019-04-24 18:50:35-07:00,2019-04-24 18:50:35-07:00,Exploring the Grand Canyon,"Grand Canyon, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0629583,-112.1095972,"Grand Canyon, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0629583,-112.1095972,places_27449 2019-04-24 18:52:17-07:00,2019-04-24 18:52:17-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0626,-112.1107639,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0626,-112.1107639,places_27450 2019-04-24 18:52:16-07:00,2019-04-24 18:52:16-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0626,-112.1107639,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0626,-112.1107639,places_27451 2019-04-24 18:55:48-07:00,2019-04-24 18:55:48-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632028,-112.1114972,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632028,-112.1114972,places_27452 2019-04-24 18:55:59-07:00,2019-04-24 18:55:59-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0633083,-112.1118083,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0633083,-112.1118083,places_27453 2019-04-24 18:59:17-07:00,2019-04-24 18:59:17-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,places_27454 2019-04-24 18:59:23-07:00,2019-04-24 18:59:23-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,places_27455 2019-04-24 18:59:30-07:00,2019-04-24 18:59:30-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0632556,-112.1116944,places_27456 2019-04-24 19:06:22-07:00,2019-04-24 19:06:22-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0645306,-112.1132667,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0645306,-112.1132667,places_27457 2019-04-24 19:07:27-07:00,2019-04-24 19:07:27-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0644083,-112.1134722,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0644083,-112.1134722,places_27458 2019-04-24 19:10:19-07:00,2019-04-24 19:10:19-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0649139,-112.1152111,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0649139,-112.1152111,places_27459 2019-04-24 19:10:24-07:00,2019-04-24 19:10:24-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0649139,-112.1152111,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0649139,-112.1152111,places_27460 2019-04-24 19:13:51-07:00,2019-04-24 19:13:51-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.065675,-112.1167972,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.065675,-112.1167972,places_27461 2019-04-24 19:13:55-07:00,2019-04-24 19:13:55-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.065675,-112.1167972,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.065675,-112.1167972,places_27462 2019-04-24 19:15:23-07:00,2019-04-24 19:15:23-07:00,Exploring Yavapai Lodge Road,"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0595167,-112.11605,"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0595167,-112.11605,places_27463 2019-04-24 19:16:48-07:00,2019-04-24 19:16:48-07:00,Exploring Arizona's Geology at Yavapai Museum,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662472,-112.1172556,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662472,-112.1172556,places_27464 2019-04-24 19:16:52-07:00,2019-04-24 19:16:52-07:00,Exploring Arizona's Geology at Yavapai Museum,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662167,-112.1172472,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662167,-112.1172472,places_27465 2019-04-24 19:16:56-07:00,2019-04-24 19:16:56-07:00,Exploring Arizona's Geology at Yavapai Museum,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662167,-112.1172472,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662167,-112.1172472,places_27466 2019-04-24 19:16:59-07:00,2019-04-24 19:16:59-07:00,Exploring Arizona's Geology at Yavapai Museum,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662167,-112.1172472,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662167,-112.1172472,places_27467 2019-04-24 19:17:03-07:00,2019-04-24 19:17:03-07:00,Exploring Arizona's Geology at Yavapai Museum,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662167,-112.1172472,"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0662167,-112.1172472,places_27468 2019-04-24 19:19:38-07:00,2019-04-24 19:19:38-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659667,-112.1167917,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659667,-112.1167917,places_27469 2019-04-24 19:19:40-07:00,2019-04-24 19:19:40-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659611,-112.1167972,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659611,-112.1167972,places_27470 2019-04-24 19:19:44-07:00,2019-04-24 19:19:44-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659611,-112.1167972,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659611,-112.1167972,places_27471 2019-04-24 19:19:51-07:00,2019-04-24 19:19:51-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659611,-112.1167972,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659611,-112.1167972,places_27472 2019-04-24 19:20:08-07:00,2019-04-24 19:20:08-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27473 2019-04-24 19:20:16-07:00,2019-04-24 19:20:16-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27474 2019-04-24 19:20:19-07:00,2019-04-24 19:20:19-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27475 2019-04-24 19:20:25-07:00,2019-04-24 19:20:25-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27476 2019-04-24 19:20:32-07:00,2019-04-24 19:20:32-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27477 2019-04-24 19:20:35-07:00,2019-04-24 19:20:35-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27478 2019-04-24 19:20:37-07:00,2019-04-24 19:20:37-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27479 2019-04-24 19:20:39-07:00,2019-04-24 19:20:39-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27480 2019-04-24 19:20:40-07:00,2019-04-24 19:20:40-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27481 2019-04-24 19:21:41-07:00,2019-04-24 19:21:41-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0658417,-112.1168139,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0658417,-112.1168139,places_27482 2019-04-24 19:21:48-07:00,2019-04-24 19:21:48-07:00,"Exploring Yavapai Point, Grand Canyon","Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0659556,-112.1167833,places_27483 2019-04-25 05:37:52-07:00,2019-04-25 05:37:52-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602028,-112.1063833,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602028,-112.1063833,places_27484 2019-04-25 05:39:19-07:00,2019-04-25 05:39:19-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0610167,-112.1069806,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0610167,-112.1069806,places_27485 2019-04-25 05:41:32-07:00,2019-04-25 05:41:32-07:00,Exploring Yavapai Lodge Road,"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0591917,-112.1162806,"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0591917,-112.1162806,places_27486 2019-04-25 05:42:07-07:00,2019-04-25 05:42:07-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602083,-112.1066889,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602083,-112.1066889,places_27487 2019-04-25 05:42:46-07:00,2019-04-25 05:42:46-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601472,-112.1066972,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601472,-112.1066972,places_27488 2019-04-25 05:42:53-07:00,2019-04-25 05:42:53-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601778,-112.1067194,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601778,-112.1067194,places_27489 2019-04-25 05:43:32-07:00,2019-04-25 05:43:32-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601167,-112.1067361,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601167,-112.1067361,places_27490 2019-04-25 05:43:36-07:00,2019-04-25 05:43:36-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601278,-112.1067583,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601278,-112.1067583,places_27491 2019-04-25 05:43:42-07:00,2019-04-25 05:43:42-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.1067111,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.1067111,places_27492 2019-04-25 05:43:47-07:00,2019-04-25 05:43:47-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601667,-112.1067056,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601667,-112.1067056,places_27493 2019-04-25 05:43:52-07:00,2019-04-25 05:43:52-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601667,-112.1067056,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601667,-112.1067056,places_27494 2019-04-25 05:44:01-07:00,2019-04-25 05:44:01-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601667,-112.1066806,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601667,-112.1066806,places_27495 2019-04-25 05:44:16-07:00,2019-04-25 05:44:16-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,places_27496 2019-04-25 05:44:18-07:00,2019-04-25 05:44:18-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,places_27497 2019-04-25 05:44:23-07:00,2019-04-25 05:44:23-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601722,-112.106675,places_27498 2019-04-25 05:45:05-07:00,2019-04-25 05:45:05-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601472,-112.106575,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0601472,-112.106575,places_27499 2019-04-25 05:46:17-07:00,2019-04-25 05:46:17-07:00,Exploring Yavapai Lodge Road,"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0592583,-112.1160139,"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0592583,-112.1160139,places_27500 2019-04-25 05:46:26-07:00,2019-04-25 05:46:26-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0603056,-112.1064694,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0603056,-112.1064694,places_27501 2019-04-25 05:47:17-07:00,2019-04-25 05:47:17-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602528,-112.1067361,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602528,-112.1067361,places_27502 2019-04-25 05:47:39-07:00,2019-04-25 05:47:39-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,places_27503 2019-04-25 05:47:50-07:00,2019-04-25 05:47:50-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,places_27504 2019-04-25 05:47:49-07:00,2019-04-25 05:47:49-07:00,Exploring Mather Point,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States",36.0602917,-112.106575,places_27505 2019-04-25 05:54:16-07:00,2019-04-25 05:54:16-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0616194,-112.1087111,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0616194,-112.1087111,places_27506 2019-04-25 05:54:36-07:00,2019-04-25 05:54:36-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0616417,-112.1086056,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0616417,-112.1086056,places_27507 2019-04-25 05:59:41-07:00,2019-04-25 05:59:41-07:00,"Exploring Mather Point, Grand Canyon","Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0623139,-112.1087639,"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0623139,-112.1087639,places_27508 2019-04-25 06:10:13-07:00,2019-04-25 06:10:13-07:00,Exploring Yavapai Lodge Road,"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0593028,-112.1160444,"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States",36.0593028,-112.1160444,places_27509 2019-04-25 06:40:46-07:00,2019-04-25 06:40:46-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0647917,-112.1226056,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0647917,-112.1226056,places_27510 2019-04-25 06:43:27-07:00,2019-04-25 06:43:27-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0648639,-112.12243610000002,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0648639,-112.12243610000002,places_27511 2019-04-25 07:03:31-07:00,2019-04-25 07:03:31-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0581694,-112.1264333,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0581694,-112.1264333,places_27512 2019-04-25 07:21:47-07:00,2019-04-25 07:21:47-07:00,"""Exploring the Grand Canyon""","1.5 Mile Resthouse, Bright Angel Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0590972,-112.1394972,"1.5 Mile Resthouse, Bright Angel Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0590972,-112.1394972,places_27513 2019-04-25 07:27:41-07:00,2019-04-25 07:27:41-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0573194,-112.1321556,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0573194,-112.1321556,places_27514 2019-04-25 07:27:43-07:00,2019-04-25 07:27:43-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0573194,-112.1321556,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0573194,-112.1321556,places_27515 2019-04-25 08:54:45-07:00,2019-04-25 08:54:45-07:00,Exploring the Grand Canyon,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0630694,-112.1239611,"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States",36.0630694,-112.1239611,places_27516 2019-04-25 14:37:44-07:00,2019-04-25 14:37:44-07:00,Exploring Uptown Sedona,"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8663222,-111.7747278,"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8663222,-111.7747278,places_27517 2019-04-25 14:37:52-07:00,2019-04-25 14:37:52-07:00,Exploring Uptown Sedona,"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8663361,-111.7747333,"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8663361,-111.7747333,places_27518 2019-04-25 14:37:59-07:00,2019-04-25 14:37:59-07:00,"Exploring Sedona, AZ","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8665778,-111.7748806,"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8665778,-111.7748806,places_27519 2019-04-25 14:38:09-07:00,2019-04-25 14:38:09-07:00,"Exploring Sedona, AZ","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.866641699999995,-111.7748333,"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.866641699999995,-111.7748333,places_27520 2019-04-25 14:38:15-07:00,2019-04-25 14:38:15-07:00,"Exploring Sedona, AZ","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8666528,-111.774825,"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8666528,-111.774825,places_27521 2019-04-25 14:38:48-07:00,2019-04-25 14:38:48-07:00,Exploring Uptown Sedona,"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8663472,-111.7747417,"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8663472,-111.7747417,places_27522 2019-04-25 14:39:05-07:00,2019-04-25 14:39:05-07:00,"Exploring Sedona, AZ","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8665167,-111.7749417,"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8665167,-111.7749417,places_27523 2019-04-25 14:49:04-07:00,2019-04-25 14:49:04-07:00,"Exploring Sedona, AZ","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8666611,-111.7749722,"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8666611,-111.7749722,places_27524 2019-04-25 14:49:31-07:00,2019-04-25 14:49:31-07:00,"Exploring Sedona, AZ","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8664667,-111.77485,"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8664667,-111.77485,places_27525 2019-04-25 14:49:33-07:00,2019-04-25 14:49:33-07:00,"Exploring Sedona, AZ","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8664583,-111.7748556,"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8664583,-111.7748556,places_27526 2019-04-25 14:49:34-07:00,2019-04-25 14:49:34-07:00,"Exploring Sedona, AZ","Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8664583,-111.7748556,"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8664583,-111.7748556,places_27527 2019-04-25 17:54:13-07:00,2019-04-25 17:54:13-07:00,Sedona Airport View,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535194,-111.7898167,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535194,-111.7898167,places_27528 2019-04-25 18:01:35-07:00,2019-04-25 18:01:35-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8540111,-111.7882222,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8540111,-111.7882222,places_27529 2019-04-25 18:03:14-07:00,2019-04-25 18:03:14-07:00,"Exploring Oak Creek Dev No. 1, Sedona","322, Oak Creek Boulevard, Oak Creek Dev No. 1, Sedona, Yavapai County, Arizona, 86336, United States",34.8590389,-111.7877972,"322, Oak Creek Boulevard, Oak Creek Dev No. 1, Sedona, Yavapai County, Arizona, 86336, United States",34.8590389,-111.7877972,places_27530 2019-04-25 18:15:41-07:00,2019-04-25 18:15:41-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.855111099999995,-111.7809833,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.855111099999995,-111.7809833,places_27531 2019-04-25 18:22:55-07:00,2019-04-25 18:22:55-07:00,"Exploring Sedona, Arizona","Brewer Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8564722,-111.7794333,"Brewer Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8564722,-111.7794333,places_27532 2019-04-25 18:24:57-07:00,2019-04-25 18:24:57-07:00,"""Exploring Sedona's Airport Mesa Viewpoint""","Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States",34.8558583,-111.779075,"Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States",34.8558583,-111.779075,places_27533 2019-04-25 18:25:06-07:00,2019-04-25 18:25:06-07:00,"""Exploring Sedona's Airport Mesa Viewpoint""","Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States",34.8558528,-111.7791056,"Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States",34.8558528,-111.7791056,places_27534 2019-04-25 18:42:55-07:00,2019-04-25 18:42:55-07:00,"""Exploring Sedona, Arizona""","2, Emblem Place, Sedona, Yavapai County, Arizona, 86336, United States",34.8613389,-111.7809306,"2, Emblem Place, Sedona, Yavapai County, Arizona, 86336, United States",34.8613389,-111.7809306,places_27535 2019-04-25 18:43:03-07:00,2019-04-25 18:43:03-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.854675,-111.7834917,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.854675,-111.7834917,places_27536 2019-04-25 18:43:05-07:00,2019-04-25 18:43:05-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546306,-111.7835833,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546306,-111.7835833,places_27537 2019-04-25 18:43:14-07:00,2019-04-25 18:43:14-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546972,-111.7836083,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546972,-111.7836083,places_27538 2019-04-25 18:43:22-07:00,2019-04-25 18:43:22-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546778,-111.7836,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546778,-111.7836,places_27539 2019-04-25 18:43:39-07:00,2019-04-25 18:43:39-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546833,-111.7836389,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546833,-111.7836389,places_27540 2019-04-25 18:43:43-07:00,2019-04-25 18:43:43-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546667,-111.7836528,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546667,-111.7836528,places_27541 2019-04-25 18:43:58-07:00,2019-04-25 18:43:58-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546528,-111.7836528,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546528,-111.7836528,places_27542 2019-04-25 18:44:04-07:00,2019-04-25 18:44:04-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546722,-111.7836444,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8546722,-111.7836444,places_27543 2019-04-26 00:48:52+00:00,2019-04-26 00:48:52+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27544 2019-04-25 18:53:16-07:00,2019-04-25 18:53:16-07:00,Exploring Sedona's Airport Loop Trail,"Airport Loop Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8557583,-111.7853917,"Airport Loop Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8557583,-111.7853917,places_27545 2019-04-25 18:56:35-07:00,2019-04-25 18:56:35-07:00,"Sedona Airport, Arizona","Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States",34.8538778,-111.7857056,"Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States",34.8538778,-111.7857056,places_27546 2019-04-25 18:56:37-07:00,2019-04-25 18:56:37-07:00,"Sedona Airport, Arizona","Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States",34.8538778,-111.7857056,"Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States",34.8538778,-111.7857056,places_27547 2019-04-25 19:01:34-07:00,2019-04-25 19:01:34-07:00,"Exploring Sedona, AZ","Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8537222,-111.7884833,"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States",34.8537222,-111.7884833,places_27548 2019-04-25 19:08:31-07:00,2019-04-25 19:08:31-07:00,Sedona Airport View,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535111,-111.7897722,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535111,-111.7897722,places_27549 2019-04-25 19:08:41-07:00,2019-04-25 19:08:41-07:00,Sedona Airport View,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.85352780000001,-111.7897861,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.85352780000001,-111.7897861,places_27550 2019-04-25 19:08:56-07:00,2019-04-25 19:08:56-07:00,Sedona Airport View,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535167,-111.7897806,"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States",34.8535167,-111.7897806,places_27551 2019-04-26 10:38:22-07:00,2019-04-26 10:38:22-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645056,-111.8129417,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645056,-111.8129417,places_27552 2019-04-26 10:38:48-07:00,2019-04-26 10:38:48-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8646778,-111.8129417,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8646778,-111.8129417,places_27553 2019-04-26 10:38:51-07:00,2019-04-26 10:38:51-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8647,-111.8129194,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8647,-111.8129194,places_27554 2019-04-26 10:39:19-07:00,2019-04-26 10:39:19-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.864625,-111.8128972,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.864625,-111.8128972,places_27555 2019-04-26 10:39:24-07:00,2019-04-26 10:39:24-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645028,-111.8129361,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645028,-111.8129361,places_27556 2019-04-26 10:39:28-07:00,2019-04-26 10:39:28-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645028,-111.8129361,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645028,-111.8129361,places_27557 2019-04-26 10:39:38-07:00,2019-04-26 10:39:38-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645056,-111.8129417,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645056,-111.8129417,places_27558 2019-04-26 10:39:46-07:00,2019-04-26 10:39:46-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8647083,-111.8129583,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8647083,-111.8129583,places_27559 2019-04-26 10:39:48-07:00,2019-04-26 10:39:48-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8647083,-111.8129583,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8647083,-111.8129583,places_27560 2019-04-26 10:42:14-07:00,2019-04-26 10:42:14-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8646694,-111.8129722,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8646694,-111.8129722,places_27561 2019-04-26 10:43:59-07:00,2019-04-26 10:43:59-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645028,-111.8129417,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645028,-111.8129417,places_27562 2019-04-26 10:44:02-07:00,2019-04-26 10:44:02-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645056,-111.8129417,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8645056,-111.8129417,places_27563 2019-04-26 10:44:25-07:00,2019-04-26 10:44:25-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.864675,-111.8129806,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.864675,-111.8129806,places_27564 2019-04-26 10:44:29-07:00,2019-04-26 10:44:29-07:00,"""Exploring Sedona, Arizona""","Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8646806,-111.8129583,"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States",34.8646806,-111.8129583,places_27565 2019-04-26 15:57:32-06:00,2019-04-26 15:57:32-06:00,Exploring Arizona's Western Navajo Agency,"US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5476611,-111.6233278,"US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5476611,-111.6233278,places_27566 2019-04-26 15:57:35-06:00,2019-04-26 15:57:35-06:00,Exploring Arizona's Western Navajo Agency,"US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5475528,-111.6231472,"US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5475528,-111.6231472,places_27567 2019-04-26 15:58:00-06:00,2019-04-26 15:58:00-06:00,Exploring Arizona's Western Navajo Agency,"US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5475306,-111.6231222,"US 89, Western Navajo Agency, Coconino County, Arizona, United States",36.5475306,-111.6231222,places_27568 2019-04-26 16:12:26-06:00,2019-04-26 16:12:26-06:00,"Exploring Bitter Springs, Arizona","US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607028,-111.6331472,"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607028,-111.6331472,places_27569 2019-04-26 16:12:25-06:00,2019-04-26 16:12:25-06:00,"Exploring Bitter Springs, Arizona","US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607028,-111.6331472,"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607028,-111.6331472,places_27570 2019-04-26 16:12:48-06:00,2019-04-26 16:12:48-06:00,"Exploring Bitter Springs, Arizona","US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607472,-111.6335361,"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States",36.6607472,-111.6335361,places_27571 2019-04-26 23:24:16+00:00,2019-04-26 23:24:16+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27572 2019-04-26 23:24:21+00:00,2019-04-26 23:24:21+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27573 2019-04-26 23:25:46+00:00,2019-04-26 23:25:46+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27574 2019-04-26 22:25:50+00:00,2019-04-26 22:25:50+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27575 2019-04-26 22:25:49+00:00,2019-04-26 22:25:49+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27576 2019-04-26 22:25:52+00:00,2019-04-26 22:25:52+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27577 2019-04-26 22:25:51+00:00,2019-04-26 22:25:51+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27578 2019-04-26 22:30:00+00:00,2019-04-26 22:30:00+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27579 2019-04-26 22:30:05+00:00,2019-04-26 22:30:05+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27580 2019-04-26 22:30:08+00:00,2019-04-26 22:30:08+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27581 2019-04-26 22:32:01+00:00,2019-04-26 22:32:01+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27582 2019-04-26 22:35:51+00:00,2019-04-26 22:35:51+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27583 2019-04-26 22:46:16+00:00,2019-04-26 22:46:16+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27584 2019-04-26 22:46:21+00:00,2019-04-26 22:46:21+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27586 2019-04-26 22:46:24+00:00,2019-04-26 22:46:24+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27588 2019-04-26 22:47:48+00:00,2019-04-26 22:47:48+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27590 2019-04-26 22:48:26+00:00,2019-04-26 22:48:26+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27592 2019-04-26 23:00:52+00:00,2019-04-26 23:00:52+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27593 2019-04-26 23:08:14+00:00,2019-04-26 23:08:14+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27594 2019-04-26 23:09:12+00:00,2019-04-26 23:09:12+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27595 2019-04-26 23:09:13+00:00,2019-04-26 23:09:13+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27596 2019-04-26 18:03:53-07:00,2019-04-26 18:03:53-07:00,Exploring Lake Powell Resort,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9952778,-111.4872667,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9952778,-111.4872667,places_27598 2019-04-26 18:04:06-07:00,2019-04-26 18:04:06-07:00,Exploring Lake Powell Resort,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9951667,-111.4875333,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9951667,-111.4875333,places_27599 2019-04-27 08:00:20-07:00,2019-04-27 08:00:20-07:00,Exploring Lake Powell Resort,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9951528,-111.4876111,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9951528,-111.4876111,places_27600 2019-04-27 15:32:17+00:00,2019-04-27 15:32:17+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27604 2019-04-27 09:03:39-07:00,2019-04-27 09:03:39-07:00,Exploring Lake Powell Resort,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9949833,-111.48645,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9949833,-111.48645,places_27605 2019-04-27 09:38:35-07:00,2019-04-27 09:38:35-07:00,Exploring Lake Powell Resort,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9966167,-111.4895861,"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States",36.9966167,-111.4895861,places_27607 2019-04-27 10:38:44-07:00,2019-04-27 10:38:44-07:00,Exploring Wahweap's Navajo Viewpoint,"Navajo Viewpoint, Lake Shore Drive, Wahweap, Coconino County, Arizona, United States",36.9640528,-111.4913028,"Navajo Viewpoint, Lake Shore Drive, Wahweap, Coconino County, Arizona, United States",36.9640528,-111.4913028,places_27609 2019-04-27 15:47:52-06:00,2019-04-27 15:47:52-06:00,"Exploring Garfield County, Utah","UT-12, Garfield County, Utah, 84764, United States",37.6828944,-112.1249611,"UT-12, Garfield County, Utah, 84764, United States",37.6828944,-112.1249611,places_27610 2019-04-27 15:48:04-06:00,2019-04-27 15:48:04-06:00,"Exploring Garfield County, Utah","UT-12, Garfield County, Utah, 84764, United States",37.6828833,-112.1249861,"UT-12, Garfield County, Utah, 84764, United States",37.6828833,-112.1249861,places_27611 2019-04-27 16:17:22-06:00,2019-04-27 16:17:22-06:00,"Tropic, Utah","Tropic, Garfield County, Utah, 84776, United States",37.6216861,-112.1092444,"Tropic, Garfield County, Utah, 84776, United States",37.6216861,-112.1092444,places_27612 2019-04-27 17:37:11-06:00,2019-04-27 17:37:11-06:00,"""Sunset Point in Utah""","Sunset Point, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6229361,-112.1657472,"Sunset Point, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6229361,-112.1657472,places_27613 2019-04-27 17:39:13-06:00,2019-04-27 17:39:13-06:00,Exploring Utah's Navajo Loop Trail,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,places_27614 2019-04-27 17:39:16-06:00,2019-04-27 17:39:16-06:00,Exploring Utah's Navajo Loop Trail,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,places_27615 2019-04-27 17:39:19-06:00,2019-04-27 17:39:19-06:00,Exploring Utah's Navajo Loop Trail,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,places_27616 2019-04-27 17:39:22-06:00,2019-04-27 17:39:22-06:00,Exploring Utah's Navajo Loop Trail,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,places_27617 2019-04-27 17:39:31-06:00,2019-04-27 17:39:31-06:00,Exploring Utah's Navajo Loop Trail,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,places_27618 2019-04-27 17:39:33-06:00,2019-04-27 17:39:33-06:00,Exploring Utah's Navajo Loop Trail,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States",37.6231083,-112.1658944,places_27619 2019-04-27 17:39:41-06:00,2019-04-27 17:39:41-06:00,Exploring Utah's Rim Trail,"Rim Trail, Garfield County, Utah, United States",37.623375,-112.1661389,"Rim Trail, Garfield County, Utah, United States",37.623375,-112.1661389,places_27620 2019-04-27 17:39:43-06:00,2019-04-27 17:39:43-06:00,Exploring Utah's Rim Trail,"Rim Trail, Garfield County, Utah, United States",37.623375,-112.1661389,"Rim Trail, Garfield County, Utah, United States",37.623375,-112.1661389,places_27621 2019-04-27 17:45:04-06:00,2019-04-27 17:45:04-06:00,Exploring Utah's Rim Trail,"Rim Trail, Garfield County, Utah, United States",37.6239861,-112.1665583,"Rim Trail, Garfield County, Utah, United States",37.6239861,-112.1665583,places_27622 2019-04-27 18:00:27-06:00,2019-04-27 18:00:27-06:00,Exploring Utah's Rim Trail,"Rim Trail, Garfield County, Utah, 84764, United States",37.6278444,-112.1636722,"Rim Trail, Garfield County, Utah, 84764, United States",37.6278444,-112.1636722,places_27623 2019-04-27 18:05:34-06:00,2019-04-27 18:05:34-06:00,Exploring Utah's Rim Trail,"Rim Trail, Garfield County, Utah, 84764, United States",37.6279528,-112.1637944,"Rim Trail, Garfield County, Utah, 84764, United States",37.6279528,-112.1637944,places_27624 2019-04-27 18:14:23-06:00,2019-04-27 18:14:23-06:00,Exploring Utah's Queen's Garden Trail,"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6279556,-112.1632083,"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6279556,-112.1632083,places_27625 2019-04-27 18:18:42-06:00,2019-04-27 18:18:42-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.6278583,-112.1619861,"Queen's Garden Trail, Garfield County, Utah, United States",37.6278583,-112.1619861,places_27626 2019-04-27 18:18:47-06:00,2019-04-27 18:18:47-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.6278583,-112.1619861,"Queen's Garden Trail, Garfield County, Utah, United States",37.6278583,-112.1619861,places_27627 2019-04-27 18:18:51-06:00,2019-04-27 18:18:51-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.6278583,-112.1619861,"Queen's Garden Trail, Garfield County, Utah, United States",37.6278583,-112.1619861,places_27628 2019-04-27 18:20:03-06:00,2019-04-27 18:20:03-06:00,Exploring Utah's Queen's Garden Trail,"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6283389,-112.1629639,"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6283389,-112.1629639,places_27629 2019-04-27 18:20:12-06:00,2019-04-27 18:20:12-06:00,Exploring Utah's Queen's Garden Trail,"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6281611,-112.1627278,"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States",37.6281611,-112.1627278,places_27630 2019-04-27 18:27:33-06:00,2019-04-27 18:27:33-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.6272861,-112.1615222,"Queen's Garden Trail, Garfield County, Utah, United States",37.6272861,-112.1615222,places_27631 2019-04-27 18:28:52-06:00,2019-04-27 18:28:52-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.627425,-112.1611028,"Queen's Garden Trail, Garfield County, Utah, United States",37.627425,-112.1611028,places_27632 2019-04-27 18:28:57-06:00,2019-04-27 18:28:57-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.6272417,-112.1609889,"Queen's Garden Trail, Garfield County, Utah, United States",37.6272417,-112.1609889,places_27633 2019-04-27 18:28:59-06:00,2019-04-27 18:28:59-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.6272972,-112.16105,"Queen's Garden Trail, Garfield County, Utah, United States",37.6272972,-112.16105,places_27634 2019-04-27 18:34:01-06:00,2019-04-27 18:34:01-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.627075,-112.1595611,"Queen's Garden Trail, Garfield County, Utah, United States",37.627075,-112.1595611,places_27635 2019-04-28 01:43:08+00:00,2019-04-28 01:43:08+00:00,from Google Photo,Soul Buoy,0.0,0.0,Soul Buoy,0.0,0.0,places_27636 2019-04-27 18:43:44-06:00,2019-04-27 18:43:44-06:00,"Tropic, Utah","Tropic Trail, Tropic, Garfield County, Utah, 84776, United States",37.6205056,-112.1375417,"Tropic Trail, Tropic, Garfield County, Utah, 84776, United States",37.6205056,-112.1375417,places_27637 2019-04-27 18:43:48-06:00,2019-04-27 18:43:48-06:00,"Tropic, Utah","Tropic Trail, Tropic, Garfield County, Utah, 84776, United States",37.6205056,-112.1375417,"Tropic Trail, Tropic, Garfield County, Utah, 84776, United States",37.6205056,-112.1375417,places_27638 2019-04-27 18:50:14-06:00,2019-04-27 18:50:14-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.6254361,-112.160675,"Queen's Garden Trail, Garfield County, Utah, United States",37.6254361,-112.160675,places_27639 2019-04-27 19:13:37-06:00,2019-04-27 19:13:37-06:00,Exploring Utah's Queen's Garden Trail,"Queen's Garden Trail, Garfield County, Utah, United States",37.6269417,-112.1591556,"Queen's Garden Trail, Garfield County, Utah, United States",37.6269417,-112.1591556,places_27640 2019-04-27 19:34:15-06:00,2019-04-27 19:34:15-06:00,Exploring Utah's Rim Trail,"Rim Trail, Garfield County, Utah, 84764, United States",37.6267389,-112.1653222,"Rim Trail, Garfield County, Utah, 84764, United States",37.6267389,-112.1653222,places_27641 2019-04-29 11:49:07-07:00,2019-04-29 11:49:07-07:00,"""Texas Home on Greg Street""","2966, Greg Street, Randall County, Texas, 79015, United States",35.037453019547755,-101.90859062649028,"2966, Greg Street, Randall County, Texas, 79015, United States",35.037453019547755,-101.90859062649028,places_27642 ================================================ FILE: sample_data/places.sampled.json ================================================ [ { "start_time":"2019-04-18 00:01:26+00:00", "end_time":"2019-04-18 00:01:26+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_26991" }, { "start_time":"2019-03-31 06:58:44+00:00", "end_time":"2019-03-31 06:58:44+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_26992" }, { "start_time":"2019-03-19 00:05:14+00:00", "end_time":"2019-03-19 00:05:14+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_26995" }, { "start_time":"2019-04-15 14:58:30+00:00", "end_time":"2019-04-15 14:58:30+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_26997" }, { "start_time":"2019-04-25 15:57:11+00:00", "end_time":"2019-04-25 15:57:11+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_26998" }, { "start_time":"2019-04-27 17:28:58-07:00", "end_time":"2019-04-27 17:28:58-07:00", "textDescription":"Exploring Lamb County, TX", "start_address":"County Road 307, Lamb County, Texas, 79369, United States", "start_lat":33.8898623345, "start_long":-102.1400042634, "end_address":"County Road 307, Lamb County, Texas, 79369, United States", "end_lat":33.8898623345, "end_long":-102.1400042634, "id":"places_27028" }, { "start_time":"2019-03-03 07:41:47-08:00", "end_time":"2019-03-03 07:41:47-08:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374333973, "start_long":-101.9085506521, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374333973, "end_long":-101.9085506521, "id":"places_27172" }, { "start_time":"2019-03-03 07:42:11-08:00", "end_time":"2019-03-03 07:42:11-08:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375514743, "start_long":-101.9086043234, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375514743, "end_long":-101.9086043234, "id":"places_27173" }, { "start_time":"2019-03-03 07:42:35-08:00", "end_time":"2019-03-03 07:42:35-08:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374333973, "start_long":-101.9085506521, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374333973, "end_long":-101.9085506521, "id":"places_27174" }, { "start_time":"2019-03-05 18:13:01-08:00", "end_time":"2019-03-05 18:13:01-08:00", "textDescription":"\"Throwbacks Sports Bar: Amarillo's Best!\"", "start_address":"Throwbacks Sports Bar, 7150, Bell Street, Amarillo, Randall County, Texas, 79109, United States", "start_lat":35.1326356176, "start_long":-101.9023999167, "end_address":"Throwbacks Sports Bar, 7150, Bell Street, Amarillo, Randall County, Texas, 79109, United States", "end_lat":35.1326356176, "end_long":-101.9023999167, "id":"places_27175" }, { "start_time":"2019-03-05 18:13:04-08:00", "end_time":"2019-03-05 18:13:04-08:00", "textDescription":"\"Throwbacks Sports Bar: Amarillo's Best!\"", "start_address":"Throwbacks Sports Bar, 7150, Bell Street, Amarillo, Randall County, Texas, 79109, United States", "start_lat":35.1326356176, "start_long":-101.9023999167, "end_address":"Throwbacks Sports Bar, 7150, Bell Street, Amarillo, Randall County, Texas, 79109, United States", "end_lat":35.1326356176, "end_long":-101.9023999167, "id":"places_27176" }, { "start_time":"2019-03-05 19:31:46-08:00", "end_time":"2019-03-05 19:31:46-08:00", "textDescription":"Biking in Randall County, Texas", "start_address":"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "start_lat":35.0178862958, "start_long":-101.9170199893, "end_address":"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "end_lat":35.0178862958, "end_long":-101.9170199893, "id":"places_27177" }, { "start_time":"2019-03-05 19:31:47-08:00", "end_time":"2019-03-05 19:31:47-08:00", "textDescription":"Biking in Randall County, Texas", "start_address":"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "start_lat":35.0180365756, "start_long":-101.9167838354, "end_address":"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "end_lat":35.0180365756, "end_long":-101.9167838354, "id":"places_27178" }, { "start_time":"2019-03-05 19:36:00-08:00", "end_time":"2019-03-05 19:36:00-08:00", "textDescription":"Biking in Randall County, Texas", "start_address":"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "start_lat":35.0179184986, "start_long":-101.9167301641, "end_address":"Bikepark, Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "end_lat":35.0179184986, "end_long":-101.9167301641, "id":"places_27179" }, { "start_time":"2019-03-06 19:46:40-08:00", "end_time":"2019-03-06 19:46:40-08:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0372938518, "start_long":-101.9086901976, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0372938518, "end_long":-101.9086901976, "id":"places_27180" }, { "start_time":"2019-03-07 19:17:33-08:00", "end_time":"2019-03-07 19:17:33-08:00", "textDescription":"Amarillo, Texas", "start_address":"W Loop 335 S, Amarillo, Randall County, Texas, 79119, United States", "start_lat":35.1285565959, "start_long":-101.9569729337, "end_address":"W Loop 335 S, Amarillo, Randall County, Texas, 79119, United States", "end_lat":35.1285565959, "end_long":-101.9569729337, "id":"places_27181" }, { "start_time":"2019-03-10 17:42:28-07:00", "end_time":"2019-03-10 17:42:28-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0882494206, "start_long":-101.77606832, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0882494206, "end_long":-101.77606832, "id":"places_27182" }, { "start_time":"2019-03-10 17:42:30-07:00", "end_time":"2019-03-10 17:42:30-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0883889661, "start_long":-101.7759287746, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0883889661, "end_long":-101.7759287746, "id":"places_27183" }, { "start_time":"2019-03-10 17:42:31-07:00", "end_time":"2019-03-10 17:42:31-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0883782318, "start_long":-101.776025383, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0883782318, "end_long":-101.776025383, "id":"places_27184" }, { "start_time":"2019-03-10 17:42:32-07:00", "end_time":"2019-03-10 17:42:32-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0883782318, "start_long":-101.776025383, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0883782318, "end_long":-101.776025383, "id":"places_27185" }, { "start_time":"2019-03-10 17:46:32-07:00", "end_time":"2019-03-10 17:46:32-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0879488611, "start_long":-101.7765406278, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0879488611, "end_long":-101.7765406278, "id":"places_27186" }, { "start_time":"2019-03-10 17:46:34-07:00", "end_time":"2019-03-10 17:46:34-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0880669381, "start_long":-101.7765942992, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0880669381, "end_long":-101.7765942992, "id":"places_27187" }, { "start_time":"2019-03-10 17:47:15-07:00", "end_time":"2019-03-10 17:47:15-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0877127072, "start_long":-101.7764332851, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0877127072, "end_long":-101.7764332851, "id":"places_27188" }, { "start_time":"2019-03-10 17:47:16-07:00", "end_time":"2019-03-10 17:47:16-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0877127072, "start_long":-101.7764332851, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0877127072, "end_long":-101.7764332851, "id":"places_27189" }, { "start_time":"2019-03-10 17:47:17-07:00", "end_time":"2019-03-10 17:47:17-07:00", "textDescription":"Randall County, Texas", "start_address":"Claude Highway, Randall County, Texas, 79118, United States", "start_lat":35.0877127072, "start_long":-101.7764332851, "end_address":"Claude Highway, Randall County, Texas, 79118, United States", "end_lat":35.0877127072, "end_long":-101.7764332851, "id":"places_27190" }, { "start_time":"2019-03-11 16:27:43+00:00", "end_time":"2019-03-11 16:27:43+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27191" }, { "start_time":"2019-03-13 16:23:07+00:00", "end_time":"2019-03-13 16:23:07+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27192" }, { "start_time":"2019-03-17 12:59:42-07:00", "end_time":"2019-03-17 12:59:42-07:00", "textDescription":"\"Exploring Randall County, Texas\"", "start_address":"Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "start_lat":35.0183156665, "start_long":-101.9165047444, "end_address":"Marshall Formby Memorial Highway, Canyon, Randall County, Texas, 79015, United States", "end_lat":35.0183156665, "end_long":-101.9165047444, "id":"places_27193" }, { "start_time":"2019-03-18 09:20:41-07:00", "end_time":"2019-03-18 09:20:41-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971159258, "start_long":-101.9541498213, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971159258, "end_long":-101.9541498213, "id":"places_27194" }, { "start_time":"2019-03-18 09:31:03-07:00", "end_time":"2019-03-18 09:31:03-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971159258, "start_long":-101.9541498213, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971159258, "end_long":-101.9541498213, "id":"places_27195" }, { "start_time":"2019-03-18 10:43:51-07:00", "end_time":"2019-03-18 10:43:51-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971159258, "start_long":-101.9541498213, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971159258, "end_long":-101.9541498213, "id":"places_27196" }, { "start_time":"2019-03-18 10:44:49-07:00", "end_time":"2019-03-18 10:44:49-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971159258, "start_long":-101.9541498213, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971159258, "end_long":-101.9541498213, "id":"places_27197" }, { "start_time":"2019-03-18 10:46:41-07:00", "end_time":"2019-03-18 10:46:41-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971159258, "start_long":-101.9541498213, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971159258, "end_long":-101.9541498213, "id":"places_27198" }, { "start_time":"2019-03-18 13:00:08-07:00", "end_time":"2019-03-18 13:00:08-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971481286, "start_long":-101.9538599961, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971481286, "end_long":-101.9538599961, "id":"places_27199" }, { "start_time":"2019-03-18 13:12:49-07:00", "end_time":"2019-03-18 13:12:49-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0970193173, "start_long":-101.9539029331, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0970193173, "end_long":-101.9539029331, "id":"places_27200" }, { "start_time":"2019-03-18 15:52:33-07:00", "end_time":"2019-03-18 15:52:33-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971159258, "start_long":-101.9541498213, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971159258, "end_long":-101.9541498213, "id":"places_27201" }, { "start_time":"2019-03-18 16:05:51-07:00", "end_time":"2019-03-18 16:05:51-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971159258, "start_long":-101.9541498213, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971159258, "end_long":-101.9541498213, "id":"places_27202" }, { "start_time":"2019-03-18 17:02:12-07:00", "end_time":"2019-03-18 17:02:12-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.09712666, "start_long":-101.9540532129, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.09712666, "end_long":-101.9540532129, "id":"places_27203" }, { "start_time":"2019-03-18 17:02:21-07:00", "end_time":"2019-03-18 17:02:21-07:00", "textDescription":"Helium Road, Texas", "start_address":"Helium Road, Randall County, Texas, 79119, United States", "start_lat":35.0971159258, "start_long":-101.9541498213, "end_address":"Helium Road, Randall County, Texas, 79119, United States", "end_lat":35.0971159258, "end_long":-101.9541498213, "id":"places_27204" }, { "start_time":"2019-03-19 12:32:09-07:00", "end_time":"2019-03-19 12:32:09-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0371865091, "start_long":-101.9085399178, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0371865091, "end_long":-101.9085399178, "id":"places_27205" }, { "start_time":"2019-03-22 19:06:44-07:00", "end_time":"2019-03-22 19:06:44-07:00", "textDescription":"Exploring Randall County, Texas", "start_address":"Randall County, Texas, United States", "start_lat":35.0689599416, "start_long":-101.9117172611, "end_address":"Randall County, Texas, United States", "end_lat":35.0689599416, "end_long":-101.9117172611, "id":"places_27206" }, { "start_time":"2019-03-23 07:50:06-07:00", "end_time":"2019-03-23 07:50:06-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375514743, "start_long":-101.9086043234, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375514743, "end_long":-101.9086043234, "id":"places_27207" }, { "start_time":"2019-03-23 09:36:05-07:00", "end_time":"2019-03-23 09:36:05-07:00", "textDescription":"Exploring Castro County, Texas", "start_address":"Castro County, Texas, United States", "start_lat":34.7224041086, "start_long":-102.0198864767, "end_address":"Castro County, Texas, United States", "end_lat":34.7224041086, "end_long":-102.0198864767, "id":"places_27208" }, { "start_time":"2019-03-23 09:36:12-07:00", "end_time":"2019-03-23 09:36:12-07:00", "textDescription":"Exploring Castro County, Texas", "start_address":"Castro County, Texas, United States", "start_lat":34.7224041086, "start_long":-102.0198864767, "end_address":"Castro County, Texas, United States", "end_lat":34.7224041086, "end_long":-102.0198864767, "id":"places_27209" }, { "start_time":"2019-03-23 20:50:05-07:00", "end_time":"2019-03-23 20:50:05-07:00", "textDescription":"Charlie's Furniture Amarillo", "start_address":"Charlie's Furniture, 3700, South Soncy Road, Amarillo, Randall County, Texas, 79119, United States", "start_lat":35.1667276518, "start_long":-101.9394116717, "end_address":"Charlie's Furniture, 3700, South Soncy Road, Amarillo, Randall County, Texas, 79119, United States", "end_lat":35.1667276518, "end_long":-101.9394116717, "id":"places_27210" }, { "start_time":"2019-03-27 11:42:43+09:00", "end_time":"2019-03-27 11:42:43+09:00", "textDescription":"Exploring Seoul National University", "start_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "start_lat":37.4551, "start_long":126.9504, "end_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "end_lat":37.4551, "end_long":126.9504, "id":"places_27211" }, { "start_time":"2019-03-27 11:42:50+09:00", "end_time":"2019-03-27 11:42:50+09:00", "textDescription":"Exploring Seoul National University", "start_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "start_lat":37.4551, "start_long":126.9504, "end_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "end_lat":37.4551, "end_long":126.9504, "id":"places_27212" }, { "start_time":"2019-03-27 13:45:36+09:00", "end_time":"2019-03-27 13:45:36+09:00", "textDescription":"Exploring Seoul National University", "start_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "start_lat":37.4551, "start_long":126.951, "end_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "end_lat":37.4551, "end_long":126.951, "id":"places_27213" }, { "start_time":"2019-03-27 13:45:47+09:00", "end_time":"2019-03-27 13:45:47+09:00", "textDescription":"Exploring Seoul National University", "start_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "start_lat":37.4552, "start_long":126.951, "end_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "end_lat":37.4552, "end_long":126.951, "id":"places_27214" }, { "start_time":"2019-03-27 13:45:47+09:00", "end_time":"2019-03-27 13:45:47+09:00", "textDescription":"Exploring Seoul National University", "start_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "start_lat":37.4552, "start_long":126.951, "end_address":"Seoul National University Gwanak Campus, 1, Gwanak-ro, Daehak-dong, Gwanak-gu, 08826, South Korea", "end_lat":37.4552, "end_long":126.951, "id":"places_27215" }, { "start_time":"2019-03-27 15:47:16+09:00", "end_time":"2019-03-27 15:47:16+09:00", "textDescription":"Yangpyeong-ro 28da-gil, Seoul", "start_address":"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea", "start_lat":37.5413, "start_long":126.8909, "end_address":"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea", "end_lat":37.5413, "end_long":126.8909, "id":"places_27216" }, { "start_time":"2019-03-27 15:47:22+09:00", "end_time":"2019-03-27 15:47:22+09:00", "textDescription":"Yangpyeong-ro 28da-gil, Seoul", "start_address":"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea", "start_lat":37.5413, "start_long":126.8909, "end_address":"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea", "end_lat":37.5413, "end_long":126.8909, "id":"places_27217" }, { "start_time":"2019-03-27 15:47:29+09:00", "end_time":"2019-03-27 15:47:29+09:00", "textDescription":"Yangpyeong-ro 28da-gil, Seoul", "start_address":"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea", "start_lat":37.5413, "start_long":126.8909, "end_address":"Yangpyeong-ro 28da-gil, Yangpyeong-dong 6-ga, Yangpyeong 2(i)-dong, Yeongdeungpo-gu, Seoul, 07207, South Korea", "end_lat":37.5413, "end_long":126.8909, "id":"places_27218" }, { "start_time":"2019-03-27 08:30:38+00:00", "end_time":"2019-03-27 08:30:38+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27219" }, { "start_time":"2019-03-27 18:36:03+09:00", "end_time":"2019-03-27 18:36:03+09:00", "textDescription":"Exploring Seoul's Seocho-gu", "start_address":"Bangbae-ro, Bangbae 4(sa)-dong, Seocho-gu, Seoul, 06557, South Korea", "start_lat":37.494, "start_long":126.9903, "end_address":"Bangbae-ro, Bangbae 4(sa)-dong, Seocho-gu, Seoul, 06557, South Korea", "end_lat":37.494, "end_long":126.9903, "id":"places_27220" }, { "start_time":"2019-03-28 06:38:09+09:00", "end_time":"2019-03-28 06:38:09+09:00", "textDescription":"Incheon Int'l Airport Terminal 1", "start_address":"Incheon International Airport Terminal 1, 271, Gonghang-ro, Unseo-dong, Jung-gu, Incheon, 22382, South Korea", "start_lat":37.4496, "start_long":126.4536, "end_address":"Incheon International Airport Terminal 1, 271, Gonghang-ro, Unseo-dong, Jung-gu, Incheon, 22382, South Korea", "end_lat":37.4496, "end_long":126.4536, "id":"places_27221" }, { "start_time":"2019-03-28 04:34:33+00:00", "end_time":"2019-03-28 04:34:33+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27222" }, { "start_time":"2019-03-28 20:38:13+09:00", "end_time":"2019-03-28 20:38:13+09:00", "textDescription":"Roppongi's Asahi Shokudo", "start_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "start_lat":35.6644, "start_long":139.7301, "end_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "end_lat":35.6644, "end_long":139.7301, "id":"places_27223" }, { "start_time":"2019-03-28 20:47:46+09:00", "end_time":"2019-03-28 20:47:46+09:00", "textDescription":"Roppongi's Asahi Shokudo", "start_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "start_lat":35.6644, "start_long":139.7301, "end_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "end_lat":35.6644, "end_long":139.7301, "id":"places_27224" }, { "start_time":"2019-03-28 21:36:34+09:00", "end_time":"2019-03-28 21:36:34+09:00", "textDescription":"Roppongi's Asahi Shokudo", "start_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "start_lat":35.6644, "start_long":139.7301, "end_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "end_lat":35.6644, "end_long":139.7301, "id":"places_27225" }, { "start_time":"2019-03-28 23:25:42+09:00", "end_time":"2019-03-28 23:25:42+09:00", "textDescription":"Roppongi's Asahi Shokudo", "start_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "start_lat":35.6644, "start_long":139.7301, "end_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "end_lat":35.6644, "end_long":139.7301, "id":"places_27226" }, { "start_time":"2019-03-28 23:25:52+09:00", "end_time":"2019-03-28 23:25:52+09:00", "textDescription":"Roppongi's Asahi Shokudo", "start_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "start_lat":35.6644, "start_long":139.7301, "end_address":"Asahi Shokudo, \u9f8d\u571f\u753a\u7f8e\u8853\u9928\u901a\u308a, Roppongi, Minato, Tokyo, 106-0033, Japan", "end_lat":35.6644, "end_long":139.7301, "id":"places_27227" }, { "start_time":"2019-03-29 09:12:12+09:00", "end_time":"2019-03-29 09:12:12+09:00", "textDescription":"Grand Hyatt Tokyo", "start_address":"Grand Hyatt Tokyo, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-6122, Japan", "start_lat":35.6595, "start_long":139.7283, "end_address":"Grand Hyatt Tokyo, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-6122, Japan", "end_lat":35.6595, "end_long":139.7283, "id":"places_27228" }, { "start_time":"2019-03-29 10:08:09+09:00", "end_time":"2019-03-29 10:08:09+09:00", "textDescription":"Moto-Azabu, Tokyo", "start_address":"Moto-Azabu 3-chome, Minato, Tokyo, 106-0046, Japan", "start_lat":35.6574, "start_long":139.7273, "end_address":"Moto-Azabu 3-chome, Minato, Tokyo, 106-0046, Japan", "end_lat":35.6574, "end_long":139.7273, "id":"places_27229" }, { "start_time":"2019-03-29 10:13:09+09:00", "end_time":"2019-03-29 10:13:09+09:00", "textDescription":"Aiiku Hospital in Tokyo", "start_address":"Aiiku Hospital, \u6728\u4e0b\u5742, Minami-Azabu 5-chome, Minato, Tokyo, 106-0047, Japan", "start_lat":35.6536, "start_long":139.726, "end_address":"Aiiku Hospital, \u6728\u4e0b\u5742, Minami-Azabu 5-chome, Minato, Tokyo, 106-0047, Japan", "end_lat":35.6536, "end_long":139.726, "id":"places_27230" }, { "start_time":"2019-03-29 10:53:41+09:00", "end_time":"2019-03-29 10:53:41+09:00", "textDescription":"Exploring Naka-Meguro, Tokyo", "start_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "start_lat":35.638, "start_long":139.7063, "end_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "end_lat":35.638, "end_long":139.7063, "id":"places_27231" }, { "start_time":"2019-03-29 10:54:16+09:00", "end_time":"2019-03-29 10:54:16+09:00", "textDescription":"Exploring Naka-Meguro, Tokyo", "start_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "start_lat":35.6380917, "start_long":139.7062083, "end_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "end_lat":35.6380917, "end_long":139.7062083, "id":"places_27232" }, { "start_time":"2019-03-29 10:54:15+09:00", "end_time":"2019-03-29 10:54:15+09:00", "textDescription":"Exploring Naka-Meguro, Tokyo", "start_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "start_lat":35.6381, "start_long":139.7062, "end_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "end_lat":35.6381, "end_long":139.7062, "id":"places_27233" }, { "start_time":"2019-03-29 10:54:51+09:00", "end_time":"2019-03-29 10:54:51+09:00", "textDescription":"Exploring Naka-Meguro, Tokyo", "start_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "start_lat":35.6381, "start_long":139.7062, "end_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "end_lat":35.6381, "end_long":139.7062, "id":"places_27234" }, { "start_time":"2019-03-29 10:54:59+09:00", "end_time":"2019-03-29 10:54:59+09:00", "textDescription":"Exploring Naka-Meguro, Tokyo", "start_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "start_lat":35.6381, "start_long":139.7062, "end_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "end_lat":35.6381, "end_long":139.7062, "id":"places_27235" }, { "start_time":"2019-03-29 10:56:04+09:00", "end_time":"2019-03-29 10:56:04+09:00", "textDescription":"Exploring Naka-Meguro, Tokyo", "start_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "start_lat":35.6381, "start_long":139.7062, "end_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "end_lat":35.6381, "end_long":139.7062, "id":"places_27236" }, { "start_time":"2019-03-29 10:56:37+09:00", "end_time":"2019-03-29 10:56:37+09:00", "textDescription":"Exploring Naka-Meguro, Tokyo", "start_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "start_lat":35.6381, "start_long":139.7062, "end_address":"\u4e2d\u91cc\u6a4b, \u65b0\u8336\u5c4b\u5742\u901a\u308a, Naka-Meguro 4-chome, Meguro, Tokyo, 153-0063, Japan", "end_lat":35.6381, "end_long":139.7062, "id":"places_27237" }, { "start_time":"2019-03-29 12:28:58+09:00", "end_time":"2019-03-29 12:28:58+09:00", "textDescription":"University of Tokyo, Tokyo", "start_address":"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan", "start_lat":35.7105, "start_long":139.7602, "end_address":"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan", "end_lat":35.7105, "end_long":139.7602, "id":"places_27238" }, { "start_time":"2019-03-29 13:04:14+09:00", "end_time":"2019-03-29 13:04:14+09:00", "textDescription":"University of Tokyo, Tokyo", "start_address":"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan", "start_lat":35.7105, "start_long":139.7603, "end_address":"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan", "end_lat":35.7105, "end_long":139.7603, "id":"places_27239" }, { "start_time":"2019-03-29 13:04:17+09:00", "end_time":"2019-03-29 13:04:17+09:00", "textDescription":"University of Tokyo, Tokyo", "start_address":"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan", "start_lat":35.7105, "start_long":139.7603, "end_address":"University of Tokyo (Hongo Campus), 1, Kikuzaka, Hongo 4-chome, Bunkyo, Tokyo, 113-8654, Japan", "end_lat":35.7105, "end_long":139.7603, "id":"places_27240" }, { "start_time":"2019-03-29 16:15:45+09:00", "end_time":"2019-03-29 16:15:45+09:00", "textDescription":"Tokyo's Shibadaimon", "start_address":"Shibadaimon 1-chome, Minato, Tokyo, 105-8511, Japan", "start_lat":35.6594, "start_long":139.7516, "end_address":"Shibadaimon 1-chome, Minato, Tokyo, 105-8511, Japan", "end_lat":35.6594, "end_long":139.7516, "id":"places_27241" }, { "start_time":"2019-03-29 16:23:59+09:00", "end_time":"2019-03-29 16:23:59+09:00", "textDescription":"Tokyo's Shibakoen", "start_address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "start_lat":35.6603, "start_long":139.7477, "end_address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "end_lat":35.6603, "end_long":139.7477, "id":"places_27242" }, { "start_time":"2019-03-29 16:24:02+09:00", "end_time":"2019-03-29 16:24:02+09:00", "textDescription":"Tokyo's Shibakoen", "start_address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "start_lat":35.6603, "start_long":139.7478, "end_address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "end_lat":35.6603, "end_long":139.7478, "id":"places_27243" }, { "start_time":"2019-03-29 16:24:07+09:00", "end_time":"2019-03-29 16:24:07+09:00", "textDescription":"Tokyo's Shibakoen", "start_address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "start_lat":35.6603, "start_long":139.7477, "end_address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "end_lat":35.6603, "end_long":139.7477, "id":"places_27244" }, { "start_time":"2019-03-29 16:24:56+09:00", "end_time":"2019-03-29 16:24:56+09:00", "textDescription":"Tokyo's Shiba Junior & Senior High School", "start_address":"Shiba Junior High School & Senior High School, \u5207\u901a\u5742, Shibakoen 3-chome, Minato, Tokyo, 105-6216, Japan", "start_lat":35.6603, "start_long":139.7471, "end_address":"Shiba Junior High School & Senior High School, \u5207\u901a\u5742, Shibakoen 3-chome, Minato, Tokyo, 105-6216, Japan", "end_lat":35.6603, "end_long":139.7471, "id":"places_27245" }, { "start_time":"2019-03-29 16:25:06+09:00", "end_time":"2019-03-29 16:25:06+09:00", "textDescription":"Tokyo's Shibakoen", "start_address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "start_lat":35.6604, "start_long":139.7474, "end_address":"Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "end_lat":35.6604, "end_long":139.7474, "id":"places_27246" }, { "start_time":"2019-03-29 16:26:16+09:00", "end_time":"2019-03-29 16:26:16+09:00", "textDescription":"Tokyo Prince Hotel", "start_address":"Tokyo Prince Hotel, Iwaida-dori, Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "start_lat":35.6601, "start_long":139.7473, "end_address":"Tokyo Prince Hotel, Iwaida-dori, Shibakoen 3-chome, Minato, Tokyo, 105-0011, Japan", "end_lat":35.6601, "end_long":139.7473, "id":"places_27247" }, { "start_time":"2019-03-29 18:25:08+09:00", "end_time":"2019-03-29 18:25:08+09:00", "textDescription":"Exploring Roppongi Hills", "start_address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "start_lat":35.6604, "start_long":139.7287, "end_address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "end_lat":35.6604, "end_long":139.7287, "id":"places_27248" }, { "start_time":"2019-03-29 18:25:24+09:00", "end_time":"2019-03-29 18:25:24+09:00", "textDescription":"Exploring Roppongi Hills", "start_address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "start_lat":35.6604, "start_long":139.7286, "end_address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "end_lat":35.6604, "end_long":139.7286, "id":"places_27249" }, { "start_time":"2019-03-29 18:26:53+09:00", "end_time":"2019-03-29 18:26:53+09:00", "textDescription":"Exploring Roppongi Hills", "start_address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "start_lat":35.6604, "start_long":139.7287, "end_address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "end_lat":35.6604, "end_long":139.7287, "id":"places_27250" }, { "start_time":"2019-03-29 18:27:16+09:00", "end_time":"2019-03-29 18:27:16+09:00", "textDescription":"Exploring Roppongi Hills", "start_address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "start_lat":35.6604, "start_long":139.7286, "end_address":"Roppongi Hills, Keyaki-zaka, Roppongi, Minato, Tokyo, 106-8001, Japan", "end_lat":35.6604, "end_long":139.7286, "id":"places_27251" }, { "start_time":"2019-03-29 19:20:53+09:00", "end_time":"2019-03-29 19:20:53+09:00", "textDescription":"Exploring Roppongi Hills, Tokyo", "start_address":"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan", "start_lat":35.6602, "start_long":139.7289, "end_address":"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan", "end_lat":35.6602, "end_long":139.7289, "id":"places_27252" }, { "start_time":"2019-03-29 21:28:05+09:00", "end_time":"2019-03-29 21:28:05+09:00", "textDescription":"Exploring Roppongi Hills, Tokyo", "start_address":"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan", "start_lat":35.6604, "start_long":139.7288, "end_address":"Roppongi Hills Mori Tower, Mafu Tunnel, Roppongi, Minato, Tokyo, 106-6188, Japan", "end_lat":35.6604, "end_long":139.7288, "id":"places_27253" }, { "start_time":"2019-03-30 14:15:37+09:00", "end_time":"2019-03-30 14:15:37+09:00", "textDescription":"Narita, Japan", "start_address":"191L, Kuko Higashi-dori, Narita, Sanmu, Chiba Prefecture, 282-0004, Japan", "start_lat":35.76, "start_long":140.3898, "end_address":"191L, Kuko Higashi-dori, Narita, Sanmu, Chiba Prefecture, 282-0004, Japan", "end_lat":35.76, "end_long":140.3898, "id":"places_27254" }, { "start_time":"2019-03-31 10:51:04+08:00", "end_time":"2019-03-31 10:51:04+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27255" }, { "start_time":"2019-03-31 10:51:41+08:00", "end_time":"2019-03-31 10:51:41+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27256" }, { "start_time":"2019-03-31 11:17:52+08:00", "end_time":"2019-03-31 11:17:52+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27257" }, { "start_time":"2019-03-31 11:17:57+08:00", "end_time":"2019-03-31 11:17:57+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27258" }, { "start_time":"2019-03-31 11:23:27+08:00", "end_time":"2019-03-31 11:23:27+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27259" }, { "start_time":"2019-03-31 11:29:26+08:00", "end_time":"2019-03-31 11:29:26+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5276, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5276, "id":"places_27260" }, { "start_time":"2019-03-31 11:29:35+08:00", "end_time":"2019-03-31 11:29:35+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5276, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5276, "id":"places_27261" }, { "start_time":"2019-03-31 11:46:18+08:00", "end_time":"2019-03-31 11:46:18+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27262" }, { "start_time":"2019-03-31 11:46:22+08:00", "end_time":"2019-03-31 11:46:22+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27263" }, { "start_time":"2019-03-31 13:38:53+08:00", "end_time":"2019-03-31 13:38:53+08:00", "textDescription":"Exploring Eslite XinYi Store", "start_address":"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan", "start_lat":25.0393, "start_long":121.5656, "end_address":"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan", "end_lat":25.0393, "end_long":121.5656, "id":"places_27264" }, { "start_time":"2019-03-31 13:38:56+08:00", "end_time":"2019-03-31 13:38:56+08:00", "textDescription":"Exploring Eslite XinYi Store", "start_address":"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan", "start_lat":25.0392, "start_long":121.5656, "end_address":"Eslite XinYi Store, 11, Songgao Road, Xicun Village, Xinyi District, Xingya, Taipei, 11073, Taiwan", "end_lat":25.0392, "end_long":121.5656, "id":"places_27265" }, { "start_time":"2019-03-31 14:02:19+08:00", "end_time":"2019-03-31 14:02:19+08:00", "textDescription":"Exploring Taipei City Hall", "start_address":"Taipei City Hall (City Hall Rd.), City Hall Road, Xinglong Village, Xinyi District, Xingya, Taipei, 11008, Taiwan", "start_lat":25.0378, "start_long":121.5634, "end_address":"Taipei City Hall (City Hall Rd.), City Hall Road, Xinglong Village, Xinyi District, Xingya, Taipei, 11008, Taiwan", "end_lat":25.0378, "end_long":121.5634, "id":"places_27266" }, { "start_time":"2019-03-31 14:07:01+08:00", "end_time":"2019-03-31 14:07:01+08:00", "textDescription":"Exploring Xinglong Village, Taiwan", "start_address":"Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan", "start_lat":25.0379, "start_long":121.5607, "end_address":"Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan", "end_lat":25.0379, "end_long":121.5607, "id":"places_27267" }, { "start_time":"2019-03-31 14:08:35+08:00", "end_time":"2019-03-31 14:08:35+08:00", "textDescription":"Exploring Xinglong Village, Taiwan", "start_address":"Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan", "start_lat":25.0387, "start_long":121.5604, "end_address":"Sanzhangli Branch Line Trail, Xinglong Village, Xinyi District, Chezeng, Taipei, 11008, Taiwan", "end_lat":25.0387, "end_long":121.5604, "id":"places_27268" }, { "start_time":"2019-03-31 14:11:10+08:00", "end_time":"2019-03-31 14:11:10+08:00", "textDescription":"\"Exploring Sun Yat-sen Memorial Hall\"", "start_address":"Sun Yat-sen Memorial Hall, 505, Section 4, Ren'ai Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 11073, Taiwan", "start_lat":25.0397, "start_long":121.5603, "end_address":"Sun Yat-sen Memorial Hall, 505, Section 4, Ren'ai Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 11073, Taiwan", "end_lat":25.0397, "end_long":121.5603, "id":"places_27269" }, { "start_time":"2019-03-31 14:25:17+08:00", "end_time":"2019-03-31 14:25:17+08:00", "textDescription":"Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928 in Chezeng, Taipei", "start_address":"Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928, Guangfu South Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 10694, Taiwan", "start_lat":25.0386, "start_long":121.5578, "end_address":"Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928, Guangfu South Road, Xinglong Village, Xinyi District, Chezeng, Taipei, 10694, Taiwan", "end_lat":25.0386, "end_long":121.5578, "id":"places_27270" }, { "start_time":"2019-04-01 11:46:03+08:00", "end_time":"2019-04-01 11:46:03+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27271" }, { "start_time":"2019-04-01 11:46:13+08:00", "end_time":"2019-04-01 11:46:13+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27272" }, { "start_time":"2019-04-01 11:46:18+08:00", "end_time":"2019-04-01 11:46:18+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5277, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5277, "id":"places_27273" }, { "start_time":"2019-04-01 11:50:40+08:00", "end_time":"2019-04-01 11:50:40+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5276, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5276, "id":"places_27274" }, { "start_time":"2019-04-01 13:05:56+08:00", "end_time":"2019-04-01 13:05:56+08:00", "textDescription":"Cama Cafe in Huashan, Taipei", "start_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "start_lat":25.0437, "start_long":121.5276, "end_address":"cama cafe, 30, Zhongxiao East Road Section 2, Xingfu Village, Zhongzheng District, Huashan, Taipei, 100, Taiwan", "end_lat":25.0437, "end_long":121.5276, "id":"places_27275" }, { "start_time":"2019-04-01 13:10:47+08:00", "end_time":"2019-04-01 13:10:47+08:00", "textDescription":"Taipei's KuanHua Market", "start_address":"1914 Connection, Jinshan North Road, KuanHua Market, Meihua Village, Zhongzheng District, Huashan, Taipei, 10053, Taiwan", "start_lat":25.0437, "start_long":121.5299, "end_address":"1914 Connection, Jinshan North Road, KuanHua Market, Meihua Village, Zhongzheng District, Huashan, Taipei, 10053, Taiwan", "end_lat":25.0437, "end_long":121.5299, "id":"places_27276" }, { "start_time":"2019-04-01 14:08:24+08:00", "end_time":"2019-04-01 14:08:24+08:00", "textDescription":"Exploring Chiang Kai-shek Memorial Hall", "start_address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "start_lat":25.0348, "start_long":121.5216, "end_address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "end_lat":25.0348, "end_long":121.5216, "id":"places_27277" }, { "start_time":"2019-04-01 14:09:49+08:00", "end_time":"2019-04-01 14:09:49+08:00", "textDescription":"Exploring Chiang Kai-shek Memorial Hall", "start_address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "start_lat":25.0347, "start_long":121.5218, "end_address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "end_lat":25.0347, "end_long":121.5218, "id":"places_27278" }, { "start_time":"2019-04-01 14:09:52+08:00", "end_time":"2019-04-01 14:09:52+08:00", "textDescription":"Taipei's Democracy Boulevard", "start_address":"\u4e2d\u6b63\u7d00\u5ff5\u5802\u9285\u50cf\u5927\u5ef3, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan", "start_lat":25.0346, "start_long":121.5219, "end_address":"\u4e2d\u6b63\u7d00\u5ff5\u5802\u9285\u50cf\u5927\u5ef3, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan", "end_lat":25.0346, "end_long":121.5219, "id":"places_27279" }, { "start_time":"2019-04-01 14:12:25+08:00", "end_time":"2019-04-01 14:12:25+08:00", "textDescription":"Exploring Chiang Kai-shek Memorial Hall", "start_address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "start_lat":25.0348, "start_long":121.5216, "end_address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "end_lat":25.0348, "end_long":121.5216, "id":"places_27280" }, { "start_time":"2019-04-01 14:13:29+08:00", "end_time":"2019-04-01 14:13:29+08:00", "textDescription":"Exploring Longtsakoo, Taiwan", "start_address":"Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, Taiwan", "start_lat":25.0352, "start_long":121.5212, "end_address":"Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, Taiwan", "end_lat":25.0352, "end_long":121.5212, "id":"places_27281" }, { "start_time":"2019-04-01 14:19:18+08:00", "end_time":"2019-04-01 14:19:18+08:00", "textDescription":"Exploring Chiang Kai-shek Memorial Hall", "start_address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "start_lat":25.0352, "start_long":121.5219, "end_address":"Chiang Kai-shek Memorial Hall, 21, Zhongshan South Road, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10048, Taiwan", "end_lat":25.0352, "end_long":121.5219, "id":"places_27282" }, { "start_time":"2019-04-01 14:32:33+08:00", "end_time":"2019-04-01 14:32:33+08:00", "textDescription":"Exploring Longtsakoo, Taipei", "start_address":"\u5357\u5074\u6a13\u68af\u51fa\u53e3, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10013, Taiwan", "start_lat":25.0352, "start_long":121.519, "end_address":"\u5357\u5074\u6a13\u68af\u51fa\u53e3, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10013, Taiwan", "end_lat":25.0352, "end_long":121.519, "id":"places_27283" }, { "start_time":"2019-04-01 14:32:43+08:00", "end_time":"2019-04-01 14:32:43+08:00", "textDescription":"Exploring Longtsakoo, Taiwan", "start_address":"Democracy Boulevard, Linsen South Road Motor Tunnel, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan", "start_lat":25.0357, "start_long":121.5201, "end_address":"Democracy Boulevard, Linsen South Road Motor Tunnel, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10092, Taiwan", "end_lat":25.0357, "end_long":121.5201, "id":"places_27284" }, { "start_time":"2019-04-01 14:34:37+08:00", "end_time":"2019-04-01 14:34:37+08:00", "textDescription":"Taipei's Liberty Square", "start_address":"Liberty Square, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10001, Taiwan", "start_lat":25.0359, "start_long":121.5192, "end_address":"Liberty Square, Democracy Boulevard, Dongmen Village, Zhongzheng District, Longtsakoo, Taipei, 10001, Taiwan", "end_lat":25.0359, "end_long":121.5192, "id":"places_27285" }, { "start_time":"2019-04-01 18:04:00+08:00", "end_time":"2019-04-01 18:04:00+08:00", "textDescription":"Photographing Platform in Taipei", "start_address":"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "start_lat":25.027, "start_long":121.5741, "end_address":"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "end_lat":25.027, "end_long":121.5741, "id":"places_27286" }, { "start_time":"2019-04-01 18:10:42+08:00", "end_time":"2019-04-01 18:10:42+08:00", "textDescription":"Exploring Sanli Village, Taipei", "start_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0269, "start_long":121.5744, "end_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0269, "end_long":121.5744, "id":"places_27287" }, { "start_time":"2019-04-01 18:16:02+08:00", "end_time":"2019-04-01 18:16:02+08:00", "textDescription":"Exploring Liuhe Village Trail", "start_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Liuhe Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0268, "start_long":121.5745, "end_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Liuhe Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0268, "end_long":121.5745, "id":"places_27288" }, { "start_time":"2019-04-01 18:16:44+08:00", "end_time":"2019-04-01 18:16:44+08:00", "textDescription":"Exploring Taipei: \u6885\u82b1\u7403\u5834", "start_address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0272, "start_long":121.5729, "end_address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0272, "end_long":121.5729, "id":"places_27289" }, { "start_time":"2019-04-01 18:18:23+08:00", "end_time":"2019-04-01 18:18:23+08:00", "textDescription":"Exploring Xiangshan Tunnel", "start_address":"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0268139, "start_long":121.5743944, "end_address":"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0268139, "end_long":121.5743944, "id":"places_27290" }, { "start_time":"2019-04-01 18:18:34+08:00", "end_time":"2019-04-01 18:18:34+08:00", "textDescription":"Exploring Xiangshan Tunnel", "start_address":"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0268083, "start_long":121.5743861, "end_address":"Xiangshan Tunnel, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0268083, "end_long":121.5743861, "id":"places_27291" }, { "start_time":"2019-04-01 18:18:54+08:00", "end_time":"2019-04-01 18:18:54+08:00", "textDescription":"Exploring Taipei from the Xinyi District", "start_address":"\u8c61\u5c71\u770b\u53f0\u5317, 101\u5854\u6a132\u865f\u651d\u5f71\u5e73\u53f0, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0268722, "start_long":121.5744083, "end_address":"\u8c61\u5c71\u770b\u53f0\u5317, 101\u5854\u6a132\u865f\u651d\u5f71\u5e73\u53f0, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0268722, "end_long":121.5744083, "id":"places_27292" }, { "start_time":"2019-04-01 18:19:16+08:00", "end_time":"2019-04-01 18:19:16+08:00", "textDescription":"Exploring Sanli Village, Taipei", "start_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0269, "start_long":121.5745, "end_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0269, "end_long":121.5745, "id":"places_27293" }, { "start_time":"2019-04-01 18:27:54+08:00", "end_time":"2019-04-01 18:27:54+08:00", "textDescription":"Exploring Sanli Village, Taipei", "start_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0269, "start_long":121.5744, "end_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0269, "end_long":121.5744, "id":"places_27294" }, { "start_time":"2019-04-01 18:28:24+08:00", "end_time":"2019-04-01 18:28:24+08:00", "textDescription":"Exploring Sanli Village, Taipei", "start_address":"\u6960\u6960\u76f8\u671b, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0271, "start_long":121.5732, "end_address":"\u6960\u6960\u76f8\u671b, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0271, "end_long":121.5732, "id":"places_27295" }, { "start_time":"2019-04-01 18:30:30+08:00", "end_time":"2019-04-01 18:30:30+08:00", "textDescription":"Exploring Sanli Village, Taipei", "start_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0269, "start_long":121.5745, "end_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0269, "end_long":121.5745, "id":"places_27296" }, { "start_time":"2019-04-01 18:30:38+08:00", "end_time":"2019-04-01 18:30:38+08:00", "textDescription":"Exploring Sanli Village, Taipei", "start_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0269, "start_long":121.5745, "end_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0269, "end_long":121.5745, "id":"places_27297" }, { "start_time":"2019-04-01 18:30:50+08:00", "end_time":"2019-04-01 18:30:50+08:00", "textDescription":"Exploring Sanli Village, Taipei", "start_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0269, "start_long":121.5745, "end_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0269, "end_long":121.5745, "id":"places_27298" }, { "start_time":"2019-04-01 18:33:02+08:00", "end_time":"2019-04-01 18:33:02+08:00", "textDescription":"Exploring Sanli Village, Taipei", "start_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0269, "start_long":121.5745, "end_address":"\u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u677e\u5fb7\u9662\u5340\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0269, "end_long":121.5745, "id":"places_27299" }, { "start_time":"2019-04-01 18:33:52+08:00", "end_time":"2019-04-01 18:33:52+08:00", "textDescription":"Photographing Platform in Taipei", "start_address":"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "start_lat":25.0267528, "start_long":121.5742333, "end_address":"Six Boulders Photographing Platform, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "end_lat":25.0267528, "end_long":121.5742333, "id":"places_27300" }, { "start_time":"2019-04-01 18:34:03+08:00", "end_time":"2019-04-01 18:34:03+08:00", "textDescription":"\"Photography Platform at 101 Tower\"", "start_address":"101\u5854\u6a131\u865f\u651d\u5f71\u5e73\u53f0, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "start_lat":25.0272722, "start_long":121.5731361, "end_address":"101\u5854\u6a131\u865f\u651d\u5f71\u5e73\u53f0, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, Taiwan", "end_lat":25.0272722, "end_long":121.5731361, "id":"places_27301" }, { "start_time":"2019-04-01 18:34:13+08:00", "end_time":"2019-04-01 18:34:13+08:00", "textDescription":"Exploring Taipei: \u6885\u82b1\u7403\u5834", "start_address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0272694, "start_long":121.5730139, "end_address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0272694, "end_long":121.5730139, "id":"places_27302" }, { "start_time":"2019-04-01 18:34:18+08:00", "end_time":"2019-04-01 18:34:18+08:00", "textDescription":"Exploring Taipei: \u6885\u82b1\u7403\u5834", "start_address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0273167, "start_long":121.5730667, "end_address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0273167, "end_long":121.5730667, "id":"places_27303" }, { "start_time":"2019-04-01 18:44:00+08:00", "end_time":"2019-04-01 18:44:00+08:00", "textDescription":"Exploring Taipei: \u6885\u82b1\u7403\u5834", "start_address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0274, "start_long":121.5723, "end_address":"\u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0274, "end_long":121.5723, "id":"places_27304" }, { "start_time":"2019-04-01 18:47:11+08:00", "end_time":"2019-04-01 18:47:11+08:00", "textDescription":"Exploring Nature at \u8c61\u5c71\u81ea\u7136\u6b65\u9053", "start_address":"\u8c61\u5c71\u81ea\u7136\u6b65\u9053, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0272, "start_long":121.5732, "end_address":"\u8c61\u5c71\u81ea\u7136\u6b65\u9053, Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0272, "end_long":121.5732, "id":"places_27305" }, { "start_time":"2019-04-01 18:54:00+08:00", "end_time":"2019-04-01 18:54:00+08:00", "textDescription":"Exploring Taipei's Elephant Mountain Trail", "start_address":"\u56db\u7378\u5c71\u6b65\u9053\u610f\u8c61\u62cd\u7167\u5ea7\u6905, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "start_lat":25.0274, "start_long":121.5716, "end_address":"\u56db\u7378\u5c71\u6b65\u9053\u610f\u8c61\u62cd\u7167\u5ea7\u6905, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), Sanli Village, Xinyi District, Xinyi Commercial Zone, Taipei, 11529, Taiwan", "end_lat":25.0274, "end_long":121.5716, "id":"places_27306" }, { "start_time":"2019-04-02 19:09:25-07:00", "end_time":"2019-04-02 19:09:25-07:00", "textDescription":"Randall County, Texas", "start_address":"State Highway 217, Randall County, Texas, United States", "start_lat":34.9839338071, "start_long":-101.7872104899, "end_address":"State Highway 217, Randall County, Texas, United States", "end_lat":34.9839338071, "end_long":-101.7872104899, "id":"places_27307" }, { "start_time":"2019-04-02 19:10:05-07:00", "end_time":"2019-04-02 19:10:05-07:00", "textDescription":"Randall County, Texas", "start_address":"State Highway 217, Randall County, Texas, United States", "start_lat":34.9837942616, "start_long":-101.7873500354, "end_address":"State Highway 217, Randall County, Texas, United States", "end_lat":34.9837942616, "end_long":-101.7873500354, "id":"places_27308" }, { "start_time":"2019-04-02 19:16:56-07:00", "end_time":"2019-04-02 19:16:56-07:00", "textDescription":"Randall County, Texas", "start_address":"State Highway 217, Randall County, Texas, United States", "start_lat":34.9839338071, "start_long":-101.7872104899, "end_address":"State Highway 217, Randall County, Texas, United States", "end_lat":34.9839338071, "end_long":-101.7872104899, "id":"places_27309" }, { "start_time":"2019-04-03 08:53:44-07:00", "end_time":"2019-04-03 08:53:44-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375514743, "start_long":-101.9086043234, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375514743, "end_long":-101.9086043234, "id":"places_27310" }, { "start_time":"2019-04-06 12:16:12-07:00", "end_time":"2019-04-06 12:16:12-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375729428, "start_long":-101.9084111066, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375729428, "end_long":-101.9084111066, "id":"places_27311" }, { "start_time":"2019-04-06 12:16:37-07:00", "end_time":"2019-04-06 12:16:37-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374539534, "start_long":-101.9084895634, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374539534, "end_long":-101.9084895634, "id":"places_27312" }, { "start_time":"2019-04-06 12:16:36-07:00", "end_time":"2019-04-06 12:16:36-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374539534, "start_long":-101.9084895634, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374539534, "end_long":-101.9084895634, "id":"places_27313" }, { "start_time":"2019-04-06 12:17:05-07:00", "end_time":"2019-04-06 12:17:05-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374333973, "start_long":-101.9085506521, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374333973, "end_long":-101.9085506521, "id":"places_27314" }, { "start_time":"2019-04-06 12:17:19-07:00", "end_time":"2019-04-06 12:17:19-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375205059, "start_long":-101.9085112895, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375205059, "end_long":-101.9085112895, "id":"places_27315" }, { "start_time":"2019-04-06 12:17:32-07:00", "end_time":"2019-04-06 12:17:32-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375205059, "start_long":-101.9085112895, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375205059, "end_long":-101.9085112895, "id":"places_27316" }, { "start_time":"2019-04-06 12:17:40-07:00", "end_time":"2019-04-06 12:17:40-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375622085, "start_long":-101.908507715, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375622085, "end_long":-101.908507715, "id":"places_27317" }, { "start_time":"2019-04-10 15:59:42-07:00", "end_time":"2019-04-10 15:59:42-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0373379482, "start_long":-101.9088202539, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0373379482, "end_long":-101.9088202539, "id":"places_27318" }, { "start_time":"2019-04-10 15:59:41-07:00", "end_time":"2019-04-10 15:59:41-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0372723833, "start_long":-101.9088834144, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0372723833, "end_long":-101.9088834144, "id":"places_27319" }, { "start_time":"2019-04-11 16:03:08-07:00", "end_time":"2019-04-11 16:03:08-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0372938518, "start_long":-101.9086901976, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0372938518, "end_long":-101.9086901976, "id":"places_27320" }, { "start_time":"2019-04-11 17:50:51-07:00", "end_time":"2019-04-11 17:50:51-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2962, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0370684322, "start_long":-101.9084862465, "end_address":"2962, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0370684322, "end_long":-101.9084862465, "id":"places_27321" }, { "start_time":"2019-04-11 17:50:53-07:00", "end_time":"2019-04-11 17:50:53-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2962, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0370684322, "start_long":-101.9084862465, "end_address":"2962, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0370684322, "end_long":-101.9084862465, "id":"places_27322" }, { "start_time":"2019-04-11 17:51:04-07:00", "end_time":"2019-04-11 17:51:04-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2962, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0370523308, "start_long":-101.9086311591, "end_address":"2962, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0370523308, "end_long":-101.9086311591, "id":"places_27323" }, { "start_time":"2019-04-11 17:51:03-07:00", "end_time":"2019-04-11 17:51:03-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2962, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0370469637, "start_long":-101.9086794633, "end_address":"2962, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0370469637, "end_long":-101.9086794633, "id":"places_27324" }, { "start_time":"2019-04-13 13:08:12-07:00", "end_time":"2019-04-13 13:08:12-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0372938518, "start_long":-101.9086901976, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0372938518, "end_long":-101.9086901976, "id":"places_27325" }, { "start_time":"2019-04-13 13:23:32-07:00", "end_time":"2019-04-13 13:23:32-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0372938518, "start_long":-101.9086901976, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0372938518, "end_long":-101.9086901976, "id":"places_27326" }, { "start_time":"2019-04-13 13:23:49-07:00", "end_time":"2019-04-13 13:23:49-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0371650406, "start_long":-101.9087331346, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0371650406, "end_long":-101.9087331346, "id":"places_27327" }, { "start_time":"2019-04-13 13:24:21-07:00", "end_time":"2019-04-13 13:24:21-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0372938518, "start_long":-101.9086901976, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0372938518, "end_long":-101.9086901976, "id":"places_27328" }, { "start_time":"2019-04-14 08:23:09-07:00", "end_time":"2019-04-14 08:23:09-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375622085, "start_long":-101.908507715, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375622085, "end_long":-101.908507715, "id":"places_27329" }, { "start_time":"2019-04-14 08:23:14-07:00", "end_time":"2019-04-14 08:23:14-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374333973, "start_long":-101.9085506521, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374333973, "end_long":-101.9085506521, "id":"places_27330" }, { "start_time":"2019-04-14 11:09:42-07:00", "end_time":"2019-04-14 11:09:42-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374333973, "start_long":-101.9085506521, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374333973, "end_long":-101.9085506521, "id":"places_27331" }, { "start_time":"2019-04-14 11:09:56-07:00", "end_time":"2019-04-14 11:09:56-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374333973, "start_long":-101.9085506521, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374333973, "end_long":-101.9085506521, "id":"places_27332" }, { "start_time":"2019-04-14 19:19:06-07:00", "end_time":"2019-04-14 19:19:06-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "start_lat":49.288, "start_long":-123.1128, "end_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "end_lat":49.288, "end_long":-123.1128, "id":"places_27333" }, { "start_time":"2019-04-14 19:28:23-07:00", "end_time":"2019-04-14 19:28:23-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "start_lat":49.2879, "start_long":-123.1127, "end_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "end_lat":49.2879, "end_long":-123.1127, "id":"places_27334" }, { "start_time":"2019-04-14 20:40:40-07:00", "end_time":"2019-04-14 20:40:40-07:00", "textDescription":"Exploring Gastown, Vancouver", "start_address":"999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "start_lat":49.2882, "start_long":-123.1128, "end_address":"999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "end_lat":49.2882, "end_long":-123.1128, "id":"places_27335" }, { "start_time":"2019-04-15 08:03:01-07:00", "end_time":"2019-04-15 08:03:01-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "start_lat":49.288, "start_long":-123.1127, "end_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "end_lat":49.288, "end_long":-123.1127, "id":"places_27336" }, { "start_time":"2019-04-15 08:03:20-07:00", "end_time":"2019-04-15 08:03:20-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "start_lat":49.288, "start_long":-123.1128, "end_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "end_lat":49.288, "end_long":-123.1128, "id":"places_27337" }, { "start_time":"2019-04-15 12:16:09-07:00", "end_time":"2019-04-15 12:16:09-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, West Waterfront Road, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "start_lat":49.2883, "start_long":-123.1144, "end_address":"Canada Place, West Waterfront Road, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "end_lat":49.2883, "end_long":-123.1144, "id":"places_27338" }, { "start_time":"2019-04-15 12:34:01-07:00", "end_time":"2019-04-15 12:34:01-07:00", "textDescription":"Luxury in Gastown, Vancouver", "start_address":"Fairmont Pacific Rim, 1038, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "start_lat":49.2883, "start_long":-123.1167, "end_address":"Fairmont Pacific Rim, 1038, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "end_lat":49.2883, "end_long":-123.1167, "id":"places_27339" }, { "start_time":"2019-04-15 13:45:18-07:00", "end_time":"2019-04-15 13:45:18-07:00", "textDescription":"Gastown Nail Salon", "start_address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2898, "start_long":-123.116, "end_address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2898, "end_long":-123.116, "id":"places_27340" }, { "start_time":"2019-04-15 13:47:29-07:00", "end_time":"2019-04-15 13:47:29-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2898, "start_long":-123.1163, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2898, "end_long":-123.1163, "id":"places_27341" }, { "start_time":"2019-04-15 13:47:35-07:00", "end_time":"2019-04-15 13:47:35-07:00", "textDescription":"Gastown Nail Salon", "start_address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2898, "start_long":-123.1159, "end_address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2898, "end_long":-123.1159, "id":"places_27342" }, { "start_time":"2019-04-15 14:19:43-07:00", "end_time":"2019-04-15 14:19:43-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2883, "start_long":-123.1165, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2883, "end_long":-123.1165, "id":"places_27343" }, { "start_time":"2019-04-15 14:19:45-07:00", "end_time":"2019-04-15 14:19:45-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2883, "start_long":-123.1165, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2883, "end_long":-123.1165, "id":"places_27344" }, { "start_time":"2019-04-15 14:19:50-07:00", "end_time":"2019-04-15 14:19:50-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2883, "start_long":-123.1166, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2883, "end_long":-123.1166, "id":"places_27345" }, { "start_time":"2019-04-15 14:19:55-07:00", "end_time":"2019-04-15 14:19:55-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2883, "start_long":-123.1166, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2883, "end_long":-123.1166, "id":"places_27346" }, { "start_time":"2019-04-15 14:19:56-07:00", "end_time":"2019-04-15 14:19:56-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2884, "start_long":-123.1167, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2884, "end_long":-123.1167, "id":"places_27347" }, { "start_time":"2019-04-15 14:20:02-07:00", "end_time":"2019-04-15 14:20:02-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2884, "start_long":-123.1167, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2884, "end_long":-123.1167, "id":"places_27348" }, { "start_time":"2019-04-15 14:20:03-07:00", "end_time":"2019-04-15 14:20:03-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2884, "start_long":-123.1168, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2884, "end_long":-123.1168, "id":"places_27349" }, { "start_time":"2019-04-15 14:20:07-07:00", "end_time":"2019-04-15 14:20:07-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2884, "start_long":-123.1168, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2884, "end_long":-123.1168, "id":"places_27350" }, { "start_time":"2019-04-15 14:20:07-07:00", "end_time":"2019-04-15 14:20:07-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2884, "start_long":-123.1168, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2884, "end_long":-123.1168, "id":"places_27351" }, { "start_time":"2019-04-15 14:20:08-07:00", "end_time":"2019-04-15 14:20:08-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2884, "start_long":-123.1168, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2884, "end_long":-123.1168, "id":"places_27352" }, { "start_time":"2019-04-15 14:20:19-07:00", "end_time":"2019-04-15 14:20:19-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2883, "start_long":-123.1165, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2883, "end_long":-123.1165, "id":"places_27353" }, { "start_time":"2019-04-15 14:20:20-07:00", "end_time":"2019-04-15 14:20:20-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2883, "start_long":-123.1165, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2883, "end_long":-123.1165, "id":"places_27354" }, { "start_time":"2019-04-15 15:21:26-07:00", "end_time":"2019-04-15 15:21:26-07:00", "textDescription":"Gastown's Bellaggio Caf\u00e9 & Gelateria", "start_address":"Bellaggio Caf\u00e9 & Gelateria, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2884, "start_long":-123.1149, "end_address":"Bellaggio Caf\u00e9 & Gelateria, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2884, "end_long":-123.1149, "id":"places_27355" }, { "start_time":"2019-04-15 15:25:50-07:00", "end_time":"2019-04-15 15:25:50-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "start_lat":49.2879, "start_long":-123.1128, "end_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "end_lat":49.2879, "end_long":-123.1128, "id":"places_27356" }, { "start_time":"2019-04-15 15:25:58-07:00", "end_time":"2019-04-15 15:25:58-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "start_lat":49.288, "start_long":-123.1125, "end_address":"Canada Place, 999, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3C1, Canada", "end_lat":49.288, "end_long":-123.1125, "id":"places_27357" }, { "start_time":"2019-04-15 17:05:24-07:00", "end_time":"2019-04-15 17:05:24-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.116, "id":"places_27358" }, { "start_time":"2019-04-15 17:16:37-07:00", "end_time":"2019-04-15 17:16:37-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.116, "id":"places_27359" }, { "start_time":"2019-04-15 18:13:08-07:00", "end_time":"2019-04-15 18:13:08-07:00", "textDescription":"Gastown Nail Salon", "start_address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2898, "start_long":-123.1156, "end_address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2898, "end_long":-123.1156, "id":"places_27360" }, { "start_time":"2019-04-15 18:30:43-07:00", "end_time":"2019-04-15 18:30:43-07:00", "textDescription":"Gastown Nail Salon", "start_address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2898, "start_long":-123.116, "end_address":"Waterfront Nails & Waxing, 42, Seawall, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2898, "end_long":-123.116, "id":"places_27361" }, { "start_time":"2019-04-15 18:30:48-07:00", "end_time":"2019-04-15 18:30:48-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.116, "id":"places_27362" }, { "start_time":"2019-04-15 18:31:20-07:00", "end_time":"2019-04-15 18:31:20-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.116, "id":"places_27363" }, { "start_time":"2019-04-15 18:31:22-07:00", "end_time":"2019-04-15 18:31:22-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.116, "id":"places_27364" }, { "start_time":"2019-04-15 18:34:27-07:00", "end_time":"2019-04-15 18:34:27-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.1157, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.1157, "id":"places_27365" }, { "start_time":"2019-04-15 18:53:48-07:00", "end_time":"2019-04-15 18:53:48-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.1159, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.1159, "id":"places_27366" }, { "start_time":"2019-04-15 20:31:18-07:00", "end_time":"2019-04-15 20:31:18-07:00", "textDescription":"Vancouver's Olympic Cauldron", "start_address":"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "start_lat":49.2891, "start_long":-123.1178, "end_address":"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "end_lat":49.2891, "end_long":-123.1178, "id":"places_27367" }, { "start_time":"2019-04-16 07:52:35-07:00", "end_time":"2019-04-16 07:52:35-07:00", "textDescription":"Vancouver's Shaw Tower", "start_address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "start_lat":49.2885, "start_long":-123.1177, "end_address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "end_lat":49.2885, "end_long":-123.1177, "id":"places_27368" }, { "start_time":"2019-04-16 07:52:38-07:00", "end_time":"2019-04-16 07:52:38-07:00", "textDescription":"Vancouver's Shaw Tower", "start_address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "start_lat":49.2885, "start_long":-123.1176, "end_address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "end_lat":49.2885, "end_long":-123.1176, "id":"places_27369" }, { "start_time":"2019-04-16 07:52:47-07:00", "end_time":"2019-04-16 07:52:47-07:00", "textDescription":"Vancouver's Shaw Tower", "start_address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "start_lat":49.2885, "start_long":-123.1177, "end_address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "end_lat":49.2885, "end_long":-123.1177, "id":"places_27370" }, { "start_time":"2019-04-16 07:52:51-07:00", "end_time":"2019-04-16 07:52:51-07:00", "textDescription":"Vancouver's Shaw Tower", "start_address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "start_lat":49.2885, "start_long":-123.1176, "end_address":"Shaw Tower, 1067;1077, West Cordova Street, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6E 0C3, Canada", "end_lat":49.2885, "end_long":-123.1176, "id":"places_27371" }, { "start_time":"2019-04-16 10:02:50-07:00", "end_time":"2019-04-16 10:02:50-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.1159, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.1159, "id":"places_27372" }, { "start_time":"2019-04-16 10:35:31-07:00", "end_time":"2019-04-16 10:35:31-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.1165, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.1165, "id":"places_27373" }, { "start_time":"2019-04-16 11:19:47-07:00", "end_time":"2019-04-16 11:19:47-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1161, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1161, "id":"places_27374" }, { "start_time":"2019-04-16 11:33:45-07:00", "end_time":"2019-04-16 11:33:45-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.116, "id":"places_27375" }, { "start_time":"2019-04-16 12:43:45-07:00", "end_time":"2019-04-16 12:43:45-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2895, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2895, "end_long":-123.116, "id":"places_27376" }, { "start_time":"2019-04-16 12:43:50-07:00", "end_time":"2019-04-16 12:43:50-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2895, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2895, "end_long":-123.116, "id":"places_27377" }, { "start_time":"2019-04-16 15:58:10-07:00", "end_time":"2019-04-16 15:58:10-07:00", "textDescription":"Vancouver's Olympic Cauldron", "start_address":"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "start_lat":49.2891, "start_long":-123.1175, "end_address":"2010 Olympic Cauldron, Jack Poole Plaza, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0B9, Canada", "end_lat":49.2891, "end_long":-123.1175, "id":"places_27378" }, { "start_time":"2019-04-16 18:44:28-07:00", "end_time":"2019-04-16 18:44:28-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.116, "id":"places_27379" }, { "start_time":"2019-04-17 08:56:50-07:00", "end_time":"2019-04-17 08:56:50-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2894, "start_long":-123.1161, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2894, "end_long":-123.1161, "id":"places_27380" }, { "start_time":"2019-04-17 09:16:52-07:00", "end_time":"2019-04-17 09:16:52-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2895, "start_long":-123.1161, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2895, "end_long":-123.1161, "id":"places_27381" }, { "start_time":"2019-04-17 09:30:42-07:00", "end_time":"2019-04-17 09:30:42-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.1159, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.1159, "id":"places_27382" }, { "start_time":"2019-04-17 09:34:50-07:00", "end_time":"2019-04-17 09:34:50-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.116, "id":"places_27383" }, { "start_time":"2019-04-17 09:51:56-07:00", "end_time":"2019-04-17 09:51:56-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897, "end_long":-123.116, "id":"places_27384" }, { "start_time":"2019-04-17 11:32:25-07:00", "end_time":"2019-04-17 11:32:25-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1159, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1159, "id":"places_27385" }, { "start_time":"2019-04-17 12:32:29-07:00", "end_time":"2019-04-17 12:32:29-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1159, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1159, "id":"places_27386" }, { "start_time":"2019-04-17 12:35:17-07:00", "end_time":"2019-04-17 12:35:17-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1163, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1163, "id":"places_27387" }, { "start_time":"2019-04-17 12:35:20-07:00", "end_time":"2019-04-17 12:35:20-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1161, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1161, "id":"places_27388" }, { "start_time":"2019-04-17 12:43:24-07:00", "end_time":"2019-04-17 12:43:24-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1161, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1161, "id":"places_27389" }, { "start_time":"2019-04-17 12:43:27-07:00", "end_time":"2019-04-17 12:43:27-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1159, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1159, "id":"places_27390" }, { "start_time":"2019-04-17 13:44:56-07:00", "end_time":"2019-04-17 13:44:56-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2895, "start_long":-123.115, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2895, "end_long":-123.115, "id":"places_27391" }, { "start_time":"2019-04-17 18:34:48-07:00", "end_time":"2019-04-17 18:34:48-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2898, "start_long":-123.1161, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2898, "end_long":-123.1161, "id":"places_27392" }, { "start_time":"2019-04-17 18:37:48-07:00", "end_time":"2019-04-17 18:37:48-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.116, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.116, "id":"places_27393" }, { "start_time":"2019-04-18 09:00:47-07:00", "end_time":"2019-04-18 09:00:47-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1159, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1159, "id":"places_27394" }, { "start_time":"2019-04-18 09:25:03-07:00", "end_time":"2019-04-18 09:25:03-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896, "start_long":-123.1157, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896, "end_long":-123.1157, "id":"places_27395" }, { "start_time":"2019-04-18 10:00:34-07:00", "end_time":"2019-04-18 10:00:34-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2898, "start_long":-123.1161, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2898, "end_long":-123.1161, "id":"places_27396" }, { "start_time":"2019-04-18 11:45:23-07:00", "end_time":"2019-04-18 11:45:23-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896278, "start_long":-123.1160139, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896278, "end_long":-123.1160139, "id":"places_27397" }, { "start_time":"2019-04-18 11:48:54-07:00", "end_time":"2019-04-18 11:48:54-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896083, "start_long":-123.1156611, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896083, "end_long":-123.1156611, "id":"places_27398" }, { "start_time":"2019-04-18 12:01:17-07:00", "end_time":"2019-04-18 12:01:17-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897306, "start_long":-123.115775, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897306, "end_long":-123.115775, "id":"places_27399" }, { "start_time":"2019-04-18 12:03:14-07:00", "end_time":"2019-04-18 12:03:14-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2894833, "start_long":-123.1161111, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2894833, "end_long":-123.1161111, "id":"places_27400" }, { "start_time":"2019-04-18 12:18:17-07:00", "end_time":"2019-04-18 12:18:17-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2888139, "start_long":-123.1159972, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2888139, "end_long":-123.1159972, "id":"places_27401" }, { "start_time":"2019-04-18 12:29:21-07:00", "end_time":"2019-04-18 12:29:21-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2887917, "start_long":-123.1161111, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2887917, "end_long":-123.1161111, "id":"places_27402" }, { "start_time":"2019-04-18 16:25:56-07:00", "end_time":"2019-04-18 16:25:56-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "start_lat":49.2881972, "start_long":-123.1155778, "end_address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "end_lat":49.2881972, "end_long":-123.1155778, "id":"places_27403" }, { "start_time":"2019-04-18 16:26:01-07:00", "end_time":"2019-04-18 16:26:01-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "start_lat":49.2881972, "start_long":-123.1155778, "end_address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "end_lat":49.2881972, "end_long":-123.1155778, "id":"places_27404" }, { "start_time":"2019-04-18 16:26:04-07:00", "end_time":"2019-04-18 16:26:04-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "start_lat":49.2881611, "start_long":-123.1155778, "end_address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "end_lat":49.2881611, "end_long":-123.1155778, "id":"places_27405" }, { "start_time":"2019-04-18 16:26:07-07:00", "end_time":"2019-04-18 16:26:07-07:00", "textDescription":"Vancouver's Canada Place", "start_address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "start_lat":49.2881611, "start_long":-123.1155778, "end_address":"Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 3L6, Canada", "end_lat":49.2881611, "end_long":-123.1155778, "id":"places_27406" }, { "start_time":"2019-04-18 17:10:13-07:00", "end_time":"2019-04-18 17:10:13-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2893528, "start_long":-123.1158, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2893528, "end_long":-123.1158, "id":"places_27407" }, { "start_time":"2019-04-18 17:10:17-07:00", "end_time":"2019-04-18 17:10:17-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2893528, "start_long":-123.1158, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2893528, "end_long":-123.1158, "id":"places_27408" }, { "start_time":"2019-04-18 17:27:02-07:00", "end_time":"2019-04-18 17:27:02-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896917, "start_long":-123.1158, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896917, "end_long":-123.1158, "id":"places_27409" }, { "start_time":"2019-04-18 17:54:04-07:00", "end_time":"2019-04-18 17:54:04-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896806, "start_long":-123.1157694, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896806, "end_long":-123.1157694, "id":"places_27410" }, { "start_time":"2019-04-18 19:46:42-07:00", "end_time":"2019-04-18 19:46:42-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2882722, "start_long":-123.1162639, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2882722, "end_long":-123.1162639, "id":"places_27411" }, { "start_time":"2019-04-18 19:46:47-07:00", "end_time":"2019-04-18 19:46:47-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2882611, "start_long":-123.11625, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2882611, "end_long":-123.11625, "id":"places_27412" }, { "start_time":"2019-04-19 11:21:20-07:00", "end_time":"2019-04-19 11:21:20-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896694, "start_long":-123.1161028, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896694, "end_long":-123.1161028, "id":"places_27413" }, { "start_time":"2019-04-19 11:22:29-07:00", "end_time":"2019-04-19 11:22:29-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897194, "start_long":-123.1159972, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897194, "end_long":-123.1159972, "id":"places_27414" }, { "start_time":"2019-04-19 11:34:21-07:00", "end_time":"2019-04-19 11:34:21-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2896806, "start_long":-123.1160278, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2896806, "end_long":-123.1160278, "id":"places_27415" }, { "start_time":"2019-04-19 11:37:25-07:00", "end_time":"2019-04-19 11:37:25-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897222, "start_long":-123.1160056, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897222, "end_long":-123.1160056, "id":"places_27416" }, { "start_time":"2019-04-19 11:38:46-07:00", "end_time":"2019-04-19 11:38:46-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2895472, "start_long":-123.1160139, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2895472, "end_long":-123.1160139, "id":"places_27417" }, { "start_time":"2019-04-19 11:39:45-07:00", "end_time":"2019-04-19 11:39:45-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.28975, "start_long":-123.1159056, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.28975, "end_long":-123.1159056, "id":"places_27418" }, { "start_time":"2019-04-19 11:41:51-07:00", "end_time":"2019-04-19 11:41:51-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897111, "start_long":-123.1159278, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897111, "end_long":-123.1159278, "id":"places_27419" }, { "start_time":"2019-04-19 11:42:16-07:00", "end_time":"2019-04-19 11:42:16-07:00", "textDescription":"Vancouver Convention Centre West", "start_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "start_lat":49.2897222, "start_long":-123.1159833, "end_address":"Vancouver Convention Centre West, 1055, Canada Place, Gastown, Downtown, Vancouver, Metro Vancouver Regional District, British Columbia, V6C 0C3, Canada", "end_lat":49.2897222, "end_long":-123.1159833, "id":"places_27420" }, { "start_time":"2019-04-20 11:12:11-07:00", "end_time":"2019-04-20 11:12:11-07:00", "textDescription":"Old School Iron in Amarillo, TX", "start_address":"Old School Iron, 3928, Business Park Drive, Western Business Park, Amarillo, Randall County, Texas, 79110, United States", "start_lat":35.144139221, "start_long":-101.8799902973, "end_address":"Old School Iron, 3928, Business Park Drive, Western Business Park, Amarillo, Randall County, Texas, 79110, United States", "end_lat":35.144139221, "end_long":-101.8799902973, "id":"places_27421" }, { "start_time":"2019-04-20 13:02:58-07:00", "end_time":"2019-04-20 13:02:58-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374447112, "start_long":-101.9085727432, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374447112, "end_long":-101.9085727432, "id":"places_27422" }, { "start_time":"2019-04-20 14:04:32-07:00", "end_time":"2019-04-20 14:04:32-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.037471622, "start_long":-101.9085482369, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.037471622, "end_long":-101.9085482369, "id":"places_27423" }, { "start_time":"2019-04-20 17:58:49-07:00", "end_time":"2019-04-20 17:58:49-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375025582, "start_long":-101.9086103024, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375025582, "end_long":-101.9086103024, "id":"places_27424" }, { "start_time":"2019-04-20 17:58:54-07:00", "end_time":"2019-04-20 17:58:54-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374793614, "start_long":-101.9086024986, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374793614, "end_long":-101.9086024986, "id":"places_27425" }, { "start_time":"2019-04-21 10:33:26-07:00", "end_time":"2019-04-21 10:33:26-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0376662128, "start_long":-101.9086255236, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0376662128, "end_long":-101.9086255236, "id":"places_27426" }, { "start_time":"2019-04-21 11:39:34-07:00", "end_time":"2019-04-21 11:39:34-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0373257755, "start_long":-101.9088371497, "end_address":"2964, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0373257755, "end_long":-101.9088371497, "id":"places_27427" }, { "start_time":"2019-04-21 11:39:50-07:00", "end_time":"2019-04-21 11:39:50-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.037473039, "start_long":-101.9085968846, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.037473039, "end_long":-101.9085968846, "id":"places_27428" }, { "start_time":"2019-04-21 11:41:20-07:00", "end_time":"2019-04-21 11:41:20-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374467829, "start_long":-101.9086780142, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374467829, "end_long":-101.9086780142, "id":"places_27429" }, { "start_time":"2019-04-21 11:41:39-07:00", "end_time":"2019-04-21 11:41:39-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374539105, "start_long":-101.908582608, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374539105, "end_long":-101.908582608, "id":"places_27430" }, { "start_time":"2019-04-22 19:13:15-07:00", "end_time":"2019-04-22 19:13:15-07:00", "textDescription":"Exploring Randall County, Texas", "start_address":"Myatt Drive, Randall County, Texas, 79119, United States", "start_lat":35.0991566711, "start_long":-101.952156822, "end_address":"Myatt Drive, Randall County, Texas, 79119, United States", "end_lat":35.0991566711, "end_long":-101.952156822, "id":"places_27431" }, { "start_time":"2019-04-22 19:24:01-07:00", "end_time":"2019-04-22 19:24:01-07:00", "textDescription":"Exploring Randall County, Texas", "start_address":"Myatt Drive, Randall County, Texas, 79119, United States", "start_lat":35.0991566711, "start_long":-101.952156822, "end_address":"Myatt Drive, Randall County, Texas, 79119, United States", "end_lat":35.0991566711, "end_long":-101.952156822, "id":"places_27432" }, { "start_time":"2019-04-23 08:14:56-07:00", "end_time":"2019-04-23 08:14:56-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375636898, "start_long":-101.9086182994, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375636898, "end_long":-101.9086182994, "id":"places_27433" }, { "start_time":"2019-04-23 08:14:55-07:00", "end_time":"2019-04-23 08:14:55-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0375636898, "start_long":-101.9086182994, "end_address":"2968, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0375636898, "end_long":-101.9086182994, "id":"places_27434" }, { "start_time":"2019-04-23 09:58:20-07:00", "end_time":"2019-04-23 09:58:20-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374432192, "start_long":-101.9085861718, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374432192, "end_long":-101.9085861718, "id":"places_27435" }, { "start_time":"2019-04-23 12:25:08-07:00", "end_time":"2019-04-23 12:25:08-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374584189, "start_long":-101.9085732906, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374584189, "end_long":-101.9085732906, "id":"places_27436" }, { "start_time":"2019-04-24 18:32:53-07:00", "end_time":"2019-04-24 18:32:53-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0619556, "start_long":-112.1084528, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0619556, "end_long":-112.1084528, "id":"places_27437" }, { "start_time":"2019-04-24 18:35:19-07:00", "end_time":"2019-04-24 18:35:19-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.062175, "start_long":-112.1088944, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.062175, "end_long":-112.1088944, "id":"places_27438" }, { "start_time":"2019-04-24 18:35:28-07:00", "end_time":"2019-04-24 18:35:28-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0621722, "start_long":-112.1088861, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0621722, "end_long":-112.1088861, "id":"places_27439" }, { "start_time":"2019-04-24 18:35:38-07:00", "end_time":"2019-04-24 18:35:38-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0621722, "start_long":-112.1088778, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0621722, "end_long":-112.1088778, "id":"places_27440" }, { "start_time":"2019-04-24 18:40:38-07:00", "end_time":"2019-04-24 18:40:38-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0621389, "start_long":-112.1088639, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0621389, "end_long":-112.1088639, "id":"places_27441" }, { "start_time":"2019-04-24 18:40:41-07:00", "end_time":"2019-04-24 18:40:41-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0621417, "start_long":-112.1088722, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0621417, "end_long":-112.1088722, "id":"places_27442" }, { "start_time":"2019-04-24 18:41:36-07:00", "end_time":"2019-04-24 18:41:36-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0621722, "start_long":-112.1088861, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0621722, "end_long":-112.1088861, "id":"places_27443" }, { "start_time":"2019-04-24 18:41:41-07:00", "end_time":"2019-04-24 18:41:41-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.062175, "start_long":-112.1088778, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.062175, "end_long":-112.1088778, "id":"places_27444" }, { "start_time":"2019-04-24 18:41:43-07:00", "end_time":"2019-04-24 18:41:43-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.062175, "start_long":-112.1088778, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.062175, "end_long":-112.1088778, "id":"places_27445" }, { "start_time":"2019-04-24 18:41:46-07:00", "end_time":"2019-04-24 18:41:46-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.062175, "start_long":-112.1088778, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.062175, "end_long":-112.1088778, "id":"places_27446" }, { "start_time":"2019-04-24 18:43:55-07:00", "end_time":"2019-04-24 18:43:55-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.062125, "start_long":-112.1087889, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.062125, "end_long":-112.1087889, "id":"places_27447" }, { "start_time":"2019-04-24 18:45:25-07:00", "end_time":"2019-04-24 18:45:25-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0620833, "start_long":-112.1088639, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0620833, "end_long":-112.1088639, "id":"places_27448" }, { "start_time":"2019-04-24 18:50:35-07:00", "end_time":"2019-04-24 18:50:35-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Grand Canyon, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0629583, "start_long":-112.1095972, "end_address":"Grand Canyon, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0629583, "end_long":-112.1095972, "id":"places_27449" }, { "start_time":"2019-04-24 18:52:17-07:00", "end_time":"2019-04-24 18:52:17-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0626, "start_long":-112.1107639, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0626, "end_long":-112.1107639, "id":"places_27450" }, { "start_time":"2019-04-24 18:52:16-07:00", "end_time":"2019-04-24 18:52:16-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0626, "start_long":-112.1107639, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0626, "end_long":-112.1107639, "id":"places_27451" }, { "start_time":"2019-04-24 18:55:48-07:00", "end_time":"2019-04-24 18:55:48-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0632028, "start_long":-112.1114972, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0632028, "end_long":-112.1114972, "id":"places_27452" }, { "start_time":"2019-04-24 18:55:59-07:00", "end_time":"2019-04-24 18:55:59-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0633083, "start_long":-112.1118083, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0633083, "end_long":-112.1118083, "id":"places_27453" }, { "start_time":"2019-04-24 18:59:17-07:00", "end_time":"2019-04-24 18:59:17-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0632556, "start_long":-112.1116944, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0632556, "end_long":-112.1116944, "id":"places_27454" }, { "start_time":"2019-04-24 18:59:23-07:00", "end_time":"2019-04-24 18:59:23-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0632556, "start_long":-112.1116944, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0632556, "end_long":-112.1116944, "id":"places_27455" }, { "start_time":"2019-04-24 18:59:30-07:00", "end_time":"2019-04-24 18:59:30-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0632556, "start_long":-112.1116944, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0632556, "end_long":-112.1116944, "id":"places_27456" }, { "start_time":"2019-04-24 19:06:22-07:00", "end_time":"2019-04-24 19:06:22-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0645306, "start_long":-112.1132667, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0645306, "end_long":-112.1132667, "id":"places_27457" }, { "start_time":"2019-04-24 19:07:27-07:00", "end_time":"2019-04-24 19:07:27-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0644083, "start_long":-112.1134722, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0644083, "end_long":-112.1134722, "id":"places_27458" }, { "start_time":"2019-04-24 19:10:19-07:00", "end_time":"2019-04-24 19:10:19-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0649139, "start_long":-112.1152111, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0649139, "end_long":-112.1152111, "id":"places_27459" }, { "start_time":"2019-04-24 19:10:24-07:00", "end_time":"2019-04-24 19:10:24-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0649139, "start_long":-112.1152111, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0649139, "end_long":-112.1152111, "id":"places_27460" }, { "start_time":"2019-04-24 19:13:51-07:00", "end_time":"2019-04-24 19:13:51-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.065675, "start_long":-112.1167972, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.065675, "end_long":-112.1167972, "id":"places_27461" }, { "start_time":"2019-04-24 19:13:55-07:00", "end_time":"2019-04-24 19:13:55-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.065675, "start_long":-112.1167972, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.065675, "end_long":-112.1167972, "id":"places_27462" }, { "start_time":"2019-04-24 19:15:23-07:00", "end_time":"2019-04-24 19:15:23-07:00", "textDescription":"Exploring Yavapai Lodge Road", "start_address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0595167, "start_long":-112.11605, "end_address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0595167, "end_long":-112.11605, "id":"places_27463" }, { "start_time":"2019-04-24 19:16:48-07:00", "end_time":"2019-04-24 19:16:48-07:00", "textDescription":"Exploring Arizona's Geology at Yavapai Museum", "start_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0662472, "start_long":-112.1172556, "end_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0662472, "end_long":-112.1172556, "id":"places_27464" }, { "start_time":"2019-04-24 19:16:52-07:00", "end_time":"2019-04-24 19:16:52-07:00", "textDescription":"Exploring Arizona's Geology at Yavapai Museum", "start_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0662167, "start_long":-112.1172472, "end_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0662167, "end_long":-112.1172472, "id":"places_27465" }, { "start_time":"2019-04-24 19:16:56-07:00", "end_time":"2019-04-24 19:16:56-07:00", "textDescription":"Exploring Arizona's Geology at Yavapai Museum", "start_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0662167, "start_long":-112.1172472, "end_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0662167, "end_long":-112.1172472, "id":"places_27466" }, { "start_time":"2019-04-24 19:16:59-07:00", "end_time":"2019-04-24 19:16:59-07:00", "textDescription":"Exploring Arizona's Geology at Yavapai Museum", "start_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0662167, "start_long":-112.1172472, "end_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0662167, "end_long":-112.1172472, "id":"places_27467" }, { "start_time":"2019-04-24 19:17:03-07:00", "end_time":"2019-04-24 19:17:03-07:00", "textDescription":"Exploring Arizona's Geology at Yavapai Museum", "start_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0662167, "start_long":-112.1172472, "end_address":"Yavapai Geology Museum, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0662167, "end_long":-112.1172472, "id":"places_27468" }, { "start_time":"2019-04-24 19:19:38-07:00", "end_time":"2019-04-24 19:19:38-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659667, "start_long":-112.1167917, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659667, "end_long":-112.1167917, "id":"places_27469" }, { "start_time":"2019-04-24 19:19:40-07:00", "end_time":"2019-04-24 19:19:40-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659611, "start_long":-112.1167972, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659611, "end_long":-112.1167972, "id":"places_27470" }, { "start_time":"2019-04-24 19:19:44-07:00", "end_time":"2019-04-24 19:19:44-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659611, "start_long":-112.1167972, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659611, "end_long":-112.1167972, "id":"places_27471" }, { "start_time":"2019-04-24 19:19:51-07:00", "end_time":"2019-04-24 19:19:51-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659611, "start_long":-112.1167972, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659611, "end_long":-112.1167972, "id":"places_27472" }, { "start_time":"2019-04-24 19:20:08-07:00", "end_time":"2019-04-24 19:20:08-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27473" }, { "start_time":"2019-04-24 19:20:16-07:00", "end_time":"2019-04-24 19:20:16-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27474" }, { "start_time":"2019-04-24 19:20:19-07:00", "end_time":"2019-04-24 19:20:19-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27475" }, { "start_time":"2019-04-24 19:20:25-07:00", "end_time":"2019-04-24 19:20:25-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27476" }, { "start_time":"2019-04-24 19:20:32-07:00", "end_time":"2019-04-24 19:20:32-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27477" }, { "start_time":"2019-04-24 19:20:35-07:00", "end_time":"2019-04-24 19:20:35-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27478" }, { "start_time":"2019-04-24 19:20:37-07:00", "end_time":"2019-04-24 19:20:37-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27479" }, { "start_time":"2019-04-24 19:20:39-07:00", "end_time":"2019-04-24 19:20:39-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27480" }, { "start_time":"2019-04-24 19:20:40-07:00", "end_time":"2019-04-24 19:20:40-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27481" }, { "start_time":"2019-04-24 19:21:41-07:00", "end_time":"2019-04-24 19:21:41-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0658417, "start_long":-112.1168139, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0658417, "end_long":-112.1168139, "id":"places_27482" }, { "start_time":"2019-04-24 19:21:48-07:00", "end_time":"2019-04-24 19:21:48-07:00", "textDescription":"Exploring Yavapai Point, Grand Canyon", "start_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0659556, "start_long":-112.1167833, "end_address":"Yavapai Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0659556, "end_long":-112.1167833, "id":"places_27483" }, { "start_time":"2019-04-25 05:37:52-07:00", "end_time":"2019-04-25 05:37:52-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0602028, "start_long":-112.1063833, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0602028, "end_long":-112.1063833, "id":"places_27484" }, { "start_time":"2019-04-25 05:39:19-07:00", "end_time":"2019-04-25 05:39:19-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0610167, "start_long":-112.1069806, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0610167, "end_long":-112.1069806, "id":"places_27485" }, { "start_time":"2019-04-25 05:41:32-07:00", "end_time":"2019-04-25 05:41:32-07:00", "textDescription":"Exploring Yavapai Lodge Road", "start_address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0591917, "start_long":-112.1162806, "end_address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0591917, "end_long":-112.1162806, "id":"places_27486" }, { "start_time":"2019-04-25 05:42:07-07:00", "end_time":"2019-04-25 05:42:07-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0602083, "start_long":-112.1066889, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0602083, "end_long":-112.1066889, "id":"places_27487" }, { "start_time":"2019-04-25 05:42:46-07:00", "end_time":"2019-04-25 05:42:46-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601472, "start_long":-112.1066972, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601472, "end_long":-112.1066972, "id":"places_27488" }, { "start_time":"2019-04-25 05:42:53-07:00", "end_time":"2019-04-25 05:42:53-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601778, "start_long":-112.1067194, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601778, "end_long":-112.1067194, "id":"places_27489" }, { "start_time":"2019-04-25 05:43:32-07:00", "end_time":"2019-04-25 05:43:32-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601167, "start_long":-112.1067361, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601167, "end_long":-112.1067361, "id":"places_27490" }, { "start_time":"2019-04-25 05:43:36-07:00", "end_time":"2019-04-25 05:43:36-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601278, "start_long":-112.1067583, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601278, "end_long":-112.1067583, "id":"places_27491" }, { "start_time":"2019-04-25 05:43:42-07:00", "end_time":"2019-04-25 05:43:42-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601722, "start_long":-112.1067111, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601722, "end_long":-112.1067111, "id":"places_27492" }, { "start_time":"2019-04-25 05:43:47-07:00", "end_time":"2019-04-25 05:43:47-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601667, "start_long":-112.1067056, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601667, "end_long":-112.1067056, "id":"places_27493" }, { "start_time":"2019-04-25 05:43:52-07:00", "end_time":"2019-04-25 05:43:52-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601667, "start_long":-112.1067056, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601667, "end_long":-112.1067056, "id":"places_27494" }, { "start_time":"2019-04-25 05:44:01-07:00", "end_time":"2019-04-25 05:44:01-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601667, "start_long":-112.1066806, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601667, "end_long":-112.1066806, "id":"places_27495" }, { "start_time":"2019-04-25 05:44:16-07:00", "end_time":"2019-04-25 05:44:16-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601722, "start_long":-112.106675, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601722, "end_long":-112.106675, "id":"places_27496" }, { "start_time":"2019-04-25 05:44:18-07:00", "end_time":"2019-04-25 05:44:18-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601722, "start_long":-112.106675, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601722, "end_long":-112.106675, "id":"places_27497" }, { "start_time":"2019-04-25 05:44:23-07:00", "end_time":"2019-04-25 05:44:23-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601722, "start_long":-112.106675, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601722, "end_long":-112.106675, "id":"places_27498" }, { "start_time":"2019-04-25 05:45:05-07:00", "end_time":"2019-04-25 05:45:05-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0601472, "start_long":-112.106575, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0601472, "end_long":-112.106575, "id":"places_27499" }, { "start_time":"2019-04-25 05:46:17-07:00", "end_time":"2019-04-25 05:46:17-07:00", "textDescription":"Exploring Yavapai Lodge Road", "start_address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0592583, "start_long":-112.1160139, "end_address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0592583, "end_long":-112.1160139, "id":"places_27500" }, { "start_time":"2019-04-25 05:46:26-07:00", "end_time":"2019-04-25 05:46:26-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0603056, "start_long":-112.1064694, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0603056, "end_long":-112.1064694, "id":"places_27501" }, { "start_time":"2019-04-25 05:47:17-07:00", "end_time":"2019-04-25 05:47:17-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0602528, "start_long":-112.1067361, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0602528, "end_long":-112.1067361, "id":"places_27502" }, { "start_time":"2019-04-25 05:47:39-07:00", "end_time":"2019-04-25 05:47:39-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0602917, "start_long":-112.106575, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0602917, "end_long":-112.106575, "id":"places_27503" }, { "start_time":"2019-04-25 05:47:50-07:00", "end_time":"2019-04-25 05:47:50-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0602917, "start_long":-112.106575, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0602917, "end_long":-112.106575, "id":"places_27504" }, { "start_time":"2019-04-25 05:47:49-07:00", "end_time":"2019-04-25 05:47:49-07:00", "textDescription":"Exploring Mather Point", "start_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0602917, "start_long":-112.106575, "end_address":"Mather Point Amphitheatre, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0602917, "end_long":-112.106575, "id":"places_27505" }, { "start_time":"2019-04-25 05:54:16-07:00", "end_time":"2019-04-25 05:54:16-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0616194, "start_long":-112.1087111, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0616194, "end_long":-112.1087111, "id":"places_27506" }, { "start_time":"2019-04-25 05:54:36-07:00", "end_time":"2019-04-25 05:54:36-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0616417, "start_long":-112.1086056, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0616417, "end_long":-112.1086056, "id":"places_27507" }, { "start_time":"2019-04-25 05:59:41-07:00", "end_time":"2019-04-25 05:59:41-07:00", "textDescription":"Exploring Mather Point, Grand Canyon", "start_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0623139, "start_long":-112.1087639, "end_address":"Mather Point, Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0623139, "end_long":-112.1087639, "id":"places_27508" }, { "start_time":"2019-04-25 06:10:13-07:00", "end_time":"2019-04-25 06:10:13-07:00", "textDescription":"Exploring Yavapai Lodge Road", "start_address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0593028, "start_long":-112.1160444, "end_address":"Yavapai East 7451-7483, Yavapai Lodge Road, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0593028, "end_long":-112.1160444, "id":"places_27509" }, { "start_time":"2019-04-25 06:40:46-07:00", "end_time":"2019-04-25 06:40:46-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0647917, "start_long":-112.1226056, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0647917, "end_long":-112.1226056, "id":"places_27510" }, { "start_time":"2019-04-25 06:43:27-07:00", "end_time":"2019-04-25 06:43:27-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0648639, "start_long":-112.1224361, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0648639, "end_long":-112.1224361, "id":"places_27511" }, { "start_time":"2019-04-25 07:03:31-07:00", "end_time":"2019-04-25 07:03:31-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0581694, "start_long":-112.1264333, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0581694, "end_long":-112.1264333, "id":"places_27512" }, { "start_time":"2019-04-25 07:21:47-07:00", "end_time":"2019-04-25 07:21:47-07:00", "textDescription":"\"Exploring the Grand Canyon\"", "start_address":"1.5 Mile Resthouse, Bright Angel Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0590972, "start_long":-112.1394972, "end_address":"1.5 Mile Resthouse, Bright Angel Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0590972, "end_long":-112.1394972, "id":"places_27513" }, { "start_time":"2019-04-25 07:27:41-07:00", "end_time":"2019-04-25 07:27:41-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0573194, "start_long":-112.1321556, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0573194, "end_long":-112.1321556, "id":"places_27514" }, { "start_time":"2019-04-25 07:27:43-07:00", "end_time":"2019-04-25 07:27:43-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0573194, "start_long":-112.1321556, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0573194, "end_long":-112.1321556, "id":"places_27515" }, { "start_time":"2019-04-25 08:54:45-07:00", "end_time":"2019-04-25 08:54:45-07:00", "textDescription":"Exploring the Grand Canyon", "start_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "start_lat":36.0630694, "start_long":-112.1239611, "end_address":"Rim Trail, Grand Canyon Village, Coconino County, Arizona, United States", "end_lat":36.0630694, "end_long":-112.1239611, "id":"places_27516" }, { "start_time":"2019-04-25 14:37:44-07:00", "end_time":"2019-04-25 14:37:44-07:00", "textDescription":"Exploring Uptown Sedona", "start_address":"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8663222, "start_long":-111.7747278, "end_address":"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8663222, "end_long":-111.7747278, "id":"places_27517" }, { "start_time":"2019-04-25 14:37:52-07:00", "end_time":"2019-04-25 14:37:52-07:00", "textDescription":"Exploring Uptown Sedona", "start_address":"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8663361, "start_long":-111.7747333, "end_address":"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8663361, "end_long":-111.7747333, "id":"places_27518" }, { "start_time":"2019-04-25 14:37:59-07:00", "end_time":"2019-04-25 14:37:59-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8665778, "start_long":-111.7748806, "end_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8665778, "end_long":-111.7748806, "id":"places_27519" }, { "start_time":"2019-04-25 14:38:09-07:00", "end_time":"2019-04-25 14:38:09-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8666417, "start_long":-111.7748333, "end_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8666417, "end_long":-111.7748333, "id":"places_27520" }, { "start_time":"2019-04-25 14:38:15-07:00", "end_time":"2019-04-25 14:38:15-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8666528, "start_long":-111.774825, "end_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8666528, "end_long":-111.774825, "id":"places_27521" }, { "start_time":"2019-04-25 14:38:48-07:00", "end_time":"2019-04-25 14:38:48-07:00", "textDescription":"Exploring Uptown Sedona", "start_address":"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8663472, "start_long":-111.7747417, "end_address":"AZ 89A, Uptown Sedona, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8663472, "end_long":-111.7747417, "id":"places_27522" }, { "start_time":"2019-04-25 14:39:05-07:00", "end_time":"2019-04-25 14:39:05-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8665167, "start_long":-111.7749417, "end_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8665167, "end_long":-111.7749417, "id":"places_27523" }, { "start_time":"2019-04-25 14:49:04-07:00", "end_time":"2019-04-25 14:49:04-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8666611, "start_long":-111.7749722, "end_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8666611, "end_long":-111.7749722, "id":"places_27524" }, { "start_time":"2019-04-25 14:49:31-07:00", "end_time":"2019-04-25 14:49:31-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8664667, "start_long":-111.77485, "end_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8664667, "end_long":-111.77485, "id":"places_27525" }, { "start_time":"2019-04-25 14:49:33-07:00", "end_time":"2019-04-25 14:49:33-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8664583, "start_long":-111.7748556, "end_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8664583, "end_long":-111.7748556, "id":"places_27526" }, { "start_time":"2019-04-25 14:49:34-07:00", "end_time":"2019-04-25 14:49:34-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8664583, "start_long":-111.7748556, "end_address":"Crusty, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8664583, "end_long":-111.7748556, "id":"places_27527" }, { "start_time":"2019-04-25 17:54:13-07:00", "end_time":"2019-04-25 17:54:13-07:00", "textDescription":"Sedona Airport View", "start_address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8535194, "start_long":-111.7898167, "end_address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8535194, "end_long":-111.7898167, "id":"places_27528" }, { "start_time":"2019-04-25 18:01:35-07:00", "end_time":"2019-04-25 18:01:35-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8540111, "start_long":-111.7882222, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8540111, "end_long":-111.7882222, "id":"places_27529" }, { "start_time":"2019-04-25 18:03:14-07:00", "end_time":"2019-04-25 18:03:14-07:00", "textDescription":"Exploring Oak Creek Dev No. 1, Sedona", "start_address":"322, Oak Creek Boulevard, Oak Creek Dev No. 1, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8590389, "start_long":-111.7877972, "end_address":"322, Oak Creek Boulevard, Oak Creek Dev No. 1, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8590389, "end_long":-111.7877972, "id":"places_27530" }, { "start_time":"2019-04-25 18:15:41-07:00", "end_time":"2019-04-25 18:15:41-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8551111, "start_long":-111.7809833, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8551111, "end_long":-111.7809833, "id":"places_27531" }, { "start_time":"2019-04-25 18:22:55-07:00", "end_time":"2019-04-25 18:22:55-07:00", "textDescription":"Exploring Sedona, Arizona", "start_address":"Brewer Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8564722, "start_long":-111.7794333, "end_address":"Brewer Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8564722, "end_long":-111.7794333, "id":"places_27532" }, { "start_time":"2019-04-25 18:24:57-07:00", "end_time":"2019-04-25 18:24:57-07:00", "textDescription":"\"Exploring Sedona's Airport Mesa Viewpoint\"", "start_address":"Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8558583, "start_long":-111.779075, "end_address":"Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8558583, "end_long":-111.779075, "id":"places_27533" }, { "start_time":"2019-04-25 18:25:06-07:00", "end_time":"2019-04-25 18:25:06-07:00", "textDescription":"\"Exploring Sedona's Airport Mesa Viewpoint\"", "start_address":"Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8558528, "start_long":-111.7791056, "end_address":"Airport Mesa Viewpoint, Summit Trail, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8558528, "end_long":-111.7791056, "id":"places_27534" }, { "start_time":"2019-04-25 18:42:55-07:00", "end_time":"2019-04-25 18:42:55-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"2, Emblem Place, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8613389, "start_long":-111.7809306, "end_address":"2, Emblem Place, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8613389, "end_long":-111.7809306, "id":"places_27535" }, { "start_time":"2019-04-25 18:43:03-07:00", "end_time":"2019-04-25 18:43:03-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.854675, "start_long":-111.7834917, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.854675, "end_long":-111.7834917, "id":"places_27536" }, { "start_time":"2019-04-25 18:43:05-07:00", "end_time":"2019-04-25 18:43:05-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8546306, "start_long":-111.7835833, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8546306, "end_long":-111.7835833, "id":"places_27537" }, { "start_time":"2019-04-25 18:43:14-07:00", "end_time":"2019-04-25 18:43:14-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8546972, "start_long":-111.7836083, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8546972, "end_long":-111.7836083, "id":"places_27538" }, { "start_time":"2019-04-25 18:43:22-07:00", "end_time":"2019-04-25 18:43:22-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8546778, "start_long":-111.7836, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8546778, "end_long":-111.7836, "id":"places_27539" }, { "start_time":"2019-04-25 18:43:39-07:00", "end_time":"2019-04-25 18:43:39-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8546833, "start_long":-111.7836389, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8546833, "end_long":-111.7836389, "id":"places_27540" }, { "start_time":"2019-04-25 18:43:43-07:00", "end_time":"2019-04-25 18:43:43-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8546667, "start_long":-111.7836528, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8546667, "end_long":-111.7836528, "id":"places_27541" }, { "start_time":"2019-04-25 18:43:58-07:00", "end_time":"2019-04-25 18:43:58-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8546528, "start_long":-111.7836528, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8546528, "end_long":-111.7836528, "id":"places_27542" }, { "start_time":"2019-04-25 18:44:04-07:00", "end_time":"2019-04-25 18:44:04-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8546722, "start_long":-111.7836444, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8546722, "end_long":-111.7836444, "id":"places_27543" }, { "start_time":"2019-04-26 00:48:52+00:00", "end_time":"2019-04-26 00:48:52+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27544" }, { "start_time":"2019-04-25 18:53:16-07:00", "end_time":"2019-04-25 18:53:16-07:00", "textDescription":"Exploring Sedona's Airport Loop Trail", "start_address":"Airport Loop Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8557583, "start_long":-111.7853917, "end_address":"Airport Loop Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8557583, "end_long":-111.7853917, "id":"places_27545" }, { "start_time":"2019-04-25 18:56:35-07:00", "end_time":"2019-04-25 18:56:35-07:00", "textDescription":"Sedona Airport, Arizona", "start_address":"Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8538778, "start_long":-111.7857056, "end_address":"Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8538778, "end_long":-111.7857056, "id":"places_27546" }, { "start_time":"2019-04-25 18:56:37-07:00", "end_time":"2019-04-25 18:56:37-07:00", "textDescription":"Sedona Airport, Arizona", "start_address":"Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8538778, "start_long":-111.7857056, "end_address":"Sedona Airport, 235, Air Terminal Drive, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8538778, "end_long":-111.7857056, "id":"places_27547" }, { "start_time":"2019-04-25 19:01:34-07:00", "end_time":"2019-04-25 19:01:34-07:00", "textDescription":"Exploring Sedona, AZ", "start_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "start_lat":34.8537222, "start_long":-111.7884833, "end_address":"Sedona View Trail, Sedona, Sedona City Limit, Arizona, 86336, United States", "end_lat":34.8537222, "end_long":-111.7884833, "id":"places_27548" }, { "start_time":"2019-04-25 19:08:31-07:00", "end_time":"2019-04-25 19:08:31-07:00", "textDescription":"Sedona Airport View", "start_address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8535111, "start_long":-111.7897722, "end_address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8535111, "end_long":-111.7897722, "id":"places_27549" }, { "start_time":"2019-04-25 19:08:41-07:00", "end_time":"2019-04-25 19:08:41-07:00", "textDescription":"Sedona Airport View", "start_address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8535278, "start_long":-111.7897861, "end_address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8535278, "end_long":-111.7897861, "id":"places_27550" }, { "start_time":"2019-04-25 19:08:56-07:00", "end_time":"2019-04-25 19:08:56-07:00", "textDescription":"Sedona Airport View", "start_address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8535167, "start_long":-111.7897806, "end_address":"Sedona Airport Overlook, Airport Road, Copper Vista Estates, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8535167, "end_long":-111.7897806, "id":"places_27551" }, { "start_time":"2019-04-26 10:38:22-07:00", "end_time":"2019-04-26 10:38:22-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8645056, "start_long":-111.8129417, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8645056, "end_long":-111.8129417, "id":"places_27552" }, { "start_time":"2019-04-26 10:38:48-07:00", "end_time":"2019-04-26 10:38:48-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8646778, "start_long":-111.8129417, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8646778, "end_long":-111.8129417, "id":"places_27553" }, { "start_time":"2019-04-26 10:38:51-07:00", "end_time":"2019-04-26 10:38:51-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8647, "start_long":-111.8129194, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8647, "end_long":-111.8129194, "id":"places_27554" }, { "start_time":"2019-04-26 10:39:19-07:00", "end_time":"2019-04-26 10:39:19-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.864625, "start_long":-111.8128972, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.864625, "end_long":-111.8128972, "id":"places_27555" }, { "start_time":"2019-04-26 10:39:24-07:00", "end_time":"2019-04-26 10:39:24-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8645028, "start_long":-111.8129361, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8645028, "end_long":-111.8129361, "id":"places_27556" }, { "start_time":"2019-04-26 10:39:28-07:00", "end_time":"2019-04-26 10:39:28-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8645028, "start_long":-111.8129361, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8645028, "end_long":-111.8129361, "id":"places_27557" }, { "start_time":"2019-04-26 10:39:38-07:00", "end_time":"2019-04-26 10:39:38-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8645056, "start_long":-111.8129417, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8645056, "end_long":-111.8129417, "id":"places_27558" }, { "start_time":"2019-04-26 10:39:46-07:00", "end_time":"2019-04-26 10:39:46-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8647083, "start_long":-111.8129583, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8647083, "end_long":-111.8129583, "id":"places_27559" }, { "start_time":"2019-04-26 10:39:48-07:00", "end_time":"2019-04-26 10:39:48-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8647083, "start_long":-111.8129583, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8647083, "end_long":-111.8129583, "id":"places_27560" }, { "start_time":"2019-04-26 10:42:14-07:00", "end_time":"2019-04-26 10:42:14-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8646694, "start_long":-111.8129722, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8646694, "end_long":-111.8129722, "id":"places_27561" }, { "start_time":"2019-04-26 10:43:59-07:00", "end_time":"2019-04-26 10:43:59-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8645028, "start_long":-111.8129417, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8645028, "end_long":-111.8129417, "id":"places_27562" }, { "start_time":"2019-04-26 10:44:02-07:00", "end_time":"2019-04-26 10:44:02-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8645056, "start_long":-111.8129417, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8645056, "end_long":-111.8129417, "id":"places_27563" }, { "start_time":"2019-04-26 10:44:25-07:00", "end_time":"2019-04-26 10:44:25-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.864675, "start_long":-111.8129806, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.864675, "end_long":-111.8129806, "id":"places_27564" }, { "start_time":"2019-04-26 10:44:29-07:00", "end_time":"2019-04-26 10:44:29-07:00", "textDescription":"\"Exploring Sedona, Arizona\"", "start_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "start_lat":34.8646806, "start_long":-111.8129583, "end_address":"Casa Sedona Inn, Hozoni Drive, Southwest Center, Sedona, Yavapai County, Arizona, 86336, United States", "end_lat":34.8646806, "end_long":-111.8129583, "id":"places_27565" }, { "start_time":"2019-04-26 15:57:32-06:00", "end_time":"2019-04-26 15:57:32-06:00", "textDescription":"Exploring Arizona's Western Navajo Agency", "start_address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "start_lat":36.5476611, "start_long":-111.6233278, "end_address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "end_lat":36.5476611, "end_long":-111.6233278, "id":"places_27566" }, { "start_time":"2019-04-26 15:57:35-06:00", "end_time":"2019-04-26 15:57:35-06:00", "textDescription":"Exploring Arizona's Western Navajo Agency", "start_address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "start_lat":36.5475528, "start_long":-111.6231472, "end_address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "end_lat":36.5475528, "end_long":-111.6231472, "id":"places_27567" }, { "start_time":"2019-04-26 15:58:00-06:00", "end_time":"2019-04-26 15:58:00-06:00", "textDescription":"Exploring Arizona's Western Navajo Agency", "start_address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "start_lat":36.5475306, "start_long":-111.6231222, "end_address":"US 89, Western Navajo Agency, Coconino County, Arizona, United States", "end_lat":36.5475306, "end_long":-111.6231222, "id":"places_27568" }, { "start_time":"2019-04-26 16:12:26-06:00", "end_time":"2019-04-26 16:12:26-06:00", "textDescription":"Exploring Bitter Springs, Arizona", "start_address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "start_lat":36.6607028, "start_long":-111.6331472, "end_address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "end_lat":36.6607028, "end_long":-111.6331472, "id":"places_27569" }, { "start_time":"2019-04-26 16:12:25-06:00", "end_time":"2019-04-26 16:12:25-06:00", "textDescription":"Exploring Bitter Springs, Arizona", "start_address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "start_lat":36.6607028, "start_long":-111.6331472, "end_address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "end_lat":36.6607028, "end_long":-111.6331472, "id":"places_27570" }, { "start_time":"2019-04-26 16:12:48-06:00", "end_time":"2019-04-26 16:12:48-06:00", "textDescription":"Exploring Bitter Springs, Arizona", "start_address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "start_lat":36.6607472, "start_long":-111.6335361, "end_address":"US 89, Bitter Springs, Western Navajo Agency, Coconino County, Arizona, United States", "end_lat":36.6607472, "end_long":-111.6335361, "id":"places_27571" }, { "start_time":"2019-04-26 23:24:16+00:00", "end_time":"2019-04-26 23:24:16+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27572" }, { "start_time":"2019-04-26 23:24:21+00:00", "end_time":"2019-04-26 23:24:21+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27573" }, { "start_time":"2019-04-26 23:25:46+00:00", "end_time":"2019-04-26 23:25:46+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27574" }, { "start_time":"2019-04-26 22:25:50+00:00", "end_time":"2019-04-26 22:25:50+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27575" }, { "start_time":"2019-04-26 22:25:49+00:00", "end_time":"2019-04-26 22:25:49+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27576" }, { "start_time":"2019-04-26 22:25:52+00:00", "end_time":"2019-04-26 22:25:52+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27577" }, { "start_time":"2019-04-26 22:25:51+00:00", "end_time":"2019-04-26 22:25:51+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27578" }, { "start_time":"2019-04-26 22:30:00+00:00", "end_time":"2019-04-26 22:30:00+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27579" }, { "start_time":"2019-04-26 22:30:05+00:00", "end_time":"2019-04-26 22:30:05+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27580" }, { "start_time":"2019-04-26 22:30:08+00:00", "end_time":"2019-04-26 22:30:08+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27581" }, { "start_time":"2019-04-26 22:32:01+00:00", "end_time":"2019-04-26 22:32:01+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27582" }, { "start_time":"2019-04-26 22:35:51+00:00", "end_time":"2019-04-26 22:35:51+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27583" }, { "start_time":"2019-04-26 22:46:16+00:00", "end_time":"2019-04-26 22:46:16+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27584" }, { "start_time":"2019-04-26 22:46:21+00:00", "end_time":"2019-04-26 22:46:21+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27586" }, { "start_time":"2019-04-26 22:46:24+00:00", "end_time":"2019-04-26 22:46:24+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27588" }, { "start_time":"2019-04-26 22:47:48+00:00", "end_time":"2019-04-26 22:47:48+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27590" }, { "start_time":"2019-04-26 22:48:26+00:00", "end_time":"2019-04-26 22:48:26+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27592" }, { "start_time":"2019-04-26 23:00:52+00:00", "end_time":"2019-04-26 23:00:52+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27593" }, { "start_time":"2019-04-26 23:08:14+00:00", "end_time":"2019-04-26 23:08:14+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27594" }, { "start_time":"2019-04-26 23:09:12+00:00", "end_time":"2019-04-26 23:09:12+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27595" }, { "start_time":"2019-04-26 23:09:13+00:00", "end_time":"2019-04-26 23:09:13+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27596" }, { "start_time":"2019-04-26 18:03:53-07:00", "end_time":"2019-04-26 18:03:53-07:00", "textDescription":"Exploring Lake Powell Resort", "start_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "start_lat":36.9952778, "start_long":-111.4872667, "end_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "end_lat":36.9952778, "end_long":-111.4872667, "id":"places_27598" }, { "start_time":"2019-04-26 18:04:06-07:00", "end_time":"2019-04-26 18:04:06-07:00", "textDescription":"Exploring Lake Powell Resort", "start_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "start_lat":36.9951667, "start_long":-111.4875333, "end_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "end_lat":36.9951667, "end_long":-111.4875333, "id":"places_27599" }, { "start_time":"2019-04-27 08:00:20-07:00", "end_time":"2019-04-27 08:00:20-07:00", "textDescription":"Exploring Lake Powell Resort", "start_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "start_lat":36.9951528, "start_long":-111.4876111, "end_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "end_lat":36.9951528, "end_long":-111.4876111, "id":"places_27600" }, { "start_time":"2019-04-27 15:32:17+00:00", "end_time":"2019-04-27 15:32:17+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27604" }, { "start_time":"2019-04-27 09:03:39-07:00", "end_time":"2019-04-27 09:03:39-07:00", "textDescription":"Exploring Lake Powell Resort", "start_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "start_lat":36.9949833, "start_long":-111.48645, "end_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "end_lat":36.9949833, "end_long":-111.48645, "id":"places_27605" }, { "start_time":"2019-04-27 09:38:35-07:00", "end_time":"2019-04-27 09:38:35-07:00", "textDescription":"Exploring Lake Powell Resort", "start_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "start_lat":36.9966167, "start_long":-111.4895861, "end_address":"Lake Powell Resort, Wahweap Boulevard, Wahweap, Coconino County, Arizona, United States", "end_lat":36.9966167, "end_long":-111.4895861, "id":"places_27607" }, { "start_time":"2019-04-27 10:38:44-07:00", "end_time":"2019-04-27 10:38:44-07:00", "textDescription":"Exploring Wahweap's Navajo Viewpoint", "start_address":"Navajo Viewpoint, Lake Shore Drive, Wahweap, Coconino County, Arizona, United States", "start_lat":36.9640528, "start_long":-111.4913028, "end_address":"Navajo Viewpoint, Lake Shore Drive, Wahweap, Coconino County, Arizona, United States", "end_lat":36.9640528, "end_long":-111.4913028, "id":"places_27609" }, { "start_time":"2019-04-27 15:47:52-06:00", "end_time":"2019-04-27 15:47:52-06:00", "textDescription":"Exploring Garfield County, Utah", "start_address":"UT-12, Garfield County, Utah, 84764, United States", "start_lat":37.6828944, "start_long":-112.1249611, "end_address":"UT-12, Garfield County, Utah, 84764, United States", "end_lat":37.6828944, "end_long":-112.1249611, "id":"places_27610" }, { "start_time":"2019-04-27 15:48:04-06:00", "end_time":"2019-04-27 15:48:04-06:00", "textDescription":"Exploring Garfield County, Utah", "start_address":"UT-12, Garfield County, Utah, 84764, United States", "start_lat":37.6828833, "start_long":-112.1249861, "end_address":"UT-12, Garfield County, Utah, 84764, United States", "end_lat":37.6828833, "end_long":-112.1249861, "id":"places_27611" }, { "start_time":"2019-04-27 16:17:22-06:00", "end_time":"2019-04-27 16:17:22-06:00", "textDescription":"Tropic, Utah", "start_address":"Tropic, Garfield County, Utah, 84776, United States", "start_lat":37.6216861, "start_long":-112.1092444, "end_address":"Tropic, Garfield County, Utah, 84776, United States", "end_lat":37.6216861, "end_long":-112.1092444, "id":"places_27612" }, { "start_time":"2019-04-27 17:37:11-06:00", "end_time":"2019-04-27 17:37:11-06:00", "textDescription":"\"Sunset Point in Utah\"", "start_address":"Sunset Point, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "start_lat":37.6229361, "start_long":-112.1657472, "end_address":"Sunset Point, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "end_lat":37.6229361, "end_long":-112.1657472, "id":"places_27613" }, { "start_time":"2019-04-27 17:39:13-06:00", "end_time":"2019-04-27 17:39:13-06:00", "textDescription":"Exploring Utah's Navajo Loop Trail", "start_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "start_lat":37.6231083, "start_long":-112.1658944, "end_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "end_lat":37.6231083, "end_long":-112.1658944, "id":"places_27614" }, { "start_time":"2019-04-27 17:39:16-06:00", "end_time":"2019-04-27 17:39:16-06:00", "textDescription":"Exploring Utah's Navajo Loop Trail", "start_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "start_lat":37.6231083, "start_long":-112.1658944, "end_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "end_lat":37.6231083, "end_long":-112.1658944, "id":"places_27615" }, { "start_time":"2019-04-27 17:39:19-06:00", "end_time":"2019-04-27 17:39:19-06:00", "textDescription":"Exploring Utah's Navajo Loop Trail", "start_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "start_lat":37.6231083, "start_long":-112.1658944, "end_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "end_lat":37.6231083, "end_long":-112.1658944, "id":"places_27616" }, { "start_time":"2019-04-27 17:39:22-06:00", "end_time":"2019-04-27 17:39:22-06:00", "textDescription":"Exploring Utah's Navajo Loop Trail", "start_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "start_lat":37.6231083, "start_long":-112.1658944, "end_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "end_lat":37.6231083, "end_long":-112.1658944, "id":"places_27617" }, { "start_time":"2019-04-27 17:39:31-06:00", "end_time":"2019-04-27 17:39:31-06:00", "textDescription":"Exploring Utah's Navajo Loop Trail", "start_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "start_lat":37.6231083, "start_long":-112.1658944, "end_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "end_lat":37.6231083, "end_long":-112.1658944, "id":"places_27618" }, { "start_time":"2019-04-27 17:39:33-06:00", "end_time":"2019-04-27 17:39:33-06:00", "textDescription":"Exploring Utah's Navajo Loop Trail", "start_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "start_lat":37.6231083, "start_long":-112.1658944, "end_address":"Navajo Loop Trailhead, Navajo Loop - Two Bridges Section, Garfield County, Utah, United States", "end_lat":37.6231083, "end_long":-112.1658944, "id":"places_27619" }, { "start_time":"2019-04-27 17:39:41-06:00", "end_time":"2019-04-27 17:39:41-06:00", "textDescription":"Exploring Utah's Rim Trail", "start_address":"Rim Trail, Garfield County, Utah, United States", "start_lat":37.623375, "start_long":-112.1661389, "end_address":"Rim Trail, Garfield County, Utah, United States", "end_lat":37.623375, "end_long":-112.1661389, "id":"places_27620" }, { "start_time":"2019-04-27 17:39:43-06:00", "end_time":"2019-04-27 17:39:43-06:00", "textDescription":"Exploring Utah's Rim Trail", "start_address":"Rim Trail, Garfield County, Utah, United States", "start_lat":37.623375, "start_long":-112.1661389, "end_address":"Rim Trail, Garfield County, Utah, United States", "end_lat":37.623375, "end_long":-112.1661389, "id":"places_27621" }, { "start_time":"2019-04-27 17:45:04-06:00", "end_time":"2019-04-27 17:45:04-06:00", "textDescription":"Exploring Utah's Rim Trail", "start_address":"Rim Trail, Garfield County, Utah, United States", "start_lat":37.6239861, "start_long":-112.1665583, "end_address":"Rim Trail, Garfield County, Utah, United States", "end_lat":37.6239861, "end_long":-112.1665583, "id":"places_27622" }, { "start_time":"2019-04-27 18:00:27-06:00", "end_time":"2019-04-27 18:00:27-06:00", "textDescription":"Exploring Utah's Rim Trail", "start_address":"Rim Trail, Garfield County, Utah, 84764, United States", "start_lat":37.6278444, "start_long":-112.1636722, "end_address":"Rim Trail, Garfield County, Utah, 84764, United States", "end_lat":37.6278444, "end_long":-112.1636722, "id":"places_27623" }, { "start_time":"2019-04-27 18:05:34-06:00", "end_time":"2019-04-27 18:05:34-06:00", "textDescription":"Exploring Utah's Rim Trail", "start_address":"Rim Trail, Garfield County, Utah, 84764, United States", "start_lat":37.6279528, "start_long":-112.1637944, "end_address":"Rim Trail, Garfield County, Utah, 84764, United States", "end_lat":37.6279528, "end_long":-112.1637944, "id":"places_27624" }, { "start_time":"2019-04-27 18:14:23-06:00", "end_time":"2019-04-27 18:14:23-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6279556, "start_long":-112.1632083, "end_address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6279556, "end_long":-112.1632083, "id":"places_27625" }, { "start_time":"2019-04-27 18:18:42-06:00", "end_time":"2019-04-27 18:18:42-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6278583, "start_long":-112.1619861, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6278583, "end_long":-112.1619861, "id":"places_27626" }, { "start_time":"2019-04-27 18:18:47-06:00", "end_time":"2019-04-27 18:18:47-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6278583, "start_long":-112.1619861, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6278583, "end_long":-112.1619861, "id":"places_27627" }, { "start_time":"2019-04-27 18:18:51-06:00", "end_time":"2019-04-27 18:18:51-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6278583, "start_long":-112.1619861, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6278583, "end_long":-112.1619861, "id":"places_27628" }, { "start_time":"2019-04-27 18:20:03-06:00", "end_time":"2019-04-27 18:20:03-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6283389, "start_long":-112.1629639, "end_address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6283389, "end_long":-112.1629639, "id":"places_27629" }, { "start_time":"2019-04-27 18:20:12-06:00", "end_time":"2019-04-27 18:20:12-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6281611, "start_long":-112.1627278, "end_address":"Sunrise Point, Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6281611, "end_long":-112.1627278, "id":"places_27630" }, { "start_time":"2019-04-27 18:27:33-06:00", "end_time":"2019-04-27 18:27:33-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6272861, "start_long":-112.1615222, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6272861, "end_long":-112.1615222, "id":"places_27631" }, { "start_time":"2019-04-27 18:28:52-06:00", "end_time":"2019-04-27 18:28:52-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.627425, "start_long":-112.1611028, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.627425, "end_long":-112.1611028, "id":"places_27632" }, { "start_time":"2019-04-27 18:28:57-06:00", "end_time":"2019-04-27 18:28:57-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6272417, "start_long":-112.1609889, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6272417, "end_long":-112.1609889, "id":"places_27633" }, { "start_time":"2019-04-27 18:28:59-06:00", "end_time":"2019-04-27 18:28:59-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6272972, "start_long":-112.16105, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6272972, "end_long":-112.16105, "id":"places_27634" }, { "start_time":"2019-04-27 18:34:01-06:00", "end_time":"2019-04-27 18:34:01-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.627075, "start_long":-112.1595611, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.627075, "end_long":-112.1595611, "id":"places_27635" }, { "start_time":"2019-04-28 01:43:08+00:00", "end_time":"2019-04-28 01:43:08+00:00", "textDescription":"from Google Photo", "start_address":"Soul Buoy", "start_lat":0.0, "start_long":0.0, "end_address":"Soul Buoy", "end_lat":0.0, "end_long":0.0, "id":"places_27636" }, { "start_time":"2019-04-27 18:43:44-06:00", "end_time":"2019-04-27 18:43:44-06:00", "textDescription":"Tropic, Utah", "start_address":"Tropic Trail, Tropic, Garfield County, Utah, 84776, United States", "start_lat":37.6205056, "start_long":-112.1375417, "end_address":"Tropic Trail, Tropic, Garfield County, Utah, 84776, United States", "end_lat":37.6205056, "end_long":-112.1375417, "id":"places_27637" }, { "start_time":"2019-04-27 18:43:48-06:00", "end_time":"2019-04-27 18:43:48-06:00", "textDescription":"Tropic, Utah", "start_address":"Tropic Trail, Tropic, Garfield County, Utah, 84776, United States", "start_lat":37.6205056, "start_long":-112.1375417, "end_address":"Tropic Trail, Tropic, Garfield County, Utah, 84776, United States", "end_lat":37.6205056, "end_long":-112.1375417, "id":"places_27638" }, { "start_time":"2019-04-27 18:50:14-06:00", "end_time":"2019-04-27 18:50:14-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6254361, "start_long":-112.160675, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6254361, "end_long":-112.160675, "id":"places_27639" }, { "start_time":"2019-04-27 19:13:37-06:00", "end_time":"2019-04-27 19:13:37-06:00", "textDescription":"Exploring Utah's Queen's Garden Trail", "start_address":"Queen's Garden Trail, Garfield County, Utah, United States", "start_lat":37.6269417, "start_long":-112.1591556, "end_address":"Queen's Garden Trail, Garfield County, Utah, United States", "end_lat":37.6269417, "end_long":-112.1591556, "id":"places_27640" }, { "start_time":"2019-04-27 19:34:15-06:00", "end_time":"2019-04-27 19:34:15-06:00", "textDescription":"Exploring Utah's Rim Trail", "start_address":"Rim Trail, Garfield County, Utah, 84764, United States", "start_lat":37.6267389, "start_long":-112.1653222, "end_address":"Rim Trail, Garfield County, Utah, 84764, United States", "end_lat":37.6267389, "end_long":-112.1653222, "id":"places_27641" }, { "start_time":"2019-04-29 11:49:07-07:00", "end_time":"2019-04-29 11:49:07-07:00", "textDescription":"\"Texas Home on Greg Street\"", "start_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "start_lat":35.0374530195, "start_long":-101.9085906265, "end_address":"2966, Greg Street, Randall County, Texas, 79015, United States", "end_lat":35.0374530195, "end_long":-101.9085906265, "id":"places_27642" } ] ================================================ FILE: sample_data/purchase.sampled.csv ================================================ ,Unnamed: 0,time,purchase_id,productName,productPrice,productQuantity,id 0,0,2019-03-26T16:29:16,114-9774413-4401831,"Dr. Earth 713 Organic 9 Fruit Tree Fertilizer, 12-Pound",22.53,1,purchase_0 1,1,2019-03-26T16:28:27,114-9230659-7782623,"Miracle-Gro Citrus, Avocado, & Mango Food, 20 lb.",15.4,1,purchase_1 2,2,2019-03-25T17:19:27,114-6266024-3403414,"63"" Garden Leaf Rake 38""-63""Adjustable Garden Rake,25 tines, Metal Rake for Quick Clean Up of Lawn and Yard",24.99,1,purchase_2 3,3,2019-03-23T03:42:11,113-3165313-4592212,"Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz",11.97,1,purchase_3 4,4,2019-03-13T20:42:12,111-1445891-6088269,Amazon Basics Ultra Facial Tissue with Lotion18 Cube Boxes - 75 Tissues per Box -1350 Tissues Total (Previously Solimo),28.18,1,purchase_4 5,5,2019-03-13T00:23:01,111-5442007-9815416,ejet Compatible Toner Cartridge Replacement for Brother TN450 TN420 TN-450 TN-420 for HL-2270DW HL-2280DW HL-2230 HL-2240 7360N 7860DW 7065DN Intellif,37.17,1,purchase_5 6,6,2019-03-12T16:59:59,111-1361770-3082640,"Hanes Men's Pocket T-Shirt Pack, Cotton Crewneck Pocket Tees 6-Pack, Moisture-Wicking Cotton T-Shirt Assorted 6-Pack",21.98,1,purchase_6 7,7,2019-03-12T16:59:59,111-1361770-3082640,"Neutrogena Ultra Sheer Dry-Touch Water Resistant and Non-Greasy Sunscreen Lotion with Broad Spectrum SPF 70, 3 Fl Oz (Pack of 1)",8.97,1,purchase_7 8,8,2019-03-10T04:27:17,111-9876254-1557852,100% Natural Boar Bristle Body Brush with Contoured Wooden Handle by TOUCH ME,8.99,1,purchase_8 9,9,2019-03-10T04:27:17,111-9876254-1557852,"Amazon Brand - Solimo 70% Ethyl Rubbing Alcohol First Aid Antiseptic, 16 Fluid Ounces",5.52,1,purchase_9 10,10,2019-03-10T04:27:17,111-9876254-1557852,"Deseret Deals Boy Scout Neckerchief Slide - Metal Kerchief Woggle, for Cub Scouts and Varsity Scouts (2 Pack)",19.99,1,purchase_10 11,11,2019-03-10T04:27:17,111-9876254-1557852,Hiking Pants for Men Convertible Zip Off Boy Scout Quick Dry Lightweight Cargo Travel Safari Pants (ZB02 Army Green 34),35.99,1,purchase_11 12,12,2019-03-10T04:27:17,111-9876254-1557852,"Microfiber Spray Mop for Floor Cleaning, Dry Wet Wood Floor Mop with 3 pcs Washable Pads, Handle Flat Mop with Sprayer for Kitchen Wood Floor Hardwood",22.97,1,purchase_12 13,13,2019-03-10T04:27:17,111-9876254-1557852,"Airbee Plastic Spray Bottles 2 Pack 16 Oz for Cleaning Solutions, Planting, Pet, Bleach Spray, Vinegar, Professional Empty Spraying Bottle, Mist Water",8.96,1,purchase_13 14,14,2019-04-11T03:41:12,111-7390689-1327435,21 Lessons for the 21st Century,11.79,1,purchase_14 15,15,2019-04-11T03:41:12,111-7390689-1327435,"Nudge: Improving Decisions About Health, Wealth, and Happiness",12.49,1,purchase_15 16,16,2019-04-11T03:41:12,111-7390689-1327435,How to Be an Antiracist,16.44,1,purchase_16 17,17,2019-04-11T03:41:12,111-7390689-1327435,"Predictably Irrational, Revised and Expanded Edition: The Hidden Forces That Shape Our Decisions",11.94,1,purchase_17 18,18,2019-04-11T03:41:12,111-7390689-1327435,"Thinking, Fast and Slow",11.29,1,purchase_18 19,19,2019-04-11T03:41:12,111-7390689-1327435,The Ministry for the Future: A Novel,15.39,1,purchase_19 20,20,2019-04-10T02:22:56,111-4069319-6845005,"Oral-B Complete Glide Dental Floss Picks Plus Scope Outlast, Long Lasting Mint, 75 Dental Floss Picks, Pack of 6",23.76,1,purchase_20 21,21,2019-04-05T20:59:13,111-8082401-8049829,The Bitcoin Standard: The Decentralized Alternative to Central Banking,13.89,1,purchase_21 22,22,2019-03-10T20:32:00,111-9918738-6957832,UpNUpCo Artistic Beautiful Anti Fatigue Kitchen Floor Mat - Unique Floor Mats - Pain Relief Padded Kitchen Mats - Floor Mats For In Front Of Sink - Me,19.99,1,purchase_22 23,23,2019-03-03T17:40:07,111-1457767-4937034,Fiskars 46 Inch Steel D-handle Digging Shovel,29.97,1,purchase_23 24,24,2019-04-28T22:57:54,112-4949847-4065019,"AP World History: Modern Premium, 2022-2023: 5 Practice Tests + Comprehensive Review + Online Practice (Barron's Test Prep)",14.99,1,purchase_24 25,25,2019-04-20T04:53:01,114-4078688-0181025,"[3-Pack] European Travel Plug Adapter, VINTAR International Power Adaptor with 2 USB Ports,2 American Outlets- 4 in 1 European Plug Adapter for France",22.45,1,purchase_25 26,26,2019-04-18T22:28:47,112-1562029-2161042,Meta Quest 2 - Advanced All-In-One Virtual Reality Headset - 128 GB,299.0,2,purchase_26 27,27,2019-04-18T02:11:57,112-4032527-4614633,Artizen 30ml Oils - Lavender Essential Oil - 1 Fluid Ounce,6.99,1,purchase_27 28,28,2019-04-18T02:08:21,112-5214073-0001042,"Shea Butter Yellow Smooth | All Natural, 100% Pure- Unrefined | Daily Skin Moisturizer For Face & Body | Softens Tough Skin | Moisturizes Dry Skin | A",5.47,1,purchase_28 29,29,2019-04-18T02:03:55,112-5211954-9884251,"Alternative Imagination 100% Pure Beeswax Bar (1 Ounce), Made in USA",4.25,2,purchase_29 30,30,2019-04-16T18:53:52,112-8690982-3805866,Go Gently: Actionable Steps to Nurture Yourself and the Planet,22.99,1,purchase_30 31,31,2019-03-30T18:03:45,112-4149919-9418639,Joico HydraSplash Hydrating Gelée Masque | Replenish Hydration | Add Shine | For Fine / Medium / Dry Hair,24.5,1,purchase_31 32,32,2019-03-30T18:03:45,112-4149919-9418639,"Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz",11.97,1,purchase_32 33,33,2019-03-30T18:03:45,112-4149919-9418639,Joico HydraSplash Hydrating Conditioner for fine hair 8.5 fl oz,16.58,1,purchase_33 34,34,2019-03-30T18:03:45,112-4149919-9418639,Joico HydraSplash Hydrating Shampoo for fine hair 33.8 fl oz,38.5,1,purchase_34 35,35,2019-03-30T18:03:45,112-5709364-2407456,"Joico Power Spray Fast-Dry Finishing Spray, 9.0 Ounce, New Look",20.5,1,purchase_35 36,36,2019-03-30T18:03:45,112-4149919-9418639,"Joico HydraSplash Replenishing Leave-In | Boost Shine | Reduce Frizz | For Fine/ Medium / Dry Hair, 3.38 Fl Oz (Pack of 1)",24.5,1,purchase_36 37,37,2019-03-27T23:21:18,112-9856985-9905029,Claritin 24 Hour Reditabs - 60 ct,38.94,1,purchase_38 38,38,2019-03-08T03:42:32,111-3592109-1029866,SOTO WindMaster w/ Micro Regulator and 4Flex (One Size),64.95,1,purchase_40 39,39,2019-03-05T04:45:16,111-4543930-8659442,"Portable Electric Space Heater 1500W/750W, Ceramic Room Heater with Tip-Over and Overheat Protection, Heat up 200 Square Feet in Seconds, Safe and Qui",26.95,1,purchase_41 40,40,2019-04-09T17:45:52,113-1313306-9587439,Value Sensitive Design: Shaping Technology with Moral Imagination (The MIT Press),40.0,1,purchase_42 41,41,2019-03-30T17:59:04,113-1730640-2547451,"Anti Fog Spray for Glasses | 600 Pumps, 6 month Supply | Prevents Fog on Windshield, Lenses, Goggles, PPE & VR Headsets | Safe on Anti-Reflective Lens",8.99,1,purchase_43 42,42,2019-03-30T05:26:19,113-3289397-6029011,WD-40 Multi-Use Product Handy Can 3 oz (Pack of 2),9.5,1,purchase_44 43,43,2019-03-24T22:53:23,113-6374827-6976213,Organic Cowboy Boneless Chicken Thighs,10.97,1,purchase_45 44,44,2019-03-24T22:53:23,113-6374827-6976213,Organic Yellow Onion,1.46,1,purchase_46 45,45,2019-03-24T22:53:23,113-6374827-6976213,Bag Refund,0.0,1,purchase_47 46,46,2019-03-24T22:53:23,113-6374827-6976213,Espresso,15.94,1,purchase_48 47,47,2019-03-24T22:53:23,113-6374827-6976213,Donation Bag,0.05,1,purchase_49 48,48,2019-03-24T22:53:23,113-6374827-6976213,Blueberry Greek Yogurt,1.19,3,purchase_50 49,49,2019-03-24T22:53:23,113-6374827-6976213,Organic Ginger Root,1.52,1,purchase_51 50,50,2019-03-24T22:53:23,113-6374827-6976213,Organic Milk,2.99,1,purchase_52 51,51,2019-03-24T22:53:23,113-6374827-6976213,Green Onion,0.89,1,purchase_53 52,52,2019-03-24T22:53:23,113-6374827-6976213,Blueberry Yoghurt,2.29,2,purchase_54 53,53,2019-03-24T22:53:23,113-6374827-6976213,Boneless Skinless Chicken Thighs,9.79,1,purchase_55 54,54,2019-03-23T00:10:31,113-7531419-6094616,Organic Plain Low Fat Yogurt,3.41,1,purchase_56 55,55,2019-03-23T00:10:31,113-7531419-6094616,Jewel Sweet Potato,1.58,1,purchase_57 56,56,2019-03-23T00:10:31,113-7531419-6094616,Blueberry Yoghurt,2.29,2,purchase_58 57,57,2019-03-23T00:10:31,113-7531419-6094616,Vidalia Onion,0.7,1,purchase_59 58,58,2019-03-23T00:10:31,113-7531419-6094616,Organic Spinach Ricotta Ravioli,6.49,1,purchase_60 59,59,2019-03-23T00:10:31,113-7531419-6094616,Butternut Squash,0.89,2,purchase_61 60,60,2019-03-23T00:10:31,113-7531419-6094616,Whole Trade Banana,1.39,1,purchase_62 61,61,2019-03-23T00:10:31,113-7531419-6094616,Organic Milk,4.49,1,purchase_63 62,62,2019-03-23T00:10:31,113-7531419-6094616,Organic Strawberries,4.99,1,purchase_64 63,63,2019-03-23T00:10:31,113-7531419-6094616,Wild Blueberry Overnight Oats,3.49,1,purchase_65 64,64,2019-03-23T00:10:31,113-7531419-6094616,Organic Brown Large Grade A Eggs,3.99,1,purchase_66 65,65,2019-03-23T00:10:31,113-7531419-6094616,Organic Bourbon Whiskey Boneless Chicken Thighs,8.74,1,purchase_67 66,66,2019-03-23T00:10:31,113-7531419-6094616,Supreme Pizza,4.99,2,purchase_68 67,67,2019-03-23T00:10:31,113-7531419-6094616,Smoked Thick Cut Atlantic Salmon,6.99,1,purchase_69 68,68,2019-03-23T00:10:31,113-7531419-6094616,Bacon Cheddar Beef Burger,7.99,2,purchase_70 69,69,2019-03-23T00:10:31,113-7531419-6094616,Cherries,10.2,1,purchase_71 70,70,2019-03-23T00:10:31,113-7531419-6094616,Honey Almond Crunch,3.99,1,purchase_72 71,71,2019-03-23T00:10:31,113-7531419-6094616,Paleo Pancake & Waffle Mix,5.99,1,purchase_73 72,72,2019-03-23T00:10:31,113-7531419-6094616,Orange Cauliflower,3.49,1,purchase_74 73,73,2019-03-23T00:10:31,113-7531419-6094616,Organic Berry Blend,3.99,2,purchase_75 74,74,2019-03-23T00:10:31,113-7531419-6094616,Whipped Unsalted Butter,3.69,1,purchase_76 75,75,2019-03-23T00:10:31,113-7531419-6094616,Pinot Grigio Friuli,9.99,1,purchase_77 76,76,2019-03-23T00:10:31,113-7531419-6094616,Organic Boston Butter Lettuce,1.99,1,purchase_78 77,77,2019-03-23T00:10:31,113-7531419-6094616,Zucchini Squash,0.5,1,purchase_79 78,78,2019-03-23T00:10:31,113-7531419-6094616,Medium Hass Avocado,1.49,9,purchase_80 79,79,2019-03-23T00:10:31,113-7531419-6094616,Organic Low-Fat Cottage Cheese,3.99,1,purchase_81 80,80,2019-03-23T00:10:31,113-7531419-6094616,Herring in Cream Sauce,5.99,1,purchase_82 81,81,2019-03-23T00:10:31,113-7531419-6094616,Organic Baby Gold Beets Bunch,1.99,1,purchase_83 82,82,2019-03-23T00:10:31,113-7531419-6094616,Russet Potato,2.34,1,purchase_84 83,83,2019-03-23T00:10:31,113-7531419-6094616,Peach Yoghurt,2.29,2,purchase_85 84,84,2019-03-23T00:10:31,113-7531419-6094616,Organic Mango Chunks,2.79,2,purchase_86 85,85,2019-03-23T00:10:31,113-7531419-6094616,Sauvignon Blanc,11.99,1,purchase_87 86,86,2019-03-23T00:10:31,113-7531419-6094616,Organic Brussels Sprouts,3.99,1,purchase_88 87,87,2019-03-23T00:10:31,113-7531419-6094616,Sliced Genoa Salami,5.79,1,purchase_89 88,88,2019-03-23T00:10:31,113-7531419-6094616,Organic Cowboy Boneless Chicken Thighs,6.99,2,purchase_90 89,89,2019-03-21T19:50:31,113-1917712-3086608,"Amazon Basics 30% Recycled Multipurpose Copy Printer Paper - 8.5 x 11 Inches, 3 Ream Case (1500 Sheets)",19.99,1,purchase_91 90,90,2019-03-18T05:34:06,113-9805914-6727453,Pudolla Men's Cotton Yoga Sweatpants Athletic Lounge Pants Open Bottom Casual Jersey Pants for Men with Pockets (Olive Medium),28.89,1,purchase_92 91,91,2019-03-13T19:10:03,113-2797013-8844240,"TERRO T300B Liquid Ant Killer, 12 Bait Stations",9.68,2,purchase_93 92,92,2019-03-12T01:19:50,113-2188680-2881009,"BYD CARE KN95 Respirator, 50 Pieces, Breathable & Comfortable Foldable Safety Mask with Ear Loop for Tight Fit, GB2626",26.99,2,purchase_94 93,93,2019-03-06T01:22:33,113-8577782-4677020,"Kate Aspen 9 oz. Stemless Wine Glass (Set of 12)| Kitchen Drinking Glass or DIY Party Favor, Clear, One Size, (30009NA-x12)",26.14,1,purchase_95 94,94,2019-03-04T20:28:21,113-4689134-9648225,"iHealth COVID-19 Antigen Rapid Test, 2 Tests per Pack,FDA EUA Authorized OTC at-Home Self Test, Results in 15 Minutes with Non-invasive Nasal Swab, Ea",17.98,1,purchase_96 ================================================ FILE: sample_data/purchase.sampled.json ================================================ [ { "Unnamed: 0":0, "time":"2019-03-26T16:29:16", "purchase_id":"114-9774413-4401831", "productName":"Dr. Earth 713 Organic 9 Fruit Tree Fertilizer, 12-Pound", "productPrice":22.53, "productQuantity":1, "id":"purchase_0" }, { "Unnamed: 0":1, "time":"2019-03-26T16:28:27", "purchase_id":"114-9230659-7782623", "productName":"Miracle-Gro Citrus, Avocado, & Mango Food, 20 lb.", "productPrice":15.4, "productQuantity":1, "id":"purchase_1" }, { "Unnamed: 0":2, "time":"2019-03-25T17:19:27", "purchase_id":"114-6266024-3403414", "productName":"63\" Garden Leaf Rake 38\"-63\"Adjustable Garden Rake,25 tines, Metal Rake for Quick Clean Up of Lawn and Yard", "productPrice":24.99, "productQuantity":1, "id":"purchase_2" }, { "Unnamed: 0":3, "time":"2019-03-23T03:42:11", "purchase_id":"113-3165313-4592212", "productName":"Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz", "productPrice":11.97, "productQuantity":1, "id":"purchase_3" }, { "Unnamed: 0":4, "time":"2019-03-13T20:42:12", "purchase_id":"111-1445891-6088269", "productName":"Amazon Basics Ultra Facial Tissue with Lotion18 Cube Boxes - 75 Tissues per Box -1350 Tissues Total (Previously Solimo)", "productPrice":28.18, "productQuantity":1, "id":"purchase_4" }, { "Unnamed: 0":5, "time":"2019-03-13T00:23:01", "purchase_id":"111-5442007-9815416", "productName":"ejet Compatible Toner Cartridge Replacement for Brother TN450 TN420 TN-450 TN-420 for HL-2270DW HL-2280DW HL-2230 HL-2240 7360N 7860DW 7065DN Intellif", "productPrice":37.17, "productQuantity":1, "id":"purchase_5" }, { "Unnamed: 0":6, "time":"2019-03-12T16:59:59", "purchase_id":"111-1361770-3082640", "productName":"Hanes Men's Pocket T-Shirt Pack, Cotton Crewneck Pocket Tees 6-Pack, Moisture-Wicking Cotton T-Shirt Assorted 6-Pack", "productPrice":21.98, "productQuantity":1, "id":"purchase_6" }, { "Unnamed: 0":7, "time":"2019-03-12T16:59:59", "purchase_id":"111-1361770-3082640", "productName":"Neutrogena Ultra Sheer Dry-Touch Water Resistant and Non-Greasy Sunscreen Lotion with Broad Spectrum SPF 70, 3 Fl Oz (Pack of 1)", "productPrice":8.97, "productQuantity":1, "id":"purchase_7" }, { "Unnamed: 0":8, "time":"2019-03-10T04:27:17", "purchase_id":"111-9876254-1557852", "productName":"100% Natural Boar Bristle Body Brush with Contoured Wooden Handle by TOUCH ME", "productPrice":8.99, "productQuantity":1, "id":"purchase_8" }, { "Unnamed: 0":9, "time":"2019-03-10T04:27:17", "purchase_id":"111-9876254-1557852", "productName":"Amazon Brand - Solimo 70% Ethyl Rubbing Alcohol First Aid Antiseptic, 16 Fluid Ounces", "productPrice":5.52, "productQuantity":1, "id":"purchase_9" }, { "Unnamed: 0":10, "time":"2019-03-10T04:27:17", "purchase_id":"111-9876254-1557852", "productName":"Deseret Deals Boy Scout Neckerchief Slide - Metal Kerchief Woggle, for Cub Scouts and Varsity Scouts (2 Pack)", "productPrice":19.99, "productQuantity":1, "id":"purchase_10" }, { "Unnamed: 0":11, "time":"2019-03-10T04:27:17", "purchase_id":"111-9876254-1557852", "productName":"Hiking Pants for Men Convertible Zip Off Boy Scout Quick Dry Lightweight Cargo Travel Safari Pants (ZB02 Army Green 34)", "productPrice":35.99, "productQuantity":1, "id":"purchase_11" }, { "Unnamed: 0":12, "time":"2019-03-10T04:27:17", "purchase_id":"111-9876254-1557852", "productName":"Microfiber Spray Mop for Floor Cleaning, Dry Wet Wood Floor Mop with 3 pcs Washable Pads, Handle Flat Mop with Sprayer for Kitchen Wood Floor Hardwood", "productPrice":22.97, "productQuantity":1, "id":"purchase_12" }, { "Unnamed: 0":13, "time":"2019-03-10T04:27:17", "purchase_id":"111-9876254-1557852", "productName":"Airbee Plastic Spray Bottles 2 Pack 16 Oz for Cleaning Solutions, Planting, Pet, Bleach Spray, Vinegar, Professional Empty Spraying Bottle, Mist Water", "productPrice":8.96, "productQuantity":1, "id":"purchase_13" }, { "Unnamed: 0":14, "time":"2019-04-11T03:41:12", "purchase_id":"111-7390689-1327435", "productName":"21 Lessons for the 21st Century", "productPrice":11.79, "productQuantity":1, "id":"purchase_14" }, { "Unnamed: 0":15, "time":"2019-04-11T03:41:12", "purchase_id":"111-7390689-1327435", "productName":"Nudge: Improving Decisions About Health, Wealth, and Happiness", "productPrice":12.49, "productQuantity":1, "id":"purchase_15" }, { "Unnamed: 0":16, "time":"2019-04-11T03:41:12", "purchase_id":"111-7390689-1327435", "productName":"How to Be an Antiracist", "productPrice":16.44, "productQuantity":1, "id":"purchase_16" }, { "Unnamed: 0":17, "time":"2019-04-11T03:41:12", "purchase_id":"111-7390689-1327435", "productName":"Predictably Irrational, Revised and Expanded Edition: The Hidden Forces That Shape Our Decisions", "productPrice":11.94, "productQuantity":1, "id":"purchase_17" }, { "Unnamed: 0":18, "time":"2019-04-11T03:41:12", "purchase_id":"111-7390689-1327435", "productName":"Thinking, Fast and Slow", "productPrice":11.29, "productQuantity":1, "id":"purchase_18" }, { "Unnamed: 0":19, "time":"2019-04-11T03:41:12", "purchase_id":"111-7390689-1327435", "productName":"The Ministry for the Future: A Novel", "productPrice":15.39, "productQuantity":1, "id":"purchase_19" }, { "Unnamed: 0":20, "time":"2019-04-10T02:22:56", "purchase_id":"111-4069319-6845005", "productName":"Oral-B Complete Glide Dental Floss Picks Plus Scope Outlast, Long Lasting Mint, 75 Dental Floss Picks, Pack of 6", "productPrice":23.76, "productQuantity":1, "id":"purchase_20" }, { "Unnamed: 0":21, "time":"2019-04-05T20:59:13", "purchase_id":"111-8082401-8049829", "productName":"The Bitcoin Standard: The Decentralized Alternative to Central Banking", "productPrice":13.89, "productQuantity":1, "id":"purchase_21" }, { "Unnamed: 0":22, "time":"2019-03-10T20:32:00", "purchase_id":"111-9918738-6957832", "productName":"UpNUpCo Artistic Beautiful Anti Fatigue Kitchen Floor Mat - Unique Floor Mats - Pain Relief Padded Kitchen Mats - Floor Mats For In Front Of Sink - Me", "productPrice":19.99, "productQuantity":1, "id":"purchase_22" }, { "Unnamed: 0":23, "time":"2019-03-03T17:40:07", "purchase_id":"111-1457767-4937034", "productName":"Fiskars 46 Inch Steel D-handle Digging Shovel", "productPrice":29.97, "productQuantity":1, "id":"purchase_23" }, { "Unnamed: 0":24, "time":"2019-04-28T22:57:54", "purchase_id":"112-4949847-4065019", "productName":"AP World History: Modern Premium, 2022-2023: 5 Practice Tests + Comprehensive Review + Online Practice (Barron's Test Prep)", "productPrice":14.99, "productQuantity":1, "id":"purchase_24" }, { "Unnamed: 0":25, "time":"2019-04-20T04:53:01", "purchase_id":"114-4078688-0181025", "productName":"[3-Pack] European Travel Plug Adapter, VINTAR International Power Adaptor with 2 USB Ports,2 American Outlets- 4 in 1 European Plug Adapter for France", "productPrice":22.45, "productQuantity":1, "id":"purchase_25" }, { "Unnamed: 0":26, "time":"2019-04-18T22:28:47", "purchase_id":"112-1562029-2161042", "productName":"Meta Quest 2 - Advanced All-In-One Virtual Reality Headset - 128 GB", "productPrice":299.0, "productQuantity":2, "id":"purchase_26" }, { "Unnamed: 0":27, "time":"2019-04-18T02:11:57", "purchase_id":"112-4032527-4614633", "productName":"Artizen 30ml Oils - Lavender Essential Oil - 1 Fluid Ounce", "productPrice":6.99, "productQuantity":1, "id":"purchase_27" }, { "Unnamed: 0":28, "time":"2019-04-18T02:08:21", "purchase_id":"112-5214073-0001042", "productName":"Shea Butter Yellow Smooth | All Natural, 100% Pure- Unrefined | Daily Skin Moisturizer For Face & Body | Softens Tough Skin | Moisturizes Dry Skin | A", "productPrice":5.47, "productQuantity":1, "id":"purchase_28" }, { "Unnamed: 0":29, "time":"2019-04-18T02:03:55", "purchase_id":"112-5211954-9884251", "productName":"Alternative Imagination 100% Pure Beeswax Bar (1 Ounce), Made in USA", "productPrice":4.25, "productQuantity":2, "id":"purchase_29" }, { "Unnamed: 0":30, "time":"2019-04-16T18:53:52", "purchase_id":"112-8690982-3805866", "productName":"Go Gently: Actionable Steps to Nurture Yourself and the Planet", "productPrice":22.99, "productQuantity":1, "id":"purchase_30" }, { "Unnamed: 0":31, "time":"2019-03-30T18:03:45", "purchase_id":"112-4149919-9418639", "productName":"Joico HydraSplash Hydrating Gel\u00e9e Masque | Replenish Hydration | Add Shine | For Fine \/ Medium \/ Dry Hair", "productPrice":24.5, "productQuantity":1, "id":"purchase_31" }, { "Unnamed: 0":32, "time":"2019-03-30T18:03:45", "purchase_id":"112-4149919-9418639", "productName":"Secret Antiperspirant Clinical Strength Deodorant for Women, Clear Gel, Completely Clean, 2.6 oz", "productPrice":11.97, "productQuantity":1, "id":"purchase_32" }, { "Unnamed: 0":33, "time":"2019-03-30T18:03:45", "purchase_id":"112-4149919-9418639", "productName":"Joico HydraSplash Hydrating Conditioner for fine hair 8.5 fl oz", "productPrice":16.58, "productQuantity":1, "id":"purchase_33" }, { "Unnamed: 0":34, "time":"2019-03-30T18:03:45", "purchase_id":"112-4149919-9418639", "productName":"Joico HydraSplash Hydrating Shampoo for fine hair 33.8 fl oz", "productPrice":38.5, "productQuantity":1, "id":"purchase_34" }, { "Unnamed: 0":35, "time":"2019-03-30T18:03:45", "purchase_id":"112-5709364-2407456", "productName":"Joico Power Spray Fast-Dry Finishing Spray, 9.0 Ounce, New Look", "productPrice":20.5, "productQuantity":1, "id":"purchase_35" }, { "Unnamed: 0":36, "time":"2019-03-30T18:03:45", "purchase_id":"112-4149919-9418639", "productName":"Joico HydraSplash Replenishing Leave-In | Boost Shine | Reduce Frizz | For Fine\/ Medium \/ Dry Hair, 3.38 Fl Oz (Pack of 1)", "productPrice":24.5, "productQuantity":1, "id":"purchase_36" }, { "Unnamed: 0":37, "time":"2019-03-27T23:21:18", "purchase_id":"112-9856985-9905029", "productName":"Claritin 24 Hour Reditabs - 60 ct", "productPrice":38.94, "productQuantity":1, "id":"purchase_38" }, { "Unnamed: 0":38, "time":"2019-03-08T03:42:32", "purchase_id":"111-3592109-1029866", "productName":"SOTO WindMaster w\/ Micro Regulator and 4Flex (One Size)", "productPrice":64.95, "productQuantity":1, "id":"purchase_40" }, { "Unnamed: 0":39, "time":"2019-03-05T04:45:16", "purchase_id":"111-4543930-8659442", "productName":"Portable Electric Space Heater 1500W\/750W, Ceramic Room Heater with Tip-Over and Overheat Protection, Heat up 200 Square Feet in Seconds, Safe and Qui", "productPrice":26.95, "productQuantity":1, "id":"purchase_41" }, { "Unnamed: 0":40, "time":"2019-04-09T17:45:52", "purchase_id":"113-1313306-9587439", "productName":"Value Sensitive Design: Shaping Technology with Moral Imagination (The MIT Press)", "productPrice":40.0, "productQuantity":1, "id":"purchase_42" }, { "Unnamed: 0":41, "time":"2019-03-30T17:59:04", "purchase_id":"113-1730640-2547451", "productName":"Anti Fog Spray for Glasses | 600 Pumps, 6 month Supply | Prevents Fog on Windshield, Lenses, Goggles, PPE & VR Headsets | Safe on Anti-Reflective Lens", "productPrice":8.99, "productQuantity":1, "id":"purchase_43" }, { "Unnamed: 0":42, "time":"2019-03-30T05:26:19", "purchase_id":"113-3289397-6029011", "productName":"WD-40 Multi-Use Product Handy Can 3 oz (Pack of 2)", "productPrice":9.5, "productQuantity":1, "id":"purchase_44" }, { "Unnamed: 0":43, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Organic Cowboy Boneless Chicken Thighs", "productPrice":10.97, "productQuantity":1, "id":"purchase_45" }, { "Unnamed: 0":44, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Organic Yellow Onion", "productPrice":1.46, "productQuantity":1, "id":"purchase_46" }, { "Unnamed: 0":45, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Bag Refund", "productPrice":0.0, "productQuantity":1, "id":"purchase_47" }, { "Unnamed: 0":46, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Espresso", "productPrice":15.94, "productQuantity":1, "id":"purchase_48" }, { "Unnamed: 0":47, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Donation Bag", "productPrice":0.05, "productQuantity":1, "id":"purchase_49" }, { "Unnamed: 0":48, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Blueberry Greek Yogurt", "productPrice":1.19, "productQuantity":3, "id":"purchase_50" }, { "Unnamed: 0":49, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Organic Ginger Root", "productPrice":1.52, "productQuantity":1, "id":"purchase_51" }, { "Unnamed: 0":50, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Organic Milk", "productPrice":2.99, "productQuantity":1, "id":"purchase_52" }, { "Unnamed: 0":51, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Green Onion", "productPrice":0.89, "productQuantity":1, "id":"purchase_53" }, { "Unnamed: 0":52, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Blueberry Yoghurt", "productPrice":2.29, "productQuantity":2, "id":"purchase_54" }, { "Unnamed: 0":53, "time":"2019-03-24T22:53:23", "purchase_id":"113-6374827-6976213", "productName":"Boneless Skinless Chicken Thighs", "productPrice":9.79, "productQuantity":1, "id":"purchase_55" }, { "Unnamed: 0":54, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Plain Low Fat Yogurt", "productPrice":3.41, "productQuantity":1, "id":"purchase_56" }, { "Unnamed: 0":55, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Jewel Sweet Potato", "productPrice":1.58, "productQuantity":1, "id":"purchase_57" }, { "Unnamed: 0":56, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Blueberry Yoghurt", "productPrice":2.29, "productQuantity":2, "id":"purchase_58" }, { "Unnamed: 0":57, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Vidalia Onion", "productPrice":0.7, "productQuantity":1, "id":"purchase_59" }, { "Unnamed: 0":58, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Spinach Ricotta Ravioli", "productPrice":6.49, "productQuantity":1, "id":"purchase_60" }, { "Unnamed: 0":59, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Butternut Squash", "productPrice":0.89, "productQuantity":2, "id":"purchase_61" }, { "Unnamed: 0":60, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Whole Trade Banana", "productPrice":1.39, "productQuantity":1, "id":"purchase_62" }, { "Unnamed: 0":61, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Milk", "productPrice":4.49, "productQuantity":1, "id":"purchase_63" }, { "Unnamed: 0":62, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Strawberries", "productPrice":4.99, "productQuantity":1, "id":"purchase_64" }, { "Unnamed: 0":63, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Wild Blueberry Overnight Oats", "productPrice":3.49, "productQuantity":1, "id":"purchase_65" }, { "Unnamed: 0":64, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Brown Large Grade A Eggs", "productPrice":3.99, "productQuantity":1, "id":"purchase_66" }, { "Unnamed: 0":65, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Bourbon Whiskey Boneless Chicken Thighs", "productPrice":8.74, "productQuantity":1, "id":"purchase_67" }, { "Unnamed: 0":66, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Supreme Pizza", "productPrice":4.99, "productQuantity":2, "id":"purchase_68" }, { "Unnamed: 0":67, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Smoked Thick Cut Atlantic Salmon", "productPrice":6.99, "productQuantity":1, "id":"purchase_69" }, { "Unnamed: 0":68, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Bacon Cheddar Beef Burger", "productPrice":7.99, "productQuantity":2, "id":"purchase_70" }, { "Unnamed: 0":69, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Cherries", "productPrice":10.2, "productQuantity":1, "id":"purchase_71" }, { "Unnamed: 0":70, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Honey Almond Crunch", "productPrice":3.99, "productQuantity":1, "id":"purchase_72" }, { "Unnamed: 0":71, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Paleo Pancake & Waffle Mix", "productPrice":5.99, "productQuantity":1, "id":"purchase_73" }, { "Unnamed: 0":72, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Orange Cauliflower", "productPrice":3.49, "productQuantity":1, "id":"purchase_74" }, { "Unnamed: 0":73, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Berry Blend", "productPrice":3.99, "productQuantity":2, "id":"purchase_75" }, { "Unnamed: 0":74, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Whipped Unsalted Butter", "productPrice":3.69, "productQuantity":1, "id":"purchase_76" }, { "Unnamed: 0":75, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Pinot Grigio Friuli", "productPrice":9.99, "productQuantity":1, "id":"purchase_77" }, { "Unnamed: 0":76, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Boston Butter Lettuce", "productPrice":1.99, "productQuantity":1, "id":"purchase_78" }, { "Unnamed: 0":77, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Zucchini Squash", "productPrice":0.5, "productQuantity":1, "id":"purchase_79" }, { "Unnamed: 0":78, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Medium Hass Avocado", "productPrice":1.49, "productQuantity":9, "id":"purchase_80" }, { "Unnamed: 0":79, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Low-Fat Cottage Cheese", "productPrice":3.99, "productQuantity":1, "id":"purchase_81" }, { "Unnamed: 0":80, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Herring in Cream Sauce", "productPrice":5.99, "productQuantity":1, "id":"purchase_82" }, { "Unnamed: 0":81, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Baby Gold Beets Bunch", "productPrice":1.99, "productQuantity":1, "id":"purchase_83" }, { "Unnamed: 0":82, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Russet Potato", "productPrice":2.34, "productQuantity":1, "id":"purchase_84" }, { "Unnamed: 0":83, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Peach Yoghurt", "productPrice":2.29, "productQuantity":2, "id":"purchase_85" }, { "Unnamed: 0":84, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Mango Chunks", "productPrice":2.79, "productQuantity":2, "id":"purchase_86" }, { "Unnamed: 0":85, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Sauvignon Blanc", "productPrice":11.99, "productQuantity":1, "id":"purchase_87" }, { "Unnamed: 0":86, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Brussels Sprouts", "productPrice":3.99, "productQuantity":1, "id":"purchase_88" }, { "Unnamed: 0":87, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Sliced Genoa Salami", "productPrice":5.79, "productQuantity":1, "id":"purchase_89" }, { "Unnamed: 0":88, "time":"2019-03-23T00:10:31", "purchase_id":"113-7531419-6094616", "productName":"Organic Cowboy Boneless Chicken Thighs", "productPrice":6.99, "productQuantity":2, "id":"purchase_90" }, { "Unnamed: 0":89, "time":"2019-03-21T19:50:31", "purchase_id":"113-1917712-3086608", "productName":"Amazon Basics 30% Recycled Multipurpose Copy Printer Paper - 8.5 x 11 Inches, 3 Ream Case (1500 Sheets)", "productPrice":19.99, "productQuantity":1, "id":"purchase_91" }, { "Unnamed: 0":90, "time":"2019-03-18T05:34:06", "purchase_id":"113-9805914-6727453", "productName":"Pudolla Men's Cotton Yoga Sweatpants Athletic Lounge Pants Open Bottom Casual Jersey Pants for Men with Pockets (Olive Medium)", "productPrice":28.89, "productQuantity":1, "id":"purchase_92" }, { "Unnamed: 0":91, "time":"2019-03-13T19:10:03", "purchase_id":"113-2797013-8844240", "productName":"TERRO T300B Liquid Ant Killer, 12 Bait Stations", "productPrice":9.68, "productQuantity":2, "id":"purchase_93" }, { "Unnamed: 0":92, "time":"2019-03-12T01:19:50", "purchase_id":"113-2188680-2881009", "productName":"BYD CARE KN95 Respirator, 50 Pieces, Breathable & Comfortable Foldable Safety Mask with Ear Loop for Tight Fit, GB2626", "productPrice":26.99, "productQuantity":2, "id":"purchase_94" }, { "Unnamed: 0":93, "time":"2019-03-06T01:22:33", "purchase_id":"113-8577782-4677020", "productName":"Kate Aspen 9 oz. Stemless Wine Glass (Set of 12)| Kitchen Drinking Glass or DIY Party Favor, Clear, One Size, (30009NA-x12)", "productPrice":26.14, "productQuantity":1, "id":"purchase_95" }, { "Unnamed: 0":94, "time":"2019-03-04T20:28:21", "purchase_id":"113-4689134-9648225", "productName":"iHealth COVID-19 Antigen Rapid Test, 2 Tests per Pack,FDA EUA Authorized OTC at-Home Self Test, Results in 15 Minutes with Non-invasive Nasal Swab, Ea", "productPrice":17.98, "productQuantity":1, "id":"purchase_96" } ] ================================================ FILE: sample_data/streaming.sampled.csv ================================================ ,Unnamed: 0,start_time,end_time,artist,track,playtimeMs,spotify_link,id 0,0,2019-03-30T11:34:59.982000,2019-03-30T11:35:00,Lex Fridman Podcast,"#282 – David Buss: Sex, Dating, Relationships, and Sex Differences",18000,,streaming_0 1,1,2019-03-30T12:24:57.597980,2019-03-30T12:25:00,Lex Fridman Podcast,"#282 – David Buss: Sex, Dating, Relationships, and Sex Differences",2402020,,streaming_1 2,2,2019-04-01T18:55:58.781460,2019-04-01T18:56:00,Lex Fridman Podcast,"#282 – David Buss: Sex, Dating, Relationships, and Sex Differences",1218540,,streaming_2 3,3,2019-04-05T14:03:56.228030,2019-04-05T14:04:00,Lex Fridman Podcast,"#282 – David Buss: Sex, Dating, Relationships, and Sex Differences",3771970,,streaming_3 4,4,2019-04-05T18:14:59.195242,2019-04-05T18:15:00,Lex Fridman Podcast,"#282 – David Buss: Sex, Dating, Relationships, and Sex Differences",804758,,streaming_4 5,5,2019-04-05T19:38:59.996703,2019-04-05T19:39:00,Lex Fridman Podcast,"#282 – David Buss: Sex, Dating, Relationships, and Sex Differences",3297,,streaming_5 6,6,2019-04-05T20:28:57.034859,2019-04-05T20:29:00,Lex Fridman Podcast,"#282 – David Buss: Sex, Dating, Relationships, and Sex Differences",2965141,,streaming_6 7,7,2019-04-05T23:20:58.466136,2019-04-05T23:21:00,Lex Fridman Podcast,"#282 – David Buss: Sex, Dating, Relationships, and Sex Differences",1533864,,streaming_7 8,8,2019-04-05T23:45:58.517419,2019-04-05T23:46:00,Lex Fridman Podcast,"#283 – Chris Mason: Space Travel, Colonization, and Long-Term Survival in Space",1482581,,streaming_8 9,9,2019-04-07T02:18:59.548571,2019-04-07T02:19:00,Lex Fridman Podcast,"#284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics",451429,,streaming_9 10,10,2019-04-09T02:09:59.132590,2019-04-09T02:10:00,Lex Fridman Podcast,"#284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics",867410,,streaming_10 11,11,2019-04-10T21:31:59.990678,2019-04-10T21:32:00,Lex Fridman Podcast,"#284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics",9322,,streaming_11 12,12,2019-04-17T15:32:54.334971,2019-04-17T15:33:00,Lex Fridman Podcast,"#284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics",5665029,,streaming_12 13,13,2019-04-19T04:16:53.888978,2019-04-19T04:17:00,Lex Fridman Podcast,"#284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics",6111022,,streaming_13 14,14,2019-04-19T16:50:59.718676,2019-04-19T16:51:00,Lex Fridman Podcast,"#284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics",281324,,streaming_14 15,15,2019-04-19T19:18:58.126081,2019-04-19T19:19:00,Lex Fridman Podcast,"#284 – Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics",1873919,,streaming_15 16,16,2019-04-20T01:34:52.331822,2019-04-20T01:35:00,Lex Fridman Podcast,"#285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture",7668178,,streaming_16 17,17,2019-04-22T15:16:54.972476,2019-04-22T15:17:00,Lex Fridman Podcast,"#285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture",5027524,,streaming_17 18,18,2019-04-22T16:12:59.995290,2019-04-22T16:13:00,Lex Fridman Podcast,#286 – Oliver Stone: Vladimir Putin and War in Ukraine,4710,,streaming_18 19,19,2019-03-02T22:21:59.881629,2019-03-02T22:22:00,Doris Casella,Estelle,118371,https://open.spotify.com/track/2XPxkVgxyj4QVaW78kS5vb,streaming_19 20,20,2019-03-02T22:23:59.868349,2019-03-02T22:24:00,Isshi Matsuriza,Shizukana,131651,https://open.spotify.com/track/63oFS9JTsvadCXUqwqA7p0,streaming_20 21,21,2019-03-02T22:26:59.854020,2019-03-02T22:27:00,Tom Kristiaan,Un sourire et une larme (valse),145980,https://open.spotify.com/track/7Ll3Avq4RewMYNeCyi7KsD,streaming_21 22,22,2019-03-02T22:28:59.863576,2019-03-02T22:29:00,Gunnel Boek,Hommage d'amitié,136424,https://open.spotify.com/track/5DezuV0RFcMcgA11UGdGBR,streaming_22 23,23,2019-03-02T22:31:59.847108,2019-03-02T22:32:00,Helmut Schenker,Alba,152892,https://open.spotify.com/track/5eEYSPaVwg4Fe1KCMYunQf,streaming_23 24,24,2019-03-02T22:32:59.887473,2019-03-02T22:33:00,William Cas,Hour of Rest,112527,https://open.spotify.com/track/0sCPbmOcdRcTWVDjHh22id,streaming_24 25,25,2019-03-02T22:37:59.815451,2019-03-02T22:38:00,Johannes Bornlöf,As I Dream,184549,https://open.spotify.com/track/3y3GMygxjeZ8VQDfEoyKh7,streaming_25 26,26,2019-03-02T22:40:59.815890,2019-03-02T22:41:00,Kalen Elmsley,Spheroidal,184110,https://open.spotify.com/track/00PnFrg2QQzPqkeuxGxcz9,streaming_26 27,27,2019-03-02T22:43:59.843090,2019-03-02T22:44:00,Nel Swerts,Un Cadeau,156910,https://open.spotify.com/track/4MOdTvGopWOYi146z6EnGW,streaming_27 28,28,2019-03-02T22:45:59.871498,2019-03-02T22:46:00,Astrid Sky,A Beautiful Break,128502,https://open.spotify.com/track/4xwUUKpKf52tIHZRyyUFKw,streaming_28 29,29,2019-03-02T22:47:59.876560,2019-03-02T22:48:00,Emanuel Fremont,Saying Things,123440,https://open.spotify.com/track/2bjQvSk5T3A2dmnqqeRhzI,streaming_29 30,30,2019-03-02T22:51:59.848256,2019-03-02T22:52:00,Piano Melancolía,Silk,151744,https://open.spotify.com/track/1ShThrvQSVye4uHsz2rMtE,streaming_30 31,31,2019-03-02T22:53:59.873100,2019-03-02T22:54:00,Norman Dück,Reframe,126900,https://open.spotify.com/track/67ksXATAe92UP1mwod4e3s,streaming_31 32,32,2019-03-02T22:55:59.882765,2019-03-02T22:56:00,Armando Bauer,Solace,117235,https://open.spotify.com/track/0c3pAQGKjwHKo9ilC8i8c5,streaming_32 33,33,2019-03-02T22:57:59.881052,2019-03-02T22:58:00,Jacob David,Nowesind,118948,https://open.spotify.com/track/2p5THyuNwpJ9c7ex3TN383,streaming_33 34,34,2019-03-02T22:59:59.872852,2019-03-02T23:00:00,Jørg Sorensen,Träumerei,127148,https://open.spotify.com/track/5vz0Vls8TbtlI58CHQrIpb,streaming_34 35,35,2019-03-02T23:02:59.860015,2019-03-02T23:03:00,Niwa Nova,Compass,139985,https://open.spotify.com/track/7uN2L2nq8gfUBOUfHtSkQX,streaming_35 36,36,2019-03-02T23:06:59.851351,2019-03-02T23:07:00,Alva Brunel,When it drizzles,148649,https://open.spotify.com/track/5YB0FJ63K0g5ZXw0BN4HXF,streaming_36 37,37,2019-03-02T23:08:59.867234,2019-03-02T23:09:00,Cinthya Garcia,Dear Buddy,132766,https://open.spotify.com/track/4XhZgQHy6yNEB5M3NhZXAG,streaming_37 38,38,2019-03-02T23:11:59.820243,2019-03-02T23:12:00,Jane Avril,Although,179757,https://open.spotify.com/track/695BxK7VbbK6M4CRvtR5Sn,streaming_38 39,39,2019-03-02T23:13:59.873081,2019-03-02T23:14:00,Alain Pironi,La Paix Intérieure,126919,https://open.spotify.com/track/7e9rtvEfKg3QkMkZrZtTnW,streaming_39 40,40,2019-03-02T23:15:59.880230,2019-03-02T23:16:00,Andreas Monta,Mind Like Water,119770,https://open.spotify.com/track/4fcdZ4bM6DgVGOs9y13KIk,streaming_40 41,41,2019-03-02T23:17:59.854515,2019-03-02T23:18:00,Anna Landström,To the Rain,145485,https://open.spotify.com/track/025aQi6Ffw676y8m4zLPk7,streaming_41 42,42,2019-03-02T23:21:59.853158,2019-03-02T23:22:00,Carluccio,Adesso,146842,https://open.spotify.com/track/0t0X7v3Qcq7wMviNjWaWDO,streaming_42 43,43,2019-03-02T23:24:59.828395,2019-03-02T23:25:00,Olivia Belli,Prélude,171605,https://open.spotify.com/track/7dOjUz9bTwzuZkoaiqDoxm,streaming_43 44,44,2019-03-02T23:27:59.827341,2019-03-02T23:28:00,Ploxxio,Aufgang der Sonne,172659,https://open.spotify.com/track/4iCLo3ZjF6V1RW4Wz18KMz,streaming_44 45,45,2019-03-02T23:29:59.861406,2019-03-02T23:30:00,Lemos,The New Life,138594,https://open.spotify.com/track/4zCJ4p6S8n6P0vgijJBWHk,streaming_45 46,46,2019-03-02T23:32:59.851563,2019-03-02T23:33:00,Les Rêveries,Coulant,148437,https://open.spotify.com/track/445KHitEvap0tspDZ3C78V,streaming_46 47,47,2019-03-02T23:35:59.894345,2019-03-02T23:36:00,praam,our paths crossing,105655,https://open.spotify.com/track/570NQJSaUxTdYZT8lGwxgZ,streaming_47 48,48,2019-03-02T23:38:59.857403,2019-03-02T23:39:00,Tamara Eden,Horizon,142597,https://open.spotify.com/track/1nQ2WCJTn89CnirpfDHV60,streaming_48 49,49,2019-03-02T23:40:59.860806,2019-03-02T23:41:00,Naia Lambert,Ruhevoll,139194,https://open.spotify.com/track/3a29LVdJdkqOBNDFnbbqJN,streaming_49 50,50,2019-03-02T23:42:59.850029,2019-03-02T23:43:00,Kellen Chase,Meditabundus,149971,https://open.spotify.com/track/5e5tJl04Fp74oHxpsrC7Tk,streaming_50 51,51,2019-03-02T23:46:59.799320,2019-03-02T23:47:00,antinode,vierde moment,200680,https://open.spotify.com/track/1IqWZERE8ZOVtgE3fmekFv,streaming_51 52,52,2019-03-03T19:21:58.176027,2019-03-03T19:22:00,Lex Fridman Podcast,#286 – Oliver Stone: Vladimir Putin and War in Ukraine,1823973,,streaming_52 53,53,2019-03-03T22:19:55.579920,2019-03-03T22:20:00,Lex Fridman Podcast,#286 – Oliver Stone: Vladimir Putin and War in Ukraine,4420080,,streaming_53 54,54,2019-03-03T22:20:59.997132,2019-03-03T22:21:00,Lex Fridman Podcast,"#285 – Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture",2868,,streaming_54 55,55,2019-03-03T22:29:59.510656,2019-03-03T22:30:00,Lex Fridman Podcast,#286 – Oliver Stone: Vladimir Putin and War in Ukraine,489344,,streaming_55 56,56,2019-03-07T02:30:54.715913,2019-03-07T02:31:00,Lex Fridman Podcast,#299 – Demis Hassabis: DeepMind,5284087,,streaming_56 57,57,2019-03-07T14:55:57.454255,2019-03-07T14:56:00,Lex Fridman Podcast,#299 – Demis Hassabis: DeepMind,2545745,,streaming_57 58,58,2019-03-07T15:52:56.634213,2019-03-07T15:53:00,Lex Fridman Podcast,"#300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom",3365787,,streaming_58 59,59,2019-03-07T20:25:58.992032,2019-03-07T20:26:00,Lex Fridman Podcast,"#300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom",1007968,,streaming_59 60,60,2019-03-10T16:36:58.526016,2019-03-10T16:37:00,Lex Fridman Podcast,"#300 – Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom",1473984,,streaming_60 61,61,2019-03-17T15:39:59.999882,2019-03-17T15:40:00,Exit Scam,Part V: The Old Friend,118,,streaming_61 62,62,2019-03-17T15:39:58.337319,2019-03-17T15:40:00,הכותרת,נפילת השמאל הציוני,1662681,,streaming_62 63,63,2019-03-23T22:30:59.998840,2019-03-23T22:31:00,Exit Scam,Part V: The Old Friend,1160,,streaming_63 64,64,2019-03-23T22:57:59.020807,2019-03-23T22:58:00,Lex Fridman Podcast,#295 – Richard Wolff: Marxism and Communism,979193,,streaming_64 65,65,2019-03-24T02:53:59.999370,2019-03-24T02:54:00,Lex Fridman Podcast,#295 – Richard Wolff: Marxism and Communism,630,,streaming_65 66,66,2019-03-24T03:47:57.137380,2019-03-24T03:48:00,Lex Fridman Podcast,#301 – Jack Barsky: KGB Spy,2862620,,streaming_66 67,67,2019-03-24T21:03:57.085293,2019-03-24T21:04:00,Lex Fridman Podcast,#301 – Jack Barsky: KGB Spy,2914707,,streaming_67 68,68,2019-03-28T15:13:55.193621,2019-03-28T15:14:00,Lex Fridman Podcast,#306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence,4806379,,streaming_68 69,69,2019-03-29T01:18:58.907601,2019-03-29T01:19:00,Lex Fridman Podcast,#306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence,1092399,,streaming_69 70,70,2019-03-29T17:12:58.377812,2019-03-29T17:13:00,Lex Fridman Podcast,#306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence,1622188,,streaming_70 71,71,2019-03-29T20:00:59.729921,2019-03-29T20:01:00,Lex Fridman Podcast,#306 – Oriol Vinyals: Deep Learning and Artificial General Intelligence,270079,,streaming_71 72,72,2019-03-30T00:26:59.587893,2019-03-30T00:27:00,Lex Fridman Podcast,#207 – Chris Duffin: The Mad Scientist of Strength,412107,,streaming_72 73,73,2019-03-30T23:57:59.994590,2019-03-30T23:58:00,Lex Fridman Podcast,#207 – Chris Duffin: The Mad Scientist of Strength,5410,,streaming_73 74,74,2019-03-30T00:51:56.797826,2019-03-30T00:52:00,Lex Fridman Podcast,#298 – Susan Cain: The Power of Introverts and Loneliness,3202174,,streaming_74 75,75,2019-04-01T20:15:56.262083,2019-04-01T20:16:00,Lex Fridman Podcast,#298 – Susan Cain: The Power of Introverts and Loneliness,3737917,,streaming_75 76,76,2019-04-02T03:02:59.791198,2019-04-02T03:03:00,Lex Fridman Podcast,#298 – Susan Cain: The Power of Introverts and Loneliness,208802,,streaming_76 77,77,2019-04-02T14:24:59.994295,2019-04-02T14:25:00,Lex Fridman Podcast,#299 – Demis Hassabis: DeepMind,5705,,streaming_77 78,78,2019-04-05T18:00:59.997247,2019-04-05T18:01:00,Lex Fridman Podcast,"#277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship",2753,,streaming_78 79,79,2019-04-05T18:00:59.999478,2019-04-05T18:01:00,Lex Fridman Podcast,#299 – Demis Hassabis: DeepMind,522,,streaming_79 80,80,2019-04-05T19:50:56.902858,2019-04-05T19:51:00,Lex Fridman Podcast,"#277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship",3097142,,streaming_80 81,81,2019-04-05T23:46:55.538729,2019-04-05T23:47:00,Lex Fridman Podcast,"#277 – Andrew Huberman: Focus, Stress, Relationships, and Friendship",4461271,,streaming_81 82,82,2019-04-08T06:01:57.093682,2019-04-08T06:02:00,Lex Fridman Podcast," #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets",2906318,https://open.spotify.com/track/4uUA3g2Evr8jziBnCZlUl0,streaming_82 83,83,2019-04-08T19:39:57.271936,2019-04-08T19:40:00,Lex Fridman Podcast," #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets",2728064,https://open.spotify.com/track/4uUA3g2Evr8jziBnCZlUl0,streaming_83 84,84,2019-04-08T21:50:58.395412,2019-04-08T21:51:00,Lex Fridman Podcast," #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets",1604588,https://open.spotify.com/track/4uUA3g2Evr8jziBnCZlUl0,streaming_84 85,85,2019-04-09T17:42:59.791494,2019-04-09T17:43:00,Olivia Newton-John,Xanadu,208506,https://open.spotify.com/track/67tNgYlYbsIs2klWOJwhr5,streaming_85 86,86,2019-04-09T17:46:59.773902,2019-04-09T17:47:00,Olivia Newton-John,Carried Away - Alternate Mix / Remastered 2021,226098,https://open.spotify.com/track/45o0VxsPoYt2IAJ25irnGS,streaming_86 87,87,2019-04-09T17:50:59.774008,2019-04-09T17:51:00,Olivia Newton-John,Physical - Remastered 2021,225992,https://open.spotify.com/track/737CBNAqpmgN5qWQJncfcD,streaming_87 88,88,2019-04-09T17:54:59.743864,2019-04-09T17:55:00,Olivia Newton-John,Shaking You - Remastered 2021,256136,https://open.spotify.com/track/1eoLWTfOJz4UXC7wDvqjOd,streaming_88 89,89,2019-04-09T17:58:59.779667,2019-04-09T17:59:00,Olivia Newton-John,"I Love You, I Honestly Love You",220333,https://open.spotify.com/track/0cM3OFAPxAshOOy7MT90Yc,streaming_89 90,90,2019-04-09T18:02:59.774126,2019-04-09T18:03:00,Olivia Newton-John,Carried Away - Remastered 2021,225874,https://open.spotify.com/track/7sUJAP8vQAFyZZ8AJkcE5Z,streaming_90 91,91,2019-04-09T18:05:59.786467,2019-04-09T18:06:00,Olivia Newton-John,Have You Never Been Mellow,213533,https://open.spotify.com/track/668lXk61ZcAUdXIcya9Ehe,streaming_91 92,92,2019-04-09T18:12:59.598201,2019-04-09T18:13:00,Olivia Newton-John,Livin' In Desperate Times - Extended Version / Remastered 2021,401799,https://open.spotify.com/track/4WXNWhGUorBmNbnRIIA7eO,streaming_92 93,93,2019-04-10T03:44:59.830160,2019-04-10T03:45:00,John Travolta,You're The One That I Want - From “Grease”,169840,,streaming_93 94,94,2019-04-10T03:47:59.831134,2019-04-10T03:48:00,David Gates,Goodbye Girl,168866,https://open.spotify.com/track/16rFIDV8h9TRbweNH0GSBX,streaming_94 95,95,2019-04-10T03:50:59.821534,2019-04-10T03:51:00,Michael Johnson,Two In Love,178466,https://open.spotify.com/track/2izrKyt56ZgLeiq7tMo7lc,streaming_95 96,96,2019-04-10T03:53:59.799840,2019-04-10T03:54:00,Stephen Bishop,When You Wish Upon a Star,200160,https://open.spotify.com/track/7iPGlz0AhLWbZKvUviE2If,streaming_96 97,97,2019-04-10T03:57:59.781467,2019-04-10T03:58:00,Quarterflash,Try To Make It True,218533,https://open.spotify.com/track/2GVmwsapgsyWEBThtj1SC9,streaming_97 98,98,2019-04-10T03:58:59.960589,2019-04-10T03:59:00,Taylor Dayne,Willpower,39411,https://open.spotify.com/track/7HAymNxfWV1oUEDwPpre5V,streaming_98 99,99,2019-04-10T18:59:59.809853,2019-04-10T19:00:00,Taylor Dayne,Willpower,190147,https://open.spotify.com/track/7HAymNxfWV1oUEDwPpre5V,streaming_99 100,100,2019-04-10T19:02:59.805534,2019-04-10T19:03:00,Crystal Gayle,If You Ever Change Your Mind,194466,https://open.spotify.com/track/7g15iih7w6WEqdtL3nY50r,streaming_100 101,101,2019-04-11T00:02:53.600471,2019-04-11T00:03:00,Lex Fridman Podcast,#290 – Dan Reynolds: Imagine Dragons,6399529,,streaming_101 102,102,2019-04-11T00:39:58.542013,2019-04-11T00:40:00,Lex Fridman Podcast,#290 – Dan Reynolds: Imagine Dragons,1457987,,streaming_102 103,103,2019-04-11T15:29:56.176277,2019-04-11T15:30:00,Lex Fridman Podcast,#291 – Jonathan Haidt: The Case Against Social Media,3823723,,streaming_103 104,104,2019-04-12T19:54:57.706751,2019-04-12T19:55:00,Lex Fridman Podcast,#291 – Jonathan Haidt: The Case Against Social Media,2293249,,streaming_104 105,105,2019-04-12T20:10:59.420645,2019-04-12T20:11:00,Lex Fridman Podcast,"#292 – Robin Hanson: Alien Civilizations, UFOs, and the Future of Humanity",579355,,streaming_105 106,106,2019-04-13T18:46:55.390590,2019-04-13T18:47:00,Lex Fridman Podcast," #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets",4609410,https://open.spotify.com/track/4uUA3g2Evr8jziBnCZlUl0,streaming_106 107,107,2019-04-13T22:38:56.433995,2019-04-13T22:39:00,Lex Fridman Podcast," #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets",3566005,https://open.spotify.com/track/4uUA3g2Evr8jziBnCZlUl0,streaming_107 108,108,2019-04-14T17:20:59.995757,2019-04-14T17:21:00,Lex Fridman Podcast,#310 – Andrew Bustamante: CIA Spy,4243,,streaming_108 109,109,2019-04-14T17:20:56.584921,2019-04-14T17:21:00,Lex Fridman Podcast," #309 – John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets",3415079,https://open.spotify.com/track/4uUA3g2Evr8jziBnCZlUl0,streaming_109 ================================================ FILE: sample_data/streaming.sampled.json ================================================ [ { "Unnamed: 0":0, "start_time":"2019-03-30T11:34:59.982000", "end_time":"2019-03-30T11:35:00", "artist":"Lex Fridman Podcast", "track":"#282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences", "playtimeMs":18000, "spotify_link":null, "id":"streaming_0" }, { "Unnamed: 0":1, "start_time":"2019-03-30T12:24:57.597980", "end_time":"2019-03-30T12:25:00", "artist":"Lex Fridman Podcast", "track":"#282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences", "playtimeMs":2402020, "spotify_link":null, "id":"streaming_1" }, { "Unnamed: 0":2, "start_time":"2019-04-01T18:55:58.781460", "end_time":"2019-04-01T18:56:00", "artist":"Lex Fridman Podcast", "track":"#282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences", "playtimeMs":1218540, "spotify_link":null, "id":"streaming_2" }, { "Unnamed: 0":3, "start_time":"2019-04-05T14:03:56.228030", "end_time":"2019-04-05T14:04:00", "artist":"Lex Fridman Podcast", "track":"#282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences", "playtimeMs":3771970, "spotify_link":null, "id":"streaming_3" }, { "Unnamed: 0":4, "start_time":"2019-04-05T18:14:59.195242", "end_time":"2019-04-05T18:15:00", "artist":"Lex Fridman Podcast", "track":"#282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences", "playtimeMs":804758, "spotify_link":null, "id":"streaming_4" }, { "Unnamed: 0":5, "start_time":"2019-04-05T19:38:59.996703", "end_time":"2019-04-05T19:39:00", "artist":"Lex Fridman Podcast", "track":"#282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences", "playtimeMs":3297, "spotify_link":null, "id":"streaming_5" }, { "Unnamed: 0":6, "start_time":"2019-04-05T20:28:57.034859", "end_time":"2019-04-05T20:29:00", "artist":"Lex Fridman Podcast", "track":"#282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences", "playtimeMs":2965141, "spotify_link":null, "id":"streaming_6" }, { "Unnamed: 0":7, "start_time":"2019-04-05T23:20:58.466136", "end_time":"2019-04-05T23:21:00", "artist":"Lex Fridman Podcast", "track":"#282 \u2013 David Buss: Sex, Dating, Relationships, and Sex Differences", "playtimeMs":1533864, "spotify_link":null, "id":"streaming_7" }, { "Unnamed: 0":8, "start_time":"2019-04-05T23:45:58.517419", "end_time":"2019-04-05T23:46:00", "artist":"Lex Fridman Podcast", "track":"#283 \u2013 Chris Mason: Space Travel, Colonization, and Long-Term Survival in Space", "playtimeMs":1482581, "spotify_link":null, "id":"streaming_8" }, { "Unnamed: 0":9, "start_time":"2019-04-07T02:18:59.548571", "end_time":"2019-04-07T02:19:00", "artist":"Lex Fridman Podcast", "track":"#284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics", "playtimeMs":451429, "spotify_link":null, "id":"streaming_9" }, { "Unnamed: 0":10, "start_time":"2019-04-09T02:09:59.132590", "end_time":"2019-04-09T02:10:00", "artist":"Lex Fridman Podcast", "track":"#284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics", "playtimeMs":867410, "spotify_link":null, "id":"streaming_10" }, { "Unnamed: 0":11, "start_time":"2019-04-10T21:31:59.990678", "end_time":"2019-04-10T21:32:00", "artist":"Lex Fridman Podcast", "track":"#284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics", "playtimeMs":9322, "spotify_link":null, "id":"streaming_11" }, { "Unnamed: 0":12, "start_time":"2019-04-17T15:32:54.334971", "end_time":"2019-04-17T15:33:00", "artist":"Lex Fridman Podcast", "track":"#284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics", "playtimeMs":5665029, "spotify_link":null, "id":"streaming_12" }, { "Unnamed: 0":13, "start_time":"2019-04-19T04:16:53.888978", "end_time":"2019-04-19T04:17:00", "artist":"Lex Fridman Podcast", "track":"#284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics", "playtimeMs":6111022, "spotify_link":null, "id":"streaming_13" }, { "Unnamed: 0":14, "start_time":"2019-04-19T16:50:59.718676", "end_time":"2019-04-19T16:51:00", "artist":"Lex Fridman Podcast", "track":"#284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics", "playtimeMs":281324, "spotify_link":null, "id":"streaming_14" }, { "Unnamed: 0":15, "start_time":"2019-04-19T19:18:58.126081", "end_time":"2019-04-19T19:19:00", "artist":"Lex Fridman Podcast", "track":"#284 \u2013 Saifedean Ammous: Bitcoin, Anarchy, and Austrian Economics", "playtimeMs":1873919, "spotify_link":null, "id":"streaming_15" }, { "Unnamed: 0":16, "start_time":"2019-04-20T01:34:52.331822", "end_time":"2019-04-20T01:35:00", "artist":"Lex Fridman Podcast", "track":"#285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture", "playtimeMs":7668178, "spotify_link":null, "id":"streaming_16" }, { "Unnamed: 0":17, "start_time":"2019-04-22T15:16:54.972476", "end_time":"2019-04-22T15:17:00", "artist":"Lex Fridman Podcast", "track":"#285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture", "playtimeMs":5027524, "spotify_link":null, "id":"streaming_17" }, { "Unnamed: 0":18, "start_time":"2019-04-22T16:12:59.995290", "end_time":"2019-04-22T16:13:00", "artist":"Lex Fridman Podcast", "track":"#286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine", "playtimeMs":4710, "spotify_link":null, "id":"streaming_18" }, { "Unnamed: 0":19, "start_time":"2019-03-02T22:21:59.881629", "end_time":"2019-03-02T22:22:00", "artist":"Doris Casella", "track":"Estelle", "playtimeMs":118371, "spotify_link":"https:\/\/open.spotify.com\/track\/2XPxkVgxyj4QVaW78kS5vb", "id":"streaming_19" }, { "Unnamed: 0":20, "start_time":"2019-03-02T22:23:59.868349", "end_time":"2019-03-02T22:24:00", "artist":"Isshi Matsuriza", "track":"Shizukana", "playtimeMs":131651, "spotify_link":"https:\/\/open.spotify.com\/track\/63oFS9JTsvadCXUqwqA7p0", "id":"streaming_20" }, { "Unnamed: 0":21, "start_time":"2019-03-02T22:26:59.854020", "end_time":"2019-03-02T22:27:00", "artist":"Tom Kristiaan", "track":"Un sourire et une larme (valse)", "playtimeMs":145980, "spotify_link":"https:\/\/open.spotify.com\/track\/7Ll3Avq4RewMYNeCyi7KsD", "id":"streaming_21" }, { "Unnamed: 0":22, "start_time":"2019-03-02T22:28:59.863576", "end_time":"2019-03-02T22:29:00", "artist":"Gunnel Boek", "track":"Hommage d'amiti\u00e9", "playtimeMs":136424, "spotify_link":"https:\/\/open.spotify.com\/track\/5DezuV0RFcMcgA11UGdGBR", "id":"streaming_22" }, { "Unnamed: 0":23, "start_time":"2019-03-02T22:31:59.847108", "end_time":"2019-03-02T22:32:00", "artist":"Helmut Schenker", "track":"Alba", "playtimeMs":152892, "spotify_link":"https:\/\/open.spotify.com\/track\/5eEYSPaVwg4Fe1KCMYunQf", "id":"streaming_23" }, { "Unnamed: 0":24, "start_time":"2019-03-02T22:32:59.887473", "end_time":"2019-03-02T22:33:00", "artist":"William Cas", "track":"Hour of Rest", "playtimeMs":112527, "spotify_link":"https:\/\/open.spotify.com\/track\/0sCPbmOcdRcTWVDjHh22id", "id":"streaming_24" }, { "Unnamed: 0":25, "start_time":"2019-03-02T22:37:59.815451", "end_time":"2019-03-02T22:38:00", "artist":"Johannes Bornl\u00f6f", "track":"As I Dream", "playtimeMs":184549, "spotify_link":"https:\/\/open.spotify.com\/track\/3y3GMygxjeZ8VQDfEoyKh7", "id":"streaming_25" }, { "Unnamed: 0":26, "start_time":"2019-03-02T22:40:59.815890", "end_time":"2019-03-02T22:41:00", "artist":"Kalen Elmsley", "track":"Spheroidal", "playtimeMs":184110, "spotify_link":"https:\/\/open.spotify.com\/track\/00PnFrg2QQzPqkeuxGxcz9", "id":"streaming_26" }, { "Unnamed: 0":27, "start_time":"2019-03-02T22:43:59.843090", "end_time":"2019-03-02T22:44:00", "artist":"Nel Swerts", "track":"Un Cadeau", "playtimeMs":156910, "spotify_link":"https:\/\/open.spotify.com\/track\/4MOdTvGopWOYi146z6EnGW", "id":"streaming_27" }, { "Unnamed: 0":28, "start_time":"2019-03-02T22:45:59.871498", "end_time":"2019-03-02T22:46:00", "artist":"Astrid Sky", "track":"A Beautiful Break", "playtimeMs":128502, "spotify_link":"https:\/\/open.spotify.com\/track\/4xwUUKpKf52tIHZRyyUFKw", "id":"streaming_28" }, { "Unnamed: 0":29, "start_time":"2019-03-02T22:47:59.876560", "end_time":"2019-03-02T22:48:00", "artist":"Emanuel Fremont", "track":"Saying Things", "playtimeMs":123440, "spotify_link":"https:\/\/open.spotify.com\/track\/2bjQvSk5T3A2dmnqqeRhzI", "id":"streaming_29" }, { "Unnamed: 0":30, "start_time":"2019-03-02T22:51:59.848256", "end_time":"2019-03-02T22:52:00", "artist":"Piano Melancol\u00eda", "track":"Silk", "playtimeMs":151744, "spotify_link":"https:\/\/open.spotify.com\/track\/1ShThrvQSVye4uHsz2rMtE", "id":"streaming_30" }, { "Unnamed: 0":31, "start_time":"2019-03-02T22:53:59.873100", "end_time":"2019-03-02T22:54:00", "artist":"Norman D\u00fcck", "track":"Reframe", "playtimeMs":126900, "spotify_link":"https:\/\/open.spotify.com\/track\/67ksXATAe92UP1mwod4e3s", "id":"streaming_31" }, { "Unnamed: 0":32, "start_time":"2019-03-02T22:55:59.882765", "end_time":"2019-03-02T22:56:00", "artist":"Armando Bauer", "track":"Solace", "playtimeMs":117235, "spotify_link":"https:\/\/open.spotify.com\/track\/0c3pAQGKjwHKo9ilC8i8c5", "id":"streaming_32" }, { "Unnamed: 0":33, "start_time":"2019-03-02T22:57:59.881052", "end_time":"2019-03-02T22:58:00", "artist":"Jacob David", "track":"Nowesind", "playtimeMs":118948, "spotify_link":"https:\/\/open.spotify.com\/track\/2p5THyuNwpJ9c7ex3TN383", "id":"streaming_33" }, { "Unnamed: 0":34, "start_time":"2019-03-02T22:59:59.872852", "end_time":"2019-03-02T23:00:00", "artist":"J\u00f8rg Sorensen", "track":"Tr\u00e4umerei", "playtimeMs":127148, "spotify_link":"https:\/\/open.spotify.com\/track\/5vz0Vls8TbtlI58CHQrIpb", "id":"streaming_34" }, { "Unnamed: 0":35, "start_time":"2019-03-02T23:02:59.860015", "end_time":"2019-03-02T23:03:00", "artist":"Niwa Nova", "track":"Compass", "playtimeMs":139985, "spotify_link":"https:\/\/open.spotify.com\/track\/7uN2L2nq8gfUBOUfHtSkQX", "id":"streaming_35" }, { "Unnamed: 0":36, "start_time":"2019-03-02T23:06:59.851351", "end_time":"2019-03-02T23:07:00", "artist":"Alva Brunel", "track":"When it drizzles", "playtimeMs":148649, "spotify_link":"https:\/\/open.spotify.com\/track\/5YB0FJ63K0g5ZXw0BN4HXF", "id":"streaming_36" }, { "Unnamed: 0":37, "start_time":"2019-03-02T23:08:59.867234", "end_time":"2019-03-02T23:09:00", "artist":"Cinthya Garcia", "track":"Dear Buddy", "playtimeMs":132766, "spotify_link":"https:\/\/open.spotify.com\/track\/4XhZgQHy6yNEB5M3NhZXAG", "id":"streaming_37" }, { "Unnamed: 0":38, "start_time":"2019-03-02T23:11:59.820243", "end_time":"2019-03-02T23:12:00", "artist":"Jane Avril", "track":"Although", "playtimeMs":179757, "spotify_link":"https:\/\/open.spotify.com\/track\/695BxK7VbbK6M4CRvtR5Sn", "id":"streaming_38" }, { "Unnamed: 0":39, "start_time":"2019-03-02T23:13:59.873081", "end_time":"2019-03-02T23:14:00", "artist":"Alain Pironi", "track":"La Paix Int\u00e9rieure", "playtimeMs":126919, "spotify_link":"https:\/\/open.spotify.com\/track\/7e9rtvEfKg3QkMkZrZtTnW", "id":"streaming_39" }, { "Unnamed: 0":40, "start_time":"2019-03-02T23:15:59.880230", "end_time":"2019-03-02T23:16:00", "artist":"Andreas Monta", "track":"Mind Like Water", "playtimeMs":119770, "spotify_link":"https:\/\/open.spotify.com\/track\/4fcdZ4bM6DgVGOs9y13KIk", "id":"streaming_40" }, { "Unnamed: 0":41, "start_time":"2019-03-02T23:17:59.854515", "end_time":"2019-03-02T23:18:00", "artist":"Anna Landstr\u00f6m", "track":"To the Rain", "playtimeMs":145485, "spotify_link":"https:\/\/open.spotify.com\/track\/025aQi6Ffw676y8m4zLPk7", "id":"streaming_41" }, { "Unnamed: 0":42, "start_time":"2019-03-02T23:21:59.853158", "end_time":"2019-03-02T23:22:00", "artist":"Carluccio", "track":"Adesso", "playtimeMs":146842, "spotify_link":"https:\/\/open.spotify.com\/track\/0t0X7v3Qcq7wMviNjWaWDO", "id":"streaming_42" }, { "Unnamed: 0":43, "start_time":"2019-03-02T23:24:59.828395", "end_time":"2019-03-02T23:25:00", "artist":"Olivia Belli", "track":"Pr\u00e9lude", "playtimeMs":171605, "spotify_link":"https:\/\/open.spotify.com\/track\/7dOjUz9bTwzuZkoaiqDoxm", "id":"streaming_43" }, { "Unnamed: 0":44, "start_time":"2019-03-02T23:27:59.827341", "end_time":"2019-03-02T23:28:00", "artist":"Ploxxio", "track":"Aufgang der Sonne", "playtimeMs":172659, "spotify_link":"https:\/\/open.spotify.com\/track\/4iCLo3ZjF6V1RW4Wz18KMz", "id":"streaming_44" }, { "Unnamed: 0":45, "start_time":"2019-03-02T23:29:59.861406", "end_time":"2019-03-02T23:30:00", "artist":"Lemos", "track":"The New Life", "playtimeMs":138594, "spotify_link":"https:\/\/open.spotify.com\/track\/4zCJ4p6S8n6P0vgijJBWHk", "id":"streaming_45" }, { "Unnamed: 0":46, "start_time":"2019-03-02T23:32:59.851563", "end_time":"2019-03-02T23:33:00", "artist":"Les R\u00eaveries", "track":"Coulant", "playtimeMs":148437, "spotify_link":"https:\/\/open.spotify.com\/track\/445KHitEvap0tspDZ3C78V", "id":"streaming_46" }, { "Unnamed: 0":47, "start_time":"2019-03-02T23:35:59.894345", "end_time":"2019-03-02T23:36:00", "artist":"praam", "track":"our paths crossing", "playtimeMs":105655, "spotify_link":"https:\/\/open.spotify.com\/track\/570NQJSaUxTdYZT8lGwxgZ", "id":"streaming_47" }, { "Unnamed: 0":48, "start_time":"2019-03-02T23:38:59.857403", "end_time":"2019-03-02T23:39:00", "artist":"Tamara Eden", "track":"Horizon", "playtimeMs":142597, "spotify_link":"https:\/\/open.spotify.com\/track\/1nQ2WCJTn89CnirpfDHV60", "id":"streaming_48" }, { "Unnamed: 0":49, "start_time":"2019-03-02T23:40:59.860806", "end_time":"2019-03-02T23:41:00", "artist":"Naia Lambert", "track":"Ruhevoll", "playtimeMs":139194, "spotify_link":"https:\/\/open.spotify.com\/track\/3a29LVdJdkqOBNDFnbbqJN", "id":"streaming_49" }, { "Unnamed: 0":50, "start_time":"2019-03-02T23:42:59.850029", "end_time":"2019-03-02T23:43:00", "artist":"Kellen Chase", "track":"Meditabundus", "playtimeMs":149971, "spotify_link":"https:\/\/open.spotify.com\/track\/5e5tJl04Fp74oHxpsrC7Tk", "id":"streaming_50" }, { "Unnamed: 0":51, "start_time":"2019-03-02T23:46:59.799320", "end_time":"2019-03-02T23:47:00", "artist":"antinode", "track":"vierde moment", "playtimeMs":200680, "spotify_link":"https:\/\/open.spotify.com\/track\/1IqWZERE8ZOVtgE3fmekFv", "id":"streaming_51" }, { "Unnamed: 0":52, "start_time":"2019-03-03T19:21:58.176027", "end_time":"2019-03-03T19:22:00", "artist":"Lex Fridman Podcast", "track":"#286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine", "playtimeMs":1823973, "spotify_link":null, "id":"streaming_52" }, { "Unnamed: 0":53, "start_time":"2019-03-03T22:19:55.579920", "end_time":"2019-03-03T22:20:00", "artist":"Lex Fridman Podcast", "track":"#286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine", "playtimeMs":4420080, "spotify_link":null, "id":"streaming_53" }, { "Unnamed: 0":54, "start_time":"2019-03-03T22:20:59.997132", "end_time":"2019-03-03T22:21:00", "artist":"Lex Fridman Podcast", "track":"#285 \u2013 Glenn Loury: Race, Racism, Identity Politics, and Cancel Culture", "playtimeMs":2868, "spotify_link":null, "id":"streaming_54" }, { "Unnamed: 0":55, "start_time":"2019-03-03T22:29:59.510656", "end_time":"2019-03-03T22:30:00", "artist":"Lex Fridman Podcast", "track":"#286 \u2013 Oliver Stone: Vladimir Putin and War in Ukraine", "playtimeMs":489344, "spotify_link":null, "id":"streaming_55" }, { "Unnamed: 0":56, "start_time":"2019-03-07T02:30:54.715913", "end_time":"2019-03-07T02:31:00", "artist":"Lex Fridman Podcast", "track":"#299 \u2013 Demis Hassabis: DeepMind", "playtimeMs":5284087, "spotify_link":null, "id":"streaming_56" }, { "Unnamed: 0":57, "start_time":"2019-03-07T14:55:57.454255", "end_time":"2019-03-07T14:56:00", "artist":"Lex Fridman Podcast", "track":"#299 \u2013 Demis Hassabis: DeepMind", "playtimeMs":2545745, "spotify_link":null, "id":"streaming_57" }, { "Unnamed: 0":58, "start_time":"2019-03-07T15:52:56.634213", "end_time":"2019-03-07T15:53:00", "artist":"Lex Fridman Podcast", "track":"#300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom", "playtimeMs":3365787, "spotify_link":null, "id":"streaming_58" }, { "Unnamed: 0":59, "start_time":"2019-03-07T20:25:58.992032", "end_time":"2019-03-07T20:26:00", "artist":"Lex Fridman Podcast", "track":"#300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom", "playtimeMs":1007968, "spotify_link":null, "id":"streaming_59" }, { "Unnamed: 0":60, "start_time":"2019-03-10T16:36:58.526016", "end_time":"2019-03-10T16:37:00", "artist":"Lex Fridman Podcast", "track":"#300 \u2013 Joe Rogan: Comedy, Controversy, Aliens, UFOs, Putin, CIA, and Freedom", "playtimeMs":1473984, "spotify_link":null, "id":"streaming_60" }, { "Unnamed: 0":61, "start_time":"2019-03-17T15:39:59.999882", "end_time":"2019-03-17T15:40:00", "artist":"Exit Scam", "track":"Part V: The Old Friend", "playtimeMs":118, "spotify_link":null, "id":"streaming_61" }, { "Unnamed: 0":62, "start_time":"2019-03-17T15:39:58.337319", "end_time":"2019-03-17T15:40:00", "artist":"\u05d4\u05db\u05d5\u05ea\u05e8\u05ea", "track":"\u05e0\u05e4\u05d9\u05dc\u05ea \u05d4\u05e9\u05de\u05d0\u05dc \u05d4\u05e6\u05d9\u05d5\u05e0\u05d9", "playtimeMs":1662681, "spotify_link":null, "id":"streaming_62" }, { "Unnamed: 0":63, "start_time":"2019-03-23T22:30:59.998840", "end_time":"2019-03-23T22:31:00", "artist":"Exit Scam", "track":"Part V: The Old Friend", "playtimeMs":1160, "spotify_link":null, "id":"streaming_63" }, { "Unnamed: 0":64, "start_time":"2019-03-23T22:57:59.020807", "end_time":"2019-03-23T22:58:00", "artist":"Lex Fridman Podcast", "track":"#295 \u2013 Richard Wolff: Marxism and Communism", "playtimeMs":979193, "spotify_link":null, "id":"streaming_64" }, { "Unnamed: 0":65, "start_time":"2019-03-24T02:53:59.999370", "end_time":"2019-03-24T02:54:00", "artist":"Lex Fridman Podcast", "track":"#295 \u2013 Richard Wolff: Marxism and Communism", "playtimeMs":630, "spotify_link":null, "id":"streaming_65" }, { "Unnamed: 0":66, "start_time":"2019-03-24T03:47:57.137380", "end_time":"2019-03-24T03:48:00", "artist":"Lex Fridman Podcast", "track":"#301 \u2013 Jack Barsky: KGB Spy", "playtimeMs":2862620, "spotify_link":null, "id":"streaming_66" }, { "Unnamed: 0":67, "start_time":"2019-03-24T21:03:57.085293", "end_time":"2019-03-24T21:04:00", "artist":"Lex Fridman Podcast", "track":"#301 \u2013 Jack Barsky: KGB Spy", "playtimeMs":2914707, "spotify_link":null, "id":"streaming_67" }, { "Unnamed: 0":68, "start_time":"2019-03-28T15:13:55.193621", "end_time":"2019-03-28T15:14:00", "artist":"Lex Fridman Podcast", "track":"#306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence", "playtimeMs":4806379, "spotify_link":null, "id":"streaming_68" }, { "Unnamed: 0":69, "start_time":"2019-03-29T01:18:58.907601", "end_time":"2019-03-29T01:19:00", "artist":"Lex Fridman Podcast", "track":"#306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence", "playtimeMs":1092399, "spotify_link":null, "id":"streaming_69" }, { "Unnamed: 0":70, "start_time":"2019-03-29T17:12:58.377812", "end_time":"2019-03-29T17:13:00", "artist":"Lex Fridman Podcast", "track":"#306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence", "playtimeMs":1622188, "spotify_link":null, "id":"streaming_70" }, { "Unnamed: 0":71, "start_time":"2019-03-29T20:00:59.729921", "end_time":"2019-03-29T20:01:00", "artist":"Lex Fridman Podcast", "track":"#306 \u2013 Oriol Vinyals: Deep Learning and Artificial General Intelligence", "playtimeMs":270079, "spotify_link":null, "id":"streaming_71" }, { "Unnamed: 0":72, "start_time":"2019-03-30T00:26:59.587893", "end_time":"2019-03-30T00:27:00", "artist":"Lex Fridman Podcast", "track":"#207 \u2013 Chris Duffin: The Mad Scientist of Strength", "playtimeMs":412107, "spotify_link":null, "id":"streaming_72" }, { "Unnamed: 0":73, "start_time":"2019-03-30T23:57:59.994590", "end_time":"2019-03-30T23:58:00", "artist":"Lex Fridman Podcast", "track":"#207 \u2013 Chris Duffin: The Mad Scientist of Strength", "playtimeMs":5410, "spotify_link":null, "id":"streaming_73" }, { "Unnamed: 0":74, "start_time":"2019-03-30T00:51:56.797826", "end_time":"2019-03-30T00:52:00", "artist":"Lex Fridman Podcast", "track":"#298 \u2013 Susan Cain: The Power of Introverts and Loneliness", "playtimeMs":3202174, "spotify_link":null, "id":"streaming_74" }, { "Unnamed: 0":75, "start_time":"2019-04-01T20:15:56.262083", "end_time":"2019-04-01T20:16:00", "artist":"Lex Fridman Podcast", "track":"#298 \u2013 Susan Cain: The Power of Introverts and Loneliness", "playtimeMs":3737917, "spotify_link":null, "id":"streaming_75" }, { "Unnamed: 0":76, "start_time":"2019-04-02T03:02:59.791198", "end_time":"2019-04-02T03:03:00", "artist":"Lex Fridman Podcast", "track":"#298 \u2013 Susan Cain: The Power of Introverts and Loneliness", "playtimeMs":208802, "spotify_link":null, "id":"streaming_76" }, { "Unnamed: 0":77, "start_time":"2019-04-02T14:24:59.994295", "end_time":"2019-04-02T14:25:00", "artist":"Lex Fridman Podcast", "track":"#299 \u2013 Demis Hassabis: DeepMind", "playtimeMs":5705, "spotify_link":null, "id":"streaming_77" }, { "Unnamed: 0":78, "start_time":"2019-04-05T18:00:59.997247", "end_time":"2019-04-05T18:01:00", "artist":"Lex Fridman Podcast", "track":"#277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship", "playtimeMs":2753, "spotify_link":null, "id":"streaming_78" }, { "Unnamed: 0":79, "start_time":"2019-04-05T18:00:59.999478", "end_time":"2019-04-05T18:01:00", "artist":"Lex Fridman Podcast", "track":"#299 \u2013 Demis Hassabis: DeepMind", "playtimeMs":522, "spotify_link":null, "id":"streaming_79" }, { "Unnamed: 0":80, "start_time":"2019-04-05T19:50:56.902858", "end_time":"2019-04-05T19:51:00", "artist":"Lex Fridman Podcast", "track":"#277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship", "playtimeMs":3097142, "spotify_link":null, "id":"streaming_80" }, { "Unnamed: 0":81, "start_time":"2019-04-05T23:46:55.538729", "end_time":"2019-04-05T23:47:00", "artist":"Lex Fridman Podcast", "track":"#277 \u2013 Andrew Huberman: Focus, Stress, Relationships, and Friendship", "playtimeMs":4461271, "spotify_link":null, "id":"streaming_81" }, { "Unnamed: 0":82, "start_time":"2019-04-08T06:01:57.093682", "end_time":"2019-04-08T06:02:00", "artist":"Lex Fridman Podcast", "track":" #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets", "playtimeMs":2906318, "spotify_link":"https:\/\/open.spotify.com\/track\/4uUA3g2Evr8jziBnCZlUl0", "id":"streaming_82" }, { "Unnamed: 0":83, "start_time":"2019-04-08T19:39:57.271936", "end_time":"2019-04-08T19:40:00", "artist":"Lex Fridman Podcast", "track":" #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets", "playtimeMs":2728064, "spotify_link":"https:\/\/open.spotify.com\/track\/4uUA3g2Evr8jziBnCZlUl0", "id":"streaming_83" }, { "Unnamed: 0":84, "start_time":"2019-04-08T21:50:58.395412", "end_time":"2019-04-08T21:51:00", "artist":"Lex Fridman Podcast", "track":" #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets", "playtimeMs":1604588, "spotify_link":"https:\/\/open.spotify.com\/track\/4uUA3g2Evr8jziBnCZlUl0", "id":"streaming_84" }, { "Unnamed: 0":85, "start_time":"2019-04-09T17:42:59.791494", "end_time":"2019-04-09T17:43:00", "artist":"Olivia Newton-John", "track":"Xanadu", "playtimeMs":208506, "spotify_link":"https:\/\/open.spotify.com\/track\/67tNgYlYbsIs2klWOJwhr5", "id":"streaming_85" }, { "Unnamed: 0":86, "start_time":"2019-04-09T17:46:59.773902", "end_time":"2019-04-09T17:47:00", "artist":"Olivia Newton-John", "track":"Carried Away - Alternate Mix \/ Remastered 2021", "playtimeMs":226098, "spotify_link":"https:\/\/open.spotify.com\/track\/45o0VxsPoYt2IAJ25irnGS", "id":"streaming_86" }, { "Unnamed: 0":87, "start_time":"2019-04-09T17:50:59.774008", "end_time":"2019-04-09T17:51:00", "artist":"Olivia Newton-John", "track":"Physical - Remastered 2021", "playtimeMs":225992, "spotify_link":"https:\/\/open.spotify.com\/track\/737CBNAqpmgN5qWQJncfcD", "id":"streaming_87" }, { "Unnamed: 0":88, "start_time":"2019-04-09T17:54:59.743864", "end_time":"2019-04-09T17:55:00", "artist":"Olivia Newton-John", "track":"Shaking You - Remastered 2021", "playtimeMs":256136, "spotify_link":"https:\/\/open.spotify.com\/track\/1eoLWTfOJz4UXC7wDvqjOd", "id":"streaming_88" }, { "Unnamed: 0":89, "start_time":"2019-04-09T17:58:59.779667", "end_time":"2019-04-09T17:59:00", "artist":"Olivia Newton-John", "track":"I Love You, I Honestly Love You", "playtimeMs":220333, "spotify_link":"https:\/\/open.spotify.com\/track\/0cM3OFAPxAshOOy7MT90Yc", "id":"streaming_89" }, { "Unnamed: 0":90, "start_time":"2019-04-09T18:02:59.774126", "end_time":"2019-04-09T18:03:00", "artist":"Olivia Newton-John", "track":"Carried Away - Remastered 2021", "playtimeMs":225874, "spotify_link":"https:\/\/open.spotify.com\/track\/7sUJAP8vQAFyZZ8AJkcE5Z", "id":"streaming_90" }, { "Unnamed: 0":91, "start_time":"2019-04-09T18:05:59.786467", "end_time":"2019-04-09T18:06:00", "artist":"Olivia Newton-John", "track":"Have You Never Been Mellow", "playtimeMs":213533, "spotify_link":"https:\/\/open.spotify.com\/track\/668lXk61ZcAUdXIcya9Ehe", "id":"streaming_91" }, { "Unnamed: 0":92, "start_time":"2019-04-09T18:12:59.598201", "end_time":"2019-04-09T18:13:00", "artist":"Olivia Newton-John", "track":"Livin' In Desperate Times - Extended Version \/ Remastered 2021", "playtimeMs":401799, "spotify_link":"https:\/\/open.spotify.com\/track\/4WXNWhGUorBmNbnRIIA7eO", "id":"streaming_92" }, { "Unnamed: 0":93, "start_time":"2019-04-10T03:44:59.830160", "end_time":"2019-04-10T03:45:00", "artist":"John Travolta", "track":"You're The One That I Want - From \u201cGrease\u201d", "playtimeMs":169840, "spotify_link":null, "id":"streaming_93" }, { "Unnamed: 0":94, "start_time":"2019-04-10T03:47:59.831134", "end_time":"2019-04-10T03:48:00", "artist":"David Gates", "track":"Goodbye Girl", "playtimeMs":168866, "spotify_link":"https:\/\/open.spotify.com\/track\/16rFIDV8h9TRbweNH0GSBX", "id":"streaming_94" }, { "Unnamed: 0":95, "start_time":"2019-04-10T03:50:59.821534", "end_time":"2019-04-10T03:51:00", "artist":"Michael Johnson", "track":"Two In Love", "playtimeMs":178466, "spotify_link":"https:\/\/open.spotify.com\/track\/2izrKyt56ZgLeiq7tMo7lc", "id":"streaming_95" }, { "Unnamed: 0":96, "start_time":"2019-04-10T03:53:59.799840", "end_time":"2019-04-10T03:54:00", "artist":"Stephen Bishop", "track":"When You Wish Upon a Star", "playtimeMs":200160, "spotify_link":"https:\/\/open.spotify.com\/track\/7iPGlz0AhLWbZKvUviE2If", "id":"streaming_96" }, { "Unnamed: 0":97, "start_time":"2019-04-10T03:57:59.781467", "end_time":"2019-04-10T03:58:00", "artist":"Quarterflash", "track":"Try To Make It True", "playtimeMs":218533, "spotify_link":"https:\/\/open.spotify.com\/track\/2GVmwsapgsyWEBThtj1SC9", "id":"streaming_97" }, { "Unnamed: 0":98, "start_time":"2019-04-10T03:58:59.960589", "end_time":"2019-04-10T03:59:00", "artist":"Taylor Dayne", "track":"Willpower", "playtimeMs":39411, "spotify_link":"https:\/\/open.spotify.com\/track\/7HAymNxfWV1oUEDwPpre5V", "id":"streaming_98" }, { "Unnamed: 0":99, "start_time":"2019-04-10T18:59:59.809853", "end_time":"2019-04-10T19:00:00", "artist":"Taylor Dayne", "track":"Willpower", "playtimeMs":190147, "spotify_link":"https:\/\/open.spotify.com\/track\/7HAymNxfWV1oUEDwPpre5V", "id":"streaming_99" }, { "Unnamed: 0":100, "start_time":"2019-04-10T19:02:59.805534", "end_time":"2019-04-10T19:03:00", "artist":"Crystal Gayle", "track":"If You Ever Change Your Mind", "playtimeMs":194466, "spotify_link":"https:\/\/open.spotify.com\/track\/7g15iih7w6WEqdtL3nY50r", "id":"streaming_100" }, { "Unnamed: 0":101, "start_time":"2019-04-11T00:02:53.600471", "end_time":"2019-04-11T00:03:00", "artist":"Lex Fridman Podcast", "track":"#290 \u2013 Dan Reynolds: Imagine Dragons", "playtimeMs":6399529, "spotify_link":null, "id":"streaming_101" }, { "Unnamed: 0":102, "start_time":"2019-04-11T00:39:58.542013", "end_time":"2019-04-11T00:40:00", "artist":"Lex Fridman Podcast", "track":"#290 \u2013 Dan Reynolds: Imagine Dragons", "playtimeMs":1457987, "spotify_link":null, "id":"streaming_102" }, { "Unnamed: 0":103, "start_time":"2019-04-11T15:29:56.176277", "end_time":"2019-04-11T15:30:00", "artist":"Lex Fridman Podcast", "track":"#291 \u2013 Jonathan Haidt: The Case Against Social Media", "playtimeMs":3823723, "spotify_link":null, "id":"streaming_103" }, { "Unnamed: 0":104, "start_time":"2019-04-12T19:54:57.706751", "end_time":"2019-04-12T19:55:00", "artist":"Lex Fridman Podcast", "track":"#291 \u2013 Jonathan Haidt: The Case Against Social Media", "playtimeMs":2293249, "spotify_link":null, "id":"streaming_104" }, { "Unnamed: 0":105, "start_time":"2019-04-12T20:10:59.420645", "end_time":"2019-04-12T20:11:00", "artist":"Lex Fridman Podcast", "track":"#292 \u2013 Robin Hanson: Alien Civilizations, UFOs, and the Future of Humanity", "playtimeMs":579355, "spotify_link":null, "id":"streaming_105" }, { "Unnamed: 0":106, "start_time":"2019-04-13T18:46:55.390590", "end_time":"2019-04-13T18:47:00", "artist":"Lex Fridman Podcast", "track":" #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets", "playtimeMs":4609410, "spotify_link":"https:\/\/open.spotify.com\/track\/4uUA3g2Evr8jziBnCZlUl0", "id":"streaming_106" }, { "Unnamed: 0":107, "start_time":"2019-04-13T22:38:56.433995", "end_time":"2019-04-13T22:39:00", "artist":"Lex Fridman Podcast", "track":" #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets", "playtimeMs":3566005, "spotify_link":"https:\/\/open.spotify.com\/track\/4uUA3g2Evr8jziBnCZlUl0", "id":"streaming_107" }, { "Unnamed: 0":108, "start_time":"2019-04-14T17:20:59.995757", "end_time":"2019-04-14T17:21:00", "artist":"Lex Fridman Podcast", "track":"#310 \u2013 Andrew Bustamante: CIA Spy", "playtimeMs":4243, "spotify_link":null, "id":"streaming_108" }, { "Unnamed: 0":109, "start_time":"2019-04-14T17:20:56.584921", "end_time":"2019-04-14T17:21:00", "artist":"Lex Fridman Podcast", "track":" #309 \u2013 John Carmack: Doom, Quake, VR, AGI, Programming, Video Games, and Rockets", "playtimeMs":3415079, "spotify_link":"https:\/\/open.spotify.com\/track\/4uUA3g2Evr8jziBnCZlUl0", "id":"streaming_109" } ] ================================================ FILE: sample_data/trips.sampled.csv ================================================ ,Unnamed: 0,start_time,end_time,textDescription,country,states_provinces,cities_towns,places,id 0,0,2019-03-27 11:42:43+09:00,2019-03-28 06:38:09+09:00,"You have been to South Korea, Seoul, Seocho-gu, Jung-gu, Gwanak-gu, Yeongdeungpo-gu, and Unseo-dong. You have visited the Incheon International Airport Terminal 1, Seoul National University Gwanak Campus, Bangbae-ro, and Yangpyeong-ro 28da-gil.",I visited South Korea.,"I visited Incheon, Seoul, and Yangpyeong.","I visited Incheon International Airport Terminal 1, Seoul National University Gwanak Campus, and Yangpyeong-ro 28da-gil.","I visited Bangbae-ro, Bangbae 4(sa)-dong, Gonghang-ro, Unseo-dong, Gwanak-ro, Daehak-dong, Yangpyeong-dong 6-ga, and Yangpyeong 2(i)-dong.",trips_0 1,1,2019-03-28 20:38:13+09:00,2019-03-30 14:15:37+09:00,"Japan: Tokyo (Minato, Bunkyo, Meguro, Sanmu, Chiba Prefecture), Roppongi Hills, Tokyo Prince Hotel, Asahi Shokudo, University of Tokyo (Hongo Campus), 中里橋, Roppongi Hills Mori Tower, 191L, Grand Hyatt Tokyo.",I visited Japan.,"I visited Tokyo, Sanmu, and Chiba Prefecture.","I visited Shibakoen, Moto-Azabu, Roppongi Hills, Shibadaimon, Minami-Azabu, Hongo, Naka-Meguro, Narita, and Keyaki-zaka.","I visited Tokyo Prince Hotel, Asahi Shokudo, University of Tokyo, 中里橋, Roppongi Hills Mori Tower, 191L, Grand Hyatt Tokyo, and Shiba Junior High School & Senior High School.",trips_1 2,2,2019-03-31 10:51:04+08:00,2019-04-01 18:54:00+08:00,"Taiwan: Taipei (City Hall Rd., Dongmen Village, Huashan, Longtsakoo, Xingya, Xinyi Commercial Zone, Zhongzheng District, Zhongxiao East Road Section 2), Xinyi District (Chezeng, Liuhe Village, Sanli Village, Xinglong Village), Jinshan North Road. Places: Liberty Square, Democracy Boulevard, Dongmen Village, Chiang Kai-shek Memorial Hall, Cama Cafe, Xiangshan Tunnel, Six Boulders Photographing Platform, Sun Yat-sen Memorial Hall, Bigtom美國冰淇淋咖啡館, 101塔樓1號攝影平台, 楠楠相望, 象山自然步道, 象山親山步道永春亭線, 象山親山步道主線(稜線), 梅花",I visited Taiwan.,I visited Taipei.,"I visited Longtsakoo, Huashan, Xinyi District, Xingya, and Chezeng.","I visited Liberty Square, Democracy Boulevard, Dongmen Village, Jinshan North Road, KuanHua Market, Meihua Village, Sanzhangli Branch Line Trail, Xinglong Village, 梅花球場, 象山親山步道永春亭線, 四獸山步道意象拍照座椅, 南側樓梯出口, Chiang Kai-shek Memorial Hall, cama cafe, Taipei City Hall, Xiangshan Tunnel, Six Boulders Photographing Platform, 中正紀念堂銅像大廳, Eslite XinYi Store, 象山看台北, 101塔樓2號攝影平",trips_2 3,3,2019-04-14 19:19:06-07:00,2019-04-19 11:42:16-07:00,"You have been to Canada, British Columbia, Vancouver, Gastown, Downtown, Canada Place, Seawall, Jack Poole Plaza, West Waterfront Road, West Cordova Street, Fairmont Pacific Rim, and Shaw Tower.",I visited Canada.,I visited British Columbia.,I visited Vancouver.,"I visited Canada Place, Waterfront Nails & Waxing, 2010 Olympic Cauldron, Vancouver Convention Centre West, Fairmont Pacific Rim, Bellaggio Café & Gelateria, and Shaw Tower.",trips_3 4,4,2019-04-24 18:32:53-07:00,2019-04-27 16:17:22-06:00,"You have been to the United States (Arizona and Utah), Coconino County and Yavapai County in Arizona, Sedona City Limit in Arizona, Grand Canyon Village, Bitter Springs, Western Navajo Agency, Wahweap, Oak Creek Dev No. 1, Southwest Center, Garfield County in Utah, and Tropic in Garfield County in Utah. You have visited places such as Mather Point Amphitheatre, Airport Mesa Viewpoint, Lake Powell Resort, Sedona View Trail, Sedona Airport Overlook, AZ 89A, Brewer Trail, Navajo Viewpoint, Mather Point, Airport Loop Trail, Rim Trail, US 89, Casa Sedona Inn, UT-12, Yavapai East 7451-7483, Yavapai Geology Museum, Yavapai Point, 1.5 Mile Resthouse, Grand Canyon, Sedona Airport, 2 Emblem Place, and Crusty.",I visited the United States.,I visited Arizona and Utah.,"I visited Bitter Springs, Grand Canyon Village, Sedona, Wahweap, Oak Creek Dev No. 1, Southwest Center, Copper Vista Estates, and Tropic.","I visited Mather Point Amphitheatre, Airport Mesa Viewpoint, Lake Powell Resort, Sedona View Trail, Sedona Airport Overlook, AZ 89A, Brewer Trail, Navajo Viewpoint, Mather Point, Airport Loop Trail, Rim Trail, US 89, Casa Sedona Inn, UT-12, Yavapai East 7451-7483, Yavapai Geology Museum, Yavapai Point, 1.5 Mile Resthouse, Grand Canyon, Sedona Airport, 2 Emblem Place, and Crusty.",trips_4 5,5,2019-04-27 17:37:11-06:00,2019-04-27 19:34:15-06:00,"You have been to the United States in the states of Utah and Arizona. You have visited the cities/towns of Tropic, Utah and the places Navajo Loop Trailhead, Sunset Point, Sunrise Point, Rim Trail, and Queen's Garden Trail.",I visited the United States.,I visited Utah.,I visited Tropic and Garfield County.,"I visited Navajo Loop Trailhead, Sunset Point, Sunrise Point, Rim Trail, and Queen's Garden Trail.",trips_5 ================================================ FILE: sample_data/trips.sampled.json ================================================ [ { "Unnamed: 0":0, "start_time":"2019-03-27 11:42:43+09:00", "end_time":"2019-03-28 06:38:09+09:00", "textDescription":"You have been to South Korea, Seoul, Seocho-gu, Jung-gu, Gwanak-gu, Yeongdeungpo-gu, and Unseo-dong. You have visited the Incheon International Airport Terminal 1, Seoul National University Gwanak Campus, Bangbae-ro, and Yangpyeong-ro 28da-gil.", "country":"I visited South Korea.", "states_provinces":"I visited Incheon, Seoul, and Yangpyeong.", "cities_towns":"I visited Incheon International Airport Terminal 1, Seoul National University Gwanak Campus, and Yangpyeong-ro 28da-gil.", "places":"I visited Bangbae-ro, Bangbae 4(sa)-dong, Gonghang-ro, Unseo-dong, Gwanak-ro, Daehak-dong, Yangpyeong-dong 6-ga, and Yangpyeong 2(i)-dong.", "id":"trips_0" }, { "Unnamed: 0":1, "start_time":"2019-03-28 20:38:13+09:00", "end_time":"2019-03-30 14:15:37+09:00", "textDescription":"Japan: Tokyo (Minato, Bunkyo, Meguro, Sanmu, Chiba Prefecture), Roppongi Hills, Tokyo Prince Hotel, Asahi Shokudo, University of Tokyo (Hongo Campus), \u4e2d\u91cc\u6a4b, Roppongi Hills Mori Tower, 191L, Grand Hyatt Tokyo.", "country":"I visited Japan.", "states_provinces":"I visited Tokyo, Sanmu, and Chiba Prefecture.", "cities_towns":"I visited Shibakoen, Moto-Azabu, Roppongi Hills, Shibadaimon, Minami-Azabu, Hongo, Naka-Meguro, Narita, and Keyaki-zaka.", "places":"I visited Tokyo Prince Hotel, Asahi Shokudo, University of Tokyo, \u4e2d\u91cc\u6a4b, Roppongi Hills Mori Tower, 191L, Grand Hyatt Tokyo, and Shiba Junior High School & Senior High School.", "id":"trips_1" }, { "Unnamed: 0":2, "start_time":"2019-03-31 10:51:04+08:00", "end_time":"2019-04-01 18:54:00+08:00", "textDescription":"Taiwan: Taipei (City Hall Rd., Dongmen Village, Huashan, Longtsakoo, Xingya, Xinyi Commercial Zone, Zhongzheng District, Zhongxiao East Road Section 2), Xinyi District (Chezeng, Liuhe Village, Sanli Village, Xinglong Village), Jinshan North Road.\n\nPlaces: Liberty Square, Democracy Boulevard, Dongmen Village, Chiang Kai-shek Memorial Hall, Cama Cafe, Xiangshan Tunnel, Six Boulders Photographing Platform, Sun Yat-sen Memorial Hall, Bigtom\u7f8e\u570b\u51b0\u6dc7\u6dcb\u5496\u5561\u9928, 101\u5854\u6a131\u865f\u651d\u5f71\u5e73\u53f0, \u6960\u6960\u76f8\u671b, \u8c61\u5c71\u81ea\u7136\u6b65\u9053, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u4e3b\u7dda(\u7a1c\u7dda), \u6885\u82b1", "country":"I visited Taiwan.", "states_provinces":"I visited Taipei.", "cities_towns":"I visited Longtsakoo, Huashan, Xinyi District, Xingya, and Chezeng.", "places":"I visited Liberty Square, Democracy Boulevard, Dongmen Village, Jinshan North Road, KuanHua Market, Meihua Village, Sanzhangli Branch Line Trail, Xinglong Village, \u6885\u82b1\u7403\u5834, \u8c61\u5c71\u89aa\u5c71\u6b65\u9053\u6c38\u6625\u4ead\u7dda, \u56db\u7378\u5c71\u6b65\u9053\u610f\u8c61\u62cd\u7167\u5ea7\u6905, \u5357\u5074\u6a13\u68af\u51fa\u53e3, Chiang Kai-shek Memorial Hall, cama cafe, Taipei City Hall, Xiangshan Tunnel, Six Boulders Photographing Platform, \u4e2d\u6b63\u7d00\u5ff5\u5802\u9285\u50cf\u5927\u5ef3, Eslite XinYi Store, \u8c61\u5c71\u770b\u53f0\u5317, 101\u5854\u6a132\u865f\u651d\u5f71\u5e73", "id":"trips_2" }, { "Unnamed: 0":3, "start_time":"2019-04-14 19:19:06-07:00", "end_time":"2019-04-19 11:42:16-07:00", "textDescription":"You have been to Canada, British Columbia, Vancouver, Gastown, Downtown, Canada Place, Seawall, Jack Poole Plaza, West Waterfront Road, West Cordova Street, Fairmont Pacific Rim, and Shaw Tower.", "country":"I visited Canada.", "states_provinces":"I visited British Columbia.", "cities_towns":"I visited Vancouver.", "places":"I visited Canada Place, Waterfront Nails & Waxing, 2010 Olympic Cauldron, Vancouver Convention Centre West, Fairmont Pacific Rim, Bellaggio Caf\u00e9 & Gelateria, and Shaw Tower.", "id":"trips_3" }, { "Unnamed: 0":4, "start_time":"2019-04-24 18:32:53-07:00", "end_time":"2019-04-27 16:17:22-06:00", "textDescription":"You have been to the United States (Arizona and Utah), Coconino County and Yavapai County in Arizona, Sedona City Limit in Arizona, Grand Canyon Village, Bitter Springs, Western Navajo Agency, Wahweap, Oak Creek Dev No. 1, Southwest Center, Garfield County in Utah, and Tropic in Garfield County in Utah. You have visited places such as Mather Point Amphitheatre, Airport Mesa Viewpoint, Lake Powell Resort, Sedona View Trail, Sedona Airport Overlook, AZ 89A, Brewer Trail, Navajo Viewpoint, Mather Point, Airport Loop Trail, Rim Trail, US 89, Casa Sedona Inn, UT-12, Yavapai East 7451-7483, Yavapai Geology Museum, Yavapai Point, 1.5 Mile Resthouse, Grand Canyon, Sedona Airport, 2 Emblem Place, and Crusty.", "country":"I visited the United States.", "states_provinces":"I visited Arizona and Utah.", "cities_towns":"I visited Bitter Springs, Grand Canyon Village, Sedona, Wahweap, Oak Creek Dev No. 1, Southwest Center, Copper Vista Estates, and Tropic.", "places":"I visited Mather Point Amphitheatre, Airport Mesa Viewpoint, Lake Powell Resort, Sedona View Trail, Sedona Airport Overlook, AZ 89A, Brewer Trail, Navajo Viewpoint, Mather Point, Airport Loop Trail, Rim Trail, US 89, Casa Sedona Inn, UT-12, Yavapai East 7451-7483, Yavapai Geology Museum, Yavapai Point, 1.5 Mile Resthouse, Grand Canyon, Sedona Airport, 2 Emblem Place, and Crusty.", "id":"trips_4" }, { "Unnamed: 0":5, "start_time":"2019-04-27 17:37:11-06:00", "end_time":"2019-04-27 19:34:15-06:00", "textDescription":"You have been to the United States in the states of Utah and Arizona. You have visited the cities\/towns of Tropic, Utah and the places Navajo Loop Trailhead, Sunset Point, Sunrise Point, Rim Trail, and Queen's Garden Trail.", "country":"I visited the United States.", "states_provinces":"I visited Utah.", "cities_towns":"I visited Tropic and Garfield County.", "places":"I visited Navajo Loop Trailhead, Sunset Point, Sunrise Point, Rim Trail, and Queen's Garden Trail.", "id":"trips_5" } ] ================================================ FILE: sample_data/views_idx.csv ================================================ tablename,embedding books,"[-0.006182512734085321, 0.009406983852386475, 0.00993300974369049, -0.015493855811655521, -0.010137954726815224, 0.025098953396081924, -0.014592096209526062, -0.026519905775785446, -0.008115828968584538, -0.017925871536135674, 0.02263960987329483, 0.023158805444836617, -0.004245780874043703, 0.004713739268481731, -0.0068827420473098755, 0.0034755286760628223, 0.019825030118227005, -0.010124292224645615, 0.008819473907351494, -0.032517969608306885, 0.018035175278782845, 0.005817027296870947, -0.02324078232049942, 0.01605403982102871, 0.00428335415199399, -0.011046544648706913, 0.015165942721068859, -0.037409327924251556, -0.002879479667171836, -0.015165942721068859, 0.012194237671792507, -0.006660718470811844, 0.0007292632362805307, -0.02539953961968422, -0.009830537252128124, -0.0024217688478529453, -0.005236349068582058, -0.0076786126010119915, 0.01722905784845352, -0.006032219622284174, -0.0008458258234895766, 0.027626609429717064, 0.008423246443271637, -0.01977037824690342, -0.04027855768799782, 0.010541013441979885, 0.044022224843502045, -0.0424099899828434, -0.01078011654317379, 0.005967320408672094, 0.011101197451353073, 0.027011774480342865, -0.01880030520260334, 0.008047513663768768, 0.006312311626970768, 0.00584435323253274, 0.015616822987794876, 0.03158888220787048, 0.006090287584811449, -0.02899291180074215, 0.014960997737944126, -0.005858016200363636, -0.0010494900634512305, -0.020508181303739548, 0.009003925137221813, -0.007801579777151346, -0.021642209962010384, 0.008416415192186832, 0.003197144716978073, 0.0027360180392861366, 0.011094365268945694, 0.017078764736652374, -0.017037775367498398, -0.014838030561804771, 0.029402801766991615, -0.010336068458855152, -0.027093753218650818, 0.009318173862993717, -0.005912668537348509, 0.006216670386493206, 0.0033935506362468004, -0.008997092954814434, -0.02179250307381153, 0.030277233570814133, 0.008730664849281311, 0.04098903387784958, 0.006062961649149656, 0.012815904803574085, -0.019128216430544853, -0.010267753154039383, -0.003381595481187105, 0.004853785037994385, 0.034102875739336014, 0.011149018071591854, 0.008798979222774506, 0.024156205356121063, -0.018158143386244774, 0.04429548606276512, -0.0019452712731435895, -0.00443706288933754, 0.011552076786756516, 0.012617791071534157, -0.03585174307227135, -0.011832168325781822, -0.022571295499801636, 0.004898189567029476, -0.005830690264701843, 0.004638592712581158, 0.015029313042759895, -0.0019862602930516005, -0.012966197915375233, 0.026151005178689957, 0.020398877561092377, -0.02777690254151821, -0.015712464228272438, -0.027968185022473335, -0.004478052258491516, -0.03776456415653229, -0.00783573742955923, -0.00999449286609888, 0.0006942517939023674, 0.0011750190751627088, 7.338531577261165e-05, -0.011961966753005981, -0.016013050451874733, 0.018595358356833458, -0.01497466117143631, -0.02705276384949684, 0.009325006045401096, -0.023759977892041206, 0.026205657050013542, 0.021041037514805794, 0.02108202688395977, -0.009434309788048267, -0.015138616785407066, 0.03519591689109802, -0.004112566355615854, 0.02408788911998272, -0.016340961679816246, -0.0337749645113945, -0.0249076709151268, 0.020931733772158623, -0.0022988016717135906, 0.005058730021119118, -0.01699678599834442, 0.035769764333963394, -0.004546367097645998, -0.007535151205956936, 0.014715063385665417, 0.009072239510715008, 0.011210501194000244, 0.005543767008930445, -0.016586896032094955, 0.0045497827231884, 0.011873157694935799, -0.003185189561918378, 0.012009787373244762, 0.010103797540068626, -0.0027462653815746307, -0.009085902944207191, -0.001967473654076457, 0.032272033393383026, -0.001226255320943892, -0.02921151928603649, 0.023691661655902863, 0.03713606670498848, 0.041262295097112656, -0.021355288103222847, -0.00524318078532815, -0.026642873883247375, -0.0328458808362484, 0.01258363388478756, -0.001551605761051178, 0.018513381481170654, -0.006968135945498943, 0.03005862608551979, 0.016026712954044342, -0.01822645775973797, -0.028063826262950897, 0.015890082344412804, 0.009734896011650562, 0.01710609160363674, -0.00377099122852087, 0.02694346010684967, -0.018240120261907578, -0.031097015365958214, -0.001876956201158464, -0.02358235791325569, 0.01582176797091961, 0.006305479910224676, 0.013225795701146126, 0.016258984804153442, -0.02504430152475834, 0.009939840994775295, -0.6225961446762085, -0.023404739797115326, 0.009072239510715008, -0.017324699088931084, 0.018991585820913315, 0.02850104309618473, -0.0038700480945408344, 0.017789240926504135, -0.021368950605392456, 0.020398877561092377, -0.008245627395808697, -0.0026028037536889315, 0.011353963054716587, 0.006537751294672489, -0.003142492612823844, -0.0286103468388319, 0.01761162281036377, 0.007412184029817581, 0.002944379113614559, 0.005789701361209154, -0.0016130893491208553, 0.013437571935355663, 0.015999386087059975, 0.015603159554302692, -0.010855263099074364, 0.021737851202487946, -0.005793116986751556, -0.023022174835205078, 0.011798011139035225, -0.002490083919838071, -0.03749130293726921, 0.007398521061986685, 0.04074310138821602, 0.005253428127616644, 0.042573943734169006, -0.016586896032094955, -0.018704663962125778, 0.030714450404047966, 0.017188068479299545, 0.04735599830746651, -0.02038521319627762, -0.021013712510466576, -0.0069100684486329556, 0.011176344007253647, -0.019305836409330368, 0.01903257519006729, 0.01772092655301094, 0.03650756925344467, -0.010903083719313145, -0.004095487762242556, 0.017037775367498398, 0.0032535046339035034, 0.015835430473089218, -0.01568513736128807, 0.018964260816574097, -0.022052101790905, 0.03221738338470459, 0.009598265402019024, 0.010923578403890133, -0.009475299157202244, -0.006845168769359589, 0.007733264472335577, -0.0028384907636791468, -0.005096303299069405, -0.028118478134274483, 0.03664419800043106, 0.005294417031109333, 0.00533199030905962, -0.008341268636286259, -0.04385826736688614, 0.029402801766991615, 0.0161906685680151, 0.004805964417755604, -0.033009838312864304, 0.023295436054468155, 0.010329237207770348, 0.04571643844246864, 0.008689675480127335, 0.0009512872202321887, 0.001627606339752674, 0.013307773508131504, -0.017912209033966064, -3.8854188460391015e-05, -0.020221257582306862, 0.011552076786756516, -0.004368748050183058, -0.03770991414785385, 0.002708692103624344, 0.0147287268191576, 0.007842568680644035, 0.01550751831382513, -0.01903257519006729, 0.00092054542619735, -0.016627885401248932, -0.014523781836032867, 0.023800967261195183, -0.031561557203531265, -0.011579402722418308, -0.004064746201038361, -0.00288972700946033, -0.02359602227807045, 0.016627885401248932, 0.013553707860410213, 0.014469129964709282, 0.038256432861089706, 0.01090991497039795, -0.004631760995835066, 0.00993300974369049, -0.008518887683749199, -0.0060356357134878635, -0.015712464228272438, 0.0004453287983778864, -0.00993300974369049, -0.0024166451767086983, -0.02108202688395977, -0.03139759972691536, 0.01676451601088047, -0.0004816211585421115, 0.010028650984168053, 0.022666936740279198, 0.002059699036180973, 0.016723526641726494, 0.01019260659813881, 0.0024832524359226227, 0.03221738338470459, 0.011757021769881248, 0.005393473897129297, -0.010076471604406834, -0.004156971350312233, 0.015534844249486923, 0.014086565002799034, 0.0003464854380581528, 0.024497780948877335, -0.0207404512912035, 0.010110628791153431, 0.0005209023365750909, 0.011408614926040173, 0.00849839299917221, 0.007132092025130987, -0.0013927732361480594, -6.1643666413147e-05, -0.013601528480648994, 0.0067256176844239235, -0.011832168325781822, -0.008757990784943104, -0.008013356477022171, -0.008778485469520092, 0.005209023132920265, -0.021601222455501556, 0.005075809080153704, -0.0073643634095788, -0.04085240513086319, -0.006913484074175358, -0.0026830739807337523, -0.015070302411913872, -0.013956766575574875, -0.001982844667509198, -0.02888360619544983, -0.007767422124743462, -0.011989292688667774, -0.005045067053288221, 0.031561557203531265, 0.00023397908080369234, -0.010739127174019814, -0.011709201149642467, -0.01274759043008089, -0.019743051379919052, 0.027039101347327232, -0.016436602920293808, -0.03989599645137787, -0.005796532612293959, -0.012221564538776875, -0.0013927732361480594, -0.01591740921139717, 0.017051437869668007, 0.01998898573219776, -0.040415190160274506, -0.0030126941855996847, 0.012733926996588707, -0.025686461478471756, -0.025932395830750465, 0.008532551117241383, 0.020672136917710304, -0.009188375435769558, 0.005256843753159046, 0.004484883509576321, 0.016436602920293808, 0.0007164541748352349, -0.01119683776050806, 0.0018257199553772807, 0.002582309301942587, 0.008027019910514355, -0.0010366810020059347, -0.003914453089237213, -0.007268722169101238, 0.018253784626722336, -0.001755697070620954, -0.015247921459376812, -0.005564261693507433, 0.004457557573914528, 0.012768084183335304, 0.014154880307614803, -0.005359316244721413, 0.014482792466878891, -0.011511087417602539, -0.023063164204359055, 0.01394993532449007, -0.014646749012172222, 0.0036582713946700096, 0.01736568845808506, 0.030031299218535423, -0.04612632840871811, 0.008443741127848625, 0.012884220108389854, 0.003151032142341137, -0.012269384227693081, 0.009482130408287048, -0.004184297285974026, -0.025659136474132538, 0.0033850111067295074, 0.01246749795973301, 0.002192913321778178, 0.00024529374786652625, -0.008730664849281311, -0.020084626972675323, 0.015179606154561043, 0.01975671574473381, 0.015234258025884628, -0.012173743918538094, -0.023063164204359055, 0.017679937183856964, 0.014004587195813656, 0.028063826262950897, 0.008648686110973358, 0.011838999576866627, 0.016026712954044342, 0.022803567349910736, -0.022093089297413826, 0.01807616464793682, -0.0038871269207447767, -0.0024286003317683935, 0.015849092975258827, 0.007282385136932135, -0.03126097097992897, 0.02240733988583088, 0.002765052020549774, 0.019715726375579834, 0.014824368059635162, -0.0076786126010119915, 0.030987711623311043, 0.0054447101429104805, 0.002196329180151224, -0.012542644515633583, -0.005294417031109333, -0.007207238581031561, -0.015644147992134094, -0.01807616464793682, 0.013355594128370285, 0.008334437385201454, 0.03232668712735176, 0.010732295922935009, 0.02729869820177555, 0.02684781886637211, 0.015903746709227562, 0.021751515567302704, -0.010028650984168053, -0.00952311884611845, -0.01606770232319832, -0.025003312155604362, -0.02082243002951145, 0.019825030118227005, -0.03724537044763565, -0.01688748225569725, -0.01858169585466385, 0.014264184050261974, -0.005202191881835461, 0.005379810929298401, 0.0041023194789886475, 0.0072413962334394455, 0.03429415822029114, -0.01702411286532879, -0.026301298290491104, 0.012112259864807129, 0.008382258005440235, 0.013451235368847847, -0.028692325577139854, 0.0062405806966125965, 0.008662349544465542, -0.022489316761493683, 0.02852836810052395, 0.017461329698562622, 0.018964260816574097, -0.0303045604377985, -0.01772092655301094, -0.006575324572622776, 0.018185468390583992, 0.0263696126639843, -0.0015208639670163393, 0.0025532753206789494, -0.019428802654147148, -0.01378597877919674, 0.01808982715010643, 0.03702676296234131, 0.0036446084268391132, 0.020945396274328232, 0.012822736985981464, -0.006332805845886469, -0.007316542789340019, -0.005810195580124855, -0.0051338765770196915, 0.0029426710680127144, 0.00921570137143135, -0.011757021769881248, 0.004635176621377468, 0.02850104309618473, 0.02888360619544983, 0.00043230623123236, -0.012166911736130714, -0.00698179891332984, 0.00952995102852583, -0.001222839578986168, -0.05440611392259598, 0.002708692103624344, 0.00808167178183794, 0.008887789212167263, 0.017693599686026573, 0.009953504428267479, 0.011538413353264332, -0.025221919640898705, 0.007179912645369768, -0.02899291180074215, 0.0008812642772682011, 0.021587558090686798, -0.017051437869668007, -0.01796686090528965, -0.0004871717537753284, 0.015589496120810509, 0.011832168325781822, 0.014045576564967632, -0.00244226329959929, -0.0001128265867009759, -0.027148405089974403, 0.0019384397892281413, -0.020521843805909157, 0.0050245728343725204, 0.000570430769585073, 0.013888451270759106, 0.033938921988010406, 0.01774825155735016, -0.016750851646065712, -0.008539382368326187, 0.00910639762878418, 0.00843690987676382, -0.03366566076874733, -0.027708588168025017, 0.017693599686026573, 0.025946060195565224, -0.01702411286532879, -0.00897659920156002, 0.06536384671926498, 0.041863467544317245, 0.003856385126709938, 0.003277414944022894, 0.0070091248489916325, 0.006544582545757294, -0.004761559423059225, 0.0022065765224397182, 0.009290847927331924, -0.011695537716150284, -0.02166953682899475, 0.006701707374304533, 0.04609900340437889, 0.03019525669515133, -0.00017377642507199198, 0.0010759622091427445, 0.0025481516495347023, -0.044978633522987366, -0.017884882166981697, 0.026738513261079788, -0.021997449919581413, -0.008628192357718945, -0.01515228021889925, -0.025344887748360634, -0.002392734866589308, 0.002109227469190955, -0.00446097319945693, -0.031097015365958214, -0.012535813264548779, 0.0051133823581039906, -0.035031963139772415, -0.020781440660357475, 0.005837521981447935, -0.04683680459856987, 0.031452253460884094, -0.011032882146537304, -0.006838337518274784, -0.028473716229200363, 0.0010400967439636588, 0.03257261961698532, 0.015466528944671154, 0.02598704770207405, -0.020084626972675323, 0.017461329698562622, -0.0034721128176897764, -0.020453529432415962, -0.03975936397910118, 0.003938362933695316, -0.018417740240693092, 0.004659086931496859, -0.006110782269388437, -0.014892683364450932, -0.0058990055695176125, 0.00037978903856128454, 0.037436652928590775, -0.012153249233961105, 0.02049451693892479, 0.01264511700719595, -0.01711975410580635, 0.02683415450155735, 0.006855416111648083, 0.011476930230855942, 0.007883558049798012, 0.013765484094619751, -0.021000050008296967, -0.0048025487922132015, -0.019237520173192024, -0.015206932090222836, -0.014756052754819393, 0.012802242301404476, 0.012201069854199886, 0.017051437869668007, 0.003630945459008217, -0.007979199290275574, -0.008915115147829056, 0.009864694438874722, -0.010985061526298523, 0.015124954283237457, -0.019333161413669586, 0.032763902097940445, 0.016340961679816246, -0.004201376345008612, -0.0032176394015550613, 0.001535380957648158, -0.028719650581479073, 0.0031373691745102406, -0.016696199774742126, 0.01940147764980793, -0.007562477141618729, 0.0035694618709385395, 0.040305886417627335, -0.018786640837788582, 0.000719869916792959, -0.030632471665740013, 0.00727555388584733, 0.021027375012636185, 0.007719601504504681, -0.015042976476252079, -0.017912209033966064, -0.006206423044204712, -0.00784939993172884, -0.005120213609188795, -0.01377231627702713, -0.03691745921969414, 0.0014619422145187855, 0.003451618365943432, -0.01941514015197754, -0.007391689345240593, -0.003031480824574828, 0.02850104309618473, -0.024702725932002068, -0.010083302855491638, 0.00025682192062959075, 0.01532989926636219, 0.028583019971847534, -0.005092887673527002, 0.00727555388584733, -0.0238282922655344, 0.0037334179505705833, -0.03691745921969414, -0.015657812356948853, -0.03333774954080582, 0.007651286665350199, 0.028828954324126244, 0.0005059583927504718, 0.04169951379299164, 0.009898851625621319, 0.0004318792780395597, 0.01550751831382513, 0.00903808232396841, 0.0029153451323509216, 0.010964566841721535, -0.015275247395038605, -0.0032261786982417107, -0.04440478980541229, 0.002157048089429736, -0.014988323673605919, 0.0337749645113945, -0.01761162281036377, 0.0006933978293091059, 0.01437348872423172, 0.0017574048833921552, 0.018048837780952454, -0.014769716188311577, -0.03292785957455635, -0.019223857671022415, 0.012563139200210571, -0.002052867552265525, 0.002753096865490079, -0.016846492886543274, -0.009051745757460594, 0.047629259526729584, -0.0005858016083948314, 0.002894850680604577, 0.0011451311875134706, 0.02489400841295719, -0.02037155069410801, 0.02839173935353756, 0.001336413319222629, 0.0005614644032903016, -0.0166552122682333, 0.00957777164876461, -0.03555115684866905, -0.022352688014507294, 0.02839173935353756, 0.00769910728558898, 0.0046761659905314445, 0.013198469765484333, 0.01772092655301094, -0.016491254791617393, -0.008962935768067837, -0.004119398072361946, -0.011271984316408634, -0.0175023190677166, 0.00228855456225574, -0.008402752690017223, -0.011504256166517735, 0.0052602593787014484, 0.021505581215023994, 0.011292479000985622, 0.020795103162527084, 0.0006220940267667174, 0.03582441806793213, -0.0311516672372818, -0.015179606154561043, 0.0007442071801051497, -0.005448125768452883, 0.032654598355293274, 0.014756052754819393, 0.005051898770034313, 0.02984001860022545, 0.005939994473010302, -0.0032637519761919975, 0.0011792887235060334, 0.009297679178416729, -0.011538413353264332, 0.02240733988583088, 0.03943145275115967, -0.009304511360824108, -0.03090573288500309, 0.01747499220073223, 0.008361763320863247, -0.03246331587433815, -0.023541368544101715, 0.003934947308152914, 0.02731236070394516, -0.022612284868955612, -0.02669752575457096, -0.014892683364450932, -0.00658557191491127, 0.026301298290491104, -0.04525189474225044, 0.014960997737944126, 0.008122660219669342, -0.004112566355615854, -0.02228437177836895, 0.026683861389756203, -0.00020131593919359148, 0.03268192335963249, -0.00586826354265213, 0.0024730050936341286, 0.0036480240523815155, -0.008771653287112713, 0.0019538106862455606, 0.015384551137685776, 0.011435940861701965, 0.012822736985981464, 0.003227886511012912, -0.0007621398544870317, 0.03689013049006462, 0.0035967878066003323, 0.025590822100639343, 0.012289878912270069, 0.009516287595033646, 0.03473137691617012, -0.016122354194521904, -0.011565739288926125, -0.018417740240693092, -0.021245982497930527, -0.011210501194000244, -0.019961660727858543, -0.015657812356948853, -0.00832760613411665, -0.00548569904640317, 0.012891051359474659, 0.031069688498973846, -0.025372212752699852, -0.03076910227537155, -0.01869099959731102, 0.007623960729688406, -0.004703491926193237, -0.0009256690391339362, 0.021368950605392456, 0.01759795844554901, -0.01725638471543789, -0.016846492886543274, -0.009475299157202244, 0.026151005178689957, 0.018472392112016678, 0.01759795844554901, -0.002459342125803232, 0.016709864139556885, 0.027817891910672188, -0.022434664890170097, 0.019278509542346, -0.03448544070124626, -0.013266784138977528, -0.04790252074599266, -0.011278816498816013, -0.011217332445085049, -0.015193269588053226, 0.015288909897208214, 0.003162987297400832, -0.020084626972675323, -0.03016792982816696, 0.03429415822029114, -0.0017591128125786781, -0.004956257529556751, 0.015862757340073586, -0.023172467947006226, -0.003818811848759651, -0.0005563407903537154, -0.010882589034736156, -0.03388426825404167, 0.031097015365958214, 0.0037026761565357447, -0.008149986155331135, 0.027626609429717064, -0.030851081013679504, 0.018144479021430016, 0.003190313233062625, 0.008662349544465542, 0.031124340370297432, -0.034075550734996796, 0.003373055951669812, -0.011080702766776085, 0.02623298205435276, -0.006483098957687616, -0.008737496100366116, -0.015302573330700397, 0.008136323653161526, -0.03388426825404167, -0.0007258474943228066, 0.022694263607263565, -0.002420061035081744, 0.017188068479299545, 0.003118582535535097, 0.016846492886543274, 0.010978230275213718, 0.015206932090222836, -0.008573539555072784, -0.028118478134274483, -0.012474330142140388, -0.03259994462132454, -0.005567677319049835, -0.011716032400727272, 0.0184314027428627, 0.009174712002277374, 0.00928401667624712, -0.012884220108389854, -0.01676451601088047, 0.0006455773254856467, -0.01676451601088047, 0.0027018606197088957, 0.011763853020966053, 0.017994185909628868, -0.01761162281036377, 0.009277185425162315, 0.01975671574473381, -0.02026224695146084, 0.008108997717499733, -0.01688748225569725, 0.01162722334265709, -0.012371857650578022, 0.0246753990650177, -0.0015934488037601113, 0.004693244583904743, -0.0311516672372818, -0.0274489913135767, 0.00562574528157711, -0.03691745921969414, -0.0035318885929882526, 0.031916797161102295, -0.0028675245121121407, -0.01916920579969883, 0.009912515059113503, 0.0015208639670163393, -0.002150216605514288, 0.009406983852386475, -0.008354932069778442, -0.02373265102505684, -0.004604435060173273, -0.005967320408672094, 0.00899026170372963, 0.013198469765484333, 0.021888144314289093, 0.007562477141618729, -0.0005849477020092309, 0.006592403165996075, -0.008669180795550346, 0.0007309711072593927, 0.01759795844554901, 0.016095027327537537, 0.04022390767931938, -0.015302573330700397, 0.00499724643304944, 0.028774302452802658, 0.015247921459376812, -0.002713815774768591, -0.014660411514341831, 0.04208207502961159, 0.0012834691442549229, -0.006944225635379553, 0.0051816971972584724, -0.032654598355293274, 0.0076786126010119915, -0.03005862608551979, 0.023677999153733253, -0.018595358356833458, -0.007173081394284964, -0.009557276964187622, 0.024648074060678482, -0.02706642635166645, 0.008286616764962673, 0.014646749012172222, -0.02923884615302086, -0.009980830363929272, -0.010698138736188412, -0.0147287268191576, -0.002502039074897766, 0.0013150648446753621, -0.004225286189466715, -0.020152943208813667, -0.008477899245917797, 0.03257261961698532, -0.009311342611908913, -0.009810042567551136, 0.009851031936705112, 0.00709793483838439, -0.026629209518432617, -0.008641854859888554, 0.17423072457313538, -0.011237827129662037, 0.006701707374304533, 0.013990923762321472, -0.025098953396081924, 0.030331885442137718, 0.019469792023301125, -0.0010605913121253252, 0.002361993072554469, 0.007904052734375, -0.005168034229427576, -0.01550751831382513, -0.019920671358704567, 0.0012416262179613113, 0.015206932090222836, -0.01926484704017639, -0.027093753218650818, -0.033228445798158646, -0.0017275171121582389, -0.0450332872569561, -0.000963242317084223, 0.0031356611289083958, -0.011784347705543041, -0.018772978335618973, 0.028473716229200363, -0.002923884429037571, 0.00038555311039090157, -0.0009598265751264989, 0.016805505380034447, 0.033720314502716064, 0.0002491364721208811, -0.004638592712581158, -0.022940196096897125, -0.022817229852080345, -0.030960384756326675, -0.01938781328499317, -0.008136323653161526, 0.030933057889342308, 0.011046544648706913, 0.011278816498816013, -0.0076786126010119915, -0.030605146661400795, 0.021464591845870018, -0.02513994090259075, 0.005663318559527397, 0.006606066133826971, 0.0044131530448794365, -0.0036070351488888264, 0.008430078625679016, -0.01640927791595459, -0.011798011139035225, 0.0021160589531064034, 0.022666936740279198, 0.03175283968448639, 0.011053376831114292, -0.018171805888414383, 0.001977720996364951, 0.013321436941623688, -0.004949425812810659, 0.0010657148668542504, -0.015056638978421688, 0.025932395830750465, -0.012494823895394802, 0.018294772133231163, 0.007500993553549051, -0.002413229551166296, -0.002406398067250848, -0.016737189143896103, 0.016381951048970222, 0.01567147485911846, 0.018704663962125778, -0.03571511432528496, -0.02563180960714817, -0.009741727262735367, 0.0058819265104830265, -0.021587558090686798, 0.04374896362423897, -0.007125260774046183, 0.019606422632932663, 0.01964741013944149, -0.005905836820602417, 0.005711139179766178, 0.0025157020427286625, -0.015644147992134094, -0.0008821181836538017, -0.03615232929587364, 0.038147129118442535, -0.004508793819695711, 0.0016839662566781044, 0.005027988459914923, -0.012925209477543831, 0.012235227040946484, -0.01216008048504591, -0.019018912687897682, 0.008628192357718945, 0.004143308382481337, -0.03675350174307823, 0.010472698137164116, -0.01269293762743473, -0.022912871092557907, -0.014100228436291218, 0.05405087396502495, 0.007623960729688406, 0.005495946388691664, -0.0015165943186730146, -0.005735049024224281, -0.028774302452802658, 0.012679275125265121, 0.01155890803784132, 0.0005764082889072597, 0.0013253121869638562, -0.00526709109544754, -0.006179097108542919, 0.0008112413343042135, -0.03760061040520668, 0.0015678305644541979, -0.036370936781167984, -0.005068977363407612, -0.015138616785407066, 0.0006327682640403509, -0.007152586709707975, -0.0032193472143262625, 0.007091103121638298, 0.006165434140712023, -0.012617791071534157, -0.024743715301156044, -0.03571511432528496, -0.0025105783715844154, 0.01305500790476799, -0.044760026037693024, 0.024156205356121063, -0.02071312628686428, -0.00655824551358819, -0.0070091248489916325, -0.00745317293331027, 0.0011946596205234528, -0.006455773022025824, -0.016354626044631004, -0.012597297318279743, -0.009263521991670132, 0.0009948380757123232, -0.002747973194345832, 0.0030434359796345234, -0.022844556719064713, 0.025700125843286514, -0.0053968895226716995, -0.0033935506362468004, -8.176458504749462e-05, -0.015042976476252079, -0.02250298112630844, -0.006869079079478979, 0.025440528988838196, -0.012023450806736946, -0.01774825155735016, 0.008040682412683964, 0.011271984316408634, -0.013027681969106197, -0.020508181303739548, -0.03104236349463463, -0.026492580771446228, -0.03992332145571709, -0.0014815828762948513, 0.013751821592450142, -0.004566861782222986, -0.03464939817786217, -0.00861452892422676, -0.17357490956783295, 0.020808767527341843, 0.025918733328580856, -0.03571511432528496, -0.01084159966558218, 0.009365994483232498, 0.026670198887586594, -0.018158143386244774, -0.011360794305801392, 0.0032159313559532166, 0.018895944580435753, -0.003507978282868862, -0.009325006045401096, -0.039841342717409134, -0.018786640837788582, 0.0020392045844346285, 0.026929795742034912, 0.013676675036549568, 0.018363088369369507, 0.024880344048142433, 0.023623347282409668, -0.028692325577139854, 0.010773285292088985, -0.0022116999607533216, -0.010076471604406834, -0.0016506626270711422, 0.010144785977900028, 0.020562833175063133, -0.003058806760236621, -0.0060356357134878635, 0.006370379123836756, 0.004344837740063667, 0.01687381975352764, 0.019947998225688934, 0.007343868725001812, 0.009277185425162315, -0.0012347947340458632, 0.014660411514341831, -0.03041386418044567, 0.02885628119111061, 0.01138128899037838, 0.022899208590388298, 0.025959722697734833, 0.005530104041099548, -0.01963374763727188, 0.01882763020694256, 0.02503063715994358, 0.00031531669083051383, -0.015876419842243195, -0.012317204847931862, -0.015261583961546421, -0.060445163398981094, 0.005297832656651735, -0.028828954324126244, -0.0019162374082952738, 0.010513687506318092, -0.00874432735145092, 0.027148405089974403, -0.001967473654076457, -0.013608359731733799, -0.01978404074907303, -0.03943145275115967, -0.011149018071591854, -0.005338822025805712, 0.015343562699854374, -0.025577157735824585, -0.007596634794026613, 0.028063826262950897, -0.0014559647534042597, 0.02325444668531418, -0.002703568432480097, -0.013335099443793297, -0.014523781836032867, 0.021259646862745285, -0.010609328746795654, 0.0030724697280675173, -0.012351362966001034, 0.009270353242754936, 0.009256690740585327, 0.016149679198861122, 0.00028991204453632236, 0.027257708832621574, -0.02634228765964508, 0.004792301449924707, -0.008935609832406044, -0.0029477947391569614, -0.021519243717193604, -0.0009376241941936314, -0.0015951566165313125, -0.016819167882204056, 0.014865356497466564, -0.01869099959731102, 0.0004982729442417622, -0.012597297318279743, 0.007514656521379948, 0.032162729650735855, 0.00470690755173564, 0.018035175278782845, 0.022202394902706146, -0.02023492008447647, -0.011183175258338451, 0.019100891426205635, -0.01856803335249424, 0.022216057404875755, 0.024579757824540138, -0.009598265402019024, -0.02743532694876194, -0.01162039116024971, 0.026806829497218132, -0.01515228021889925, -0.014674074947834015, 0.00761029776185751, -0.0025174098554998636, -0.0038324748165905476, -0.02060382254421711, 0.024388475343585014, -0.011661380529403687, 0.010766453109681606, 0.004389242734760046, -0.0054925307631492615, 0.03811980411410332, -0.003955441992729902, 0.0012655365280807018, 0.006694875657558441, -0.01761162281036377, -0.010923578403890133, -0.09066774696111679, -0.028337087482213974, -0.002056283177807927, 0.0034225843846797943, 0.015493855811655521, -0.0004777784342877567, -0.005656486842781305, 0.022899208590388298, -0.008621360175311565, 0.0014337622560560703, -0.017761915922164917, 0.017816567793488503, -0.0009547029621899128, -0.00014399533392861485, 0.007412184029817581, -0.015603159554302692, -0.015890082344412804, -0.017912209033966064, -0.025098953396081924, 0.028337087482213974, -0.0045702774077653885, -0.009912515059113503, 0.016491254791617393, 0.004402905702590942, -0.02121865749359131, -0.026082688942551613, -0.026519905775785446, 0.01690114475786686, 0.01508396491408348, -0.00868284422904253, -0.024156205356121063, -0.020344223827123642, 0.0029597498942166567, -0.0044746361672878265, -0.00934549979865551, 0.0002615185803733766, -0.01736568845808506, -0.011005556210875511, 0.0024832524359226227, -0.05052581802010536, 0.00999449286609888, 0.0002022766275331378, 0.025659136474132538, -0.02489400841295719, 0.0022953860461711884, -0.0004986999556422234, -0.010609328746795654, 0.03631628677248955, -0.0017642363673076034, -0.009939840994775295, -0.016573233529925346, 0.020631147548556328, -0.003692429047077894, -0.029074888676404953, 0.023527706041932106, -0.011114859953522682, 0.010903083719313145, -0.0073370374739170074, 0.0007980052614584565, -0.0005700037581846118, -0.014537444338202477, -0.028692325577139854, -0.011374457739293575, 0.025577157735824585, 0.03596104681491852, 0.01952444389462471, -0.013335099443793297, 0.003227886511012912, 0.004761559423059225, 0.01394993532449007, -0.00593316275626421, 0.017051437869668007, 0.012303542345762253, 0.017461329698562622, -0.004515625536441803, -0.0022424417547881603, 0.0036104507744312286, -0.011634054593741894, -0.0018530460074543953, -0.029156867414712906, 0.02322711981832981, 0.015466528944671154, -0.021642209962010384, -0.0045395358465611935, 0.014387151226401329, -0.005109966266900301, -0.013840630650520325, 0.015275247395038605, 0.002223655115813017, -0.03317379206418991, -0.005441294517368078, 0.008997092954814434, 0.01940147764980793, -0.016682537272572517, -0.02814580500125885, 0.00021988910157233477, 0.016846492886543274, -0.002239026129245758, -0.005748712457716465, -0.013628854416310787, -0.03352903202176094, -0.03519591689109802, -0.06279519945383072, 0.006537751294672489, -0.009188375435769558, -0.025440528988838196, 0.018841292709112167, -0.011900483630597591, 0.006800764240324497, -0.0042594438418745995, -0.01640927791595459, 0.035031963139772415, -0.019907008856534958, 0.020398877561092377, -0.02800917439162731, -0.005311495624482632, -0.001638707472011447, 0.0037949015386402607, 0.039950646460056305, -0.009270353242754936, 0.026314960792660713, -0.014947335235774517, -0.002715523587539792, 0.025973385199904442, 0.037573281675577164, 0.0019196531502529979, -0.020521843805909157, 0.015466528944671154, -0.025905070826411247, 0.028828954324126244, -0.02359602227807045, -0.015985723584890366, 0.03019525669515133, -0.0012151540722697973, -0.0069783832877874374, 0.03257261961698532, 0.0015900330618023872, -0.009898851625621319, 0.010875757783651352, 0.011524750851094723, 0.004645423963665962, 0.035168591886758804, 0.009003925137221813, -0.040415190160274506, 0.009031251072883606, -0.011278816498816013, -0.00975539069622755, 0.03844771534204483, -0.04782054200768471, 0.018731988966464996, 0.029785366728901863, -0.021751515567302704, 0.013417077250778675, 0.009967166930437088, -0.02131429873406887, -0.011347131803631783, 0.013143816962838173, -0.027025436982512474, 0.034676723182201385, 0.00887412577867508, 0.02121865749359131, 0.024866681545972824, 0.049405451864004135, -0.003320111893117428, 0.019715726375579834, -0.03055049479007721, -0.0030793012119829655, -0.010500025004148483, -0.0023449144791811705, 0.007979199290275574, 0.002944379113614559, -0.028063826262950897, -0.007760590873658657, -0.040907058864831924, 0.007979199290275574, 0.009557276964187622, 0.01640927791595459, -0.019483454525470734, -0.0064933462999761105, 0.022011112421751022, -0.02108202688395977, 0.012228395789861679, 0.05331307277083397, -0.01149742491543293, -0.0024166451767086983, 0.011668211780488491, 0.0347040519118309, 0.01986601948738098, -0.0066299764439463615, 0.002102395985275507, 0.039212845265865326, 0.007924546487629414, -0.0045497827231884, 0.0013159188674762845, 0.001965765841305256, 0.004454141948372126, 0.014838030561804771, -0.028692325577139854, -0.008600866422057152, 0.00039195764111354947, 0.005202191881835461, 0.03626163303852081, 0.017188068479299545, -0.003634361084550619, -0.004843537695705891, 0.001117805135436356, -0.026396939530968666, 0.008641854859888554, -0.02526290901005268, -0.03522324562072754, 0.012836399488151073, 0.036234308034181595, -0.007077440153807402, 0.015521181747317314, -0.007248227950185537, 0.02825510874390602, -0.03320111706852913, 0.013581033796072006, -0.013307773508131504, 0.004467804916203022, -0.02358235791325569, 0.03615232929587364, -0.0066299764439463615, -0.002404690021649003, 0.04200010001659393, -0.017543306574225426, 0.021751515567302704, 0.01869099959731102, 0.036589544266462326, -0.03380228951573372, 0.009652918204665184, 0.004478052258491516, 0.013799642212688923, -0.00586826354265213, -0.03724537044763565, 0.018595358356833458, -0.011859494261443615, -0.011832168325781822, -0.04134427383542061, 0.023336423560976982, -0.022707926109433174, 0.08165016025304794, 0.0026130510959774256, -0.03661687299609184, 0.016204332932829857, -0.03380228951573372, 0.008880957961082458, 0.0032244708854705095, 0.00784939993172884, 0.008334437385201454, 0.007132092025130987, 0.013929440639913082, -0.018267447128891945, -0.013628854416310787, -0.04284720495343208, -0.042355336248874664, 0.025003312155604362, -0.018267447128891945, 0.024880344048142433, 0.014933671802282333, 0.010875757783651352, 0.004406321328133345, -0.008252459578216076, 0.011941472068428993, 0.003586540697142482, -0.027339687570929527, 0.0090995654463768, 0.029976647347211838, -0.016860157251358032, -0.017925871536135674, -0.03836573660373688, 0.031452253460884094, 0.016381951048970222, -0.021765178069472313, -0.029402801766991615, 0.0020392045844346285, 0.0025583989918231964, -0.0025686463341116905, 0.005605250597000122, 0.0039520263671875, -0.02645159140229225, 0.008600866422057152, 0.007466835901141167, -0.021655874326825142, 0.0052705067209899426, -0.015767116099596024, -0.02001631259918213, 0.0147287268191576, -0.022967522963881493, -0.04063379764556885]" exercise,"[0.003913572058081627, 0.023069478571414948, -0.013697503134608269, -0.0488029345870018, -0.024277880787849426, 0.021352998912334442, 0.003005554899573326, -0.03172053396701813, 0.0017920040991157293, -0.027230223640799522, -0.005365713499486446, 0.027669642120599747, -0.014734256081283092, 0.0023927718866616488, -0.0023223962634801865, 0.005146004259586334, 0.02993539534509182, 0.004713451489806175, 0.012187001295387745, -0.028287574648857117, 0.008424479514360428, 0.0049674902111291885, -0.027600983157753944, 0.02960583008825779, 0.006886513903737068, 0.006069470196962357, 0.014555742032825947, -0.016546858474612236, -0.0016907318495213985, 0.012674481607973576, 0.018112286925315857, 0.00012305009295232594, -0.013409134931862354, -0.022355424240231514, -0.006927709560841322, 0.00732593284919858, -0.009804528206586838, 0.004466278478503227, 0.030951550230383873, 0.0013980722287669778, 0.010470522567629814, 0.01359451375901699, 0.0015680036740377545, -0.0009921249002218246, 0.0031308578327298164, 0.01787884533405304, 0.043639764189720154, -0.028287574648857117, 0.014253642410039902, -0.0017336438177153468, -0.005242126993834972, 0.05305980145931244, -0.01066276803612709, 0.0008500862750224769, 0.0016967395786195993, 0.007401457522064447, -0.002023728797212243, 0.03150082379579544, -0.007696692366153002, -0.006999801844358444, -0.007078759837895632, -0.004116117022931576, -0.00014869000006001443, 0.0031634708866477013, -0.020844921469688416, -0.021998396143317223, -0.005781101528555155, 0.006066036876291037, -0.0029609263874590397, 0.024291612207889557, -0.0034621383529156446, 0.011871169321238995, 0.0120428167283535, -0.009351378306746483, 0.01221446506679058, -0.015970122069120407, -0.0019996981136500835, 0.022602597251534462, 0.019828766584396362, 0.007161150686442852, 0.002241721609607339, -0.005763936787843704, -0.021133290603756905, 0.02133926749229431, 0.015050088055431843, 0.0358126200735569, -0.023865925148129463, -0.019046051427721977, -0.01662924885749817, -0.012818665243685246, 0.01857917010784149, 0.013210022822022438, 0.0315282866358757, 0.030319886282086372, -0.005283322650939226, 0.02404443919658661, 0.008252831175923347, 0.047979023307561874, -0.0160113163292408, -0.001213550684042275, -0.00033385519054718316, 0.020886117592453957, -0.027010515332221985, -0.0033351187594234943, -0.03866884112358093, 0.009049277752637863, -0.006443662568926811, -0.0315282866358757, -0.0017954370705410838, -0.018689023330807686, -0.006457394454628229, 0.03649920970201492, 0.007518178317695856, -0.016121171414852142, -0.025980627164244652, -0.01916963793337345, 0.0175904780626297, -0.046166419982910156, -0.01970518007874489, -0.002888834336772561, 0.022465277463197708, 0.015654288232326508, -0.009468098171055317, -0.024511320516467094, -0.00538631109520793, -0.008822702802717686, 0.007222943939268589, -0.015159943141043186, 0.019636521115899086, -0.017741527408361435, 0.01467932853847742, -0.0029471945017576218, 0.011644594371318817, -0.002030594740062952, -0.034082408994436264, 0.018771415576338768, -0.013587648048996925, 0.01577787473797798, 0.006313209887593985, -0.008843299932777882, -0.003676698077470064, 0.013910346664488316, -0.011356225237250328, 0.013608246110379696, -0.003923871088773012, 0.017988700419664383, -0.0008251973195001483, 0.0021438824478536844, 0.016546858474612236, 0.006086634937673807, 0.02710663713514805, -0.00802625622600317, 0.008699116297066212, 0.002717186463996768, 0.0008586686453782022, -0.012729409150779247, -0.0015714365290477872, 0.007312200963497162, -0.0007307909545488656, -0.01570921577513218, 0.01496769767254591, 0.029084021225571632, 0.010752025060355663, -0.007037564180791378, -0.0014006468700245023, 0.031363505870103836, 0.01172698475420475, -0.03158321604132652, 0.010532315820455551, -0.007154284976422787, -0.008348953910171986, 0.03400001674890518, -0.009735869243741035, 0.017398232594132423, -0.0025884504429996014, 0.05281262844800949, 0.012701945379376411, -0.013697503134608269, -0.01465186569839716, -0.018290800973773003, 0.002296648919582367, -0.00029394702869467437, 0.0017550998600199819, 0.009433768689632416, -0.010243946686387062, -0.02839742973446846, 0.01004483550786972, -0.006268581375479698, 0.021174484863877296, 0.014638133347034454, 0.011521007865667343, 0.014267373830080032, -0.013855419121682644, 0.024222953245043755, -0.6288080811500549, -0.004098951816558838, -0.00849313847720623, -0.02010340243577957, 0.016862690448760986, 0.005592288915067911, 0.0008814120083115995, 0.01849677786231041, -0.030429741367697716, 0.014377228915691376, 0.0021232846193015575, -0.008355820551514626, 0.00011178570275660604, -0.0006702850805595517, -0.01848304644227028, -0.011541604995727539, 0.00032462910166941583, -0.009028679691255093, 0.0006848751218058169, 0.013972139917314053, -0.019265761598944664, 0.020213257521390915, 0.015050088055431843, 0.014390960335731506, 0.004212239757180214, 0.026021823287010193, -0.02221810445189476, -0.022602597251534462, 0.014253642410039902, -0.015105015598237514, -0.03334088996052742, -0.013690637424588203, 0.03663652762770653, 0.00954362377524376, 0.05242813751101494, -0.01910097897052765, -0.014404692687094212, 0.023852193728089333, 0.015242334455251694, 0.027916815131902695, -0.029166411608457565, -0.011191443540155888, -0.004792409483343363, -0.002832190366461873, -0.007868340238928795, 0.018647829070687294, 0.006251416634768248, 0.029193876311182976, 0.019018588587641716, -0.008527467958629131, 0.020487893372774124, 0.001865812693722546, 0.014322301372885704, -0.0006612735451199114, 0.0019842498004436493, -1.9417670046095736e-05, 0.0438869372010231, 0.010319472290575504, 0.0022125414106994867, 0.00010856729932129383, 0.006357838399708271, 0.0080056581646204, 0.018922464922070503, -0.01575041189789772, -0.04188209027051926, 0.01910097897052765, 0.0007389442180283368, -0.010003640316426754, -0.01139742136001587, -0.03822942078113556, 0.01111591886729002, 0.023632483556866646, -0.005705576390028, -0.005863492377102375, 0.01671164110302925, -0.0015740112867206335, 0.04138774424791336, -0.010937404818832874, -0.006852184422314167, 0.015159943141043186, 0.016752835363149643, -0.01819467730820179, 0.010353801771998405, -0.027381274849176407, 0.022025858983397484, -0.010504852049052715, -0.027587251737713814, 0.006931142415851355, -0.002488894620910287, 0.006048872135579586, 0.011527873575687408, 0.0011508992174640298, -0.008053719997406006, -0.03144589811563492, -0.0200484748929739, 0.017508085817098618, 0.0020872384775429964, -0.009866321459412575, -0.00039178633596748114, -0.012550895102322102, -0.011768180876970291, 0.019677715376019478, 0.014171251095831394, 0.021861078217625618, 0.03726819530129433, 0.018428118899464607, 0.00836268626153469, -0.004112683702260256, 0.006611877586692572, 0.003573709400370717, -0.0014856125926598907, -0.007943864911794662, -0.006749195512384176, 0.0009234657627530396, -0.02313813753426075, -0.035071101039648056, 0.04034412279725075, -0.00664277421310544, -0.004607029724866152, 0.02065267600119114, 0.01757674477994442, 0.00047975589404813945, 0.029853003099560738, -0.012598956003785133, 0.01324435230344534, 0.02133926749229431, 0.008932556957006454, -0.004593297839164734, 0.010861879214644432, -0.022314228117465973, 0.018126018345355988, 0.003058765782043338, 0.021531512960791588, -0.015626825392246246, 0.0009706689161248505, 0.001269336324185133, 0.009385707788169384, 0.015352188609540462, 0.007428921293467283, -0.014157519675791264, -0.003683564020320773, -0.006186190526932478, 0.004318661522120237, -0.028562212362885475, -0.003697295906022191, -0.029495976865291595, -0.025060594081878662, 0.026104213669896126, 0.0037350584752857685, -0.004274033010005951, -0.029166411608457565, -0.019979815930128098, -0.01599758490920067, 0.012420442886650562, 0.00849313847720623, -0.02257513254880905, -0.011157114058732986, -0.0377076119184494, -0.040618762373924255, -0.01789257861673832, -0.02779322862625122, 0.015544434078037739, -0.002579868072643876, -0.011672057211399078, -0.004744348116219044, -0.0028991331346333027, -0.023605020716786385, 0.028562212362885475, -0.010669633746147156, -0.025788381695747375, -0.0032801914494484663, -0.014040798880159855, -0.010600974783301353, -0.021119559183716774, 0.024511320516467094, 0.018661560490727425, -0.023646214976906776, -0.018977392464876175, 0.006508888676762581, -0.02442893013358116, -0.001070224680006504, 0.007710423786193132, -0.013196291401982307, -0.0017611074727028608, 0.013065838254988194, 0.0028974167071282864, 0.003875809721648693, 0.011836839839816093, -0.01095800194889307, 0.018949929624795914, -0.013402268290519714, -0.022314228117465973, -0.0014015052001923323, 0.003300789278000593, -0.005921852774918079, 0.0005119398701936007, -0.026680950075387955, -0.0017954370705410838, 0.019334420561790466, 0.001694164820946753, 0.015983853489160538, 0.019595324993133545, 0.013628844171762466, 0.013161961920559406, 0.00494002690538764, -0.006062604021281004, 0.010855013504624367, -0.04410664737224579, 0.028891775757074356, 0.003947902005165815, 0.009200328029692173, -0.0346866101026535, -0.01667044498026371, 0.004143580328673124, -0.019856229424476624, -0.01249596755951643, -0.009914383292198181, 0.00687278201803565, -0.015187406912446022, -0.0055854227393865585, 0.028232647106051445, 0.006783525459468365, 0.023371579125523567, -0.005115107633173466, -0.018277069553732872, 0.018908733502030373, 0.003381463699042797, 0.03281908109784126, 0.00011672057735268027, -0.01266074925661087, 0.01434976514428854, -0.001035036868415773, 0.020213257521390915, -0.006368137430399656, 0.022987088188529015, 0.007422055583447218, 0.04435382038354874, -0.029138948768377304, 0.02438773401081562, 0.019636521115899086, -0.0003415793471504003, 0.011521007865667343, 0.022080786526203156, -0.048006486147642136, 0.003031302010640502, 0.003711027791723609, 0.02746366523206234, 0.021970931440591812, 0.010285142809152603, 0.009667210280895233, 0.013724966906011105, -0.012921654619276524, -0.015242334455251694, 0.001248738495633006, -0.008685383945703506, -0.021462853997945786, -0.028644602745771408, 0.0045486693270504475, 0.02563733048737049, 0.032269805669784546, 0.0036663992796093225, 0.011074722744524479, 0.041525062173604965, 0.02010340243577957, 0.012489101849496365, -0.013512123376131058, -0.00926212128251791, -0.03023749589920044, -0.017974968999624252, -0.015613093972206116, 0.0044765775091946125, -0.015503238886594772, -0.020460430532693863, -0.0296332947909832, -0.008259696885943413, 0.018112286925315857, 0.0194854699075222, -0.004188208840787411, 0.02002101205289364, 0.02379726618528366, -0.0014735972508788109, -0.017727795988321304, 0.017782723531126976, 0.00664277421310544, 0.00709249172359705, -0.020487893372774124, -0.006938008591532707, -0.003079363377764821, -0.039053332060575485, 0.004212239757180214, -0.002790994942188263, 0.02530776709318161, -0.034137334674596786, -0.01186430361121893, -0.020419234409928322, 0.03312117978930473, 0.020817458629608154, -0.012653883546590805, 0.008259696885943413, 0.009646612219512463, -0.012173269875347614, 0.023385310545563698, 0.023083209991455078, -0.019238296896219254, 0.04498548433184624, 0.00913166906684637, -0.003601173171773553, -0.017947504296898842, 0.000541978282853961, -0.0031325742602348328, -0.001858946867287159, -0.0120084872469306, -0.01912844181060791, 0.00165983522310853, -0.0018898434937000275, 0.026461241766810417, 0.009083607234060764, -0.008232234045863152, 0.017178522422909737, -0.007085625547915697, -0.009255255572497845, -0.029743149876594543, -0.015173674561083317, 0.01249596755951643, -0.003252727910876274, 0.021243145689368248, 0.005602587480098009, 0.009227791801095009, -0.032571908086538315, 0.013546452857553959, -0.013381671160459518, -0.0221906416118145, 0.03927304223179817, -0.0065569500438869, -0.014130055904388428, -0.008314624428749084, -0.005952749401330948, -0.003968499600887299, -0.002641661325469613, -0.008802104741334915, -0.0004143151454627514, -0.028479820117354393, -0.008747177198529243, 0.0008548065670765936, -0.01672537252306938, -0.013079570606350899, 0.0327916145324707, 0.046166419982910156, 0.02562359906733036, 0.006199922412633896, 0.004988088272511959, -0.002147315302863717, 0.003882675664499402, -0.02160017192363739, -0.01341600064188242, 0.021435391157865524, 0.020446699112653732, 0.006350972689688206, -0.009008082561194897, 0.06679163128137589, 0.013724966906011105, -0.010999198071658611, 0.0030759305227547884, -0.013381671160459518, 0.03023749589920044, 0.008101780898869038, 0.013889748603105545, -0.0007466683746315539, 0.011836839839816093, -0.026310190558433533, -0.008740311488509178, 0.028946703299880028, 0.02620033733546734, 0.010264544747769833, -0.015022625215351582, 0.0030295855831354856, -0.029550904408097267, -0.02471729926764965, 0.02500566653907299, -0.02467610314488411, -0.00880897045135498, -0.0216276366263628, -0.029688222333788872, -0.004466278478503227, -0.015846535563468933, -0.004332392942160368, 0.009083607234060764, 0.018057359382510185, -0.01700000837445259, -0.012468503788113594, -0.017439426854252815, -0.002969508757814765, -0.03345074504613876, 0.028617139905691147, -0.03633442893624306, -0.009083607234060764, -0.01310016866773367, 0.02869953028857708, 0.017041204497218132, -0.00786147452890873, 0.012447906658053398, -0.030374813824892044, -0.0045555355027318, -0.00892569124698639, -0.011637727729976177, -0.006498589646071196, -0.00898061878979206, -0.012605822645127773, -0.019073516130447388, -0.013223755173385143, -0.004830172285437584, 0.013182559050619602, 0.015091284178197384, 0.034109871834516525, -0.026969319209456444, -0.005348548758774996, 0.019897425547242165, -0.00045229223906062543, 0.003985664341598749, -0.01051171775907278, 0.01294225174933672, 0.005880657117813826, 0.015201138332486153, -0.014322301372885704, -0.02221810445189476, -0.04528758302330971, 0.013161961920559406, 0.002538672648370266, 0.021462853997945786, 0.014322301372885704, 0.013141363859176636, 0.00012787769082933664, 0.014054530300199986, -0.013457195833325386, 0.0028218915686011314, -0.003141156630590558, 0.016876421868801117, -0.02127060852944851, 0.04081100597977638, 0.0027875620871782303, 0.0200484748929739, -0.0016478198813274503, -0.001632371568121016, -0.007319066673517227, -0.02158644050359726, -0.02372860722243786, 0.029248803853988647, -0.004349558148533106, -0.005111674778163433, 0.01754928193986416, -0.013683770783245564, -0.00470658577978611, -0.03762521967291832, 0.010394996963441372, 0.012715676799416542, -0.02349516563117504, -0.011074722744524479, -0.007305334787815809, -0.02499193511903286, -0.01602504774928093, 0.0032012334559112787, 0.012386113405227661, -0.029825540259480476, 0.003106827149167657, -0.02252020500600338, -0.008637323044240475, -0.003477586666122079, 0.017329571768641472, 0.02812279388308525, -0.026063017547130585, -0.027381274849176407, 0.004383887629956007, -0.004823306109756231, 0.028315039351582527, 0.015956388786435127, 0.008568663150072098, -0.027408737689256668, -0.0037625220138579607, -0.03021003119647503, -0.004356423858553171, -0.0058325957506895065, 0.00864418875426054, 0.030731841921806335, 0.025554940104484558, 0.027669642120599747, 0.0012616121675819159, 0.004483443219214678, 0.012976582162082195, 0.009934980422258377, -0.007380859926342964, -0.004370155744254589, -0.03724072873592377, -0.0250331312417984, -0.02930373139679432, 0.01172698475420475, -0.01528352964669466, 0.032544441521167755, -0.019004857167601585, -0.023605020716786385, 0.01247536949813366, -0.00733966426923871, 0.025170449167490005, -0.009481830522418022, -0.02875445783138275, -0.017123594880104065, 0.03158321604132652, -0.002183361444622278, 0.008438210934400558, -0.028315039351582527, -0.013347341679036617, 0.052647847682237625, -0.00725727342069149, -0.002401354257017374, -0.009220925159752369, 0.004287764895707369, -0.00927585270255804, 0.029441049322485924, -0.024607444182038307, -0.004514339845627546, -0.01128070056438446, -0.0244014672935009, -0.02654363214969635, -0.019265761598944664, 0.019018588587641716, -0.01944427564740181, 0.014061396941542625, -0.014088859781622887, 0.013052106834948063, -0.019636521115899086, -0.003125708317384124, -0.014775452204048634, 0.009825126267969608, 0.0043014963157474995, -0.017453158274292946, 0.0004964915569871664, -0.00785460788756609, 0.0022176909260451794, -0.008170440793037415, 0.013120765797793865, 0.0290016308426857, 0.010202751494944096, 0.03540066257119179, -0.019018588587641716, -0.014253642410039902, 0.013518989086151123, -0.010992332361638546, 0.028809385374188423, 0.005183766596019268, 0.03240712359547615, 3.5268280043965206e-05, 0.01884007453918457, -0.02317933365702629, -0.015530702657997608, 0.0070066675543785095, -0.00043748761527240276, 0.026392582803964615, 0.007216078229248524, -0.008561797440052032, -0.01914217509329319, 0.0327916145324707, 0.009152266196906567, 0.0011826540576294065, -0.015956388786435127, 0.02312440611422062, 0.011967292055487633, -0.006344106514006853, -0.021682564169168472, 0.0019602191168814898, -0.011665191501379013, 0.025170449167490005, -0.03831181302666664, 0.008582395501434803, 0.027546055614948273, -0.003587441286072135, -0.008383283391594887, 0.03710341081023216, -0.0169588141143322, 0.0437496192753315, 0.014802915044128895, -0.006714866030961275, -0.006776659283787012, -0.012688213028013706, 0.00832149013876915, 0.0004265450406819582, 0.01700000837445259, -0.0013465777738019824, -0.01632714830338955, 0.005571690853685141, 0.027092905715107918, 0.01109532080590725, 0.006594712380319834, 0.010202751494944096, 0.012262526899576187, 0.03353313356637955, -0.023357847705483437, -0.016533127054572105, 0.00289570027962327, -0.011678923852741718, -0.004596731159836054, -0.007531910203397274, -0.021778685972094536, -0.02063894458115101, -0.0005286755622364581, 7.879711483838037e-05, 0.03496124595403671, -0.024813421070575714, -0.012447906658053398, -0.02129807136952877, 0.0013697502436116338, -0.004830172285437584, 0.0022039590403437614, 0.005485867150127888, 0.008458808995783329, -0.015819070860743523, -0.01159653253853321, -0.020199526101350784, 0.026749609038233757, 0.01786511391401291, 0.02470356598496437, -0.01569548435509205, 0.01609370857477188, 0.012736274860799313, -0.02132553607225418, 0.016299685463309288, -0.038092102855443954, -0.00487136747688055, -0.04081100597977638, 0.006972338072955608, -0.025088058784604073, -0.016244757920503616, 0.01636834442615509, 0.0017267779912799597, -0.019650252535939217, -0.0462762750685215, 0.031006477773189545, 0.019361883401870728, -0.018043627962470055, -0.007648630533367395, -0.016876421868801117, 0.0011277267476543784, -0.004136714618653059, 0.0060935006476938725, -0.02684573270380497, 0.022451546043157578, 0.0043632895685732365, -0.024552516639232635, 0.03358806297183037, -0.011692655272781849, 0.025500012561678886, -0.020597748458385468, -0.0025215076748281717, 0.004068055190145969, -0.01529726106673479, 0.009907517582178116, -0.010758890770375729, 0.01849677786231041, -0.010120360180735588, 0.018647829070687294, -0.024895813316106796, -0.009818260557949543, -0.0369386300444603, 0.04177223518490791, -0.007401457522064447, -0.004339259117841721, 0.041470132768154144, -0.0007784232730045915, 0.012406710535287857, 0.025074325501918793, -0.003010704182088375, -0.023852193728089333, -0.0274224691092968, -0.01187803503125906, -0.03526334464550018, -0.00785460788756609, 0.01356018427759409, 0.019210834056138992, 0.01976010762155056, -0.003594307228922844, -0.03364298865199089, -0.002140449360013008, -0.008568663150072098, -0.018002431839704514, -0.003954767715185881, 0.0012161254417151213, 0.021064631640911102, -0.0011766464449465275, -0.013553318567574024, 0.03704848513007164, -0.011658325791358948, 0.00013399265299085528, -0.040838468819856644, -0.004586432129144669, -0.004692853894084692, 0.0040028290823102, 0.007614301051944494, 0.004428516142070293, -0.024621175602078438, -0.017109863460063934, 0.016478199511766434, -0.017659137025475502, -0.007593703456223011, 0.01247536949813366, -0.006055738311260939, -0.019691448658704758, -0.00010014582221629098, 0.006824720650911331, 0.02037804014980793, 0.03177545964717865, 0.0049091302789747715, -0.0605299174785614, 0.0009449217468500137, 0.020460430532693863, -0.009014948271214962, 0.009921249002218246, 0.002784128999337554, -0.008197903633117676, -0.02319306507706642, 0.0002304373192600906, -0.012605822645127773, -0.03345074504613876, -0.004349558148533106, -0.01034693606197834, 0.029221339151263237, 0.022355424240231514, -0.007957597263157368, 0.02680453658103943, 0.012866727076470852, 0.001275343936868012, -0.027861887589097023, 0.004679122008383274, -0.03177545964717865, -0.0052283951081335545, -0.009749600663781166, -0.0033368354197591543, -0.017370767891407013, -0.017370767891407013, 0.025225376710295677, 0.001604907913133502, -0.03847659379243851, 0.006484857760369778, 0.007648630533367395, -0.026159141212701797, 0.006800690200179815, -0.0025060593616217375, -0.04218418896198273, -0.010594109073281288, 0.011843705549836159, -0.02154524438083172, 0.03586754575371742, -0.003951334860175848, 0.0032201146241277456, -0.01450081542134285, -0.024470126256346703, 0.002138732932507992, -0.009516160003840923, -0.009914383292198181, -0.003889541607350111, 0.007380859926342964, -0.02216317690908909, 0.024744762107729912, 0.17741528153419495, -0.007772217039018869, -0.006412765942513943, 0.03853152319788933, 0.006948307156562805, 0.013168827630579472, 0.0031239918898791075, -0.01047738827764988, -0.007113089319318533, 0.013361073099076748, -0.013079570606350899, 0.008081183768808842, -0.002591883298009634, 0.0019464872311800718, 0.015407116152346134, -0.0014427006244659424, -0.03325849771499634, -0.018057359382510185, -0.014404692687094212, -0.029248803853988647, 0.02188854105770588, 0.0008758334442973137, -0.008081183768808842, -0.02188854105770588, 0.028589675202965736, -0.013670039363205433, 0.0013010911643505096, 0.007744753733277321, 0.031940244138240814, 0.011438616551458836, -0.01576414331793785, 0.004181343130767345, -0.011678923852741718, -0.00389640755020082, -0.022149445489048958, -0.0097084054723382, -0.004541803617030382, 0.00849313847720623, 0.02779322862625122, 0.026708414778113365, 0.015310993418097496, -0.05396610125899315, 0.002962642814964056, -0.030924087390303612, 0.02499193511903286, 0.003814016468822956, -0.003934170119464397, 0.00896002072840929, -0.015571897849440575, -0.014102592132985592, -0.027669642120599747, -0.008184172213077545, 0.018991123884916306, 0.034659143537282944, 0.003189217997714877, -0.0040440247394144535, 0.014102592132985592, -0.005369146354496479, 0.0204329676926136, 0.006769793573766947, -0.02278110943734646, 0.024827152490615845, -0.011136515997350216, 0.034988708794116974, -0.016464468091726303, -0.0160113163292408, -0.00832149013876915, 0.001118286163546145, 0.003965066745877266, 0.01324435230344534, -0.0044868760742247105, -0.0029815242160111666, -0.013422866351902485, -0.004682554863393307, -0.018400656059384346, -0.00423970352858305, 0.0262278001755476, 0.023316651582717896, -0.0049674902111291885, 0.007799680810421705, 0.003057049121707678, -0.006035140249878168, 0.0022314228117465973, -0.003491318318992853, -0.019210834056138992, -0.031665604561567307, 0.013168827630579472, -0.006309777032583952, -0.014871574938297272, 0.0023292622063308954, -0.005952749401330948, 0.015173674561083317, -0.0028699529357254505, -0.007655496709048748, 0.0005235261050984263, 0.009385707788169384, -0.009667210280895233, 0.004126415587961674, -0.0019653686322271824, -0.013972139917314053, -0.029413584619760513, 0.03919064998626709, 0.01156220305711031, -0.002179928356781602, -0.0011809376301243901, -0.007511312607675791, -0.0255961362272501, 0.011363091878592968, 0.018991123884916306, -0.010237080976366997, 0.019581593573093414, -0.01513247936964035, -0.00347072072327137, -0.007923267781734467, -0.02249274216592312, 0.005142571404576302, -0.002264035865664482, -0.022382887080311775, -0.02098223939538002, -0.022382887080311775, 0.000480185030028224, -0.01728837750852108, -0.007415189407765865, -0.001215267227962613, -0.009632880799472332, -0.025197912007570267, -0.027532324194908142, 0.00446971133351326, -0.0063406736589968204, -0.05248306319117546, 0.029248803853988647, -0.024126829579472542, 0.0008702548802830279, -0.011912364512681961, -0.004545236472040415, 0.00019106557010672987, 0.005393177270889282, -0.0004746064660139382, 0.0007080475916154683, 0.009255255572497845, 0.006333807948976755, -0.023879656568169594, 0.005794833414256573, 0.016450734809041023, 0.026117945089936256, -0.024799689650535583, -0.00957795325666666, 0.0068968129344284534, -0.02316560223698616, -0.017329571768641472, 0.00247001345269382, -0.004219105467200279, -0.002222840441390872, 0.0007059019990265369, 0.037213265895843506, 0.009063009172677994, 0.006199922412633896, -0.03150082379579544, -0.03663652762770653, -0.026159141212701797, -0.03270922601222992, -0.0065569500438869, 0.01281179953366518, 0.004607029724866152, -0.026722146198153496, 0.01294225174933672, -0.17521817982196808, 0.02562359906733036, 0.0160799752920866, -0.039932169020175934, -0.008335222490131855, 0.006433363538235426, 0.02596689574420452, -0.018757684156298637, -0.022108251228928566, 0.014940233901143074, 0.026653487235307693, 0.007566239684820175, -0.02525283955037594, -0.0027240521740168333, -0.022671256214380264, -0.0044250828213989735, 0.024579979479312897, 0.0033969120122492313, 0.04391440004110336, 0.013690637424588203, 0.04048144072294235, -0.022904695942997932, 0.0068968129344284534, -0.009502428583800793, -0.010422460734844208, -0.0013731832150369883, 0.006042006425559521, 0.006436796393245459, 0.026708414778113365, -0.013498391024768353, 0.0028716695960611105, -0.012132073752582073, 0.014253642410039902, 0.0021026867907494307, -0.009468098171055317, -0.001989399315789342, 0.005678112618625164, -0.01204968336969614, -0.016258489340543747, 0.014789183624088764, 0.009749600663781166, -0.0038311812095344067, -0.013340475037693977, 0.008884496055543423, -0.00020908861188217998, 0.008699116297066212, -0.016903886571526527, -0.009323914535343647, -0.002653676550835371, -0.002476879395544529, 0.008513736538589, -0.0556139200925827, 0.013786760158836842, -0.018647829070687294, 6.930284143891186e-05, 0.007222943939268589, -0.0014821796212345362, 0.021352998912334442, -0.00044671367504633963, -0.01189863309264183, -0.012955984100699425, -0.03361552581191063, -0.01694508083164692, -0.007353396154940128, 0.02405817061662674, -0.008163574151694775, 0.006364704575389624, 0.03430211916565895, -0.005990511737763882, 0.013821089640259743, -0.012564626522362232, -0.00710622314363718, -0.013690637424588203, 0.02624153159558773, 0.020309381186962128, 0.007305334787815809, -0.02066640742123127, 0.012695078738033772, -0.00021048325288575143, 0.004991521127521992, -0.013546452857553959, 0.03553798422217369, -0.027861887589097023, -0.006392167881131172, -0.006052304990589619, 0.004867934621870518, -0.007284737192094326, 0.02125687710940838, -0.010710828937590122, -0.004078354220837355, 0.01528352964669466, -0.018098555505275726, -0.013532721437513828, -0.007071893662214279, 0.010353801771998405, 0.0005363997188396752, 0.0005552810034714639, -0.003063915064558387, 0.019979815930128098, -0.03910825774073601, 0.0102164838463068, 0.004648225381970406, -0.02562359906733036, 0.029084021225571632, 0.020803727209568024, 0.00787520594894886, 0.008541199378669262, -0.010861879214644432, 0.017494354397058487, -0.00043448375072330236, -0.04138774424791336, 0.004411351401358843, -0.007518178317695856, 0.021449122577905655, 0.004445680882781744, 0.02007593959569931, -0.012537162750959396, -0.022039590403437614, 0.030429741367697716, 0.00204432662576437, 0.02466237172484398, -0.015873998403549194, -0.008369551971554756, 0.002420235425233841, -0.0020288783125579357, -0.00194820377510041, -0.08381910622119904, -0.018277069553732872, 0.015681752935051918, 0.006498589646071196, 0.018963661044836044, -0.004373588599264622, -0.008953155018389225, 0.041799698024988174, -0.02776576578617096, -0.006965471897274256, -0.025403890758752823, 0.018331997096538544, 0.0005724457441829145, 0.02132553607225418, 0.0011972441570833325, -0.016862690448760986, -0.027257688343524933, -0.01143175084143877, -0.03150082379579544, 0.047649458050727844, -0.012592090293765068, -0.028026670217514038, -0.006917410530149937, -0.0008385000401176512, -0.005561392288655043, 0.016121171414852142, -0.028232647106051445, 0.018922464922070503, 0.005794833414256573, 0.004332392942160368, -0.0027000214904546738, -0.012859861366450787, 0.007751619443297386, -0.012248794548213482, -0.0025747185572981834, -0.01421244628727436, -0.013422866351902485, -0.031336043030023575, 0.035016171634197235, -0.04715511202812195, 0.010058566927909851, 0.003995963372290134, 0.03141843155026436, -0.010546047240495682, 0.034714072942733765, -0.008836434222757816, -0.02311067469418049, 0.042733464390039444, -0.0015062104212120175, -0.016560589894652367, -0.011479811742901802, -0.010223349556326866, -0.0054034763015806675, -0.023247992619872093, 0.008966886438429356, 0.009344511665403843, 0.018386924639344215, 0.007614301051944494, 0.007394591812044382, -0.002222840441390872, -0.006618743296712637, -0.014638133347034454, 0.006605011411011219, 0.04484816640615463, 0.01944427564740181, -0.005836028605699539, -0.015928925946354866, 0.009035545401275158, -0.0008590977522544563, -0.018400656059384346, -0.0022794841788709164, 0.010230215266346931, -0.003868943778797984, 0.018716488033533096, -0.003690429963171482, 0.007799680810421705, 0.0012985164066776633, -0.01529726106673479, -0.0006132121197879314, -0.024250416085124016, 0.014583205804228783, 7.879711483838037e-05, -0.024291612207889557, -0.012489101849496365, 0.04201940819621086, 0.017425695434212685, 0.013004045002162457, -0.014844111166894436, 0.0037213265895843506, -0.01916963793337345, -0.030182568356394768, 0.009227791801095009, 0.027889352291822433, -0.024593712761998177, -0.03482392802834511, -0.011376823298633099, 0.0056506493128836155, -0.0017181955045089126, 0.00710622314363718, -0.02129807136952877, -0.025747185572981834, -0.02648870460689068, -0.05619065836071968, 0.02129807136952877, 0.011479811742901802, -0.003999396227300167, 0.011569068767130375, -0.008149842731654644, 0.017810186371207237, 0.023385310545563698, -0.012248794548213482, 0.01126010250300169, -0.004174476955085993, 0.013381671160459518, -0.01789257861673832, -0.011610263958573341, -0.027999207377433777, -0.0031171259470283985, 0.015503238886594772, -0.0035634106025099754, 0.021064631640911102, -0.008266563527286053, -0.014102592132985592, 0.005434372927993536, 0.0216276366263628, 0.02379726618528366, -0.0068350196816027164, 0.03619711101055145, -0.029248803853988647, 0.035043638199567795, -0.015379652380943298, -0.034384507685899734, 0.021421657875180244, -0.010861879214644432, 0.003971932455897331, 0.026172872632741928, -0.029084021225571632, 0.017205985262989998, 0.017164791002869606, 0.007188614457845688, 0.008225367404520512, 0.006879648193717003, -0.0014306852826848626, -0.030319886282086372, -0.0014718808233737946, -0.0025163583923131227, -0.015338457189500332, 0.009399439208209515, -0.023618752136826515, 0.02221810445189476, -0.0036938630510121584, 0.0021644800435751677, 0.008067451417446136, 0.01419871486723423, -0.01796123757958412, -0.018702756613492966, 0.023000819608569145, -0.023536361753940582, 0.005176900885999203, 0.0040028290823102, 0.03855898603796959, 0.007243541534990072, 0.047979023307561874, -0.002289782976731658, 0.019663983955979347, -0.007380859926342964, 0.006845318712294102, -0.0080056581646204, -0.019924888387322426, 0.011459214612841606, 0.005715875420719385, -0.008225367404520512, 0.012859861366450787, -0.003360866103321314, 0.0005050739855505526, -0.006625609006732702, 0.006127830129116774, 0.018331997096538544, 0.008266563527286053, 0.019609056413173676, 0.016917617991566658, 0.016533127054572105, 0.04932474344968796, -0.01610743999481201, -0.02960583008825779, 0.03663652762770653, 0.03795478492975235, 0.03512602671980858, -0.03119872324168682, -0.010820684023201466, 0.015379652380943298, 0.0034655712079256773, 0.01345033012330532, -0.002111269161105156, -0.027916815131902695, 0.010353801771998405, 0.007298469077795744, -0.005942450370639563, -0.005966481287032366, -0.029166411608457565, 0.0097427349537611, 0.036581601947546005, 0.010381265543401241, 0.012063414789736271, -0.01404766459017992, -0.004208806902170181, -0.019073516130447388, 0.001007573213428259, -0.020803727209568024, -0.03141843155026436, 0.003120559034869075, 0.03973992168903351, -0.0018915599212050438, 0.014336032792925835, 0.008836434222757816, 0.01569548435509205, -0.0326542966067791, 0.01970518007874489, -0.0015963255427777767, 0.002778979716822505, -0.03059452213346958, -0.004013128113001585, -0.002729201689362526, -0.0018160348990932107, 0.021037166938185692, 0.015022625215351582, 0.013079570606350899, 0.025115521624684334, 0.006766360718756914, -0.02525283955037594, -0.002758381888270378, 0.007037564180791378, 0.014638133347034454, 0.005705576390028, -0.01513247936964035, -0.0031291414052248, -0.001248738495633006, -0.020858652889728546, -0.02131180465221405, 0.004699719604104757, 0.011500409804284573, 0.08568663150072098, 0.009097338654100895, -0.023055747151374817, 0.01221446506679058, -0.016560589894652367, 0.02154524438083172, 0.012104609981179237, 0.015242334455251694, -0.029111484065651894, -0.023083209991455078, 0.03952021524310112, -0.00892569124698639, -0.031638141721487045, -0.036581601947546005, -0.03117126040160656, 0.01609370857477188, 0.007744753733277321, 0.019883694127202034, 0.015915194526314735, 0.01724718138575554, 0.012248794548213482, -0.005317652132362127, 0.011809376068413258, 0.0032201146241277456, -0.008170440793037415, 0.0015036356635391712, 0.03921811282634735, 0.0080056581646204, -0.007504446431994438, -0.029770612716674805, 0.03150082379579544, -0.00847254041582346, -0.039382897317409515, 0.002099253935739398, 0.009317048825323582, -0.02129807136952877, -0.014624401926994324, -0.011315030045807362, 0.027875620871782303, 0.0028081596828997135, 0.01857917010784149, -0.0022537370678037405, -0.023838460445404053, 0.011569068767130375, -0.03941036015748978, 0.0013912062859162688, -0.0033231035340577364, -0.027642179280519485, -0.05363653972744942]" photos,"[-0.007879653014242649, 0.032525684684515, 0.005147631745785475, -0.011975984089076519, -0.015949834138154984, 0.03543802723288536, -0.007280854042619467, -0.03470313549041748, -0.009199732914566994, -0.03935743868350983, 0.002536390908062458, 0.0073625086806714535, -0.023094596341252327, -0.0060968645848333836, 0.003790126880630851, -0.003329119412228465, 0.014194263145327568, -0.013064710423350334, 0.0020583723671734333, -0.018603602424263954, 0.017011340707540512, 0.014275917783379555, -0.02457798644900322, 0.013214410282671452, -0.001940994057804346, 0.006338425911962986, 0.013765577226877213, -0.019950900226831436, -0.01416704524308443, -0.018290594220161438, 0.006573182065039873, -0.01601787842810154, -0.02724536322057247, -0.031001469120383263, 0.007035890594124794, -0.006903202272951603, 0.004936691373586655, -0.005756638012826443, 0.012493128888309002, 0.0035961975809186697, -0.002697998657822609, 0.005154436454176903, 0.004838025663048029, -0.015146898105740547, -0.008886724710464478, 0.016480587422847748, 0.03429486230015755, -0.029477251693606377, -0.004695130046457052, 0.007151567842811346, -0.006420080084353685, 0.04746844619512558, -0.024047231301665306, -0.012091661803424358, -0.0036778519861400127, -0.01819533109664917, -0.0018661441281437874, 0.03660840541124344, 0.0031794197857379913, -0.02014142833650112, 0.010165977291762829, -0.005569512955844402, -0.01627645082771778, -0.011111808009445667, 0.002512575127184391, -0.019066311419010162, 0.007478185463696718, 0.011819479987025261, -0.00026006088592112064, -0.007791194133460522, 0.01854916661977768, 0.012445497326552868, -0.006569779943674803, -0.02638799324631691, 0.033423881977796555, -0.020073382183909416, -0.001748765935190022, 0.0167663786560297, -0.0019580053631216288, 0.020155036821961403, 0.010887258686125278, -0.0035111408215016127, -0.009417478926479816, 0.05133342370390892, 0.007233222480863333, 0.041507672518491745, -0.004126951564103365, 0.017201868817210197, -0.017773449420928955, 0.004422948695719242, 0.0058484990149736404, 0.023951968178153038, 0.0008692795527167618, 0.0074101402424275875, 0.0022250835318118334, 0.018739692866802216, 0.01000266894698143, 0.057430289685726166, -0.0017036858480423689, -0.0068453638814389706, 0.01162895280867815, 0.038023751229047775, -0.03203575685620308, -0.008151834830641747, -0.00773675786331296, -0.01290140114724636, -0.009247365407645702, -0.016671113669872284, 0.015337425284087658, -0.00611727824434638, -0.022863242775201797, 0.02977665141224861, 0.019597064703702927, -0.0034430953674018383, -0.04156211018562317, -0.016535023227334023, 0.006801134441047907, -0.03998345509171486, -0.017759840935468674, -0.012806138023734093, -0.0012256671907380223, 0.0032440628856420517, -0.002624850021675229, -0.02290407009422779, 0.0032066379208117723, -0.0012596898013725877, -0.0027711475268006325, -0.01857638545334339, 0.016113141551613808, -0.0198692474514246, 0.022618278861045837, 0.04172541946172714, 0.005726017523556948, -0.007144763134419918, -0.013751967810094357, 0.00578385591506958, -0.017623748630285263, -0.0013745164033025503, -0.022686325013637543, -0.036445096135139465, 0.001186541048809886, 0.017378786578774452, -0.03048432432115078, 0.023053769022226334, 0.009036424569785595, 0.0170929953455925, -0.012248165905475616, -0.0074713812209665775, 0.011268312111496925, 0.017406003549695015, 0.01612675189971924, 0.00665823882445693, 0.006198932882398367, 0.017991194501519203, 0.003871781285852194, 0.0007161774556152523, 0.01590900681912899, 0.009764510206878185, 0.0033937625121325254, -0.0009858072735369205, 0.008641761727631092, 0.03546524420380592, -0.02324429713189602, -0.024795731529593468, 0.016330888494849205, 0.029450034722685814, 0.028715144842863083, -0.015732089057564735, -0.014194263145327568, -0.007845630869269371, -0.015378252603113651, 0.012806138023734093, -0.011615343391895294, 0.028497399762272835, 0.0021689459681510925, 0.02399279549717903, 0.004671314265578985, -0.02230527065694332, -0.027027618139982224, -0.00800893921405077, 0.0003072673571296036, 1.1190272743988317e-05, -0.003247465007007122, 0.018358640372753143, -0.01795036718249321, -0.03350553661584854, 0.004729152657091618, -0.025340093299746513, 0.0009424283052794635, 0.016466978937387466, -0.007171981502324343, 0.017174649983644485, 0.00308755855076015, 0.005739626474678516, -0.6227511763572693, -0.008886724710464478, 0.016807205975055695, -0.012445497326552868, 0.00867578387260437, 0.023802269250154495, -0.011914743110537529, 0.02423775941133499, -0.017882321029901505, 0.02421054057776928, -0.03557411581277847, -0.00031364659662358463, -0.008417211472988129, 0.007750367280095816, 0.002919146092608571, -0.01890300214290619, 0.0002434748166706413, -0.0029021347872912884, 0.005865510553121567, 0.012969446368515491, 0.003170914016664028, 0.01905270293354988, 0.008845897391438484, 0.006035624071955681, -0.0098257502540946, -0.003824149491265416, -0.01638532429933548, -0.010329286567866802, 0.00403509009629488, 0.019801201298832893, -0.048366647213697433, 0.004501200746744871, 0.013609073124825954, 0.0013830220559611917, 0.03383215516805649, -0.003984055947512388, -0.007131154183298349, 0.006437091622501612, 0.027286190539598465, 0.03780600428581238, -0.01603148877620697, -0.01771901361644268, -0.011220680549740791, -0.00922014657407999, -0.005372181534767151, 0.0016058706678450108, 0.021175717934966087, 0.034158773720264435, -0.005042161326855421, -0.016684724017977715, 0.017650967463850975, -0.008927552029490471, 0.005072781816124916, -0.01302388310432434, 0.012431887909770012, -0.013568245805799961, 0.020440828055143356, 0.012663242407143116, 0.005821281112730503, -0.008165444247424603, -0.0008365326793864369, 0.012540760450065136, -0.0032933957409113646, -0.008247097954154015, -0.0247004684060812, 0.04997251555323601, 0.006569779943674803, 0.00033299700589850545, -0.011445230804383755, -0.050190262496471405, 0.014793062582612038, 0.03843202069401741, 0.00044569713645614684, -0.010492594912648201, 0.004225617274641991, 0.0026010340079665184, 0.039466310292482376, -0.00366084068082273, -0.015323815867304802, -0.0060798535123467445, 0.018018413335084915, -0.029422815889120102, -0.0020651768427342176, -0.01927044801414013, 0.016235623508691788, 0.00551507668569684, -0.03913969546556473, 0.004889059346169233, 0.023189859464764595, -0.025938892737030983, 0.024033622816205025, -0.015732089057564735, -0.011070980690419674, -0.023448431864380836, -0.03048432432115078, 0.015732089057564735, -0.010601467452943325, -0.0026877918280661106, 0.0021230154670774937, -0.01592261530458927, -0.02158398926258087, -0.007219613064080477, 0.0075190127827227116, 0.024782121181488037, 0.034185990691185, 0.008832287974655628, -0.011343162506818771, 0.01592261530458927, -0.004103135317564011, 0.022713541984558105, -0.003630220191553235, 0.011737825348973274, -0.013336891308426857, 0.009492328390479088, -0.022114744409918785, -0.03448539227247238, 0.023516478016972542, 0.007015476934611797, 0.024727685377001762, 0.012132488191127777, 0.007675517350435257, 0.028633490204811096, 0.02580280229449272, 0.009308606386184692, 0.010138759389519691, 0.02133902721107006, 0.0066820550709962845, -0.02037278190255165, 0.012261774390935898, 0.007934089750051498, 0.020209472626447678, 0.0010028185788542032, 0.03938465565443039, -0.031001469120383263, 0.006491527892649174, 0.007954503409564495, 0.03160026669502258, -0.004446764476597309, 0.021393463015556335, -0.019814809784293175, 0.0010121747618541121, -0.015201334841549397, 0.009608005173504353, -0.01506524346768856, -0.00806337594985962, -0.014303135685622692, -0.029341161251068115, 0.0031215811613947153, -0.03492088243365288, -0.004215410444885492, -0.009376651607453823, -0.023448431864380836, 0.00038190462510101497, 0.028742361813783646, -0.006124082952737808, -0.005868912674486637, 0.002165543846786022, -0.021896999329328537, -0.02025029994547367, -0.017324350774288177, -0.0017504669958725572, 0.013343696482479572, -0.026115810498595238, -0.02338038757443428, -0.0006153852446004748, -0.020644964650273323, -0.011710607446730137, 0.027531154453754425, -0.006443895865231752, -0.025095131248235703, 0.0030994664411991835, -0.012996664270758629, -0.02230527065694332, -0.01464336272329092, 0.02095797285437584, 0.038377586752176285, -0.02347565069794655, -0.0034516011364758015, 0.0028545029927045107, -0.029068980365991592, -0.013874449767172337, 0.01721547730267048, -0.015269380062818527, 0.004259639885276556, -0.005865510553121567, 0.005225884262472391, 0.022264443337917328, 0.004358305595815182, -0.029014544561505318, 0.013745163567364216, -0.011050567030906677, -0.0006366494344547391, -0.011771848425269127, 0.01756931282579899, -0.013731555081903934, 0.02094436250627041, -0.004126951564103365, -0.014956370927393436, -0.016793595626950264, 0.028606271371245384, -0.012302601709961891, 0.013098732568323612, 0.002364576328545809, 0.019542628899216652, -0.007158372551202774, -0.030293796211481094, -0.004024883266538382, -0.041153836995363235, 0.011962375603616238, 0.01000947318971157, 0.026728220283985138, -0.04531821236014366, 0.014343963004648685, 0.026197465136647224, 0.010826017707586288, 0.009322214871644974, 0.007505403831601143, -0.00030790528398938477, -0.030892595648765564, -0.0051748501136898994, 0.028225217014551163, -0.0018899600254371762, 0.0024649433325976133, -0.003218545811250806, -0.02265910618007183, -0.020032554864883423, 0.00806337594985962, 0.010989326052367687, -0.010390527546405792, -0.01624923385679722, 0.009424283169209957, 0.010057104751467705, 0.012738091871142387, 0.03456704691052437, -0.006130887195467949, 0.013690727762877941, 0.017161041498184204, -0.0184266846626997, 0.024033622816205025, -0.006403069011867046, 0.018698865547776222, 0.026918746531009674, 0.024550767615437508, -0.03135530278086662, 0.01217331551015377, 0.006154703442007303, 0.020440828055143356, 0.014616144821047783, -0.005082988645881414, 0.0051680454052984715, 0.0060730488039553165, -0.007852435111999512, -0.009478718973696232, 0.016439760103821754, -0.018358640372753143, 0.0026962975971400738, -0.021842561662197113, -0.0038887925911694765, 0.03189966827630997, 0.010057104751467705, 0.00825390312820673, 0.027980254963040352, 0.043685123324394226, 0.02904176153242588, 0.016085924580693245, -0.026211075484752655, 0.013622681610286236, -0.02106684446334839, -0.016439760103821754, -0.012275383807718754, 0.017882321029901505, -0.02338038757443428, -0.006944029591977596, -0.015078852884471416, 0.007600667420774698, -0.011996397748589516, -0.005287124775350094, -0.004684923216700554, 0.012343429028987885, 0.014820280484855175, -0.012547565624117851, -0.02422414906322956, 0.003793529001995921, 0.02373422309756279, 0.009512742049992085, -0.031001469120383263, -0.025857238098978996, 0.01807284913957119, -0.03856811299920082, 0.023393996059894562, 0.004167778417468071, 0.004208605736494064, -0.028225217014551163, -0.005627351813018322, -0.011975984089076519, 0.019569847732782364, 0.031872447580099106, -0.007539426442235708, 0.006508538965135813, 0.01312595047056675, -0.01452088076621294, 0.03195410221815109, 0.02698679268360138, 0.001801501028239727, 0.03508419170975685, -0.01121387630701065, 0.0033461307175457478, -0.017623748630285263, -0.012567979283630848, -0.01175143476575613, -0.012459106743335724, 0.005715810693800449, -0.018467511981725693, 0.02977665141224861, 0.022808806970715523, 0.013214410282671452, -0.0026571715716272593, -0.0059709809720516205, 0.00557291554287076, 0.013683922588825226, 0.0018542362377047539, -0.04357625171542168, -0.01096210815012455, -0.0022012675181031227, 0.02347565069794655, 0.02290407009422779, 0.006491527892649174, 0.006688859313726425, -0.024183323606848717, 0.02230527065694332, -0.009206538088619709, -0.014139826409518719, 0.016085924580693245, -0.006709272973239422, -0.021774517372250557, 0.002376484451815486, 0.02529926598072052, 0.00013747290358878672, 0.024196932092308998, -0.005674983374774456, -0.00319302873685956, -0.004630486946552992, -0.003274683142080903, -0.01756931282579899, -0.008281121030449867, -0.0210940632969141, 0.016562242060899734, 0.014983589760959148, 0.022210007533431053, -0.006209139712154865, 0.012037225067615509, 0.010553835891187191, -0.0013600566890090704, -0.03737051412463188, -0.025693930685520172, 0.00611727824434638, 0.018018413335084915, -0.014235090464353561, -0.02095797285437584, 0.05081627890467644, 0.049564242362976074, -0.00626017339527607, 0.0045488327741622925, -0.010308872908353806, 0.021856172010302544, 0.006787525024265051, 0.013820013962686062, -0.0021723483223468065, -0.002427518367767334, -0.016317278146743774, 0.012819746509194374, 0.037043895572423935, 0.022087525576353073, 0.0014612742234021425, -0.008206270635128021, -0.005896131042391062, -0.015691261738538742, -0.03530193492770195, 0.017147431150078773, -0.021107671782374382, -0.001121047418564558, -0.009022815153002739, -0.042351435869932175, -0.014548098668456078, 0.003630220191553235, -0.00981894601136446, -0.02410166896879673, -0.0045488327741622925, -0.011656170710921288, -0.03013048693537712, -0.02626551128923893, -0.0005311791319400072, -0.048393864184617996, 0.023543696850538254, 0.00037510006222873926, 0.011526884511113167, -0.017133822664618492, 0.014112608507275581, 0.022944897413253784, 0.006107071414589882, 0.0067228819243609905, -0.023434823378920555, 0.013751967810094357, 0.022686325013637543, -0.011948766186833382, -0.01913435570895672, 0.0018321214010939002, 0.0001787254004739225, -0.023339560255408287, 0.000852693454362452, 0.001803202205337584, -0.0004401684564072639, -0.018222548067569733, 0.04646137356758118, -0.014983589760959148, 0.015378252603113651, 0.02399279549717903, -0.001503802603110671, 0.005549099296331406, 0.002214876702055335, 0.00188315543346107, 0.03121921420097351, -0.0032117413356900215, -0.011717411689460278, 0.0037084724754095078, -0.019460974261164665, -0.020699400454759598, 0.0017691794782876968, 0.024523548781871796, 0.03214463219046593, 0.003987458534538746, 0.0039534359239041805, -0.0007723149028606713, 0.011737825348973274, -0.005113609135150909, -0.018644429743289948, 0.02312181517481804, -0.015977051109075546, 0.028170781210064888, 0.00940386950969696, -0.011894329451024532, -0.0002449633029755205, -0.0018253169255331159, -0.011941961944103241, -0.005824683234095573, -0.008825483731925488, 0.02072661742568016, -0.007015476934611797, 0.010349700227379799, 0.03747938573360443, -0.01042454969137907, 0.002561907982453704, -0.030892595648765564, 0.004695130046457052, 0.010506204329431057, -0.006821547634899616, -0.003174316370859742, 0.008158639073371887, -0.0013183789560571313, -0.004052101634442806, 0.006318012252449989, -0.005545697174966335, -0.017759840935468674, -0.0058484990149736404, 0.009356237947940826, -0.022931288927793503, -0.0060118078254163265, -0.012860573828220367, 0.01686164177954197, -0.03266177698969841, -0.028388526290655136, -0.0010240827687084675, 0.015840960666537285, 0.07158372551202774, -0.0039228154346346855, 0.015255770646035671, -0.028143562376499176, 0.004041894804686308, -0.03062041476368904, -0.018943829461932182, -0.012309406884014606, 0.012676851823925972, 0.010655904188752174, 0.017787057906389236, 0.04314076155424118, 0.006205737125128508, -0.0066140093840658665, 0.022005870938301086, 0.01102334912866354, 0.02255023457109928, -0.0006749249878339469, 0.0009109573438763618, -0.026061374694108963, -0.024319414049386978, 0.001202701823785901, -0.006147898733615875, 0.02106684446334839, -0.006457505282014608, 0.0017155937384814024, 0.01652141474187374, -0.012799332849681377, 0.03002161532640457, 0.005814476404339075, -0.03478479012846947, -0.028170781210064888, 0.003967044875025749, -0.01857638545334339, -0.0012622415088117123, -0.014793062582612038, 0.006076450925320387, 0.02397918701171875, -0.005919946823269129, 0.00915210135281086, -0.017977586016058922, 0.017637358978390694, -0.024292195215821266, 0.017746230587363243, -0.011281921528279781, -0.013962908647954464, -0.009866577573120594, -0.0030059039127081633, -0.024156104773283005, -0.004902668762952089, 0.019447365775704384, 0.0014434122713282704, -0.004790393635630608, 0.0012435290263965726, 0.01769179478287697, -0.009744096547365189, 0.011669780127704144, -0.006161507684737444, -0.004388926085084677, -0.02385670505464077, -0.01096891239285469, -0.00017819380445871502, 0.0033614409621804953, -0.014847498387098312, 0.009764510206878185, 0.019011875614523888, 0.014480053447186947, -0.0022250835318118334, 0.030865376815199852, -0.024727685377001762, -0.0311919953674078, -0.013091928325593472, -0.010404136031866074, 0.02327151410281658, 0.01601787842810154, 0.020930754020810127, 0.022740760818123817, -0.0036200133617967367, -0.018535558134317398, 0.010302068665623665, -0.0007557288627140224, -0.0030722483061254025, 0.010587858967483044, 0.03037545084953308, -0.015391862019896507, -0.01974676549434662, 0.012459106743335724, 0.013547832146286964, -0.0034754169173538685, -0.032008539885282516, 0.006995063740760088, 0.021298199892044067, -0.025108739733695984, -0.027667244896292686, -0.003437991952523589, -0.01856277510523796, 0.01133635826408863, -0.029694996774196625, 0.006015210412442684, 0.010860039852559566, -0.007124349940568209, -0.03870420530438423, 0.027082055807113647, -0.006477918941527605, 0.04009233042597771, -0.0005839142831973732, -0.009424283169209957, 0.003933022264391184, 0.010336090810596943, 0.01452088076621294, 0.01796397566795349, -0.003216844517737627, 0.001906971330754459, -0.006811340805143118, -0.014303135685622692, 0.02928672544658184, 0.01927044801414013, 0.0170929953455925, 0.002157038077712059, 0.020930754020810127, 0.02964056096971035, -0.012377452105283737, -0.016085924580693245, -0.011907938867807388, -0.0035621749702841043, 0.010642294771969318, -0.01337771862745285, -0.0280891265720129, -0.011200266890227795, 0.0039704469963908195, 0.023693395778536797, 0.03671728074550629, -0.014602535404264927, -0.015813743695616722, -0.03489366173744202, 0.007661907933652401, 0.009417478926479816, 0.008444429375231266, 0.009533155709505081, 0.005426617804914713, -0.00779799884185195, 0.004671314265578985, 0.0018100066808983684, 0.009301801212131977, 0.015092462301254272, 0.015990661457180977, -0.0008637508726678789, -0.0002460265241097659, 0.037533823400735855, -0.03456704691052437, 0.007723148912191391, -0.028987325727939606, -0.010329286567866802, -0.05590607225894928, -0.010751167312264442, -0.004126951564103365, -0.024795731529593468, 0.011513276025652885, 0.010826017707586288, -0.031736359000205994, -0.024251367896795273, 0.020400000736117363, 0.01156771183013916, 0.004644096363335848, 0.02158398926258087, 0.0011346564861014485, -0.004807405173778534, -0.012397865764796734, -0.01649419590830803, -0.039085257798433304, 0.01457531750202179, 0.00921334233134985, 0.007103936281055212, 0.0337505005300045, -0.008369579911231995, 0.01133635826408863, -0.013541027903556824, -0.009676051326096058, 0.024904603138566017, -0.022631889209151268, -0.005868912674486637, -0.007008672691881657, 0.025367312133312225, 0.0030127086210995913, -0.004198398906737566, -0.00403168797492981, 0.0013455970911309123, -0.03034823201596737, 0.029177851974964142, 0.019597064703702927, -0.014017345383763313, 0.011914743110537529, 0.02543535828590393, 0.0275855902582407, 0.020767444744706154, 0.013547832146286964, -0.019923683255910873, -0.03603682667016983, -0.017623748630285263, -0.018100067973136902, -0.013425350189208984, -0.018168112263083458, 0.03334222733974457, 0.005535490345209837, -0.002565310336649418, -0.013881254009902477, -0.007450967561453581, -0.00832194834947586, -0.0066378251649439335, -0.019733155146241188, 0.009512742049992085, 0.004249433055520058, -0.0012818045215681195, -0.023080987855792046, 0.02626551128923893, -0.0006625917158089578, 0.038622550666332245, -0.02483655884861946, 0.010240827687084675, -0.009723682887852192, 0.007314876653254032, 0.00946511048823595, 0.0022540027275681496, -0.04654302820563316, -0.03094703145325184, -0.001048749196343124, -0.020032554864883423, -0.01041774544864893, 0.025734756141901016, -0.01095530390739441, -0.0016194797353819013, -0.010730753652751446, -0.014901935122907162, -0.01054703164845705, -0.005753235425800085, 0.003410773817449808, -0.027667244896292686, -0.005164643283933401, 0.011520080268383026, 0.0005524433217942715, 0.006457505282014608, 0.032607339322566986, 0.0059641762636601925, -0.004052101634442806, 0.0227543693035841, -0.011179853230714798, -0.019120747223496437, 0.014180653728544712, 0.003002501791343093, 0.03726164251565933, 0.004569246433675289, 0.008274316787719727, 0.02555783838033676, 0.013513809069991112, 0.0069236159324646, -0.013962908647954464, 0.021515944972634315, -0.02289046160876751, -0.00376631086692214, -0.004109940025955439, -0.013962908647954464, 0.006733088754117489, -0.011526884511113167, 0.03157304972410202, -0.02436024136841297, -0.017759840935468674, 0.0140990000218153, 0.02083549089729786, -0.023802269250154495, 0.00759386271238327, 0.018168112263083458, -0.04172541946172714, -0.029939960688352585, -0.00933582428842783, -0.02120293490588665, 0.001995430327951908, 0.010370113886892796, -0.007920480333268642, -0.017297131940722466, -0.00409973319619894, 0.03478479012846947, -0.009363042190670967, -0.017678186297416687, 0.009539959952235222, 0.013867645524442196, -0.019433755427598953, 0.0030994664411991835, 0.17484937608242035, -0.003871781285852194, 0.0033971648663282394, 0.007838825695216656, -0.020168645307421684, 0.02529926598072052, 0.011846697889268398, -0.00079825718421489, 0.013527418486773968, -0.011826284229755402, -0.014561708085238934, -0.005862107966095209, -0.01686164177954197, -0.0014127918984740973, -0.00295316893607378, -0.012629219330847263, -0.021352635696530342, -0.012574783526360989, -0.017746230587363243, -0.02833409048616886, 0.005630753934383392, -0.02143429033458233, -0.0020056371577084064, -0.035601336508989334, 0.03655397146940231, -0.020331954583525658, 0.005382388364523649, -0.011996397748589516, 0.016303669661283493, 0.04322241619229317, -0.0014272514963522553, -0.016603069379925728, 0.002805170137435198, -0.011826284229755402, -0.014806671068072319, -0.017161041498184204, -0.01805924065411091, 0.018848566338419914, 0.028143562376499176, 0.023761441931128502, -0.004137158393859863, -0.05721254274249077, 0.02950447052717209, -0.020427217707037926, 0.028252435848116875, -0.00416097417473793, -0.001705386908724904, -0.018481120467185974, 0.01781427673995495, 0.0068079386837780476, -0.017297131940722466, -0.028742361813783646, 0.019311275333166122, 0.01452088076621294, 0.0066378251649439335, -0.005919946823269129, -0.011302335187792778, 0.011941961944103241, -0.0020872915629297495, 0.004953702446073294, -0.01831781305372715, 0.030212141573429108, -0.010819213464856148, 0.015010807663202286, 0.002367978682741523, 0.0019290860509499907, 0.015296597965061665, -0.013445763848721981, 0.003606404410675168, 0.034022681415081024, 0.02241414412856102, -0.01095530390739441, -0.008376384153962135, 0.002320346888154745, -0.008328752592206001, -0.02324429713189602, 0.023543696850538254, 0.0031011675018817186, 0.031137559562921524, 0.024305803701281548, 0.0011635757982730865, -0.0015829053008928895, 0.017868712544441223, -0.021121282130479813, -0.004684923216700554, -0.013398132286965847, 0.04746844619512558, -0.018100067973136902, -0.00524289533495903, -0.015201334841549397, -0.018100067973136902, 0.02215557172894478, 0.0006936374120414257, -0.01181267574429512, 0.006086657755076885, 0.02640160173177719, -0.0038071381859481335, 0.010683122090995312, -0.01988285593688488, -0.02685070037841797, -0.0019239827524870634, 0.054626818746328354, 0.006824950221925974, -0.0024734491016715765, 0.007553035393357277, -0.0017317545134574175, -0.017787057906389236, 0.015868179500102997, -0.0052531021647155285, -0.01000266894698143, 0.005413008853793144, -0.021121282130479813, -0.004957105033099651, -0.0011278518941253424, -0.017895931378006935, 0.01565043441951275, -0.002868112176656723, -0.018385857343673706, -0.011601734906435013, -0.00016171406605280936, -0.00578045379370451, -0.00994823221117258, -0.003603002056479454, -0.004800600465387106, -0.01661667786538601, -0.018372248858213425, -0.03026657924056053, 0.0011567712062969804, 0.004419546574354172, -0.05048966035246849, 0.025884456932544708, 0.006869179662317038, 0.01499719824641943, 0.006022014655172825, -0.009791728109121323, -0.016956904903054237, 0.004062308464199305, -0.012275383807718754, -0.014738625846803188, 0.02471407689154148, 0.02387031354010105, 0.0010019680485129356, 0.011839893646538258, -0.006518745794892311, 0.002726918086409569, -0.01054022740572691, -0.010921280831098557, -0.004678118973970413, -0.012241360731422901, -0.009982255287468433, -0.010771580971777439, -0.007934089750051498, -0.008451234549283981, -0.02385670505464077, 0.024850167334079742, 0.005943762604147196, -0.010662708431482315, -0.028034690767526627, -0.008968379348516464, -0.028497399762272835, -0.024183323606848717, -0.010186390951275826, 0.008002134971320629, 0.007015476934611797, -0.03726164251565933, -0.008941160514950752, -0.17245417833328247, 0.029232289642095566, 0.017024951055645943, -0.03225350379943848, -0.007968111895024776, 0.0010325884213671088, 0.005586524493992329, -0.014861107803881168, -0.010165977291762829, 0.008764242753386497, 0.02602054737508297, -0.008185856975615025, -0.013398132286965847, -0.024373849853873253, -0.02359813265502453, -0.00759386271238327, 0.020576918497681618, 0.023815877735614777, 0.03336944803595543, 0.027027618139982224, 0.03026657924056053, -0.012159707024693489, 0.018345030024647713, -0.004729152657091618, -0.013146364130079746, 0.007137958891689777, 0.006341828033328056, 0.01639893278479576, -0.01698412373661995, 0.0011780353961512446, 0.007838825695216656, -0.008022548630833626, 0.033913809806108475, 0.012125683948397636, -0.00436851242557168, 0.0027405270375311375, 0.007342095021158457, 0.01089406292885542, -0.029422815889120102, 0.023924751207232475, -0.00023007839627098292, -0.0009756004437804222, 0.008709806948900223, 0.006746698170900345, -0.00349412951618433, 0.010642294771969318, 0.01781427673995495, -0.0011006337590515614, -0.01103015337139368, -0.013615877367556095, 0.00584509689360857, -0.06167631968855858, 0.0065901936031877995, -0.002378185512498021, -0.004439960233867168, 0.010492594912648201, -0.006253369152545929, 0.018821347504854202, -0.0004359156300779432, 0.004661107435822487, -0.028579052537679672, -0.018943829461932182, -0.026796264573931694, -0.012506738305091858, 0.023924751207232475, -0.03238959237933159, -0.013411741703748703, 0.014425617642700672, 0.005651167593896389, 0.004157571587711573, 0.008097398094832897, -0.009097665548324585, -0.01962428353726864, 0.022917678579688072, 0.010866845026612282, 0.013507004827260971, -0.025095131248235703, 0.023462042212486267, -0.0025772182270884514, 0.026061374694108963, -0.008451234549283981, 0.031164776533842087, -0.033315010368824005, 0.012935424223542213, -0.007124349940568209, -0.017378786578774452, -0.009077251888811588, 0.015868179500102997, 0.0051442296244204044, 0.004286857787519693, 0.015432688407599926, -0.020427217707037926, 0.004919679835438728, 0.001747064758092165, 0.008927552029490471, 0.012513542547821999, 0.024047231301665306, 0.05027191713452339, 0.00036850819014944136, -0.023775050416588783, 0.0004301742883399129, 0.008689393289387226, -0.01247952040284872, 0.03473035246133804, 0.014670580625534058, 0.005763442255556583, 0.0008080386905930936, 0.0022403935436159372, 0.01356144156306982, -0.008505670353770256, -0.011710607446730137, 0.012003201991319656, 0.00632141437381506, 0.0280891265720129, -0.02302655205130577, 0.01879413053393364, -0.0018100066808983684, -0.013486591167747974, 0.015568779781460762, -0.001689226133748889, 0.028361307457089424, -0.008505670353770256, 0.011676584370434284, -0.003136891406029463, -0.021284589543938637, -0.005430019926279783, -0.10038052499294281, -0.0479583740234375, 0.01603148877620697, -0.004055503755807877, -0.026088593527674675, -0.017800668254494667, -0.0007803952903486788, 0.016929686069488525, 0.007920480333268642, 0.0036404270213097334, -0.024850167334079742, 0.016439760103821754, -0.005334756802767515, 0.012431887909770012, 0.030402669683098793, -0.012513542547821999, -0.022482188418507576, -0.007974917069077492, -0.020672181621193886, 0.03854089602828026, 0.003255970776081085, -0.004348098766058683, 0.020672181621193886, -0.009730487130582333, -0.01216651126742363, -0.011125417426228523, -0.03140974044799805, 0.015092462301254272, 0.01325523667037487, 0.0024734491016715765, -0.024006403982639313, -0.01939292810857296, -0.011867111548781395, -0.014874717220664024, -0.001436607795767486, 0.011349966749548912, -0.03715277090668678, -0.005566110834479332, 0.03287952020764351, -0.03984736651182175, 0.0038615744560956955, -0.002269312972202897, 0.029422815889120102, -0.011615343391895294, -0.0030433288775384426, 0.008308338932693005, -0.00879146158695221, 0.031110340729355812, 0.012983055785298347, -0.010649099946022034, -0.024972649291157722, 0.02193782478570938, -0.021992262452840805, -0.00922014657407999, 0.031001469120383263, -0.00020126542949583381, 0.012180120684206486, -0.010805604048073292, -0.012186924926936626, -0.02504069358110428, -0.002697998657822609, -0.026891527697443962, -0.005225884262472391, 0.026061374694108963, 0.020917145535349846, 0.02833409048616886, -0.03135530278086662, -0.006362241692841053, 0.00879146158695221, -0.004804002586752176, -0.01629006117582321, 0.02374783158302307, 0.0012503336183726788, -0.004331087693572044, -0.013758772984147072, 0.0011244496563449502, -0.013017077930271626, -0.009744096547365189, 0.00523949321359396, -0.02974943444132805, 0.019120747223496437, 0.007280854042619467, -0.005613742396235466, -0.016848033294081688, 0.03649953380227089, -0.00825390312820673, 0.011969179846346378, 0.004188192076981068, 0.020400000736117363, -0.032525684684515, -0.0011491160839796066, -0.0013609073357656598, 0.01805924065411091, -0.028225217014551163, -0.030756505206227303, -0.00151315878611058, -0.007954503409564495, -0.007226417772471905, -0.01096891239285469, -0.0035315544810146093, -0.026918746531009674, -0.03034823201596737, -0.05830127000808716, 0.002100900746881962, 0.0027405270375311375, -0.014371180906891823, -0.004320880863815546, -0.015419079922139645, 0.001460423693060875, 0.005157838575541973, -0.013588659465312958, 0.023366779088974, -0.01831781305372715, 0.013057905249297619, -0.010084322653710842, -0.00018085182819049805, -0.016181187704205513, 0.0021961641032248735, 0.03072928637266159, -0.00416097417473793, 0.024006403982639313, -0.0240880586206913, -0.015827352181077003, 0.0029344563372433186, 0.024850167334079742, 0.00020222231978550553, -0.008492061868309975, 0.023312341421842575, -0.04058225452899933, 0.024020014330744743, -0.020168645307421684, -0.02436024136841297, 0.050054170191287994, -0.004205203615128994, -0.0053925951942801476, 0.04616197571158409, 0.0006566377705894411, -0.005542295053601265, 0.014085390605032444, 0.012159707024693489, 0.006865777540951967, 0.008471648208796978, -0.020631354302167892, -0.04689686372876167, 0.013010273687541485, -0.010281655006110668, -0.02471407689154148, -0.0028017680160701275, -0.030076051130890846, 0.02072661742568016, 0.026592127978801727, 0.01149966660887003, 0.018345030024647713, 0.019719546660780907, -0.03761547803878784, -0.0008675783756189048, 0.029586125165224075, -0.02747671864926815, 0.011418011970818043, 0.016004269942641258, 0.002236991422250867, 0.02879679761826992, 0.029341161251068115, 0.009206538088619709, 0.027667244896292686, -0.015432688407599926, 0.01782788522541523, 0.007641494274139404, -0.022482188418507576, 0.016344496980309486, 0.0030229154508560896, -0.027612809091806412, -0.012921814806759357, -0.030457105487585068, 0.02086270973086357, 0.002396897878497839, 0.02359813265502453, -0.01951541006565094, -0.014017345383763313, -0.003575783921405673, -0.005627351813018322, 0.022727152332663536, 0.04556317627429962, 0.007444162853062153, -0.019842028617858887, 0.02411527745425701, 0.03336944803595543, 0.006270380225032568, -0.023162642493844032, 0.0028340895660221577, 0.009356237947940826, 0.018249766901135445, -0.008369579911231995, 0.01770540326833725, 0.0053313542157411575, 0.01698412373661995, -0.00928138755261898, -0.0210940632969141, -0.005457238294184208, -0.034049902111291885, 0.010172782465815544, 0.03565577045083046, 0.020100601017475128, -0.003468612441793084, -0.0025874250568449497, 0.0009152101702056825, -0.03146417811512947, 0.01324843242764473, -0.030756505206227303, -0.02240053378045559, 0.008226684294641018, 0.05612381547689438, -0.002732021501287818, 0.009322214871644974, -6.236384251678828e-06, 0.0196515005081892, -0.040310073643922806, 0.011479252949357033, 0.021760907024145126, -0.005814476404339075, -0.027177318930625916, 0.03165470436215401, 0.004143962636590004, -0.006964443251490593, 0.04915597289800644, 0.003824149491265416, 0.0494009368121624, 0.019950900226831436, 0.004514810163527727, -0.03478479012846947, 0.012071248143911362, -0.0074713812209665775, 0.028824016451835632, -0.015391862019896507, -0.025503402575850487, 0.03502975404262543, -0.034621480852365494, -0.008777852170169353, -0.03266177698969841, 0.014915543608367443, -0.034975316375494, 0.0794769898056984, -0.0036914609372615814, -0.020781055092811584, 0.007253636140376329, -0.026905138045549393, 0.002349266316741705, -0.0025227819569408894, -0.0034294864162802696, 0.0007761424640193582, -0.007192395161837339, 0.021652035415172577, -0.008444429375231266, 0.0022250835318118334, -0.037397731095552444, -0.022114744409918785, -0.013357304967939854, -0.0210940632969141, 0.020086992532014847, 0.000392749352613464, 0.01029526349157095, 0.0224277526140213, 0.0015097565483301878, 0.01687525026500225, 0.004987725056707859, -0.006168312393128872, -0.00289192795753479, 0.00807018019258976, -0.023217078298330307, -0.0339682474732399, -0.042242564260959625, 0.023407606407999992, -0.0027983656618744135, -0.02335316874086857, -0.029422815889120102, -0.005736224353313446, 0.006556170992553234, 0.00838318932801485, 0.003174316370859742, -0.0047189462929964066, -0.02735423669219017, 0.0013796198181807995, 0.007906871847808361, -0.010982521809637547, -0.02480934001505375, -0.0025193796027451754, -0.006130887195467949, 0.014697798527777195, -0.03059319593012333, -0.041289929300546646]" places,"[0.005564392078667879, 0.01715831272304058, 0.011838546022772789, -0.022919094190001488, -0.017640674486756325, 0.0314224511384964, -0.01334765087813139, -0.032524991780519485, -0.001622804207727313, -0.025261996313929558, 0.006163899786770344, 0.015780134126544, -0.009743715636432171, -0.004585886374115944, 0.0017761264462023973, 0.009902206249535084, 0.019845757633447647, -0.01724100299179554, 0.004809840116649866, -0.009316480718553066, 0.0059227184392511845, 0.018495144322514534, -0.01972172223031521, 0.011218366213142872, 0.014360611326992512, 0.015959296375513077, 0.006870215758681297, -0.017006712034344673, -0.0016589813167229295, 0.025220651179552078, 0.009543879888951778, -0.0026116466615349054, -0.007421486545354128, -0.0266539566218853, -0.007187196519225836, -0.010632640682160854, -0.0038520065136253834, -0.007890067063272, 0.020989645272493362, -0.005757336970418692, 0.0008949541370384395, 0.02516552433371544, -0.011514673940837383, -0.0032817856408655643, 0.008048557676374912, 0.02676421031355858, 0.015959296375513077, -0.018619179725646973, -0.0052853114902973175, -0.006963242776691914, -0.009619680233299732, 0.04721636697649956, -0.019446086138486862, 0.008027885109186172, 0.005047575570642948, -0.022574549540877342, 0.001848480780608952, 0.024448871612548828, -0.00626726308837533, -0.025730576366186142, 0.02195437066257, 0.0043481504544615746, -0.024049200117588043, -0.0005650528473779559, -0.009295808151364326, -0.010308768600225449, 0.0003876124683301896, -0.0007265580352395773, 0.012451834976673126, 0.026254285126924515, 0.011232147924602032, 0.025261996313929558, -0.005319765768945217, -0.012851506471633911, 0.01729612983763218, -0.026240503415465355, 0.007800485473126173, 0.004379159305244684, 0.007552413735538721, 0.03205641359090805, -0.01575257070362568, -0.008903027512133121, -0.01724100299179554, 0.05339060351252556, 0.0251793060451746, 0.03665952384471893, -0.007159633096307516, 0.011059875600039959, -0.0141676664352417, 0.0013247733004391193, 0.004403277765959501, 0.039526134729385376, 0.01815059967339039, 0.015297772362828255, 0.019073978066444397, 0.013175378553569317, 0.0010887603275477886, 0.05543030425906181, -0.01253452617675066, 0.012355362996459007, -0.0012808438623324037, 0.01448464673012495, -0.024696944281458855, -0.012196872383356094, -0.030843615531921387, -0.008234611712396145, -0.0031267404556274414, -0.03194615989923477, 0.008930590935051441, -0.004117305856198072, -0.016731075942516327, 0.01810925453901291, 0.011838546022772789, -0.006115663331001997, -0.030788488686084747, -0.014774064533412457, 0.013637067750096321, -0.033489715307950974, -0.030926305800676346, -0.0094680804759264, 0.020534846931695938, 0.0023239520378410816, 0.012320907786488533, -0.03158783167600632, -0.0061604538932442665, 0.008365537971258163, -0.008227720856666565, -0.017061838880181313, 0.022905312478542328, -0.026254285126924515, 0.01015716977417469, 0.03351727873086929, 0.0074835047125816345, 0.002918291138485074, -0.011349293403327465, -0.0034006533678621054, -0.025330904871225357, -0.0013213278725743294, -0.010729112662374973, -0.025620322674512863, -0.007593758869916201, 0.00395192438736558, -0.017103184014558792, 0.018536489456892014, 0.011245929636061192, 0.026998499408364296, -0.009323371574282646, 0.010384568944573402, 0.04374335706233978, 0.007593758869916201, 0.041869036853313446, -0.02830776944756508, 0.0060674273408949375, 0.01726856641471386, 0.008027885109186172, 0.005702210124582052, 0.027921879664063454, 0.0073663596995174885, 0.004186214413493872, -0.021637389436364174, -0.015862824395298958, 0.038837045431137085, -0.003262835554778576, -0.010625749826431274, -0.00393469724804163, 0.038065265864133835, 0.01653813198208809, -0.01794387213885784, -0.01728234812617302, -0.015587189234793186, -0.01737882010638714, 0.006629034411162138, -0.025413595139980316, 0.013258068822324276, 0.009853970259428024, 0.027673806995153427, 0.01733747497200966, -0.023125821724534035, -0.038037702441215515, -0.008427556604146957, -0.00395192438736558, 0.0005387813434936106, 0.004013942554593086, 0.03991202637553215, -0.008269065991044044, -0.04217223450541496, 0.01962525025010109, -0.011135675013065338, 0.016207369044423103, 0.012320907786488533, -0.009185554459691048, 0.005691873840987682, 0.003717634128406644, 0.019997358322143555, -0.6297720670700073, -0.01098407618701458, 0.0034695621579885483, -0.025330904871225357, 0.017682019621133804, 0.021830333396792412, 0.011983254924416542, 0.016841331496834755, -0.010391459800302982, 0.020204083994030952, -0.026336975395679474, 0.007793594617396593, -0.001242082566022873, 0.01100474875420332, -0.006649706978350878, -0.010942730121314526, 0.019459867849946022, -0.014429519884288311, 0.020603755488991737, 0.017034275457262993, -0.00784183107316494, 0.03291088342666626, 0.0009440517169423401, 0.02985132858157158, -0.003302458208054304, 0.02513796091079712, -0.001626249635592103, -0.023318765684962273, -0.010742894373834133, 0.001123214839026332, -0.03508840128779411, -0.0038037702906876802, 0.009957333095371723, 0.007793594617396593, 0.050661809742450714, -0.004410168621689081, -0.024173235520720482, 0.014677591621875763, 0.010611968114972115, 0.032497428357601166, -0.001843312638811767, -0.03131219744682312, -0.014319266192615032, 0.0038278885185718536, -0.0010689490009099245, -0.0061914632096886635, 0.03147757798433304, 0.038065265864133835, 0.0019018851453438401, -0.031091688200831413, 0.008234611712396145, -0.000573235796764493, -0.015532062388956547, -0.011301056481897831, 0.010115823708474636, -0.0010861762566491961, 0.033214081078767776, 0.015325335785746574, 0.025744358077645302, 0.005319765768945217, 0.0030061500146985054, 0.021664952859282494, 0.016290059313178062, -0.010894494131207466, -0.022381605580449104, 0.04468052089214325, -0.0057642278261482716, 0.002528955927118659, -0.0031525813974440098, -0.041869036853313446, 0.013857576064765453, 0.03448200598359108, -0.008462010882794857, -0.01815059967339039, 0.013836903497576714, 0.028362896293401718, 0.0485394187271595, -0.0018725988920778036, -0.022988002747297287, -0.0157112255692482, 0.033324334770441055, -0.01017784234136343, -0.008716973476111889, -0.028500713407993317, 0.012637889012694359, -0.006980469916015863, -0.037238359451293945, -0.0025944195222109556, 0.018688088282942772, -0.006691052578389645, 0.02192680723965168, -0.0015358066884800792, -0.007772922050207853, -0.028445586562156677, -0.017723364755511284, 0.005033793859183788, -0.010756677016615868, 0.0005547165055759251, -0.01802656427025795, -0.021651171147823334, -0.02497257851064205, -0.0015607861569151282, 0.01333386916667223, 0.021733861416578293, 0.023043129593133926, 0.01018473319709301, 0.009020172990858555, 0.01656569540500641, -0.010563732124865055, 0.010053806006908417, -0.0094680804759264, -0.01495322771370411, -0.016675949096679688, -0.0011447487631812692, -0.028776349499821663, -0.032580118626356125, 0.015931732952594757, -0.015366680920124054, 0.0005788346170447767, 0.026116466149687767, 0.02049350179731846, 0.028610968962311745, 0.011301056481897831, -0.007011478766798973, 0.0029889228753745556, 0.017544200643897057, 0.018495144322514534, -0.009592116810381413, 0.0033489717170596123, 0.012720580212771893, 0.005305984057486057, -0.0050131212919950485, 0.024889888241887093, -0.01968037709593773, -0.008213939145207405, 0.019446086138486862, 0.021017208695411682, -0.01875699870288372, 0.0033334672916680574, -0.004000160843133926, 0.018701869994401932, -0.01102542132139206, 0.009330262430012226, -0.038974862545728683, -0.018343545496463776, -0.018577834591269493, -0.008158811368048191, 0.01333386916667223, -0.0267228651791811, -0.017061838880181313, -0.008172593079507351, -0.040490858256816864, -0.004100078716874123, 0.008730755187571049, -0.02345658279955387, -0.016055770218372345, -0.002020752988755703, -0.024462653324007988, -0.02592352218925953, -0.011680055409669876, -0.0074835047125816345, 0.01522886287420988, -0.016717294231057167, -0.022946657612919807, 0.018274635076522827, -0.01579391583800316, -0.016744857653975487, 0.032635245472192764, 0.010977185331285, -0.024628033861517906, -0.00034023760235868394, -0.016221150755882263, -0.013244287110865116, -0.00791073963046074, 0.0069701336324214935, 0.016345186159014702, -0.028693659231066704, 0.00046341223060153425, -0.0043550413101911545, -0.02276749536395073, -0.012389817275106907, 0.01793009042739868, -0.016276277601718903, 0.003583261976018548, 0.014732719399034977, -0.01657947711646557, 0.027852971106767654, 0.00046685768757015467, -0.031891029328107834, 0.032580118626356125, 0.005113039165735245, -0.008716973476111889, -0.021720079705119133, -0.0006877967971377075, -0.004365377593785524, 0.012727471068501472, -0.034923020750284195, -0.013761104084551334, -0.004975221119821072, 0.013898921199142933, -0.014884318225085735, 0.027646243572235107, 0.005784900858998299, 0.006442980375140905, -0.0044721863232553005, -0.02199571579694748, -0.009095972403883934, -0.02985132858157158, 0.037927448749542236, 0.00469269510358572, 0.015421807765960693, -0.04156583920121193, 0.009867751970887184, 0.024035418406128883, -0.0036762889940291643, 0.012679234147071838, 0.0014333047438412905, 0.011652491986751556, -0.014636246487498283, 0.014994572848081589, 0.014374393038451672, 0.020259210839867592, 0.0027632461860775948, -0.005126820877194405, -0.016896458342671394, -0.004199996590614319, 0.004137978423386812, 0.017130747437477112, -0.013726649805903435, -0.019446086138486862, 0.020906955003738403, 0.0031267404556274414, 0.015339117497205734, 0.020851828157901764, 0.02271236851811409, 0.00705626979470253, 0.028059696778655052, -0.014305484481155872, 0.018688088282942772, -0.002694337395951152, -0.0021120572928339243, 0.015132390893995762, 0.025441160425543785, -0.023387674242258072, 0.020934518426656723, -0.0027839187532663345, 0.02907954901456833, 0.01181787345558405, -0.0009052904206328094, 0.02504148706793785, -0.00551960151642561, 0.0009285471751354635, -0.019018851220607758, -0.007683340460062027, -0.020562410354614258, -0.005895155016332865, -0.030953869223594666, 0.015408026054501534, 0.037210796028375626, 0.0314224511384964, 0.0036797344218939543, 0.019845757633447647, 0.024710725992918015, 0.018536489456892014, -0.00041474532918073237, -0.01871565170586109, 0.0023187838960438967, 0.0008574849343858659, -0.008882354944944382, -0.011142566800117493, 0.023938946425914764, -0.010915166698396206, -0.016083333641290665, -0.016234932467341423, 0.003972596954554319, -0.00859293807297945, 0.00605364516377449, 0.0041138604283332825, 0.006012300029397011, 0.005840027704834938, -0.004313696175813675, -0.021720079705119133, 0.021678734570741653, 0.014277920126914978, 0.0017640674486756325, -0.026226721704006195, -0.00861361064016819, -0.003717634128406644, -0.040518421679735184, 0.014346829615533352, 0.01334765087813139, 0.021334189921617508, -0.027728933840990067, -0.015587189234793186, -0.013623286038637161, 0.021347971633076668, 0.04401899501681328, -0.030705798417329788, 0.0030388818122446537, 0.009330262430012226, -0.023828690871596336, 0.019129106774926186, 0.023911383002996445, -0.004437732044607401, 0.05959240347146988, -0.016717294231057167, 0.0019156669732183218, -0.009950442239642143, -0.021596044301986694, -0.010915166698396206, -0.017061838880181313, 0.005853809416294098, -0.013588831759989262, 0.014195229858160019, 0.026061339303851128, 0.02502770535647869, 0.015959296375513077, -0.009909097105264664, 0.014691374264657497, 0.008241502568125725, -0.016234932467341423, -0.0423651821911335, -0.0044790771789848804, 0.020962081849575043, 0.014401956461369991, 0.0016408928204327822, 0.007745358627289534, 0.01646922342479229, -0.031918592751026154, 0.007807376328855753, -0.013519923202693462, -0.012844615615904331, 0.023070693016052246, -0.004510086495429277, -0.030319908633828163, -0.012410489842295647, -0.001795076415874064, 0.0003245177795179188, 0.03982933238148689, -0.004289578180760145, -0.008537810295820236, -0.030292345210909843, 0.0008604996837675571, -0.017819836735725403, -0.016055770218372345, -0.011349293403327465, 0.021375535055994987, 0.021706297993659973, 0.022409169003367424, -3.041681156901177e-05, 0.021499572321772575, -0.009833297692239285, 0.0037830977234989405, -0.024448871612548828, -0.016744857653975487, 0.01798521913588047, 0.024600470438599586, -0.003972596954554319, -0.011666273698210716, 0.059096258133649826, 0.042695943266153336, -0.0006520503084175289, -0.004372268449515104, -0.018632961437106133, 0.027081191539764404, 0.00381755200214684, -0.001453977427445352, -0.018315980210900307, 0.01132861990481615, -0.03131219744682312, 0.016262495890259743, 0.027177663519978523, 0.026392102241516113, 0.0002319214545423165, -0.017613111063838005, -0.022974221035838127, -0.013988503254950047, -0.03550185635685921, 0.014760282821953297, -0.015545844100415707, 0.0035057393833994865, -0.010357005521655083, -0.03365509957075119, -0.0024410972837358713, -0.008007212541997433, -0.015780134126544, -0.015959296375513077, 0.001393682206980884, -0.002070711925625801, -0.038726791739463806, -0.03834090381860733, 0.00274429633282125, -0.0375966876745224, 0.02502770535647869, -0.0008574849343858659, -0.0038347793743014336, -0.03765181452035904, 0.00707005150616169, 0.03751399740576744, 0.009654134511947632, 0.00471336767077446, -0.02032812125980854, -0.002429038053378463, 0.01095651276409626, 0.006387853529304266, -0.026902027428150177, -0.009550770744681358, -0.002914845710620284, -0.031808339059352875, 0.0014936000807210803, -0.00547825638204813, 0.012865288183093071, 0.015545844100415707, 0.029961582273244858, -0.015091045759618282, 0.009226899594068527, 0.017888745293021202, -0.010928948409855366, -0.006615252699702978, 0.004268905147910118, 0.0006606639362871647, 0.006336171645671129, -0.0025892513804137707, -0.016607040539383888, 0.008282847702503204, -0.031725648790597916, 0.001960457768291235, -0.000407854444347322, 0.02199571579694748, 0.004134532995522022, 0.00469614053145051, -0.0061845723539590836, 0.008978827856481075, 0.005888264160603285, -0.0015358066884800792, -0.03313139081001282, 0.01719965785741806, -0.025468723848462105, 0.025441160425543785, 0.008096793666481972, -0.01181787345558405, 0.013244287110865116, -0.02108611725270748, -0.0078211585059762, -0.01018473319709301, -0.01810925453901291, 0.02676421031355858, 0.00040591639117337763, 0.014236574992537498, 0.028859039768576622, -0.004771939944475889, -0.00015095352136995643, -0.03293844684958458, 0.013016887940466404, 0.00975060649216175, 0.0064636534079909325, -0.014567337930202484, 0.012465616688132286, -0.024779634550213814, -0.017130747437477112, -0.005891709588468075, -0.003535025753080845, -0.03062310814857483, -0.008248393423855305, -0.023980291560292244, -0.017709583044052124, -0.009571444243192673, -0.002802868839353323, 0.0152564262971282, -0.02888660319149494, -0.03065067157149315, -0.01579391583800316, 0.016028206795454025, 0.039719078689813614, 0.02351171150803566, 0.013754213228821754, -0.031835902482271194, -0.01021918747574091, -0.022271350026130676, 0.0008837564382702112, -0.030871178954839706, 0.010935839265584946, 0.007221650797873735, 0.02582704834640026, 0.039581261575222015, 0.011900563724339008, 0.0073663596995174885, 0.015600970946252346, 0.005319765768945217, 0.006515334825962782, -0.012851506471633911, -0.010804913006722927, -0.024035418406128883, -0.03528134897351265, 3.232795643270947e-05, 0.007442159112542868, 0.010088260285556316, -0.0064291986636817455, -0.017888745293021202, 0.0267228651791811, -0.0033954852260649204, 0.024531561881303787, -0.002875223057344556, -0.03985689952969551, -0.03599800169467926, 0.012865288183093071, -7.106228440534323e-05, 0.010363896377384663, -0.028045915067195892, -0.008482683449983597, 0.03624607250094414, -0.008744536899030209, 0.0018846578896045685, -0.00944051705300808, 0.02815616875886917, -0.016620822250843048, 0.02592352218925953, -0.011452656239271164, -0.0055264923721551895, -0.01729612983763218, -0.01099785789847374, -0.037982575595378876, -0.028555840253829956, 0.017130747437477112, -0.016317622736096382, 0.007400813978165388, 0.004527313634753227, 0.02187167853116989, -0.009915987960994244, 0.02509661577641964, -0.02498636022210121, -0.006150117609649897, -0.004072514828294516, 0.0015599247999489307, 0.005454137921333313, -0.0004248663317412138, -0.0032197674736380577, 0.008145029656589031, -0.0013041006168350577, 0.0028235414065420628, 0.0024962243624031544, 0.028445586562156677, -0.02828020602464676, -0.019184233620762825, -0.024062981829047203, -0.017750928178429604, 0.010040024295449257, 0.017571765929460526, 0.016799986362457275, 0.016166023910045624, -0.0050200121477246284, -0.016689730808138847, 0.010294986888766289, 0.00468924967572093, -0.009102863259613514, 0.000829059979878366, 0.027852971106767654, -0.01572500728070736, -0.024614252150058746, 0.03153270483016968, 0.0007752249366603792, -0.0019380623707547784, -0.033214081078767776, 0.011556020006537437, 0.021458225324749947, -0.02184411510825157, -0.027094973251223564, 0.005953727290034294, -0.003752088639885187, 0.011431983672082424, -0.02358062006533146, -0.008537810295820236, 0.013416559435427189, 0.007318123243749142, -0.0378723219037056, 0.017778491601347923, -0.017626892775297165, 0.017557984218001366, 0.009578335098922253, -0.007559304591268301, -0.01493944600224495, -0.008489574305713177, 0.011163239367306232, -0.005212957039475441, 0.016317622736096382, -0.010288096033036709, -0.005464474204927683, -0.002032811986282468, 0.011928127147257328, 0.010694658383727074, 0.0007282807491719723, 0.004396386910229921, 0.010742894373834133, 0.03285575658082962, -0.016799986362457275, -0.034812767058610916, -0.0019432305125519633, -0.02345658279955387, 0.003628052771091461, -0.02125149965286255, -0.025744358077645302, -0.015325335785746574, 0.0009268244612030685, 0.01180409174412489, 0.04319208860397339, -0.014009175822138786, -0.01797143742442131, -0.029961582273244858, 0.01568366214632988, -0.008000321686267853, -0.014650028198957443, 0.03158783167600632, 0.012183090671896935, -0.00448252260684967, -0.013947158120572567, -0.00684265187010169, 0.018426235765218735, 0.005237075034528971, 0.00381410657428205, -0.01337521430104971, 0.004065623972564936, 0.019115323200821877, -0.029244929552078247, 0.008331083692610264, -0.02028677426278591, -0.004613449797034264, -0.049063123762607574, -0.008875464089214802, -0.003266280982643366, -0.010715330950915813, 0.011666273698210716, 0.017695801332592964, -0.015063481405377388, -0.03384804353117943, 0.025551414117217064, 0.006339617073535919, 0.0019862984772771597, 0.012396708130836487, -0.02502770535647869, -0.006749624852091074, -0.012458725832402706, -0.00705626979470253, -0.03781719505786896, 0.011369965970516205, -0.00394847895950079, -0.003583261976018548, 0.016965366899967194, -0.014746501110494137, 0.024559125304222107, -0.019308269023895264, -0.003192204050719738, 0.028445586562156677, -0.025289559736847878, 0.013581940904259682, 0.0034557804465293884, 0.004034615121781826, -0.005895155016332865, 0.00708383321762085, -0.004637567792087793, 0.002470383420586586, -0.017461510375142097, 0.030705798417329788, 0.002582360291853547, -0.014277920126914978, 0.018371108919382095, 0.028390459716320038, 0.014567337930202484, 0.03445444256067276, 0.03241473808884621, -0.004782276693731546, -0.016910240054130554, -0.015311554074287415, -0.027701370418071747, -0.022243786603212357, 0.00196562591008842, 0.04310939833521843, 0.011576692573726177, 0.004272350575774908, -0.018384890630841255, -0.00048580762813799083, -8.812799933366477e-05, -0.020121393725275993, 0.010694658383727074, 0.004661685787141323, 0.03428905829787254, 0.016813768073916435, -0.023994073271751404, 0.0030612770933657885, -0.012658561579883099, 0.018260853365063667, -0.02185789681971073, 0.01806790940463543, 0.010446586646139622, 0.005119930021464825, 0.005361110903322697, 0.0094680804759264, -0.04159340262413025, -0.021347971633076668, -0.0034540577325969934, 0.00628793565556407, 0.007032151333987713, 0.034206368029117584, -0.004551431629806757, -0.032580118626356125, -0.00394847895950079, 0.010425914078950882, 0.007669558748602867, 0.01260343473404646, 0.0013480300549417734, -0.029493002220988274, 0.004547986201941967, 0.008937481790781021, 0.0031026224605739117, 0.017750928178429604, 0.010129605419933796, 0.0023721882607787848, -0.0038313339464366436, 0.009847079403698444, 0.0006210412830114365, -0.027219008654356003, 0.024173235520720482, -0.009192445315420628, 0.024503998458385468, 0.021375535055994987, -0.007283668965101242, 0.03384804353117943, 0.020865609869360924, 0.002975140931084752, -0.026350757107138634, 0.020865609869360924, -0.022450514137744904, -0.0011886782012879848, -0.0283353328704834, -0.012734361924231052, 0.002932072849944234, -0.013154705986380577, 0.014746501110494137, -0.013285632245242596, -0.02498636022210121, -0.009936660528182983, 0.010798022150993347, -0.02428349107503891, -0.0009500812157057226, 0.010012460872530937, -0.02275371365249157, 0.001258448464795947, -0.012658561579883099, -0.022491859272122383, 0.012699906714260578, -0.005967509467154741, -0.012934197671711445, -0.01491188257932663, 0.013030669651925564, 0.03393073379993439, 0.00313190883025527, -0.021664952859282494, -0.0065842438489198685, 0.005416238214820623, -0.017709583044052124, -0.011259711347520351, 0.18379376828670502, 0.0007050239946693182, -0.019018851220607758, 0.005574728827923536, -0.01808169111609459, 0.015283990651369095, 0.0028356006368994713, -0.0029906455893069506, 0.0051406025886535645, 0.0008264759089797735, -0.018991287797689438, -0.014291701838374138, -0.001265339320525527, -0.005891709588468075, 0.002411810914054513, -0.016786204650998116, -0.03202885016798973, -0.04228249192237854, 0.0002592696691863239, -0.03588774427771568, 0.006918451748788357, -0.005850363988429308, -0.014277920126914978, -0.02891416661441326, 0.026006212458014488, -0.024889888241887093, 0.017034275457262993, -0.012837724760174751, 0.019005069509148598, 0.052039988338947296, -0.004427395761013031, -0.010646422393620014, 0.0044721863232553005, 0.0009621402714401484, -0.005977845750749111, -0.0027132872492074966, 0.013561268337070942, 0.018646743148565292, 0.033434588462114334, 0.019969794899225235, -0.008758318610489368, -0.04608625918626785, 0.007531740702688694, -0.027012281119823456, 0.019914666190743446, 0.004179323557764292, 0.01368530374020338, -0.0038933518808335066, 0.017847400158643723, 0.004268905147910118, -0.01809547282755375, -0.025275778025388718, 0.024779634550213814, 0.025482505559921265, -0.007311232388019562, -0.014029848389327526, 0.00684265187010169, 0.010060696862637997, -0.006680716294795275, 0.004372268449515104, -0.009536989033222198, 0.031174378469586372, -0.007262996397912502, 0.023718437179923058, -0.005202620755881071, -0.010749786160886288, 0.003090563463047147, -0.0042310054413974285, 0.021030990406870842, 0.005822800565510988, 0.026502355933189392, -8.204463665606454e-05, -0.0009182108915410936, -0.018467580899596214, 0.00048494627117179334, -0.013140924274921417, 0.03395829722285271, 0.020548628643155098, 0.008517137728631496, 0.007662667892873287, -0.006122554186731577, -0.00626381766051054, 0.01576635241508484, -0.015339117497205734, 0.0007902987417764962, -0.03867166489362717, 0.024710725992918015, -0.01958390511572361, -0.0220232792198658, -0.014264138415455818, -0.008744536899030209, 0.010942730121314526, -0.009006391279399395, -0.025303341448307037, -0.019156670197844505, 0.01335454173386097, -0.01642787829041481, 0.030016709119081497, 0.0012808438623324037, -0.029961582273244858, -0.01569744385778904, 0.043467722833156586, 0.00021437123359646648, -0.007049378473311663, -0.010301877744495869, -0.0007463693618774414, 0.008193266578018665, 0.022891530767083168, -0.00381410657428205, -0.006343062501400709, 0.01337521430104971, -0.011845436878502369, -0.0033541398588567972, -0.012286453507840633, -0.031808339059352875, 0.008014103397727013, 0.01714452914893627, -0.009688588790595531, -0.0009078745497390628, -0.004644458647817373, 0.002849382348358631, 0.002094829920679331, -0.017420165240764618, -0.0010956511832773685, -0.01448464673012495, -0.0061845723539590836, -0.041841473430395126, -0.0009474971448071301, -0.009943551383912563, -0.04060111194849014, 0.014870536513626575, 0.0015917952405288815, 0.019280705600976944, 0.0038795701693743467, -0.010632640682160854, -0.012734361924231052, 0.006997697055339813, -0.0077522494830191135, -0.01103231217712164, 0.009915987960994244, 0.014022957533597946, 0.00527152931317687, 0.023690873757004738, -0.011301056481897831, -0.002478996990248561, -0.009350934997200966, -0.016717294231057167, 0.004048396833240986, -0.028693659231066704, -0.022202441468834877, 0.0009070131927728653, -0.0203419029712677, -0.0022739931009709835, -0.004003606270998716, 0.037265922874212265, -0.00939228106290102, -0.01882590726017952, -0.028473149985074997, -0.006229362916201353, -0.031780775636434555, -0.027825407683849335, -0.007641995325684547, 0.017833618447184563, 0.015835260972380638, -0.025661667808890343, 0.004186214413493872, -0.17596572637557983, 0.04211710765957832, 0.01256898045539856, -0.039746642112731934, -0.0030785042326897383, -0.0027649689000099897, 0.020204083994030952, -0.015173736028373241, -0.011156348511576653, 0.012513852678239346, 0.028073478490114212, -0.0023859699722379446, -0.027246572077274323, -0.024738289415836334, -0.009695479646325111, -0.0006628173287026584, 0.008827228099107742, -0.0016486450331285596, 0.04484590142965317, 0.0030543862376362085, 0.02971350960433483, -0.02118259109556675, 0.01644166000187397, -0.026943372562527657, -0.00605364516377449, 0.003762424923479557, 0.016028206795454025, 0.016193587332963943, 0.00380721571855247, -0.015008354559540749, 0.009998679161071777, 0.0034695621579885483, 0.026984717696905136, 0.015421807765960693, -0.0019156669732183218, 0.0015314999036490917, 0.00381066114641726, -0.009061518125236034, -0.01256898045539856, 0.008517137728631496, 0.00470303138718009, -0.009936660528182983, -0.015201299451291561, 0.0008475792710669339, -0.015215081162750721, 0.009247572161257267, -0.0011904009152203798, -0.01100474875420332, -0.013795558363199234, 0.0007106228731572628, 0.011521564796566963, -0.04479077458381653, 0.010336332023143768, 0.0008036498329602182, -0.012775707058608532, 0.010694658383727074, -0.0012696462217718363, 0.02105855382978916, 0.0014083252754062414, -0.004410168621689081, -0.038754355162382126, -0.033407025039196014, -0.01575257070362568, -0.007256105542182922, 0.024820979684591293, -0.03506083786487579, 0.0007084694225341082, 0.027191445231437683, 0.006101881619542837, 0.022202441468834877, -0.003765870351344347, 0.000929408532101661, -0.016097115352749825, 0.0312846340239048, 0.009082190692424774, 0.006150117609649897, -0.023098258301615715, 0.02280884049832821, -0.003212876617908478, 0.010067587718367577, -0.033407025039196014, 0.038726791739463806, -0.029575692489743233, 0.00043197255581617355, 0.0011654214467853308, -0.005188839044421911, -0.010577513836324215, 0.00857915636152029, 0.003362753428518772, -0.024049200117588043, 0.0235668383538723, -0.018302198499441147, -0.004816730972379446, 0.007152742240577936, 0.014732719399034977, 0.019087759777903557, 0.01637275144457817, 0.023112040013074875, -0.006684161722660065, -0.038974862545728683, 0.005361110903322697, 0.008737646043300629, -0.028500713407993317, 0.020121393725275993, 0.009971115738153458, 0.01180409174412489, -0.001679654000326991, -0.006811643019318581, 0.028418023139238358, -0.0048890854232013226, -0.015380462631583214, -0.008420665748417377, 0.001455700141377747, 0.006787525024265051, -0.02351171150803566, 0.008792773820459843, -0.002696060109883547, -0.010646422393620014, 0.020672664046287537, 0.010315659455955029, 0.015545844100415707, -0.010639531537890434, 0.005871037021279335, -0.009592116810381413, 0.0005400733789429069, 0.0068529886193573475, -0.09266866743564606, -0.03690759837627411, 0.01951499469578266, -0.01638653315603733, -0.01892237924039364, -0.004162096418440342, 0.003645279910415411, 0.01655191369354725, -0.013451013714075089, -0.008475792594254017, -0.024752071127295494, -0.000981090241111815, -0.004206887446343899, 0.02432483620941639, 0.02749464474618435, -0.01959768682718277, -0.027784060686826706, 0.006501553114503622, -0.018550271168351173, 0.0329660102725029, -0.017861181870102882, -0.032607682049274445, 0.011535346508026123, 0.011941909790039062, -0.011659382842481136, -0.0001531069283373654, -0.011404420249164104, 0.016758639365434647, 0.004668576642870903, 0.010315659455955029, -0.027246572077274323, -0.021347971633076668, -0.002920013852417469, -0.001963903196156025, 0.0017692355904728174, 0.00526808388531208, -0.023249857127666473, -0.0019811303354799747, 0.024683162569999695, -0.04622408002614975, -0.002456601709127426, -0.011397529393434525, 0.005729773547500372, -0.015339117497205734, -0.0038416702300310135, -0.006115663331001997, -0.013099578209221363, 0.05104770138859749, 0.0026443784590810537, -0.0195012129843235, -0.01641409657895565, 0.007035596761852503, -0.00939228106290102, -0.030237218365073204, 0.023814909160137177, 0.007352577988058329, 0.012134854681789875, 0.014608683064579964, -0.010012460872530937, -0.004882194567471743, -0.02754977159202099, -0.015435589477419853, -0.008379319682717323, 0.03164295852184296, 0.01965281367301941, 0.02749464474618435, -0.017557984218001366, 0.004572104196995497, 0.01335454173386097, -0.00548514723777771, -0.02907954901456833, 0.004055287688970566, -0.005605737678706646, 0.0171858761459589, -0.020038703456521034, 0.006026081740856171, 0.0030716133769601583, -0.011280383914709091, 0.015173736028373241, -0.025344686582684517, 0.022891530767083168, 0.00975749734789133, -0.02122393622994423, -0.017502855509519577, 0.024752071127295494, -7.628429011674598e-05, 0.00868941005319357, 0.008806555531919003, 0.007710903882980347, -0.030402598902583122, 0.007559304591268301, 0.0171858761459589, 0.010825585573911667, -0.016152242198586464, -0.026323193684220314, -0.006594580132514238, 0.0013910980196669698, -0.001631417777389288, -0.004582440480589867, -0.02888660319149494, -0.031091688200831413, -0.020162738859653473, -0.06301028281450272, -0.0023153384681791067, 0.0025599650107324123, -0.007207869086414576, 0.0007756556151434779, -0.02664017491042614, 0.016331404447555542, -0.007779812905937433, -0.010832476429641247, 0.015339117497205734, -0.013616395182907581, 0.015545844100415707, -0.016083333641290665, 0.00392091553658247, -0.01568366214632988, 0.0026529920287430286, 0.034923020750284195, -0.007965866476297379, 0.024903669953346252, -0.0029372412245720625, -0.020190302282571793, 0.011597365140914917, 0.009288917295634747, -0.009978006593883038, -0.004096633289009333, 0.03439931571483612, -0.02756355330348015, 0.028362896293401718, -0.005123375449329615, -0.023112040013074875, 0.030733361840248108, 0.010522386059165001, 0.013995394110679626, 0.030182091519236565, -0.012272671796381474, 0.0035694800317287445, 0.006418862380087376, 0.018481362611055374, 0.010866930708289146, 0.023883819580078125, -0.005591955967247486, -0.018412454053759575, 0.02825264260172844, -0.00197596219368279, -0.0258132666349411, 0.01211418118327856, -0.012072836048901081, 0.022092187777161598, 0.008703191764652729, -0.002410088200122118, -0.00626381766051054, 0.012679234147071838, -0.02109990082681179, -0.0005034655332565308, 0.029244929552078247, -0.022243786603212357, -0.0028958958573639393, 0.02268480509519577, 0.008875464089214802, 0.0242007989436388, 0.04771250858902931, 0.017764709889888763, 0.04247543588280678, -0.0077315764501690865, 0.02520686946809292, -0.01495322771370411, -0.022326478734612465, 0.026888245716691017, -0.006384408101439476, -0.001437611528672278, 0.0019122215453535318, -0.03473007678985596, 0.022519422695040703, 0.014718937687575817, 0.006556680426001549, -0.0171858761459589, 0.016055770218372345, -0.0007343103061430156, 0.002584083005785942, 0.016055770218372345, 0.055154670029878616, -0.016675949096679688, -0.027687588706612587, 0.01871565170586109, 0.03274550288915634, 0.009971115738153458, 0.002420424483716488, -0.0038037702906876802, 0.02429727278649807, 0.015904169529676437, 0.00628793565556407, -0.005175056867301464, -0.0035660346038639545, 0.003255944699048996, -0.004833958111703396, -0.0026133693754673004, -0.006418862380087376, -0.0314224511384964, 0.014994572848081589, 0.04297157749533653, 0.016648385673761368, 0.016620822250843048, 0.0007549829315394163, -0.01017784234136343, -0.016675949096679688, 0.006480880547314882, -0.0329660102725029, -0.018963724374771118, 0.00604675430804491, 0.03985689952969551, 0.0008234611595980823, 0.023759782314300537, 0.0078211585059762, 0.01253452617675066, -0.038037702441215515, 0.005243965890258551, 0.005874482449144125, -0.0036831798497587442, -0.02888660319149494, 0.018646743148565292, -0.0031060678884387016, -0.0017158312257379293, 0.016055770218372345, 0.0021499572321772575, 0.039608824998140335, 0.009950442239642143, 0.02669530175626278, -0.024545343592762947, 7.553059549536556e-05, 0.002423869911581278, 0.014333047904074192, -0.008034775964915752, -0.012424271553754807, 0.001457422855310142, -0.021361753344535828, -0.002851105062291026, -0.018605398014187813, 0.013781776651740074, -0.01656569540500641, 0.07381519675254822, 0.0006916729034855962, -0.022877749055624008, 0.009357825852930546, -0.03743130341172218, 0.009102863259613514, 0.0013764549512416124, 0.007262996397912502, -0.003603934543207288, -0.024490216746926308, 0.03442687913775444, -0.0045031956396996975, 0.00029695421108044684, -0.02910711243748665, -0.006150117609649897, 0.007004587911069393, -0.014567337930202484, 0.013485467992722988, 0.02666773833334446, 0.027660025283694267, 0.022919094190001488, -0.008930590935051441, 0.0005417960928753018, 0.006411971524357796, -0.01177652832120657, 0.012065945193171501, 0.016758639365434647, -0.005274975206702948, -0.020121393725275993, -0.044377319514751434, 0.025413595139980316, -0.003190481336787343, -0.02508283406496048, -0.0016960198991000652, -0.005619519390165806, -0.01017095148563385, 6.977024168008938e-05, -0.017475292086601257, 0.03685247153043747, -0.010625749826431274, 0.011886782012879848, 0.014181448146700859, -0.02030055597424507, -0.007380141410976648, -0.008530919440090656, -0.004313696175813675, 0.0003576801682356745, -0.024118108674883842, -0.032552555203437805]" purchase,"[0.007921447977423668, 0.008421245031058788, 0.008736186660826206, -0.0234836358577013, -0.022360803559422493, 0.013802626170217991, -0.016910957172513008, -0.03042602725327015, -0.002404847415164113, -0.027427243068814278, 0.02730400487780571, 0.021895237267017365, -0.014980231411755085, -0.01729436218738556, -0.011166708543896675, 0.0071683283895254135, 0.024825558066368103, -0.02390812151134014, 0.006685647182166576, -0.018499353900551796, 0.0040086498484015465, -0.005641549825668335, -0.039025284349918365, 0.017321748659014702, 0.0028019468300044537, -0.011378951370716095, 0.01855412684381008, -0.024907715618610382, -0.0200192853808403, 0.012029372155666351, 0.015418410301208496, -0.0018673940794542432, -0.007051937282085419, -0.02452431060373783, -0.01351507194340229, -0.010153420269489288, -0.007558581419289112, 0.018266571685671806, 0.02414090372622013, -0.0023278240114450455, -0.0035602012649178505, 0.036560527980327606, 0.019772810861468315, 0.004238008987158537, -0.011906134895980358, 0.016418004408478737, 0.036259282380342484, -0.03519121930003166, -0.015569034032523632, -0.007668125908821821, 0.0004792578693013638, 0.04247593879699707, -0.01613045111298561, 0.037354726344347, 0.007291566114872694, -0.004730959888547659, 0.01422711182385683, 0.03839540109038353, 0.004244855605065823, -0.021840466186404228, 0.02545543946325779, -0.006932122632861137, -0.02006036601960659, -0.0015105181373655796, 0.0006333050550892949, -0.014254498295485973, -0.020306840538978577, -0.001733886543661356, -0.008558176457881927, 0.020169910043478012, 0.005634703207761049, 0.013610923662781715, -0.0084691708907485, -0.023921813815832138, 0.0234836358577013, -0.011858209036290646, 0.018280263990163803, 0.003358228364959359, -0.005357418209314346, 0.02071763388812542, 0.0026119553949683905, -0.00950984563678503, -0.013501378707587719, 0.04447513073682785, 0.00210873456671834, 0.049842819571495056, 0.002865277463570237, 0.009379761293530464, -0.021046267822384834, 0.012200536206364632, 0.018006402999162674, 0.017568225041031837, 0.020347919315099716, 0.03415054827928543, 0.015213013626635075, 0.022538812831044197, -0.009256523102521896, 0.046885114163160324, 0.002947435947135091, -0.02160768397152424, 0.0010269811609759927, 0.025784073397517204, -0.02919365093111992, -0.0029987848829478025, -0.010694297030568123, -0.005073287058621645, -0.011385797522962093, -0.009119592607021332, 0.002528085373342037, 0.00933868158608675, -0.015692271292209625, 0.04833658039569855, 0.010098648257553577, -0.01284411083906889, -0.0054566930048167706, 0.0009867576882243156, -0.0006333050550892949, -0.03746427223086357, -0.012679793871939182, 0.004700150340795517, 0.005251296795904636, -0.002666727639734745, 0.0006872215308248997, -0.023661645129323006, 0.002812216756865382, 0.019197700545191765, -0.008866271004080772, -0.017609303817152977, 0.018540432676672935, -0.008797804825007915, 0.024620162323117256, 0.007976219989359379, 0.012474398128688335, -0.006928699556738138, -0.005939374212175608, 0.02488032914698124, -0.007257333490997553, 0.010324583388864994, 0.005001398269087076, -0.0350542888045311, -0.020197296515107155, 0.008140536956489086, -0.002290167845785618, 0.00976316723972559, -0.0015088064828887582, 0.028426839038729668, -0.010372509248554707, -0.017581917345523834, 0.025154192000627518, 0.0034968708641827106, 0.029467511922121048, -0.00634332001209259, 0.003885412123054266, 0.004344130400568247, -0.0008609525393694639, -0.014309270307421684, 0.0200192853808403, -0.002955994103103876, 0.008770419284701347, -0.004734382964670658, -0.004772039130330086, 0.008695106953382492, 0.007325798738747835, -0.01929355226457119, -0.003125445917248726, 0.04359877482056618, 0.03053557313978672, -0.01933463104069233, -0.004029189236462116, -0.022976990789175034, -0.025907311588525772, 0.01311112567782402, 0.010995544493198395, 0.019129235297441483, -0.010502593591809273, 0.04551580548286438, 0.013097433373332024, -0.015651192516088486, -0.03226090222597122, -0.0005567093612626195, 0.00948930624872446, 0.013843705877661705, -0.004816541448235512, 0.028673313558101654, -0.0010877442546188831, -0.054197218269109726, -0.0105915991589427, -0.02390812151134014, 0.00839385949075222, 0.021922623738646507, -0.00634332001209259, 0.021169504150748253, -0.026523500680923462, 0.004549526609480381, -0.628348171710968, -0.013501378707587719, 0.007435343693941832, -0.014090181328356266, 0.015925053507089615, 0.02722184732556343, 0.005073287058621645, 0.02553759701550007, -0.012775645591318607, 0.024620162323117256, -0.017650382593274117, 0.024633854627609253, -0.006962932180613279, 0.015089776366949081, 0.0008314268197864294, -0.011645966209471226, 0.017075274139642715, -0.0012323773698881269, -0.010571058839559555, 0.0159798264503479, 0.0063535901717841625, 0.02256619930267334, -0.01151588186621666, 0.006798615213483572, 0.004967165645211935, 0.011967753991484642, 0.0015909649664536119, -0.021689841523766518, 0.007613353431224823, -2.7947793569182977e-05, -0.011591194197535515, 0.018184412270784378, 0.035026904195547104, -0.0009354086359962821, 0.04250332713127136, 0.015322558581829071, -0.005093826446682215, 0.003380479523912072, 0.008921043016016483, 0.039216987788677216, -0.023168694227933884, -0.00554569810628891, -0.0005725419614464045, 0.01080384198576212, -0.007045090664178133, 0.010865460149943829, -0.003365074982866645, 0.030480800196528435, -0.002913203090429306, 0.0023911544121801853, 0.013432913459837437, 0.006774652283638716, 0.0019666689913719893, -0.010194499976933002, 0.038943126797676086, -0.01582920365035534, 0.024661241099238396, -0.0007535474142059684, 0.016705559566617012, 8.114220690913498e-05, 0.0010004508076235652, 0.01682879775762558, 0.00541903730481863, -0.0035636245738714933, -0.03165840730071068, 0.03565678372979164, 0.0019512642174959183, 0.0011168420314788818, -0.00012302378308959305, -0.03886096552014351, 0.010632677935063839, 0.033137258142232895, -0.01755453087389469, -0.029084106907248497, 0.015541648492217064, -0.0026684394106268883, 0.030864207074046135, -0.005230757407844067, -0.002302149310708046, 0.014678983949124813, 0.0026650161016732454, -0.022511426359415054, 0.0017450121231377125, -0.044612061232328415, 0.006329627241939306, -0.002731769811362028, -0.03406838700175285, -0.014706370420753956, 0.012351159937679768, 0.007941987365484238, 0.0055936239659786224, -0.010317737236618996, 0.0005704024224542081, -0.009420840069651604, -0.028974561020731926, 0.009653623215854168, -0.018814295530319214, -0.02284006029367447, -0.0026051087770611048, 0.0026461880188435316, -0.025400666519999504, 0.01101608481258154, 0.012549709528684616, 0.006788345519453287, 0.03442440927028656, 0.011200941167771816, 0.00047112759784795344, -0.001216116826981306, -0.008359626866877079, 0.0016885282238945365, 0.0040531521663069725, -0.0031305807642638683, -0.0019050500122830272, -0.011502188630402088, -0.02622225135564804, -0.0310011375695467, 0.014966538175940514, -0.010906539857387543, -0.0047788857482373714, 0.021744614467024803, -0.000524188275448978, 0.03472565487027168, 0.030754663050174713, 0.009653623215854168, 0.0190607700496912, 0.007000588346272707, 0.0037416345439851284, -0.006514483597129583, 0.001893068547360599, 0.016582321375608444, 0.00221485598012805, -0.015363638289272785, 0.0200192853808403, -0.009434533305466175, 0.020169910043478012, -0.00343696353957057, 0.023538408800959587, -0.0028669890016317368, 0.020115137100219727, -0.010653217323124409, -0.00030959202558733523, -0.021539218723773956, 0.01303581427782774, -0.015719657763838768, -0.0021840466652065516, -0.029275808483362198, 0.010228732600808144, 0.007216254249215126, -0.004751499276608229, -0.012727719731628895, -0.0007800777675583959, -0.03491735830903053, -0.00018902872398030013, 0.012734565883874893, -0.019800197333097458, -0.011837669648230076, -0.010215039364993572, -0.022456655278801918, -0.01372731477022171, -0.011830822564661503, -0.011125628836452961, 0.02464754693210125, -0.024017665535211563, 0.0016945188399404287, -0.001119409454986453, 0.002774560824036598, -0.030453413724899292, 0.021046267822384834, -0.023867042735219002, -0.04222946614027023, -0.006452864967286587, -0.012179996818304062, 0.0017492912011221051, -0.0029611289501190186, 0.02167614921927452, 0.010728529654443264, -0.01570596545934677, 0.007401110604405403, 0.00337363313883543, -0.012152610346674919, -0.009681008756160736, 0.02290852554142475, 0.016034599393606186, 0.02260727807879448, 0.004487907513976097, -0.005244450177997351, 0.009906944818794727, 0.0017989285988733172, -0.029713988304138184, 0.014459894970059395, -0.0018947802018374205, 0.02071763388812542, -0.005422460380941629, -0.011625426821410656, -0.026824748143553734, -0.0032948979642242193, -0.006726726423949003, -0.017499757930636406, -0.009961716830730438, 0.0008284314535558224, -0.003923067823052406, 0.028125589713454247, -0.01195406075567007, 0.024291526526212692, -0.007709205150604248, -0.013597230426967144, -0.005063016898930073, -0.026085320860147476, 0.038066767156124115, 0.0377381332218647, 0.009708395227789879, -0.05367688089609146, 0.0003074524865951389, 0.009557771496474743, -0.007955680601298809, -0.001010720618069172, -0.014911766164004803, 0.004309897776693106, -0.013145358301699162, 0.002516103908419609, 0.02056700922548771, 0.012049912475049496, 0.012358006089925766, -0.011406336911022663, -0.0163632333278656, -0.0007882080390118062, -0.007291566114872694, 0.029330581426620483, -0.011351564899086952, 0.0015584438806399703, 0.009735781699419022, 0.013734160922467709, 0.032288286834955215, 0.009133285842835903, 0.02807081863284111, -0.0008943293942138553, 0.028180362656712532, -0.026811053976416588, 0.021744614467024803, 0.012597635388374329, 0.02464754693210125, 0.006986895110458136, 0.03461611270904541, -0.014733755961060524, -0.002252511912956834, -0.016568629071116447, 0.02394920028746128, 0.006702763494104147, -0.00028327564359642565, 0.025113113224506378, 0.007099863141775131, -0.002120716031640768, -0.012741412967443466, -0.03508167713880539, 0.007428497076034546, -0.0234836358577013, -0.01648647151887417, 0.02122427709400654, 0.007859828881919384, 0.02452431060373783, -0.0007051937282085419, 0.015130855143070221, 0.04595398157835007, 0.018033789470791817, 0.024702319875359535, -0.005220487713813782, -0.02356579340994358, -0.015623806975781918, -0.0074901157058775425, -0.021895237267017365, 0.025660835206508636, -0.032206129282712936, -0.007599660661071539, -0.01606198586523533, 0.026701509952545166, -0.003943607676774263, 0.014268191531300545, 0.01882798783481121, 0.004796002060174942, 0.02299068495631218, -0.010283504612743855, -0.033712368458509445, 0.016650788486003876, 0.016376925632357597, 0.014336656779050827, -0.02433260716497898, 0.006880773697048426, -0.003567047882825136, -0.037491656839847565, 0.014158646576106548, 0.014158646576106548, 0.021936317905783653, -0.02498987503349781, -0.016883570700883865, -0.017198510468006134, 0.018663670867681503, 0.03289078176021576, -0.008736186660826206, 0.014747449196875095, -0.0023740381002426147, -0.0027677142061293125, 0.01802009530365467, -0.003022747812792659, -0.007592814043164253, 0.04918555170297623, 0.000658123753964901, -0.0070724766701459885, -0.030316483229398727, -0.016760332509875298, -0.022853754460811615, -0.00720940763130784, 0.018855374306440353, -0.018471967428922653, 0.0008968968759290874, 0.025058340281248093, 0.016856184229254723, -0.0019067616667598486, -0.011413183994591236, 0.022470347583293915, 0.008948429487645626, 0.0029114915523678064, -0.037354726344347, 0.0034130006097257137, 0.01667817309498787, 0.017499757930636406, 0.038833580911159515, 0.008619795553386211, 0.0139600969851017, -0.020580701529979706, -0.0028361796867102385, -0.03453395143151283, 0.014802221208810806, 0.023853348568081856, -0.01459682546555996, -0.003567047882825136, 0.016965728253126144, 0.01372731477022171, 0.0005965048912912607, 0.027742184698581696, -0.018964918330311775, -0.017609303817152977, 0.001568713691085577, -0.015883974730968475, -0.024811863899230957, 0.004878160543739796, -0.012269001454114914, 0.02288113906979561, 0.020074058324098587, 0.022059554234147072, 0.004806271754205227, 0.014692677184939384, 0.008599255234003067, 0.015363638289272785, -0.034451793879270554, -0.01759560965001583, 0.0017415888141840696, 0.012748259119689465, 0.014035409316420555, -0.02583884634077549, 0.06539815664291382, 0.029850918799638748, 0.0010201346594840288, 0.0030449992045760155, -0.0066753774881362915, 0.009413993917405605, 0.007709205150604248, 0.011598040349781513, -0.010913386009633541, -0.01284411083906889, -0.03667007386684418, 0.012905729934573174, 0.014966538175940514, 0.039189599454402924, -0.0035533548798412085, -0.016198916360735893, -0.0028087934479117393, -0.03584848716855049, 0.0009901809971779585, 0.02356579340994358, -0.012234768830239773, -0.004200352821499109, -0.010057568550109863, -0.03376714140176773, -0.0072436402551829815, -0.00573740154504776, -0.0014797087060287595, -0.02129274234175682, -0.0005840955418534577, -0.007195714395493269, -0.035218607634305954, -0.021580297499895096, -0.006627451628446579, -0.031822722405195236, 0.019937127828598022, -0.00708616990596056, -0.002997073344886303, -0.02676997520029545, 0.012714026495814323, 0.04028504714369774, 0.012289540842175484, 0.0036971322260797024, 0.002678709104657173, 0.00043282975093461573, 0.004908970091491938, -0.0063535901717841625, -0.021511832252144814, 0.010851767845451832, -0.009653623215854168, -0.003455791622400284, 0.0031168877612799406, -0.01239908579736948, 0.01311112567782402, -0.004439981654286385, 0.037601202726364136, -0.030316483229398727, 0.0031168877612799406, 0.030973751097917557, -0.007007434498518705, -0.0028977985493838787, 0.009201751090586185, -0.0053916508331894875, 0.019471563398838043, -0.011064010672271252, -0.002553759841248393, -0.028426839038729668, -0.03215135633945465, -0.01330282911658287, -0.02564714290201664, 0.008934736251831055, 0.018047481775283813, 0.004939779173582792, -0.011022930964827538, -0.010502593591809273, -0.004563219379633665, 0.004676187410950661, -0.010564212687313557, -0.0014925459399819374, -0.025085726752877235, 0.05556652694940567, -0.0034010191448032856, -0.0069663552567362785, 0.006689070723950863, -0.018471967428922653, -0.02741355076432228, -0.010783301666378975, -0.01172812469303608, 0.04455728828907013, -0.0027796956710517406, 0.00021598697640001774, 0.026290716603398323, -0.007195714395493269, 0.01307004690170288, -0.033602822571992874, 0.01035881694406271, 0.005429306998848915, -0.004505023825913668, -0.011481649242341518, -0.014966538175940514, -0.012693487107753754, 0.007127249147742987, -0.01886906661093235, -0.014802221208810806, -0.030261710286140442, -0.01782839186489582, -0.014144953340291977, -0.0159798264503479, -0.023962892591953278, 0.001412954879924655, 0.02526373602449894, -0.025250043720006943, -0.027824342250823975, -0.007154635153710842, 0.012714026495814323, 0.03053557313978672, 0.007236793637275696, 0.013391833752393723, -0.02834467962384224, -0.012426472268998623, -0.011132475920021534, -0.013384987600147724, -0.0153088653460145, -0.006463134661316872, 0.02872808650135994, 0.020361613482236862, 0.05641549825668335, 0.007743437774479389, -0.008921043016016483, 0.003714248538017273, 0.01045466773211956, -0.006466557737439871, -0.003683438990265131, -0.00999594945460558, -0.01593874767422676, -0.029933076351881027, -0.007154635153710842, -0.009441380389034748, 0.03954562172293663, -0.012056758627295494, 0.0016825374914333224, 0.004754922818392515, -0.01563750021159649, 0.020621782168745995, -0.0186773631721735, -0.021265355870127678, -0.03357543796300888, -0.001066348748281598, -0.015856588259339333, 0.012275847606360912, -0.03368498012423515, 0.0033753446768969297, 0.03174056485295296, -0.006678800564259291, -0.0018263148376718163, 0.008243235759437084, 0.02025206759572029, -0.02441476471722126, 0.0423663966357708, -0.007373724598437548, -0.012152610346674919, -0.011502188630402088, -0.00907166674733162, -0.026934292167425156, -0.023894427344202995, 0.016376925632357597, 0.0037827137857675552, 0.021730920299887657, -0.011509035713970661, 0.014309270307421684, -0.009119592607021332, 0.011734970845282078, -0.005124635994434357, 0.001946129254065454, 0.0010458091273903847, -0.009544078260660172, -0.02048484981060028, -0.012981041334569454, 0.009619389660656452, 0.008989508263766766, 0.007805056869983673, 0.0024972758255898952, 0.011098243296146393, 0.019170314073562622, -0.0350542888045311, -0.013453452847898006, -0.022073248401284218, -0.024058744311332703, 0.04094231501221657, 0.0029046449344605207, 0.0037690207827836275, 0.022114327177405357, 0.004313320852816105, -0.005542275030165911, -0.025866230949759483, -0.0042551252990961075, -0.004583759233355522, 0.018430888652801514, 0.023661645129323006, -0.004244855605065823, -0.02414090372622013, 0.010543673299252987, 0.01178289670497179, -0.03743688762187958, -0.03187749534845352, 0.008640334941446781, 0.016267381608486176, -0.01422711182385683, -0.026277024298906326, -0.027947580441832542, -0.01821179874241352, 0.023812269791960716, -0.02941274084150791, 0.01234431378543377, 0.013994329608976841, -0.016226302832365036, -0.027742184698581696, 0.027865421026945114, -0.00038661560392938554, 0.022730516269803047, -0.0027334815822541714, -0.015322558581829071, -0.0035225453320890665, -0.008523943834006786, 0.0028892403934150934, 0.017801007255911827, 0.010571058839559555, 0.009194904938340187, -0.012734565883874893, 0.00864718109369278, 0.032288286834955215, -0.007031397428363562, 0.006281701382249594, 0.010673757642507553, 0.020046671852469444, 0.03393145650625229, 0.009756321087479591, -0.003448945004492998, 0.004696727264672518, -0.016198916360735893, 0.01725328341126442, -0.029631828889250755, -0.02082717791199684, -0.022538812831044197, -0.015952439978718758, 0.018581511452794075, 0.025167884305119514, -0.021539218723773956, -0.024579081684350967, -0.006059188861399889, 0.01355615071952343, -0.009037434123456478, -0.014980231411755085, 0.026947984471917152, 0.026591965928673744, 0.01582920365035534, -0.010844920761883259, 0.00565181951969862, 0.02872808650135994, 0.01307004690170288, 0.016993114724755287, -0.010865460149943829, 0.007811903487890959, 0.015322558581829071, -0.010571058839559555, 0.02090933546423912, -0.02611270733177662, -0.006778075359761715, -0.056470271199941635, -0.020813483744859695, 0.009455072693526745, -0.005110942758619785, 0.021196890622377396, 0.002018017927184701, -0.02845422364771366, -0.023387784138321877, 0.030782047659158707, 0.00997541006654501, -0.007223100867122412, 0.016938341781497, -0.002955994103103876, 0.008489711210131645, 0.008510250598192215, -0.008489711210131645, -0.019622186198830605, 0.009023740887641907, 0.006802038289606571, 0.011351564899086952, 0.02195001021027565, -0.04107924550771713, 0.005555967800319195, -0.015582727268338203, 0.009906944818794727, 0.01602090522646904, -0.022552505135536194, 0.012515476904809475, -0.008407552726566792, 0.03308248519897461, 0.0081816166639328, -0.01833503693342209, -0.015391023829579353, 0.013398680835962296, -0.0058400994166731834, 0.019307246431708336, 0.008770419284701347, -0.005833252798765898, 0.02303176373243332, -0.011289945803582668, 0.03185010701417923, 0.004799425136297941, 0.022620972245931625, 0.0007544032414443791, -0.033712368458509445, -0.012392239645123482, -0.013693082146346569, -0.022552505135536194, -0.018732136115431786, 0.02861854061484337, 0.006562409456819296, -0.0018691057339310646, -0.01503500435501337, -0.010180806741118431, 0.00025588946300558746, -0.02749570831656456, -0.01135841105133295, 0.006764382589608431, 0.02872808650135994, -0.013487685471773148, -0.01324805710464716, 0.03258953616023064, -0.01795163005590439, 0.008523943834006786, -0.037354726344347, 0.0003442526503931731, 0.011002391576766968, -0.0068260012194514275, -0.004059998784214258, 0.013877938501536846, -0.02726292610168457, -0.016924649477005005, 0.012782491743564606, -0.028043432161211967, 0.016198916360735893, 0.028673313558101654, -0.009235983714461327, -0.014706370420753956, 0.006141347344964743, -0.0015165088698267937, -0.006908159703016281, 0.01617152988910675, 0.011385797522962093, -0.017499757930636406, 0.008907349780201912, -0.009229137562215328, 0.007106709759682417, -0.007825596258044243, 0.01833503693342209, 0.003255530260503292, -0.016527550294995308, -0.007428497076034546, -0.010543673299252987, -0.004772039130330086, 0.00860610231757164, 0.010899693705141544, 0.04598136991262436, -0.0023346703965216875, 0.014117567799985409, 0.004833657760173082, 0.009413993917405605, 0.002086483407765627, -0.006007839925587177, 0.03954562172293663, -0.001048376550897956, -0.018841680139303207, -0.019197700545191765, -0.04001118615269661, 0.012405931949615479, -0.03384929895401001, 0.011077702976763248, 0.0008549618069082499, -0.022689437493681908, -0.006713033653795719, 0.020772404968738556, -0.03119284100830555, -0.005555967800319195, -0.008770419284701347, -0.036368824541568756, 0.0051006730645895, -0.006048919167369604, -0.0007051937282085419, -0.0038340629544109106, -0.019170314073562622, -0.015883974730968475, -0.02715338207781315, 0.0046727643348276615, 0.020402692258358, -0.004710420034825802, -0.02783803641796112, -0.005203370936214924, -0.009557771496474743, -0.009407147765159607, 0.016103064641356468, 0.17428554594516754, -0.0007989057339727879, -0.01349453255534172, 0.019430482760071754, 0.00706563051789999, 0.02326454594731331, 0.012625021860003471, -0.01678771898150444, -0.006408362183719873, -0.012269001454114914, -0.013754701241850853, 0.014774835668504238, -0.023401476442813873, -0.006439171731472015, 0.02564714290201664, -0.024209368973970413, -0.04770669713616371, -0.019225087016820908, -0.025154192000627518, -0.02976875938475132, 0.019005997106432915, 0.003168236929923296, 0.016281073912978172, -0.022579891607165337, 0.036834388971328735, -0.0319596529006958, 0.017458679154515266, 0.001231521600857377, 0.018088560551404953, 0.022086940705776215, -0.012529170140624046, -0.0074901157058775425, -0.001029548584483564, -0.004768615588545799, -0.012837264686822891, -0.012289540842175484, 0.00024005684826988727, 0.020594395697116852, 0.03245260566473007, 0.009434533305466175, 0.011173554696142673, -0.01176235731691122, 0.017308056354522705, -0.019854968413710594, 0.01503500435501337, -0.0009995950385928154, -0.0021121578756719828, -0.018266571685671806, 0.01191982813179493, -0.008544483222067356, -0.027358777821063995, -0.000882347987499088, 0.02826252207159996, 0.017664074897766113, -0.014021716080605984, -0.0015858300030231476, 0.0022182792890816927, 0.010084955021739006, -0.009872712194919586, -0.010208192281425, -0.016541242599487305, 0.026482420042157173, -0.0032983210403472185, 0.007579120807349682, -0.018389809876680374, 0.005169138312339783, 0.009208597242832184, -0.03168579190969467, 0.009811093099415302, -0.001197288860566914, 0.01717112399637699, -0.002522950293496251, -0.013631463050842285, 0.016267381608486176, 0.0008832038147374988, -0.012618174776434898, 0.032945554703474045, 0.0061139608733356, 0.01268664002418518, 0.019129235297441483, 0.009879558347165585, 0.01875952258706093, 0.012221075594425201, -0.014459894970059395, -0.00887311715632677, -0.03908005729317665, 0.028755472972989082, -0.0063980924896895885, 0.00034125728416256607, -0.01041358895599842, -0.010543673299252987, 0.011906134895980358, -0.015363638289272785, -0.0037416345439851284, -0.009119592607021332, -0.0020385575480759144, -0.018471967428922653, 0.00039089471101760864, -0.0153088653460145, -0.026468727737665176, -0.026660431176424026, 0.05827775597572327, 0.0019136081682518125, -0.001356470980681479, 0.00347975455224514, -0.007716051768511534, -0.022128021344542503, 0.03053557313978672, 0.004960319027304649, -0.0018126217182725668, 0.01763669028878212, -0.00891419593244791, -0.0038785655051469803, -0.005446423310786486, -0.05203371122479439, 0.0194441769272089, -0.03491735830903053, -0.0033821912948042154, -0.034451793879270554, -0.0005592768429778516, 0.001069772057235241, -0.010790148749947548, -0.012255308218300343, -0.009482459165155888, 0.0036149737425148487, -0.009270216338336468, -0.008339086547493935, -0.009372914209961891, 0.005555967800319195, -0.03453395143151283, 0.012727719731628895, -0.014049102552235126, 0.0030432874336838722, -0.008660874329507351, -0.028207749128341675, -0.0004088668792974204, 0.0027916771359741688, 0.007894061505794525, -0.002367191482335329, -0.015719657763838768, 0.0057750572450459, 0.012296387925744057, -0.007428497076034546, -0.014446201734244823, 0.01655493676662445, -0.005234180483967066, -0.0033034561201930046, 0.015213013626635075, -0.01478852890431881, -0.016349539160728455, -0.012508630752563477, 0.005408767610788345, -0.0066753774881362915, -0.004059998784214258, 0.02103257365524769, 0.008366473019123077, -0.021922623738646507, -0.005182831548154354, -0.006031802389770746, -0.0190607700496912, -0.0558403879404068, -0.02241557464003563, 0.02676997520029545, 0.002485294360667467, -0.01825287751853466, -0.0032230091746896505, -0.17417600750923157, 0.032288286834955215, 0.006083151791244745, -0.019129235297441483, -0.00244592665694654, 0.01478852890431881, 0.01587028242647648, -0.040997087955474854, -0.015692271292209625, 0.012138917110860348, 0.02407243847846985, -0.006969778798520565, -0.010824381373822689, -0.02853638306260109, -0.008551329374313354, -0.006391245871782303, -0.004611145239323378, 0.00019031245028600097, 0.009564617648720741, 0.014774835668504238, 0.0404219776391983, -0.023702725768089294, -0.009913790971040726, -0.001477997051551938, -0.0024373685009777546, 0.008085764944553375, 0.00903058797121048, 0.022470347583293915, -0.01220738235861063, -0.004943202715367079, -0.0016731234500184655, -0.006175579968839884, 0.01871844381093979, 0.018732136115431786, 0.018389809876680374, -0.015103469602763653, 0.024154596030712128, -0.0017886587884277105, -0.009913790971040726, 0.030836820602416992, 0.01640431210398674, 0.0081816166639328, 0.017773620784282684, -0.0006653981981799006, -0.0065795257687568665, 0.011858209036290646, 0.014144953340291977, -0.020786099135875702, -0.02218279242515564, -0.008428092114627361, -0.00037634579348377883, -0.059701837599277496, -0.0067814989015460014, -0.016075678169727325, -0.0026752857957035303, 0.015185628086328506, 0.010290350764989853, 0.02044377103447914, 0.0038409095723181963, -0.010269811376929283, -0.009619389660656452, -0.03431486338376999, -0.013028967194259167, -0.005603893660008907, 0.006863657385110855, -0.016048291698098183, 0.0007043379009701312, 0.02121058478951454, -0.02218279242515564, 0.015486875548958778, 0.014952845871448517, -0.006483674515038729, -0.0023911544121801853, 0.025852538645267487, -0.0001690239878371358, 0.012043065391480923, -0.014815914444625378, 0.009078512899577618, 0.007900908589363098, 0.0014643039321526885, -0.0040531521663069725, 0.031165454536676407, -0.030562959611415863, -0.0025126805994659662, -0.005610740277916193, 0.012536016292870045, -0.008421245031058788, -0.0049637421034276485, 0.01374785415828228, -0.014076488092541695, 0.015199321322143078, -0.012275847606360912, 0.0019820735324174166, 0.0003658620407804847, 0.009324989281594753, 0.0112625602632761, -0.0020111713092774153, 0.022401882335543633, -0.005521735176444054, -0.016623402014374733, -0.018540432676672935, 0.011837669648230076, -0.011529575102031231, 0.029823532328009605, 0.0027060953434556723, -0.004443405196070671, 0.00371082522906363, 0.0043954793363809586, 0.022894833236932755, -0.02826252207159996, -0.02229233831167221, 0.013720467686653137, -0.004436558578163385, 0.013138512149453163, -0.023237159475684166, 0.04332491010427475, -0.008092611096799374, 0.005056170746684074, 0.002663304330781102, -0.0017561378190293908, 0.03647837042808533, -0.03319203108549118, 0.01674663834273815, 0.006925276014953852, -0.012029372155666351, -0.010721683502197266, -0.09190796315670013, -0.035410311073064804, 0.008195309899747372, -0.00575794093310833, 0.006726726423949003, -0.010173959657549858, -0.0023209773935377598, 0.040531523525714874, -0.016239995136857033, -0.0008399849757552147, -0.014952845871448517, 0.007606506813317537, -0.01265240740031004, 0.005381381139159203, 0.017609303817152977, -0.01220738235861063, -0.02367533929646015, 0.002201162977144122, -0.03226090222597122, 0.020923029631376266, -0.012152610346674919, -0.012542863376438618, 0.010707990266382694, -0.000810887198895216, -0.01952633447945118, -0.007722898386418819, -0.025784073397517204, 0.0008459757082164288, 0.007750284392386675, 0.012679793871939182, -0.014952845871448517, 0.002291879616677761, 0.005021937657147646, -0.01663709431886673, -0.005008244886994362, -0.01563750021159649, -0.01729436218738556, -0.0030929248314350843, 0.02103257365524769, -0.03442440927028656, 0.014925459399819374, -0.008256928063929081, 0.02144336700439453, -0.014295578002929688, 0.010988698340952396, -0.0026530346367508173, -0.021511832252144814, 0.03215135633945465, -0.00978370662778616, -0.011454262770712376, -0.027701104059815407, 0.01740390807390213, -0.014898072928190231, -0.019608493894338608, 0.018129641190171242, 0.004104501102119684, 0.005597047042101622, 0.01795163005590439, -0.0023654799442738295, -0.006849964149296284, -0.020128831267356873, -0.019690651446580887, -0.019362017512321472, 0.04231162369251251, 0.010098648257553577, 0.0315762460231781, -0.014268191531300545, -0.00744218984618783, 0.004813118372112513, 0.011413183994591236, -0.0019050500122830272, 0.023661645129323006, 0.0013384987832978368, 0.018622592091560364, -0.017390213906764984, 0.004494754131883383, 0.0095303850248456, -0.008030992932617664, 0.020745018497109413, -0.03091898001730442, 0.017883164808154106, -0.003858025884255767, -0.03160363435745239, -0.0003136571613140404, 0.015993520617485046, 0.013439759612083435, 0.0053368788212537766, 0.017664074897766113, -0.0017578493570908904, -0.04932248219847679, 0.01135841105133295, 0.006904736626893282, 0.006490520667284727, -0.027372470125555992, -0.031904879957437515, 0.006066035479307175, -0.016664480790495872, -0.007483269087970257, 0.006819154601544142, -0.021539218723773956, -0.016267381608486176, -0.036560527980327606, -0.062330909073352814, 0.02607162855565548, 0.004018919542431831, -0.026016855612397194, 0.013850552029907703, -0.013398680835962296, 0.026249637827277184, -0.015842895954847336, -0.02152552455663681, 0.009605697356164455, -0.01648647151887417, 0.016993114724755287, -0.03091898001730442, -0.01852674037218094, -0.02922103740274906, -0.004936356097459793, 0.04833658039569855, -0.018581511452794075, 0.0234973281621933, -0.0077365911565721035, -0.008797804825007915, 0.004398902412503958, 0.020156215876340866, -0.008968968875706196, -0.0029303196351975203, 0.02930319495499134, -0.03223351389169693, 0.02976875938475132, -0.01459682546555996, -0.023593179881572723, 0.02526373602449894, 0.005049324128776789, 0.0073394919745624065, 0.01910184882581234, -0.006938969250768423, -0.002760867588222027, 0.0019033383578062057, 0.00463853171095252, 0.017088966444134712, 0.013138512149453163, -0.006983472034335136, -0.034643497318029404, -0.007312105968594551, -0.0035037172492593527, -0.024469537660479546, 0.00694239279255271, -0.04107924550771713, 0.03653314337134361, 0.017883164808154106, -0.012714026495814323, 0.015144548378884792, 0.022360803559422493, -0.013610923662781715, -0.01891014538705349, 0.009735781699419022, -0.01859520561993122, 0.025441747158765793, 0.023387784138321877, 0.02318238839507103, 0.03510906174778938, 0.027509402483701706, -0.011351564899086952, 0.028892403468489647, -0.02864592708647251, 0.002048827474936843, -0.0074901157058775425, -0.03587587550282478, 0.008934736251831055, 0.016910957172513008, -0.026852134615182877, 0.020662860944867134, -0.04406433925032616, 0.005877755582332611, 0.00013072614092379808, 0.013200131244957447, -0.0042551252990961075, 0.005956490524113178, 1.8373335478827357e-05, -0.013295982964336872, 0.01802009530365467, 0.03954562172293663, -0.0011741818161681294, -0.022155405953526497, 0.006839694455265999, 0.05479971319437027, 0.019184008240699768, -0.003371921367943287, -0.009407147765159607, 0.020813483744859695, 0.025592369958758354, 0.01570596545934677, 0.0015456066466867924, -0.006134500727057457, -0.010536826215684414, -0.00031258739181794226, -0.030891593545675278, 0.01417233981192112, -0.0021600837353616953, -0.004135310649871826, 0.03623189404606819, 0.030645117163658142, 0.014446201734244823, 0.0003694992628879845, -0.004915816243737936, -0.018622592091560364, 0.0068465410731732845, -0.045570578426122665, -0.0392717607319355, 0.006131077650934458, 0.034451793879270554, 0.004946625791490078, 0.005942797753959894, 0.004628261551260948, 0.02114211767911911, -0.036259282380342484, 0.003180218394845724, -0.009311296045780182, -0.02071763388812542, -0.022086940705776215, 0.028481610119342804, -0.010324583388864994, -0.0047035738825798035, 0.030508186668157578, 0.00035944339470006526, 0.04266764223575592, 0.024866636842489243, 0.023250853642821312, -0.02692059986293316, 0.00533345527946949, 0.0014882668619975448, 0.005004821345210075, -0.0015070948284119368, -0.04165435582399368, 0.0012469262583181262, -0.018773214891552925, -0.01659601554274559, -0.04447513073682785, 0.033986229449510574, -0.0011502188863232732, 0.0727924257516861, -0.029905691742897034, -0.019156621769070625, 0.00948930624872446, -0.019498948007822037, 0.0018040635623037815, 0.001210126094520092, 0.004138734191656113, -0.011625426821410656, 0.02152552455663681, 0.023401476442813873, -0.016965728253126144, -0.008825191296637058, -0.022429268807172775, -0.021580297499895096, 0.014090181328356266, -0.007763977628201246, 0.01901969127357006, -0.007188868243247271, 0.00565181951969862, 0.02488032914698124, -0.0005716861924156547, -0.009756321087479591, -0.023976586759090424, -0.0058400994166731834, -0.0024031358771026134, 0.014856994152069092, -0.004689880646765232, -0.006490520667284727, -0.044502515345811844, 0.03716302290558815, 0.008099458180367947, -0.023743804544210434, -0.013802626170217991, -0.012015679851174355, 0.001621774397790432, -0.012700333259999752, -0.007257333490997553, 0.002211432671174407, -0.027194460853934288, 0.013138512149453163, 0.04316059499979019, -0.021840466186404228, 0.009790553711354733, -0.019416790455579758, 0.005323185585439205, 0.014528360217809677, 0.005922257900238037, -0.0248392503708601]" streaming,"[0.0114444550126791, 0.03509903699159622, 0.003689464647322893, -0.025423087179660797, -0.014920479618012905, 0.024122118949890137, -0.019026659429073334, -0.010726211592555046, -0.021316906437277794, -0.013551752083003521, 0.02085614763200283, 0.010218021459877491, -0.027753988280892372, -0.006575987674295902, -0.019446764141321182, -0.009804693050682545, 0.02783529832959175, -0.009174535982310772, 0.01346366573125124, -0.03179240971803665, 0.006047469563782215, -0.001563533442094922, -0.03138585761189461, 0.016289206221699715, 0.008232689462602139, 0.004526285454630852, 0.008835742250084877, -0.02992226928472519, -0.015950411558151245, 0.024393154308199883, 0.024149222299456596, -0.0030660838820040226, -0.007500894833356142, -0.01992107555270195, -0.010577142238616943, -0.012183025479316711, 0.005637528840452433, -0.019148625433444977, 0.029488613829016685, 0.005786598194390535, 0.0024088239297270775, 0.02364780753850937, 0.005695123691111803, -0.03133165091276169, -0.018891142681241035, 0.025165604427456856, 0.01593686081469059, -0.02291601337492466, 0.018078038468956947, -0.003987602889537811, 0.0017244605114683509, 0.019785558804869652, -0.02330901473760605, 0.020449593663215637, 0.010502607561647892, 0.0033879380207508802, -0.0032202352304011583, 0.03241579234600067, 0.006630194839090109, 0.002457949100062251, -6.548249075422063e-05, -0.0008236924186348915, -0.0007542397361248732, -0.0036860767286270857, -0.003188049653545022, -0.009445571340620518, -0.023010876029729843, 0.002649367554113269, -0.0004395849537104368, 0.004621147643774748, 0.014419064857065678, 0.022333288565278053, -0.007487343158572912, -0.024027256295084953, 0.008496948517858982, -0.014215787872672081, -0.012989354319870472, 0.007195980288088322, 0.005623977165669203, 0.01531348004937172, 0.0038656373508274555, -0.005684960167855024, -0.012372749857604504, 0.04583202674984932, -0.0003995649458374828, 0.04320298507809639, 0.0005729850381612778, -0.015598067082464695, -0.008232689462602139, 0.0011010798625648022, -0.0032151532359421253, 0.018294865265488625, 0.030084889382123947, 0.016939690336585045, 0.00949300266802311, 0.05512852966785431, -0.008991587907075882, 0.02932599186897278, 0.006271073594689369, -0.010319659486413002, 0.009520106017589569, 0.028296058997511864, -0.03054565005004406, -0.011410575360059738, -0.03653552383184433, 0.0024681128561496735, -0.0032270110677927732, 0.009587864391505718, 0.019026659429073334, 0.01848459057509899, -0.01712941564619541, 0.020815491676330566, 0.019514523446559906, -0.0316568948328495, -0.010617798194289207, -0.012738646939396858, 0.004302681423723698, -0.03496352210640907, -0.010204469785094261, -0.011186971329152584, 0.017061656340956688, 0.014866271987557411, -0.01604527421295643, -0.02591095119714737, -0.003015264868736267, 0.013375579379498959, -0.035532694309949875, -0.028052126988768578, 0.006491289474070072, -0.01532703172415495, 0.036806561052799225, -0.009276174008846283, 0.005840805359184742, 0.0005196250276640058, -0.0012992742704227567, 0.019826212897896767, -0.009364261291921139, -0.002173362299799919, -0.004915898200124502, -0.03255130723118782, -0.01148511003702879, 0.016411172226071358, 0.01622144691646099, 0.01997528225183487, -0.005464744288474321, 0.03263261914253235, 0.0035403952933847904, -0.0035471711307764053, 0.004007930867373943, 0.017698587849736214, 0.02153373509645462, 0.005491847638040781, 0.004177327733486891, 0.011010798625648022, -0.010624573566019535, 0.01567937806248665, 0.006321892607957125, 0.006891066208481789, 0.006172823254019022, 0.0029763036873191595, -0.00729761878028512, 0.02721191942691803, 0.008856070227921009, -0.012616680935025215, -0.00411973288282752, 0.04385346919298172, 0.034773796796798706, -0.014906927943229675, -0.020761284977197647, -0.006169435102492571, -0.015150859020650387, 0.00829367246478796, -0.023078633472323418, 0.016085930168628693, 0.002767945406958461, 0.048162925988435745, 0.011803575791418552, -0.007399256806820631, -0.026412365958094597, -0.0013263777364045382, 0.01277252659201622, 0.008747655898332596, -0.007744826376438141, 0.0316568948328495, -0.009350708685815334, -0.026046467944979668, 0.004851527512073517, -0.02664274536073208, 0.0027408418245613575, 0.012216905131936073, 0.00449240580201149, 0.020720629021525383, -0.024257635697722435, 0.0007334885885939002, -0.6227301359176636, -0.008510500192642212, 0.023403875529766083, -0.011939093470573425, 0.029461508616805077, 0.01197974942624569, -0.0027916610706597567, 0.01867431402206421, -0.01820000261068344, 0.009066122584044933, 0.010902384296059608, 0.013206182979047298, 0.020408939570188522, 0.011817128397524357, -0.015706481412053108, -0.013755028136074543, 0.00732472212985158, -0.0076296366751194, 0.000989277963526547, 0.008571483194828033, -0.014676547609269619, 0.011871335096657276, -0.0010400969767943025, 0.011464782059192657, -0.007704171352088451, 0.015570963732898235, -0.009831796400249004, -0.02367491088807583, 0.004685518331825733, -0.011722265742719173, -0.03631869703531265, 0.0066844020038843155, 0.003689464647322893, 0.006599703337997198, 0.0463469922542572, 0.005393597297370434, -0.010218021459877491, 0.026751158758997917, 0.0031169031281024218, 0.035505592823028564, -0.014866271987557411, -0.012853836640715599, -0.009418467991054058, 0.002647673711180687, -0.019717799499630928, 0.028160540387034416, 0.007880344055593014, 0.04255250096321106, 0.008442741818726063, -0.00729761878028512, 0.015733584761619568, -0.001653313753195107, 0.02116783708333969, 0.00037775508826598525, 0.016234999522566795, -0.0032693601679056883, 0.046753544360399246, 0.004702458158135414, 0.016885483637452126, -0.00910000130534172, -0.009079674258828163, 0.012216905131936073, -0.02616843394935131, 0.0038961288519203663, -0.036833662539720535, 0.02679181471467018, 0.022130010649561882, -0.011254730634391308, -0.0047498890198767185, -0.040790773928165436, -0.0010985388653352857, 0.022780494764447212, -0.008049740456044674, -0.036860767751932144, 0.011776472441852093, -0.003098269458860159, 0.029434405267238617, -0.005291959270834923, -0.013511097058653831, 0.016858380287885666, 0.013097768649458885, -0.03715890645980835, 0.012494715861976147, -0.010685556568205357, 0.027306780219078064, -0.005766270682215691, -0.047376926988363266, 0.012101714499294758, 0.015205065719783306, -0.001001135678961873, 0.010929488576948643, 0.007250187452882528, 0.012725095264613628, -0.0268460214138031, -0.010712659917771816, 0.01213559415191412, -0.02635815739631653, -0.016180792823433876, -0.01632986217737198, -0.008510500192642212, -0.0069994800724089146, -0.00958108901977539, 0.009188087657094002, 0.009574312716722488, 0.040411327034235, 0.009472674690186977, 0.012020404450595379, -0.002198771806433797, 0.003293075831606984, 0.00024287280393764377, -0.02919047512114048, -0.011837455444037914, -0.004380603786557913, -0.015394791029393673, -0.021601492539048195, -0.026602089405059814, 0.0271306075155735, -0.008585034869611263, -0.010746539570391178, 0.0013636450748890638, 0.013253613375127316, 0.020788388326764107, 0.012487939558923244, -0.00732472212985158, 0.023783326148986816, 0.013402682729065418, 0.01604527421295643, -0.006254133768379688, 0.001226433552801609, 0.02164214849472046, 0.005756106693297625, -0.00573577918112278, 0.026209088042378426, -0.015787791460752487, 0.021005215123295784, 0.003364222589880228, 0.016763517633080482, -0.008171706460416317, 0.009147432632744312, -0.022035149857401848, -0.0013483993243426085, -0.014053166843950748, 0.005048027727752924, -0.015841998159885406, -0.006169435102492571, -0.012244008481502533, -0.026317503303289413, -0.006633582524955273, -0.014703650958836079, -0.012481164187192917, -0.017427554354071617, -0.019257040694355965, -0.004190879408270121, 0.02845867909491062, 0.002856031758710742, -0.01929769478738308, -0.0005547748878598213, -0.03233448043465614, -0.024230532348155975, -0.011200523003935814, 0.0074602398090064526, 0.026737608015537262, -0.007527998182922602, -0.028214748948812485, -0.006586151663213968, 0.0022495908197015524, -0.026886677369475365, 0.020815491676330566, -0.005515563301742077, -0.01901310868561268, 0.0029661396984010935, 0.0034404511097818613, -0.0055596064776182175, -0.021601492539048195, 0.024433810263872147, 0.01282673329114914, -0.023945946246385574, 0.0039774393662810326, 0.007087566424161196, -0.01802382990717888, -0.02000238560140133, -0.001748176058754325, 0.01214914582669735, -0.006376099307090044, 0.004875242710113525, 0.008517276495695114, 0.014839168637990952, 0.0026747770607471466, -0.030193304643034935, 0.012650560587644577, -0.007778706029057503, 0.02153373509645462, -0.0037402836605906487, -0.02169635519385338, -0.018376175314188004, 0.020056594163179398, -0.021750561892986298, -0.015869101509451866, 0.009811468422412872, 0.03241579234600067, 0.010773642919957638, 0.027455849573016167, 0.008950931951403618, -0.0007292536902241409, 0.00442125927656889, -0.03434013947844505, 0.00011476640065666288, -0.021479526534676552, 0.00764318834990263, 0.021425319835543633, 0.030166201293468475, -0.04325719177722931, -9.777377272257581e-05, 0.0010536487679928541, 0.0022665306460112333, 0.004919285885989666, -0.011661282740533352, -0.0031778858974575996, -0.018714969977736473, 0.0008241159375756979, -0.0018074649851769209, 0.004793932195752859, 0.008524051867425442, -0.002068336121737957, -0.018376175314188004, 0.0009647153783589602, -0.006044081412255764, 0.03637290373444557, -0.009377812966704369, -0.0014288629172369838, 0.003655585227534175, 0.013849890790879726, 0.03062696009874344, 0.011688386090099812, 0.01265733689069748, -0.014120926149189472, 0.04117022454738617, -0.01898600533604622, 0.02786240354180336, -0.018633659929037094, -0.011952645145356655, 0.0029966311994940042, -0.0033032395876944065, -0.021357562392950058, 0.024989431723952293, -0.0020768060348927975, 0.032849445939064026, 0.02133045718073845, -0.003423511516302824, 0.01757662184536457, -0.019799109548330307, -0.0025934665463864803, -0.0029576700180768967, -0.023756220936775208, -0.0010951509466394782, -0.029759647324681282, -0.019677143543958664, 0.007555101998150349, 0.019907524809241295, 0.009716606698930264, 0.002291940152645111, 0.0076973955146968365, 0.038215942680835724, 0.015001789666712284, 0.0008626537164673209, -0.004397543612867594, -0.012948699295520782, -0.018416831269860268, -0.015354135073721409, 0.002713738474994898, -0.000197135639609769, -0.03209054842591286, -0.0003489576338324696, -0.00897125992923975, -0.009852124378085136, 0.0008215749985538423, -0.013511097058653831, 0.015760688111186028, 0.004194267559796572, 0.018145795911550522, -0.012494715861976147, -0.03127744421362877, 0.011031126603484154, 0.01989397220313549, 0.012244008481502533, -0.0313587561249733, 0.006277849432080984, 0.006098288577049971, -0.0412515327334404, 0.013558528386056423, 0.011864558793604374, 0.025639915838837624, -0.021357562392950058, -0.0076973955146968365, -0.00537665793672204, 0.020666422322392464, 0.0228889100253582, 0.004573716316372156, 0.0022258753888309, -0.009811468422412872, -0.02114073373377323, 0.02732033282518387, 0.02500298246741295, 0.000852913421113044, 0.05561638996005058, 0.008415638469159603, -0.014391960576176643, -0.03726731985807419, -0.031087718904018402, -0.016370516270399094, -0.009154208935797215, 0.017901863902807236, -0.010651676915585995, -0.004004542715847492, 0.010807522572577, 0.01599106751382351, 0.01209493912756443, -0.004773604683578014, 0.0011222545290365815, 0.00894415657967329, -0.008795087225735188, -0.048894722014665604, -0.017617277801036835, 0.00482442369684577, 0.015747135505080223, 0.016817724332213402, 0.013605959713459015, 0.008646017871797085, -0.021750561892986298, 0.01010283175855875, -0.0206257663667202, 0.002505380194634199, 0.029461508616805077, -0.015015341341495514, -0.0305185467004776, 0.0028763595037162304, -0.011871335096657276, 0.0006483666365966201, 0.030111992731690407, -0.014080270193517208, -0.016682207584381104, -0.014541029930114746, -0.027035746723413467, 0.003703016322106123, 0.013375579379498959, -0.016099480912089348, 0.019338350743055344, 0.03724021464586258, 0.0068876780569553375, -0.013795684091746807, 0.009730158373713493, 0.009330381639301777, 0.00546135613694787, -0.03854118287563324, -0.015435446053743362, -0.0013500932836905122, 0.022536564618349075, -0.0041976552456617355, -0.018376175314188004, 0.07220373302698135, 0.0418207086622715, -0.0024443974252790213, -0.013090992346405983, 0.003233786905184388, -0.00045948909246362746, -0.004621147643774748, 0.004570328630506992, 0.0017752795247361064, -0.004106180742383003, -0.034177519381046295, -0.02096456103026867, 0.04320298507809639, 0.013870218768715858, -0.004943001549690962, -0.023065082728862762, -0.009757261723279953, -0.042904846370220184, -0.00901191495358944, 0.03740283474326134, -0.021777665242552757, -0.0048616910353302956, -0.019568730145692825, -0.02082904241979122, -0.007582205347716808, -0.010800746269524097, -0.004356888588517904, -0.011539316736161709, 0.009343933314085007, 0.0069994800724089146, -0.030762476846575737, -0.012352421879768372, -0.0012162697967141867, -0.044802092015743256, 0.04314877837896347, -0.005183545406907797, -0.006633582524955273, -0.023444531485438347, 0.027171263471245766, 0.022048700600862503, 0.007934550754725933, 0.017928969115018845, -0.009703055024147034, -0.0053190626204013824, 0.009459123015403748, -0.019229937344789505, -0.02732033282518387, -0.008591811172664165, -0.011207299306988716, -0.023810429498553276, -0.023065082728862762, -0.01647893153131008, 0.025477293878793716, -0.002344453241676092, 0.032117653638124466, -0.025070741772651672, 0.019568730145692825, 0.010333211161196232, -0.006945272907614708, 0.03436724469065666, 0.011871335096657276, 0.021886080503463745, 0.0063523841090500355, 0.008009085431694984, -0.021655699238181114, -0.019067315384745598, -0.03599345311522484, -0.026751158758997917, -0.009919882752001286, 0.014107374474406242, 0.013179078698158264, 0.026520779356360435, -0.0010883751092478633, 0.008171706460416317, -0.012548922561109066, -0.004746501334011555, -0.005444416310638189, -0.0054037612862885, -0.03195503354072571, 0.05260790139436722, -0.008036188781261444, 0.004621147643774748, 0.01229143887758255, -0.012765750288963318, -0.00286788959056139, -0.004367052111774683, -0.01692613773047924, 0.028187645599246025, 0.008002310059964657, -0.013619511388242245, 0.02255011536180973, -0.02452867105603218, -0.011437678709626198, -0.033418621867895126, 0.00035255731199868023, 0.016113033518195152, -0.007304394617676735, -0.00174140022136271, -0.01647893153131008, -0.010197693482041359, -0.005698511842638254, 0.013904097490012646, -0.0030474502127617598, -0.023065082728862762, -0.005674796178936958, -0.014961134642362595, -0.017021000385284424, 0.00023588519252371043, -0.014188684523105621, 0.00817848276346922, -0.024081462994217873, -0.021967390552163124, 0.00964884739369154, -0.00882896687835455, 0.019338350743055344, -0.0004895570455119014, 0.015150859020650387, -0.02497587911784649, -0.005325838457792997, -0.017481761053204536, -0.007521222345530987, -0.018078038468956947, 0.007934550754725933, 0.02591095119714737, 0.007954878732562065, 0.03434013947844505, 0.016140136867761612, -0.0015423587756231427, 0.010550038889050484, 0.02031407691538334, -0.005613813176751137, -0.0025816087145358324, -0.028350265696644783, 0.0010917630279436707, -0.0268460214138031, -0.006762324366718531, -0.019595833495259285, 0.03236158564686775, -0.006643746513873339, -0.0072298599407076836, 0.01562516950070858, -0.0017278484301641583, 0.04046553373336792, -0.021113630384206772, -0.022102907299995422, -0.02859419770538807, 0.015340583398938179, -0.011376695707440376, -0.007582205347716808, -0.02101876772940159, -0.004736337345093489, 0.027360988780856133, -0.014324202202260494, 0.0027814970817416906, 0.009642072021961212, 0.028811024501919746, -0.02150663174688816, 0.01992107555270195, -0.010902384296059608, -0.009919882752001286, -0.007765153888612986, -0.0028949931729584932, -0.03507193550467491, -0.01622144691646099, 0.00836143083870411, 0.0015372768975794315, 0.03450275957584381, -0.01093626394867897, 0.02864840440452099, -0.008029413409531116, 0.01394475344568491, -0.012426956556737423, -0.02864840440452099, 0.0023088797461241484, -0.015760688111186028, -0.0031626401469111443, -0.003152476390823722, -0.013097768649458885, -0.009384588338434696, -0.001322142779827118, 0.018769176676869392, -0.0036047662142664194, 0.013585631735622883, -0.03360834717750549, -0.02031407691538334, 0.002198771806433797, -0.024623533710837364, 0.038080424070358276, 0.01632986217737198, -0.00223942706361413, 0.016763517633080482, -0.006816531531512737, -0.016234999522566795, -0.00548845948651433, 0.0072366357780992985, -0.01567937806248665, 0.03309337794780731, 0.025477293878793716, -0.012230456806719303, -0.005268243607133627, 0.017793450504541397, 0.004560164641588926, -0.017088759690523148, 0.0016321392031386495, 0.022062253206968307, 0.016234999522566795, -0.009310053661465645, -0.01562516950070858, 0.00035679223947227, 0.005830641370266676, 0.027591368183493614, -0.0339064858853817, 0.01856590062379837, 0.02265853062272072, 0.005742555018514395, -0.026547882705926895, 0.03569531440734863, 0.00382837001234293, 0.0269815381616354, -0.011085333302617073, 0.010007969103753567, -0.01281318161636591, -0.012359198182821274, -0.004190879408270121, 0.004516121465712786, 0.00021873375226277858, 0.022590771317481995, 0.0003220658691134304, -0.0053292266093194485, 0.03986925631761551, 0.011281833983957767, 0.03200924023985863, 0.027279676869511604, 0.015015341341495514, 0.03496352210640907, -0.014324202202260494, -0.004936225712299347, -0.01075331587344408, -0.013517873361706734, -0.003138924716040492, -0.02664274536073208, -0.01830841787159443, -0.002783191157504916, -0.009404916316270828, -0.0025087681133300066, 0.04176650196313858, -0.0378635972738266, -0.01524572167545557, -0.002007353352382779, 0.013619511388242245, -0.00205986644141376, -0.002696798648685217, 0.023471634835004807, 0.02919047512114048, -0.013151975348591805, -0.0057628825306892395, -0.004495793953537941, 0.03198213502764702, 0.016465378925204277, -0.004671966657042503, -0.007202756125479937, 0.03312048316001892, 0.00729761878028512, -0.006433694623410702, 0.0019107970874756575, -0.04060104861855507, -0.012894492596387863, -0.0466180294752121, -0.0031118211336433887, -0.004966717213392258, -0.026412365958094597, 0.006620030850172043, -0.006728445179760456, -0.02515205182135105, -0.030735373497009277, 0.015381238423287868, 0.004350112285465002, -0.004343336448073387, 0.01721072569489479, -0.013761804439127445, 0.01627565361559391, -0.008374982513487339, 0.001622822368517518, -0.03241579234600067, 0.02314639277756214, 0.00447885412722826, -0.007805809378623962, 0.02994937263429165, -0.012508267536759377, 0.02051735296845436, -0.01028577983379364, 0.012684440240263939, 0.015760688111186028, -0.035586901009082794, 0.004526285454630852, -0.011308937333524227, 0.01901310868561268, -0.015069548971951008, -0.0009130493272095919, -0.002246202901005745, 0.015191514045000076, -0.03396069258451462, 0.029461508616805077, 0.00817848276346922, 0.004129896406084299, 0.01160029973834753, 0.006891066208481789, 0.041522569954395294, -0.004065525718033314, 0.01350432075560093, -0.015150859020650387, -0.03897484019398689, -0.008700224570930004, -0.012847061268985271, -0.0007830371614545584, -0.004295905586332083, 0.021452423185110092, 0.025097845122218132, -0.008124275133013725, -0.02791661024093628, -0.0009884309256449342, -0.00671828119084239, -0.028350265696644783, -0.0023664748296141624, 0.0044178711250424385, 0.01082107424736023, -0.012623457238078117, -0.0074399118311703205, 0.025395983830094337, -0.01356530375778675, 0.00442125927656889, -0.026710504665970802, 0.000506920216139406, -0.007385705132037401, 0.005922115873545408, 0.0035268436186015606, 0.00016442086780443788, -0.017590174451470375, -0.01885048672556877, 0.002339371247217059, -0.01760372705757618, -0.003902904689311981, 0.04707878828048706, -0.010929488576948643, -0.012257560156285763, -0.00832077581435442, 0.004312844946980476, -0.018037382513284683, 0.005176769569516182, -0.016709310933947563, -0.03599345311522484, 0.020923905074596405, -0.0019971895962953568, 0.006918169558048248, -0.0011747675016522408, 0.023349668830633163, 0.009845348075032234, 0.0007711793878115714, 0.007602532859891653, -0.009459123015403748, -0.017820553854107857, 0.006816531531512737, 0.000453136715805158, 0.025328224524855614, -0.006721669342368841, -0.003875801106914878, 0.026724055409431458, 0.006318504456430674, -0.003845309605821967, -0.0009494696278125048, 0.02596515789628029, -0.015570963732898235, -0.027726884931325912, -0.005502011626958847, -0.02091035433113575, -0.003093187464401126, 0.0004196808149572462, 0.03206344693899155, -0.013240061700344086, -0.023742670193314552, -0.004580492153763771, 0.014798513613641262, -0.022848254069685936, -0.00897125992923975, -0.006653910502791405, -0.04466657713055611, -0.013531425036489964, -0.013328148052096367, -0.007541550323367119, 0.009459123015403748, -0.0010265451855957508, -0.01012993510812521, -0.028214748948812485, -0.02218421921133995, 0.026751158758997917, 0.009879227727651596, -0.022644978016614914, 0.010062175802886486, -0.0017447881400585175, -0.0255721565335989, 0.011810352094471455, 0.16945111751556396, -0.004350112285465002, 0.0046482509933412075, 0.020165007561445236, -0.007378929294645786, 0.0418207086622715, 0.01669575832784176, -0.0004484782984945923, 0.014039615169167519, 0.018010279163718224, -0.005437640473246574, 0.02166925184428692, -0.003530231537297368, -0.005149665754288435, 0.010888832621276379, -0.028865233063697815, -0.0409804992377758, -0.036128971725702286, -0.04374505579471588, -0.04201043024659157, 0.0029661396984010935, 0.014337753877043724, -0.010807522572577, -0.015394791029393673, 0.028025023639202118, -0.010773642919957638, 0.013694046065211296, 0.012183025479316711, 0.02099166437983513, 0.0384327694773674, -0.01916217803955078, -0.0028932990971952677, -0.0008740880293771625, -0.019772006198763847, -0.023092186078429222, -0.01624855026602745, -0.016289206221699715, 0.022373942658305168, 0.019202832132577896, 0.013355252332985401, 0.014202236197888851, -0.03696918115019798, 0.003591214306652546, -0.02231973595917225, 0.03236158564686775, 0.008015861734747887, -0.003930008038878441, 0.009669175371527672, 0.028350265696644783, -0.0003078788868151605, -0.020327627658843994, 0.008090396411716938, 0.029434405267238617, 0.026574986055493355, 0.006033917888998985, -0.007663515862077475, 0.008700224570930004, 0.008632466197013855, -0.0018701418302953243, 0.02916337177157402, -0.00828012079000473, 0.025111397728323936, -0.01347721740603447, 0.03518034890294075, 0.009404916316270828, -0.0015711563173681498, -0.0005458815139718354, -0.007453463971614838, -5.3333556024881545e-06, 0.016384068876504898, 0.01983976550400257, -0.009655623696744442, -0.022306183353066444, -0.004858303349465132, 9.98382965917699e-05, -0.03344572335481644, 0.04965361952781677, 0.017414001747965813, 0.024122118949890137, 0.02695443481206894, 0.013599183410406113, 0.007968430407345295, 0.01217624917626381, -0.0031609463039785624, -0.020869698375463486, -0.027171263471245766, 0.04778347909450531, 0.00028162234229967, -0.01263023354113102, -0.002193689811974764, -0.006498065311461687, 0.010495832189917564, -0.01084817759692669, -0.006515005137771368, -0.007433135993778706, 0.004150223918259144, -0.0041874912567436695, -0.001694816048257053, -0.014446168206632137, -0.031087718904018402, -0.021940287202596664, 0.06510261446237564, 0.021682804450392723, 0.01528637669980526, -0.012426956556737423, -0.0004603360721375793, -0.012318543158471584, 0.022414598613977432, -0.0037606111727654934, -0.002312267664819956, -7.97753527876921e-05, -0.015394791029393673, -0.0060102022252976894, -0.002125931205227971, -0.020436042919754982, -0.0038148183375597, -0.011810352094471455, 0.004627923481166363, -0.024542223662137985, 0.005241140257567167, -0.019514523446559906, -0.023037979379296303, 0.009154208935797215, -0.000820304499939084, -0.01658734492957592, -0.037457045167684555, -0.027252573519945145, 0.008205586113035679, -0.00761608500033617, -0.04786478728055954, 0.03328310325741768, -0.03125033900141716, 0.006542108487337828, -0.01132926531136036, -0.006243969779461622, 0.012921595945954323, -0.0034285932779312134, -0.005668020341545343, -0.004831199534237385, 0.004001155029982328, 0.022170666605234146, 0.010712659917771816, 0.008063293062150478, 0.010556815192103386, 0.02981385588645935, 0.009154208935797215, 0.006884290371090174, -0.002232651226222515, -0.020978111773729324, -0.023525841534137726, -0.0022089355625212193, 0.017061656340956688, -0.01292837131768465, -0.0006187221733853221, 0.01817289926111698, 0.0029949373565614223, 0.015381238423287868, -0.02517915517091751, -0.014839168637990952, -0.026696952059864998, -0.044883403927087784, -0.002025987021625042, 0.0014373327139765024, -0.008774759247899055, -0.024311844259500504, -0.013077440671622753, -0.17129415273666382, 0.028756817802786827, 0.02283470332622528, -0.022821150720119476, -0.015408342704176903, 0.005146278068423271, 0.02130335383117199, -0.025667019188404083, -0.012372749857604504, 0.016817724332213402, 0.019799109548330307, 0.0018870815401896834, -0.021235596388578415, -0.029353095218539238, -0.008978036232292652, -0.009337157011032104, 0.02664274536073208, 0.02463708631694317, 0.029461508616805077, 0.018606556579470634, 0.05184900388121605, -0.002801824826747179, 0.0017219195142388344, 0.002185220131650567, -0.006403203122317791, 0.006833470892161131, -0.004201043397188187, 0.011024350300431252, 0.002962751779705286, -0.00945234764367342, 0.01012993510812521, 0.004929449874907732, 0.024596430361270905, -0.0006932568503543735, -0.008625689893960953, 0.009838571771979332, 0.013707597739994526, 0.005203872919082642, -0.009160984307527542, 0.04716009646654129, 0.026913780719041824, 0.016126586124300957, 0.01162740308791399, 0.03740283474326134, 0.0017685036873444915, 0.02082904241979122, 0.009181312285363674, -0.004051974043250084, -0.003625093726441264, -0.0019107970874756575, 0.008964484557509422, -0.044883403927087784, 0.012284663505852222, -0.021750561892986298, -0.006145719438791275, 0.01033998653292656, 0.0015330419410020113, 0.011783248744904995, -0.008510500192642212, -0.014513926580548286, -0.013870218768715858, -0.04366374760866165, -0.014771410264074802, -0.014378408901393414, 0.00729761878028512, -0.009039019234478474, -0.01913507468998432, 0.026005811989307404, -0.0139854084700346, 0.021127181127667427, 0.0032083773985505104, 0.012379526160657406, -0.008476621471345425, 0.0015355829382315278, 0.014310650527477264, -0.007731274701654911, -0.0437992624938488, 0.01661444827914238, 0.005647692829370499, 0.027347436174750328, -0.009865676052868366, 0.026859572157263756, -0.017359795048832893, 0.0013890545815229416, -0.008469845168292522, 0.011356368660926819, -0.014432616531848907, 0.011376695707440376, -0.018972452729940414, 0.008578259497880936, 0.013030010275542736, -0.004489018116146326, -0.024542223662137985, -0.009675950743258, 0.010800746269524097, 0.006338831968605518, 0.006416754797101021, 0.028214748948812485, -0.008192034438252449, -0.019988834857940674, -0.0029407301917672157, 0.0054139248095452785, -0.026385262608528137, 0.03873090818524361, 0.02413567155599594, -0.0039943791925907135, -0.011010798625648022, -0.0033676105085760355, 0.01330782100558281, -0.007880344055593014, -0.018525244668126106, 0.027482952922582626, 0.008137826807796955, 0.00832077581435442, -0.004455138463526964, 0.01527282502502203, 0.0012433732626959682, -0.00761608500033617, 0.03206344693899155, 0.006816531531512737, 0.034909315407276154, -0.008097171783447266, 0.0017227665521204472, 0.001504244515672326, -0.009831796400249004, 0.0022377329878509045, -0.09914462268352509, -0.03406910598278046, 0.03539717569947243, 0.003423511516302824, 0.0038351458497345448, -0.0035471711307764053, -0.007487343158572912, 0.030437234789133072, -0.030843788757920265, 0.011681610718369484, -0.014012511819601059, -0.003506515873596072, -0.01024512480944395, 0.0036657489836215973, -0.0013941364595666528, -0.024704843759536743, -0.0176579337567091, -0.018078038468956947, -0.023525841534137726, 0.02624974399805069, -0.011939093470573425, -0.006596315652132034, 0.006752160377800465, 0.014798513613641262, -0.004509345628321171, -0.006640358828008175, -0.021072974428534508, 0.02215711586177349, 0.009675950743258, -0.004685518331825733, -0.03116903081536293, -0.009675950743258, -0.0005814548931084573, -0.02028697356581688, -0.010915936902165413, -0.0071078939363360405, -0.005285183433443308, -0.035559799522161484, 0.026493676006793976, -0.043609537184238434, 0.00842241384088993, 0.012420181185007095, 0.02418987825512886, -0.017712140455842018, 0.01397185679525137, -0.007961654104292393, -0.023471634835004807, 0.042823538184165955, 0.006985928397625685, -0.005034476052969694, -0.040167395025491714, 0.0064269183203577995, -0.010746539570391178, -0.02616843394935131, 0.02515205182135105, -0.010868505574762821, 0.01567937806248665, 0.011756145395338535, -0.015720032155513763, -0.01199330110102892, -0.018552348017692566, -0.016749965026974678, -0.01726493239402771, 0.025219811126589775, 0.007677067536860704, 0.016370516270399094, -0.01160029973834753, 0.0002939036348834634, 0.005705287680029869, -0.010468728840351105, -0.008442741818726063, 0.015394791029393673, 0.00548845948651433, 0.018687866628170013, -0.012989354319870472, 0.003038980532437563, -0.001391595578752458, -0.011634179390966892, 0.008483396843075752, -0.03463827818632126, 0.01969069615006447, 0.004526285454630852, -0.02093745768070221, -0.016438275575637817, 0.04580492153763771, 0.013714373111724854, -0.0016312921652570367, -0.004018094390630722, -0.0013848197413608432, -0.03225317224860191, -0.025531500577926636, 0.007765153888612986, 0.013131648302078247, -0.02582963928580284, -0.02932599186897278, -0.009513329714536667, 0.013646614737808704, -0.020246317610144615, -0.007358601316809654, -0.009804693050682545, -0.007988758385181427, -0.02679181471467018, -0.05664632469415665, 0.003808042500168085, -0.0014974686782807112, 0.006365935783833265, 0.005949219223111868, -0.006511616986244917, -0.005261467769742012, 0.004929449874907732, -0.016207896173000336, 0.01924348808825016, -0.003757223254069686, 0.0038724131882190704, -0.025016535073518753, 0.004987044725567102, -0.004963329061865807, 0.0011840843362733722, 0.03195503354072571, -0.005979710724204779, 0.014337753877043724, -0.03054565005004406, -0.002381720580160618, 0.025165604427456856, 0.030193304643034935, 0.0053393905982375145, -0.012284663505852222, 0.021344009786844254, -0.022143563255667686, 0.011952645145356655, -0.03366255387663841, -0.02231973595917225, 0.02783529832959175, -0.009587864391505718, -0.0027408418245613575, 0.02096456103026867, -0.011180195957422256, -0.024393154308199883, 0.02325480617582798, 0.019121522083878517, -0.004699070006608963, 0.004729561507701874, 0.012833509594202042, -0.045398369431495667, 0.012386301532387733, -0.001682958216406405, -0.015584515407681465, 0.02057155966758728, -0.05762204900383949, 0.030193304643034935, 0.029488613829016685, -0.007853240706026554, 0.017617277801036835, 0.015381238423287868, -0.03368965536355972, -0.006071185227483511, -0.020110800862312317, -0.02984095923602581, 0.005725615192204714, 0.01032643485814333, 0.016519585624337196, 0.03499062359333038, 0.0406823605298996, -0.005024312064051628, 0.023769773542881012, -0.044260021299123764, -0.010062175802886486, -0.0038520856760442257, -0.009784365072846413, 0.010346762835979462, 0.0015135613502934575, -0.02794371359050274, 0.0016448439564555883, -0.03526166081428528, 0.004282353911548853, 6.744114216417074e-05, 0.013165527023375034, -0.0033015457447618246, 0.011525765061378479, 0.006958824582397938, -0.008490173146128654, 0.023390324786305428, 0.055426668375730515, -0.00013721149298362434, -0.001042637974023819, 0.03062696009874344, 0.02664274536073208, 0.01833552122116089, -0.01924348808825016, -0.006853798869997263, 0.010461952537298203, -0.0010477198520675302, 0.01864721067249775, -0.007988758385181427, -0.0012899574358016253, 0.00902546662837267, 0.019026659429073334, -0.029542820528149605, -0.0020581723656505346, -0.009974089451134205, 0.0050988467410206795, 0.044070299714803696, 0.011166644282639027, 0.0005035322974435985, -0.01345011405646801, -0.004272189922630787, -0.017766347154974937, 0.005583322141319513, -0.036291591823101044, -0.022441701963543892, 0.012440508231520653, 0.038243044167757034, -0.013673718087375164, 0.01356530375778675, -0.014879823662340641, 0.013619511388242245, -0.025030085816979408, -0.004627923481166363, -0.0011247954098507762, 0.01033998653292656, -0.02517915517091751, 0.02198094129562378, 0.0021411769557744265, -0.010658453218638897, 0.028079230338335037, 0.012677663937211037, 0.03111482411623001, 0.02648012340068817, 0.007826137356460094, -0.03740283474326134, 0.017739243805408478, -0.009845348075032234, 0.008415638469159603, -0.010394194163382053, -0.02492167241871357, 0.015028893016278744, 0.005979710724204779, -9.78796451818198e-05, -0.022130010649561882, 0.028214748948812485, -0.007527998182922602, 0.07664871215820312, -0.006958824582397938, -0.030247511342167854, 0.011729042045772076, -0.02223842591047287, 0.014974686317145824, 0.022929564118385315, 0.019311247393488884, -0.00023884963593445718, -0.017061656340956688, 0.02919047512114048, -0.018213555216789246, -0.020137904211878777, -0.031629789620637894, -0.03593924641609192, 0.02551794983446598, -0.00732472212985158, 0.03577662631869316, 0.004353500436991453, 0.0044517507776618, 0.012020404450595379, 0.007751602213829756, -0.0019107970874756575, -0.004780380520969629, -0.01604527421295643, 0.002027680864557624, 0.014161581173539162, -0.006620030850172043, -0.013558528386056423, -0.029380198568105698, 0.026385262608528137, -0.012311766855418682, -0.04111601784825325, -0.032226067036390305, -0.014012511819601059, -0.020408939570188522, -0.01397185679525137, -0.01459523756057024, 0.010685556568205357, 0.0009384588338434696, 0.008042965084314346, 0.004912510048598051, -0.01656024158000946, 0.004790544509887695, -0.010380642488598824, -0.008849293924868107, 0.008259792812168598, -0.03528876230120659, -0.033554140478372574]" trips,"[0.010591326281428337, 0.006933069787919521, 0.013175250962376595, -0.01966269686818123, -0.012062919326126575, 0.021389920264482498, -0.01601480320096016, -0.03910430893301964, -0.0006714576156809926, -0.025410892441868782, 0.009478995576500893, 0.01213200856000185, -0.014301399700343609, -0.013990500010550022, -0.008373573422431946, -0.009140459820628166, 0.020685212686657906, -0.017451852560043335, 0.01683005318045616, -0.012677811086177826, 0.00532675301656127, -3.0550243536708876e-05, -0.032665226608514786, 0.01749330572783947, 0.011876380071043968, 0.006995250005275011, 0.015420639887452126, -0.018474368378520012, -0.00842884462326765, -0.001490592723712325, 0.020077230408787727, 0.01321670413017273, -0.020975386723876, -0.0168576892465353, -0.00920954905450344, -0.01273308228701353, 0.0007202516426332295, 0.0069296155124902725, 0.019261982291936874, 0.004580593202263117, 0.0036893466021865606, 0.026336682960391045, 0.003616803325712681, -0.009320090524852276, -0.003259268356487155, 0.028823884204030037, 0.0224815234541893, -0.03473789244890213, -0.01746567152440548, 0.016567515209317207, -0.0020243043545633554, 0.03095182217657566, -0.019400158897042274, 0.019704150035977364, 0.005050397478044033, -0.007123064249753952, 0.015296279452741146, 0.04225476458668709, 0.006691258866339922, -0.008781197480857372, 0.024609461426734924, -0.008083399385213852, -0.014964653179049492, -0.0023472949396818876, -0.0032229966018348932, -0.010902225971221924, -0.002571833785623312, -0.0037480720784515142, 0.005413114093244076, 0.026834122836589813, 0.01280217058956623, 0.010874590836465359, -0.0016374066472053528, -0.03214015066623688, 0.02292369306087494, -0.03714218735694885, -0.0013446424854919314, 0.00470149889588356, -0.012028375640511513, 0.029487136751413345, -0.004027882125228643, -0.01044623926281929, -0.02588069625198841, 0.04891493171453476, 0.0019863054621964693, 0.046538274735212326, 0.004539140034466982, 0.011068039573729038, -0.02418111078441143, -0.007744864095002413, 0.006162728648632765, 0.024982541799545288, 0.010142249055206776, 0.014287581667304039, 0.00557892769575119, 0.021721545606851578, -0.016705693677067757, 0.047367341816425323, 0.0035511688329279423, -0.007378693204373121, 0.001570908585563302, 0.025839243084192276, -0.025065448135137558, -0.019206710159778595, -0.022633519023656845, -0.011800382286310196, -0.006718894466757774, -0.013762506656348705, 0.002765282755717635, -0.026336682960391045, -0.013382517732679844, 0.02643340826034546, 0.004383689723908901, -0.022799333557486534, -0.033162664622068405, -0.0021503916941583157, -0.0028930972330272198, -0.02094775065779686, -0.010916044004261494, -0.03214015066623688, 0.021762998774647713, -0.001551909139379859, 0.003381900954991579, -0.017534758895635605, -0.019621243700385094, 0.013361791148781776, -0.0048984019085764885, -0.026336682960391045, 0.020187772810459137, -0.017755843698978424, 0.006048731971532106, 0.02078193798661232, 0.005357843358069658, -0.005616926588118076, -0.0009750169119797647, 0.018004564568400383, -0.0025303803849965334, 0.005793103016912937, -0.008795015513896942, -0.026253776624798775, -0.0197456032037735, 0.011302941478788853, -0.0066118063405156136, 0.018405279144644737, 0.0034734439104795456, 0.027455924078822136, -0.005924372002482414, -0.0017220404697582126, 0.020740484818816185, -0.003195361001417041, 0.032886311411857605, 0.0020813026931136847, 0.0021659366320818663, 0.020381221547722816, -0.016249706968665123, 0.006287088617682457, 0.02470618672668934, 0.011931650340557098, -0.0010458329925313592, -0.004912219941616058, -0.019842328503727913, 0.02119646966457367, 0.005202393047511578, -0.02579778991639614, -0.012553450651466846, 0.04300092160701752, 0.027262475341558456, -0.014605390839278698, -0.003034729277715087, -0.02042267471551895, -0.021762998774647713, 0.014494848437607288, -0.010135339573025703, 0.027096660807728767, 0.00011194558464922011, 0.03410227596759796, 0.006342359818518162, -0.03393645957112312, -0.036396026611328125, -0.00039726108661852777, 6.908888462930918e-05, 0.0002690148539841175, -0.004055517725646496, 0.04239293932914734, -0.011959286406636238, -0.05223120003938675, 0.0045529576018452644, -0.007351057603955269, 0.004919128958135843, 0.014087224379181862, 0.00037826166953891516, 0.0137763237580657, -0.011717475019395351, 0.026557767763733864, -0.6225737929344177, -0.010860772803425789, 0.019096167758107185, -0.021431373432278633, 0.02245388738811016, 0.029127875342965126, 0.011040404438972473, 0.02105829305946827, -0.023863300681114197, 0.009064462035894394, -0.016374066472053528, 0.017645301297307014, 0.011517117731273174, 0.0020122139248996973, -0.0009750169119797647, -0.015835173428058624, 0.011703657917678356, -0.009520448744297028, 0.007364875171333551, 0.014536301605403423, -0.0030433654319494963, 0.02610178105533123, -0.0015372277703136206, 0.02637813799083233, 0.00489494763314724, 0.021569550037384033, -0.016774781048297882, -0.025673430413007736, -0.0013385971542447805, -0.010936770588159561, -0.032886311411857605, 0.005817284341901541, 0.015047559514641762, -0.008269939571619034, 0.04300092160701752, 0.0029656405095010996, -0.009651717729866505, 0.022191351279616356, 0.023918572813272476, 0.047339703887701035, -0.014301399700343609, -0.02114119939506054, -0.004124606493860483, 0.01571081206202507, -0.01582135446369648, 0.018819812685251236, 0.015158101916313171, 0.035926222801208496, 0.005236937664449215, -0.019952870905399323, 0.025093084201216698, 0.0036997098941355944, 0.002919005462899804, -0.02320004813373089, 0.018087470903992653, -0.016194434836506844, 0.028409350663423538, 0.016000986099243164, 0.012705446220934391, -0.013223612681031227, -0.009396088309586048, 0.01553118135780096, 0.009769168682396412, 0.012885077856481075, -0.023973843082785606, 0.03816470131278038, -0.0023991116322577, 0.014563937671482563, -0.0009257911005988717, -0.0425034835934639, 0.02203935571014881, 0.0323612354695797, -0.0034578987397253513, -0.013527603819966316, 0.015075195580720901, 0.010784775018692017, 0.02599123865365982, 0.003108999924734235, -0.003575349925085902, -0.01595953293144703, 0.010764048434793949, -0.021459007635712624, -0.0021866632159799337, -0.04242057725787163, 0.008884831331670284, -0.014142495580017567, -0.03421281650662422, 0.009126641787588596, 0.02612941712141037, 0.008200851269066334, 0.008076490834355354, -0.0007215470541268587, -0.010618962347507477, -0.011192400008440018, -0.011945468373596668, 0.010211337357759476, -0.010591326281428337, -0.022218985483050346, -0.0006667077541351318, -0.004732588771730661, -0.011634568683803082, -0.009285546839237213, 0.013928319327533245, 0.017590031027793884, 0.021528096869587898, -0.0019189438316971064, 0.007945221848785877, 0.0010415149154141545, -0.03147689625620842, 0.012505088932812214, -0.003972610924392939, -0.013942137360572815, -0.005727468524128199, -0.019704150035977364, -0.036755286157131195, -0.03200197219848633, 0.004587502218782902, -0.012670901603996754, 0.009955708868801594, 0.019966688007116318, 0.0128159886226058, 0.02829880826175213, 0.014633025974035263, 0.0006282770773395896, 0.0033300842624157667, 0.013859231024980545, 0.006276725325733423, -0.006017642095685005, -0.0012807352468371391, 0.01705113798379898, -0.00880192406475544, 0.0015285916160792112, 0.02793954685330391, -0.016028622165322304, 0.015641724690794945, -0.007261242251843214, 0.006812164094299078, 0.0023714760318398476, 0.005727468524128199, -0.0041073341853916645, -0.00021762998949270695, -0.01710640825331211, 0.00795213133096695, -0.032969217747449875, -0.01969033293426037, -0.008069582283496857, -0.005440749693661928, 0.011150945909321308, -0.0052507552318274975, -0.02766318991780281, 0.009893528185784817, -0.03559459373354912, -0.009914255701005459, 0.008290666155517101, -0.014978470280766487, -0.016498425975441933, 0.0047774966806173325, -0.03103472851216793, -0.018142741173505783, -0.011275306344032288, 0.003530442016199231, 0.011986921541392803, -0.013541421853005886, -0.018460551276803017, 0.01387304812669754, -0.0071092466823756695, -0.020851025357842445, 0.021942630410194397, -0.01546209305524826, -0.025231260806322098, -0.014840292744338512, -0.010073159821331501, -0.013175250962376595, -0.009934982284903526, 0.0168576892465353, 0.013859231024980545, -0.029210781678557396, 0.0007163654081523418, -0.005917462985962629, -0.017479488626122475, -0.028008634224534035, 0.020035777240991592, -0.002264388371258974, -0.005409659817814827, 0.004283511079847813, -0.007620504125952721, 0.010004070587456226, 0.02042267471551895, -0.02201171964406967, 0.020975386723876, 0.00773104652762413, 0.008767379447817802, -0.018115106970071793, -0.011033494956791401, -0.010156066156923771, 0.013783233240246773, -0.005385478958487511, -0.012318548746407032, 0.005838010925799608, 0.02297896333038807, 0.0018135833088308573, 0.015033741481602192, 0.01273308228701353, 0.008546295575797558, -0.01547591108828783, -0.029846400022506714, -0.0114480284973979, -0.027013754472136497, 0.02390475571155548, 0.020201589912176132, 0.022191351279616356, -0.04546048864722252, 0.008442661724984646, 0.013465424068272114, -0.01311997976154089, 0.009852075017988682, 0.0035788044333457947, 0.005900191143155098, -0.029652949422597885, -0.011786564253270626, 0.008401208557188511, 0.005368206650018692, 0.007793226279318333, -0.0023576582316309214, -0.008200851269066334, -3.400468631298281e-05, 0.002171118278056383, 0.010729503817856312, -0.002240207279101014, -0.003765344386920333, 0.012277095578610897, 0.020215408876538277, 0.026751216500997543, 0.030454382300376892, 0.022688791155815125, 0.013569056987762451, 0.028962060809135437, -0.019773239269852638, 0.01710640825331211, -0.013645054772496223, 0.01047387532889843, 0.007696501910686493, 0.027179569005966187, -0.03410227596759796, 0.027842821553349495, -0.007171426434069872, 0.025272713974118233, 0.00034285360015928745, 0.008145580068230629, 0.02824353612959385, -0.0036824375856667757, 0.007440872956067324, -0.005672197788953781, -0.0191928930580616, -0.014605390839278698, -0.01735512912273407, -0.028409350663423538, 0.021873541176319122, 0.020740484818816185, 0.020298315212130547, 0.0008614520775154233, 0.0069296155124902725, 0.036009129136800766, 0.014218493364751339, 0.020229225978255272, -0.011606932617723942, -0.019717969000339508, -0.009299363940954208, -0.008656837977468967, -0.020243043079972267, 0.014674480073153973, -0.036340754479169846, -0.017424216493964195, -0.0073234220035374165, 0.010909135453402996, -0.011081857606768608, 0.0057412865571677685, 0.0025372894015163183, 0.004221330862492323, 0.03377064689993858, -0.0033179938327521086, -0.021845906972885132, 0.007772499695420265, 0.010777866467833519, -0.003758435370400548, -0.043056193739175797, 0.014356670901179314, 0.003976065665483475, -0.03150453418493271, 0.016678057610988617, 0.007420146372169256, 0.02036740444600582, -0.040043920278549194, -0.01949688419699669, -0.007171426434069872, 0.029044969007372856, 0.029984576627612114, -0.008124853484332561, 0.0059623708948493, -0.006418357603251934, -0.021320831030607224, 0.023462586104869843, -0.0002177379501517862, -0.007613595575094223, 0.03716982156038284, -0.01299561932682991, 0.001019924646243453, -0.036396026611328125, -0.027234839275479317, -0.000349330686731264, 0.0025200170930474997, 0.0035408055409789085, -0.01674714684486389, 0.0019241254776716232, 0.021693911403417587, 0.016456972807645798, 0.00011982603609794751, -0.01674714684486389, 0.0015916352858766913, -0.0024716549087315798, -0.015130465850234032, -0.03924248740077019, -0.012277095578610897, 0.01916525699198246, 0.03167034685611725, 0.023365860804915428, 0.0025701066479086876, 0.01952452026307583, -0.026999937370419502, 0.0264610443264246, -0.02807772345840931, -0.0007591141620650887, 0.026253776624798775, -0.029929306358098984, -0.02476145699620247, 0.0025804699398577213, 0.007530688773840666, 0.006135093048214912, 0.03186379373073578, -0.0025321077555418015, -0.0024077477864921093, -0.027248656377196312, -0.0059209177270531654, -0.020547034218907356, 0.010812411084771156, -0.04402343928813934, 0.009492812678217888, 0.022066989913582802, 0.009064462035894394, -0.0074546909891068935, 0.015241008251905441, 0.0028395531699061394, 0.005171303171664476, -0.03465498611330986, -0.023711305111646652, 0.011309850960969925, 0.03227832913398743, -0.0019327616319060326, -0.02454037219285965, 0.06455665826797485, 0.05314317345619202, 0.005679106339812279, -0.008041946217417717, -0.010591326281428337, 0.003938066773116589, 0.004836222156882286, -0.0002374930481892079, -0.012885077856481075, 0.001155511592514813, -0.02546616457402706, 0.017147861421108246, 0.017009684816002846, 0.040071554481983185, 0.006642896682024002, -0.016263524070382118, -0.0006930478848516941, -0.033466655761003494, -0.023407315835356712, 0.020851025357842445, -0.021072110161185265, 0.0038067977875471115, -0.008725926280021667, -0.03542878106236458, -0.0031884522177278996, -0.004808586556464434, -0.010743321850895882, -0.014439577236771584, -0.007192153017967939, -0.00242329272441566, -0.04225476458668709, -0.027953363955020905, -0.006204182282090187, -0.04794768616557121, 0.030316203832626343, -0.013617419637739658, -0.025051631033420563, -0.030178025364875793, 0.012014557607471943, 0.027677008882164955, 0.015835173428058624, 0.009492812678217888, -0.010515328496694565, 0.016719510778784752, -0.0016866324003785849, -0.0063527231104671955, -0.021666275337338448, 0.004953673109412193, -0.006984886713325977, -0.012684719637036324, -0.008138670586049557, 0.0045045954175293446, 0.011565479449927807, -0.00027462831349112093, 0.030178025364875793, -0.012097463943064213, -0.00010287766781402752, 0.018018381670117378, -0.010017888620495796, 0.002349022077396512, 0.016539879143238068, 0.015890443697571754, 0.019648879766464233, -0.0034596261102706194, -0.015351550653576851, 0.0071023376658558846, -0.029459500685334206, 0.005008944310247898, -0.0041073341853916645, 0.020685212686657906, 0.020021960139274597, 0.0027549194637686014, -0.00699870428070426, 0.012601813301444054, -0.010128431022167206, 0.009043735451996326, -0.023048052564263344, -0.0021659366320818663, -0.021901177242398262, 0.03733563423156738, 0.00018848311447072774, -0.013969773426651955, 0.0008282030466943979, -0.018225647509098053, -0.021431373432278633, -0.003841342171654105, -0.015241008251905441, 0.03559459373354912, -0.011696748435497284, 0.0037135276943445206, 0.019427794963121414, -0.02412583865225315, 0.01106113102287054, -0.021873541176319122, -0.004615137819200754, 0.024333106353878975, 0.007261242251843214, -0.018902719020843506, 0.010031706653535366, -0.00046332733472809196, -0.015227191150188446, -0.01705113798379898, -0.0023231138475239277, -0.025162173435091972, -0.006048731971532106, -0.012263277545571327, -0.02409820444881916, -0.014163222163915634, -0.004428597632795572, 0.0035097154323011637, -0.02045031078159809, -0.043691813945770264, -0.007178335450589657, 0.015171919949352741, 0.03515242412686348, 0.020325951278209686, 0.02484436333179474, -0.04043081775307655, -0.012505088932812214, -0.013631237670779228, -0.013479242101311684, -0.029625315219163895, 0.015752267092466354, 0.02228807471692562, 0.010384059511125088, 0.04410634562373161, -0.003368083154782653, 0.0010276972316205502, 0.015171919949352741, 0.011385848745703697, 0.011682930402457714, -0.01114403735846281, -0.012864350341260433, -0.019980506971478462, -0.02574251964688301, 0.0006179137271828949, -0.01930343545973301, 0.017203133553266525, 0.005841465201228857, -0.025314169004559517, 0.018736906349658966, -0.014633025974035263, 0.026806488633155823, -0.004362963140010834, -0.043332550674676895, -0.03429572284221649, 0.01568317785859108, -0.004314600955694914, 0.009838257916271687, -0.028492256999015808, 0.00465313671156764, 0.025618160143494606, -0.007751773111522198, -0.0007306149927899241, 0.01584899052977562, 0.02662685699760914, -0.028492256999015808, 0.021873541176319122, -0.021942630410194397, -0.00802121963351965, -0.009976435452699661, -0.01104731298983097, -0.030150391161441803, -0.017230767756700516, 0.020712848752737045, -0.0032989943865686655, 0.0043387822806835175, 0.00018697179621085525, 0.026281412690877914, -0.014342852868139744, 0.016526062041521072, -0.010764048434793949, -0.011040404438972473, -0.006338905543088913, 0.01618061773478985, 0.002912096679210663, -0.007475417573004961, 0.0037515265867114067, 0.00690197991207242, 0.013071617111563683, 0.008573930710554123, 0.00792449526488781, 0.0312558114528656, -0.04418925195932388, -0.011613842099905014, -0.02281315065920353, -0.014439577236771584, 0.046952806413173676, 0.015227191150188446, 0.009396088309586048, 0.012684719637036324, 0.0018377644009888172, -0.010591326281428337, 0.0010251064086332917, 0.00222466210834682, -0.0074961441569030285, 0.01310616172850132, 0.03379828482866287, -0.009624081663787365, -0.030178025364875793, 0.0045115044340491295, 0.01771439053118229, -0.02640577219426632, -0.023020416498184204, 0.016664238646626472, 0.021555732935667038, -0.012076737359166145, -0.015199555084109306, 0.0003011843655258417, -0.007620504125952721, 0.024443648755550385, -0.030095119029283524, 0.02256442978978157, 0.02816062979400158, 0.0008558385889045894, -0.023490222170948982, 0.02144519053399563, 0.0018723087850958109, 0.0320848785340786, -0.005952007602900267, 0.01299561932682991, -0.0008981555583886802, -0.0009257911005988717, 0.008069582283496857, 0.013921410776674747, 0.007116155233234167, 0.013831594958901405, -0.0012997346930205822, 0.00527839083224535, 0.02752501331269741, 0.01705113798379898, 0.010577508248388767, 0.01582135446369648, 0.008843377232551575, 0.03095182217657566, -0.01114403735846281, -0.0223433468490839, -0.019179075956344604, -0.015310097485780716, 0.019040897488594055, -0.018847448751330376, -0.014204675331711769, -0.020685212686657906, -0.02487199939787388, 0.003965701907873154, 0.04394053295254707, -0.019040897488594055, -0.027082843706011772, -0.01969033293426037, 0.011323668994009495, -0.01068114209920168, -0.00615581963211298, 0.02237098105251789, 0.032775767147541046, -0.0035442598164081573, -0.009665535762906075, 0.0016166799468919635, 0.02588069625198841, 0.02201171964406967, -0.0021244832314550877, -0.0030640922486782074, 0.013126888312399387, 0.012885077856481075, -0.025424709543585777, 0.008028129115700722, -0.029542408883571625, -0.005385478958487511, -0.056984513998031616, -0.014563937671482563, -0.00951354019343853, -0.02122410573065281, 0.013990500010550022, 0.0002480722905602306, -0.039933376014232635, -0.030012212693691254, 0.027027573436498642, 0.021887360140681267, 0.006183455232530832, 0.006660168524831533, 0.016526062041521072, 0.0033421749249100685, -0.0024889272172003984, -0.017672937363386154, -0.02045031078159809, 0.011344395577907562, -0.01221491489559412, 0.013506877236068249, 0.02451273798942566, -0.02267497219145298, 0.009409906342625618, -0.0020795755553990602, 0.01537918671965599, 0.02785663865506649, -0.029901670292019844, 0.004815495572984219, -0.0020864843390882015, 0.014577754773199558, -0.00881574209779501, -0.009921164251863956, -0.01126839779317379, 0.01143421046435833, -0.0228960569947958, 0.02434692345559597, 0.017894022166728973, -0.010245881974697113, 0.020035777240991592, 0.0017151315696537495, 0.030454382300376892, 0.010708777233958244, 0.022909874096512794, -0.01417703926563263, -0.03244414180517197, -0.01716168038547039, -0.01612534560263157, -0.009354635141789913, 0.001620134455151856, 0.04399580508470535, 0.019731786102056503, 0.004038245417177677, 0.0010061069624498487, -0.007800135295838118, 0.0019534882158041, -0.02763555571436882, -0.00334908370859921, 0.0020070322789251804, 0.026585403829813004, -0.0028274627402424812, -0.01927579939365387, 0.026226142421364784, -0.010225155390799046, 0.006207636557519436, -0.02749737724661827, 0.0025511072017252445, 0.012622539885342121, -0.0012280549854040146, -0.002283387817442417, 0.018446732312440872, -0.021790634840726852, -0.01916525699198246, -0.002887915587052703, -0.028989696875214577, 0.009451359510421753, 0.02242625318467617, -0.005064215511083603, -0.02212226204574108, 0.003647893201559782, 0.0005980506539344788, -0.01133748609572649, 0.008774288929998875, -0.00048621304449625313, -0.03495897725224495, 0.015033741481602192, 0.010563691146671772, -0.0013161433162167668, 0.016374066472053528, 0.01202146615833044, 0.00010222996206721291, 0.00015447843179572374, -0.0070505207404494286, -0.025231260806322098, -0.014121768064796925, 0.00947208609431982, -0.008104126900434494, 0.03932539373636246, 0.008629201911389828, 0.01899944432079792, 0.017921658232808113, 0.011330577544867992, 0.0002459132520016283, -0.020933933556079865, 0.03819233551621437, -0.005026216618716717, -0.012587995268404484, -0.015517364256083965, -0.021611003205180168, -0.0038102520629763603, -0.0114480284973979, 0.02552143484354019, -0.021652456372976303, -0.02114119939506054, -0.005948553327471018, 0.010840046219527721, -0.033079758286476135, 0.005060760769993067, 0.017976928502321243, -0.024720003828406334, -0.01696822978556156, -0.008967737667262554, -0.021210288628935814, 0.007009067572653294, -0.0010769229847937822, -0.010342606343328953, -0.03683819621801376, 0.01872308924794197, 0.030426746234297752, -0.006079821847379208, -0.029017332941293716, 0.010093886405229568, 0.011821108870208263, -0.020243043079972267, 0.0065772621892392635, 0.16570279002189636, -0.004970945417881012, 0.0023472949396818876, 0.012746899388730526, -0.025452345609664917, 0.027842821553349495, 0.021127382293343544, -0.01776966266334057, 0.00212793773971498, 0.0003754549252334982, -0.011800382286310196, 0.010833137668669224, -0.017617667093873024, -0.007655048742890358, 0.009078280068933964, -0.02503781206905842, -0.04554339498281479, -0.04266929626464844, -0.026143234223127365, -0.047035712748765945, 0.007883042097091675, 0.010646597482264042, 0.013499968685209751, -0.026986118406057358, 0.036893464624881744, -0.010024797171354294, 0.01774202659726143, -0.004742952063679695, 0.019800875335931778, 0.03429572284221649, 0.004656590986996889, -0.009244092740118504, -0.016374066472053528, -0.005257664248347282, -0.012401455081999302, -0.008449571207165718, 0.014384306035935879, 0.02579778991639614, 0.032720498740673065, 0.006974522955715656, 0.01242218166589737, -0.03830287978053093, 0.03377064689993858, -0.03230596333742142, 0.015047559514641762, -0.002837826032191515, 0.005692924372851849, -0.01211819052696228, 0.013423970900475979, -0.002585651585832238, -0.016304977238178253, -0.014232310466468334, 0.025272713974118233, -0.0012729627778753638, 0.010052433237433434, -0.03805416077375412, 0.012546542100608349, 0.012408364564180374, -0.0067499843426048756, -0.009085188619792461, -0.007696501910686493, 0.013085435144603252, -0.007475417573004961, 0.019400158897042274, 0.0018308555008843541, -0.006556535605341196, 0.010321879759430885, -0.006097094155848026, 0.012691628187894821, 0.012270186096429825, 0.008580840192735195, -0.014633025974035263, -0.014329034835100174, -0.00937536172568798, 0.004114243201911449, -0.020574670284986496, 0.03382591903209686, 0.00033594470005482435, 0.013251248747110367, 0.020201589912176132, 0.004435506649315357, -0.004114243201911449, 0.00969317089766264, -0.014066497795283794, -0.011634568683803082, -0.040237367153167725, 0.0479753240942955, -0.007129973266273737, -0.013417061418294907, -0.008373573422431946, 0.0014759113546460867, 0.01557263545691967, -0.005492566619068384, -0.02418111078441143, -0.00616963766515255, 0.002286842092871666, -0.006653259973973036, 0.021680092439055443, 0.002799827139824629, -0.012346183881163597, -0.030509652569890022, 0.054193321615457535, 0.010128431022167206, -0.0015674540773034096, 0.0032730859238654375, 0.0013990500010550022, -0.010328788310289383, 0.018391462042927742, -0.008159397169947624, -0.0223433468490839, 0.003368083154782653, -0.014315217733383179, -0.000500894442666322, 0.0027808276936411858, -0.039961013942956924, 0.006110912188887596, -0.02033976837992668, -0.01749330572783947, -0.010874590836465359, -0.01225636899471283, -0.005212756339460611, -0.0009301091195084155, 0.009251002222299576, -0.01553118135780096, -0.013368699699640274, -0.013479242101311684, -0.017037319019436836, 0.0020191227085888386, 0.0011278761085122824, -0.04402343928813934, 0.029404230415821075, 0.006145456340163946, 0.014619208872318268, 0.00802121963351965, -0.012822897173464298, -0.006366541143506765, -0.005527110770344734, -0.007544506341218948, -0.002490654354915023, 0.0002644808846525848, 0.020243043079972267, -0.006076367571949959, -0.010985133238136768, 0.004096970893442631, -0.0025027450174093246, -0.006066004280000925, -0.010052433237433434, 0.0123392753303051, -0.02407056838274002, -0.027400651946663857, 0.015089012682437897, 0.002368021523579955, -0.013486150652170181, -0.002292023738846183, 0.03559459373354912, 0.002330022631213069, -0.02297896333038807, -0.03089655004441738, -0.012014557607471943, -0.03186379373073578, -0.04598556458950043, 0.006014187820255756, 0.01771439053118229, 0.003445808310061693, -0.02214989811182022, 0.0018878538394346833, -0.17565158009529114, 0.02404293231666088, 0.010757139883935452, -0.026530133560299873, -0.02114119939506054, 0.00468768086284399, 0.0375567190349102, -0.04134279116988182, -0.006331996526569128, -0.0006239590002223849, 0.02300659939646721, -8.889796299627051e-05, -0.03379828482866287, -0.01743803545832634, -0.023158594965934753, 0.004666954278945923, 0.029017332941293716, -0.0005328480619937181, 0.02596360445022583, 0.00534057104960084, 0.02579778991639614, -0.026502497494220734, 0.004794768989086151, -0.016387883573770523, 0.003159089246764779, 0.011302941478788853, 0.017894022166728973, 0.006380358710885048, -0.010867682285606861, -0.011261488310992718, 0.0035408055409789085, -0.0038447966799139977, 0.026986118406057358, 0.0044251433573663235, 0.009548083879053593, -0.0019759421702474356, -0.002195299370214343, 0.002894824370741844, -0.03073073737323284, 0.02746974118053913, 0.00610745744779706, 0.0032316327560693026, 0.018543457612395287, 0.00862229336053133, -0.010114612989127636, 0.01969033293426037, -0.0029414594173431396, 0.011572388932108879, -0.017396582290530205, 0.00017488125013187528, -0.0038240698631852865, -0.05242464691400528, -0.00020543148275464773, -0.012125100009143353, -0.020270679146051407, 0.018280919641256332, 0.007199062034487724, 0.013955955393612385, 0.0045529576018452644, -0.012663993053138256, -0.032720498740673065, -0.046538274735212326, -0.005903645418584347, -0.012201097793877125, 0.015918079763650894, -0.020298315212130547, -0.0024146565701812506, 0.017203133553266525, -0.009458268992602825, 0.029155509546399117, 0.00222466210834682, -0.00873283576220274, -0.025327986106276512, 0.025106901302933693, 8.134137169690803e-05, 0.02080957219004631, -0.009630991145968437, 0.03133871778845787, -0.002435383154079318, 0.01546209305524826, -0.025673430413007736, 0.040320273488759995, -0.03211251646280289, 0.014246128499507904, -0.0027307383716106415, -0.0026236504781991243, -0.02560434117913246, 0.004698044154793024, -0.0008364073582924902, -0.026391955092549324, -0.007178335450589657, -0.015890443697571754, 0.004293874371796846, -0.0063527231104671955, 0.013223612681031227, 0.017120225355029106, 0.0011883288389071822, 0.046648815274238586, -0.009444450959563255, -0.02476145699620247, -0.008491024374961853, 0.013258157297968864, -0.015116648748517036, 0.023421132937073708, 0.01966269686818123, 0.007710319943726063, -0.005945098586380482, -0.009016099385917187, 0.01713404431939125, -0.013769415207207203, -0.004110788926482201, 0.009990253485739231, -0.004615137819200754, 0.0006187773542478681, -0.018032198771834373, 0.023946208879351616, -0.0046393186785280704, 0.0028913698624819517, 0.015061377547681332, 0.019317252561450005, 0.03429572284221649, -0.024830546230077744, 0.023213865235447884, -0.013575966469943523, -0.006045277696102858, -0.0025701066479086876, -0.10490456968545914, -0.027898091822862625, 0.014937017112970352, -8.296064333990216e-05, 0.0004900993080809712, 0.004832767881453037, -0.001206464716233313, 0.024139657616615295, -0.02390475571155548, 0.004041699692606926, -0.010874590836465359, 0.008463388308882713, 0.005793103016912937, 0.009361544623970985, 0.019427794963121414, -0.014114859513938427, -0.01225636899471283, -0.01735512912273407, -0.02629522979259491, 0.040043920278549194, -0.01427376363426447, -0.007592868525534868, 0.016636604443192482, 0.020063413307070732, -0.004470050800591707, 0.007019430864602327, -0.008781197480857372, 0.02239861711859703, 0.003357719862833619, 0.007378693204373121, -0.022578248754143715, -0.007406328804790974, 0.007703410927206278, -0.0006852754158899188, -0.005198938772082329, -0.0005358706694096327, -0.006421811878681183, 0.0006053913966752589, 0.04289038106799126, -0.04474196210503578, 0.007392510771751404, -0.004763678647577763, 0.009444450959563255, -0.01913762092590332, 0.015006106346845627, -0.0007807044312357903, -0.021016839891672134, 0.050904691219329834, 0.005140213295817375, -0.018529638648033142, -0.016222070902585983, 0.014923200011253357, -0.008359755389392376, -0.014715933240950108, 0.026060327887535095, 0.010232063941657543, 0.010494601912796497, 0.020298315212130547, -0.012042192742228508, -0.0010708777699619532, -0.03103472851216793, -0.02456800825893879, -0.011876380071043968, 0.027082843706011772, 0.030233297497034073, 0.024968724697828293, -0.023517856374382973, 0.0034147182013839483, 0.00044260069262236357, 0.002590833231806755, -0.002851643832400441, 0.011765837669372559, -0.005333662033081055, 0.022440070286393166, -0.025023994967341423, -0.0066187153570353985, 0.0033128121867775917, -0.016222070902585983, 0.004490777850151062, -0.043636541813611984, 0.021721545606851578, 0.009175004437565804, -0.025977421551942825, -4.1291405068477616e-05, 0.03904904052615166, 0.02114119939506054, 0.011282214894890785, 0.011261488310992718, 0.008663746528327465, -0.023614581674337387, 0.019510701298713684, 0.002967367647215724, -0.0014940472319722176, -0.029017332941293716, -0.024720003828406334, -0.009603355079889297, 0.007060884032398462, -0.013347973115742207, -0.01214582659304142, -0.010998951271176338, -0.03424045071005821, -0.04275220260024071, -0.06289852410554886, 0.013838504441082478, 0.008359755389392376, -0.016760963946580887, 0.009831348434090614, -0.004915674217045307, 0.012208006344735622, -0.0021918448619544506, -0.00930627342313528, 0.017963111400604248, -0.0066187153570353985, 0.01537918671965599, -0.018128924071788788, 0.006014187820255756, -0.0174103993922472, 0.009333908557891846, 0.04264166206121445, -0.003115908708423376, 0.020104866474866867, -0.008297575637698174, -0.010093886405229568, -0.002998457755893469, 0.01807365193963051, -0.010770957916975021, -0.007737955544143915, 0.014605390839278698, -0.01930343545973301, 0.03529060259461403, -0.010397877544164658, -0.024968724697828293, 0.029155509546399117, 0.004248966462910175, 0.014785021543502808, 0.02588069625198841, -0.017963111400604248, -0.006287088617682457, 0.029570043087005615, 0.018654000014066696, 0.01607007533311844, 0.021887360140681267, -0.01251890603452921, -0.03393645957112312, 0.029127875342965126, -0.004753315355628729, -0.030454382300376892, 0.016622785478830338, -0.0389384962618351, 0.023863300681114197, 0.020975386723876, 0.0018878538394346833, -0.014950835146009922, 0.014674480073153973, -0.027953363955020905, -0.005682561080902815, 0.003941521048545837, -0.024720003828406334, 0.0032506322022527456, 0.02237098105251789, 0.010743321850895882, 0.025562888011336327, 0.04291801527142525, -0.00800740160048008, 0.01735512912273407, -0.01579372026026249, 0.014633025974035263, -0.008180124685168266, -0.026474861428141594, 0.007288877386599779, 0.004608228802680969, -0.0012695082696154714, 0.0003111159021500498, -0.023158594965934753, 0.018128924071788788, 0.02829880826175213, 0.015213373117148876, -0.0018584911013022065, 0.006083276588469744, 0.00038236379623413086, -0.01546209305524826, 0.010798593051731586, 0.047643695026636124, -0.018488185480237007, -0.020795755088329315, 0.0037135276943445206, 0.03385355323553085, 0.0141908572986722, -0.004718771204352379, 0.0048569487407803535, 0.025203626602888107, 0.014232310466468334, 0.009824439883232117, -0.005264573264867067, -0.010971315205097198, -0.004635864403098822, 0.0036029855255037546, -0.01242218166589737, 0.00937536172568798, -0.02601887471973896, 0.01544827502220869, 0.0348207987844944, 0.020519400015473366, 0.001472456962801516, 0.00519548449665308, -0.0027151932008564472, -0.030316203832626343, 0.006836345419287682, -0.03216778486967087, -0.0348207987844944, 0.021431373432278633, 0.022163715213537216, -0.016498425975441933, 0.023020416498184204, -0.003875886555761099, 0.018515821546316147, -0.025341803207993507, -0.002108938293531537, 0.001979396678507328, -0.012346183881163597, -0.027732279151678085, 0.03144926205277443, -0.001898217131383717, 0.007509962189942598, 0.028934426605701447, 0.001713404431939125, 0.05203774943947792, 0.004124606493860483, 0.03161507472395897, -0.03401936963200569, -0.010957497172057629, -0.001773857162334025, 0.025673430413007736, -0.007053975481539965, -0.00956881046295166, 0.0011606933549046516, -0.012871259823441505, -0.0068432544358074665, -0.029984576627612114, 0.02495490573346615, -0.020574670284986496, 0.06903361529111862, 0.00811794400215149, -0.022799333557486534, 0.021859724074602127, -0.020712848752737045, 0.011378939263522625, 0.008041946217417717, 0.010418604128062725, -0.006812164094299078, -0.011821108870208263, 0.03202960640192032, -0.008864103816449642, -0.0028240082319825888, -0.03081364370882511, -0.029376594349741936, 0.00017023933469317853, -0.012097463943064213, 0.009921164251863956, 0.013893775641918182, 0.02053321711719036, 0.02722102217376232, 0.0008484979043714702, 0.011116402223706245, -0.005889827851206064, -0.01598716899752617, 0.015406821854412556, 0.02648867852985859, -0.008339028805494308, -0.015268644317984581, -0.036617111414670944, 0.02632286585867405, 0.006988340988755226, -0.018115106970071793, -0.019939051941037178, -0.013140706345438957, 0.010757139883935452, -0.0016304977471008897, -0.03194670006632805, 0.03432336077094078, -0.02445746585726738, 0.005247300956398249, 0.01691295951604843, -0.015489728190004826, -0.0021676637697964907, -0.02612941712141037, -0.008739744313061237, -0.0036997098941355944, -0.013741780072450638, -0.04830694943666458]" ================================================ FILE: sample_data/views_metadata.txt ================================================ #This file contains meta data about views. #name: The name of the view, #description: a text description of what the view contains, #schema: the schema, #example queries: examples of questions that may be posed against this view #additional_context: additional special instructions to pass to codex #foreign key: optionally foreign keys if available, #: and a description of each attribute. name: books description: records the books I read and when. It also records the url to the image of each book. schema: (book_name,img_url,id,data,time) example queries: Did I read Leonardo Da Vinci before? How many books did I read in April 2020? What books did I read in May 2021? When did I read A Thousand Brains? additional_context: foreign key: - id: TEXT // key date: DATETYPE // date the book was read time: DATETYPE // time the book was read book_name: TEXT // the title of the book img_url: TEXT // url to the image of the book read name: exercise description: records start and end time, the duration of each exercise activity, the distance covered, calories burnt, whether the activity took place outdoor and the temperature schema: (textDescription,duration,distance,calories,outdoor,temperature,id,start_date,start_time,end_date,end_time) example queries: How many miles did I run in June 2020? How long did I exercise last month? How many calories did I burn last year? What was the average temperature during my exercises last week? How many times did I exercise more than 1 hour in the past week? additional_context: The temperature column describes the temperature in "X degF". E.g., 50 degF. The textDescription column describes "run" or "jog" as "running". foreign key: - id: TEXT // key start_date: DATETYPE // the start date of the exercise event start_time: DATETYPE // the start time of the exercise event end_date: DATETYPE // the end date of the exercise event end_time: DATETYPE // the end time of the exercise event textDescription: TEXT // the type of exercise e.g., running, weight lifting duration: REAL // length of exercise in minutes (should be end_time-start_time) e.g., 51 minutes distance: REAL// distance covered during runs. e.g., 5.95 miles calories: REAL // the calories burnt during exercise outdoor: INTEGER // 0 or 1 value. 0 means false, 1 means true temperature: TEXT // the temperature recorded during exercise. E.g., 50 degF name: photos description: records the photos taken at a location and time. It also contains a description of the photo and the address, image url if available. schema: (textDescription,address,lat,long,details,img_url,id,start_date,start_time,end_date,end_time) example queries: Show me all my photos taken in Paris, France. Find all my pictures with Wendy. When was my last photo with Peter? additional_context: the details contains a description of all the objects in the photo and tags. foreign key: - id: TEXT // key textDescription: TEXT // a description of the photo address: TEXT // address where the photo was taken lat: FLOAT // latitude of the location where the photo was taken long: FLOAT // longtitude of the location where the photo was taken details: TEXT // lists the objects, tags, places in the photo img_url: TEXT // link to the image start_date: DATETYPE // date the photo was taken start_time: DATETYPE // time the photo was taken end_date: DATETYPE // date the photo was taken end_time: DATETYPE // time the photo was taken name: places description: records all the places I have been to. It records the begin and end time of the trip, the name of the place/destination and the addresses of the starting and destination location, including the latitude, longtitude coordinates schema: (textDescription,start_address,start_lat,start_long,end_address,end_lat,end_long,id,start_date,start_time,end_date,end_time) example queries: When did I last visit Sonoma County? How long was the drive from my hotel in Bali to Badung? How many places did I visit while I was in Singapore? additional_context: The start_address and end_address columns contain information about the street name, county, region, country, and zip code. foreign key: - start_date: DATETYPE // begin date of travel end_date: DATETYPE // end date of travel start_time: DATETYPE // begin time of the travel to another place end_time: DATETYPE // end time of the travel to another place textDescription: TEXT // source where information is extracted from start_address: TEXT // the name of the place where the travel begins start_lat: REAL // latitude of the place where the travel beings start_long: REAL // longitude of the place where the travel begins end_address: TEXT // the name of the destination where the travel ends end_lat: REAL // latitude of the destination where the travel ends end_long: REAL // longitude of the destination where the travel ends name: purchase description: records the purchases I made schema: (purchase_id,productName,productPrice,productQuantity,id,date,time) example queries: When did I last purchase my printer toner? How much did I spend in May 2022? When was the last two times I purchase toothpaste? additional_context: foreign key: - id: TEXT // key purchase_id: TEXT // id of the purchase date: DATETYPE // the date of the purchase time: DATETYPE // the time of the purchase purchase_id: TEXT // the purchase identifier number. Primary key productName: TEXT // the name of the product that was purchased productPrice: REAL // the price of the products productQuantity: REAL // the amount charged name: streaming description: records the music and podcasts I streamed schema: (artist,track,playtimeMs,spotify_link,id,start_date,start_time,end_date,end_time) example queries: Which artist did I listen most to in July 2022? How often did I listen to podcasts in 2022? Who is the top artist that I listened to? additional_context: the artist column contains the word "Podcast" if it is a podcast. Otherwise, it is likely music. foreign key: - id: TEXT // key start_date: DATETYPE // date the streaming began start_time: DATETYPE // time the streaming began end_date: DATETYPE // date the streaming ended end_time: DATETYPE // time the streaming ended artist: TEXT // name of the artist/musician/speaker of the music or podcast that was streamed track: TEXT // the title of the track streamed playtimeMs: INTEGER // the amount of time streamed in milliseconds spotify_link: TEXT // link to spotify track if available name: trips description: records the trips I made schema: (textDescription,country,states_provinces,cities_towns,places,id,start_date,start_time,end_date,end_time) example queries: When did I visit Portland State University? How many times did I visit Israel in 2021? How long was I in Seattle in my January 2014 trip? additional_context: foreign key: - id: TEXT // key start_date: DATETYPE // date the trip started start_time: DATETYPE // time the trip started end_date: DATETYPE // date the trip ended end_time: DATETYPE // time the trip ended textDescription: TEXT // description of the destination I visited country: TEXT // the country of the place I visited states_provinces: TEXT // the state/province of the place I visited cities_towns: TEXT // the city/town of the place I visited places: TEXT // the places I visited ================================================ FILE: src/__init__.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ================================================ FILE: src/common/__init__.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ================================================ FILE: src/common/bootstrap/data_source.json ================================================ [ { "id": 1, "source_name": "AppleHealth", "entry_type": "health", "configs": { "input_directory": "personal-data/apple-health", "filetype": "xml", "filetype_configs": {}, "dedup_key": ["source", "startTime"] }, "field_mappings": [ { "src": "outdoor", "target": "outdoor", "src_type": "str", "target_type": "str", "default_value": "False" }, { "src": "workoutActivityType", "target": "activity", "src_type": "str", "target_type": "str" }, { "target": "type_count", "src_type": "str", "target_type": "dict", "functions": ["type_count['$activity']+1"] }, { "src": "startDate", "target": "startTime", "src_type": "str", "target_type": "datetime" }, { "src": "endDate", "target": "endTime", "src_type": "str", "target_type": "str" }, { "src": "duration", "target": "duration", "src_type": "str", "target_type": "str" }, { "src": "totalDistance", "target": "totalDistance", "src_type": "str", "target_type": "str" }, { "src": "totalEnergyBurned", "target": "totalEnergyBurned", "src_type": "str", "target_type": "str" } ] }, { "id": 2, "source_name": "Amazon", "entry_type": "purchase", "configs": { "input_directory": "personal-data/amazon", "filetype": "csv", "filetype_configs": { "skiprows": 0 }, "dedup_key": ["source","purchase_id","productName"] }, "field_mappings": [ { "src": "Order Date", "target": "startTime", "src_type": "datetime", "target_type": "datetime" }, { "src": "Order ID", "target": "purchase_id", "src_type": "str", "target_type": "str" }, { "src": "Title", "target": "productName", "src_type": "str", "target_type": "str" }, { "src": "Purchase Price Per Unit", "target": "productPrice", "src_type": "str", "target_type": "number" }, { "src": "Quantity", "target": "productQuantity", "src_type": "str", "target_type": "number" }, { "src": "ASIN/ISBN", "target": "productId", "src_type": "str", "target_type": "str" } ] }, { "id": 3, "source_name": "AmazonKindle", "entry_type": "purchase", "configs": { "input_directory": "personal-data/amazon-kindle", "filetype": "csv", "filetype_configs": { "skiprows": 0 }, "dedup_key": ["source", "startTime","productName"] }, "field_mappings": [ { "src": "OrderDate", "target": "startTime", "src_type": "datetime", "target_type": "datetime" }, { "src": "Title", "target": "productName", "src_type": "str", "target_type": "str" }, { "src": "OurPrice", "target": "productPrice", "src_type": "str", "target_type": "number" }, { "src": "OurPriceCurrencyCode", "target": "currency", "src_type": "str", "target_type": "number" }, { "src": "ASIN", "target": "productId", "src_type": "str", "target_type": "str" } ] }, { "id": 4, "source_name": "Spotify", "entry_type": "streaming", "configs": { "input_directory": "personal-data/spotify", "filename_regex": "StreamingHistory", "filetype": "json", "dedup_key": ["source", "track", "endTime"] }, "field_mappings": [ { "src": "artistName", "target": "artist", "src_type": "str", "target_type": "str" }, { "src": "trackName", "target": "track", "src_type": "str", "target_type": "number" }, { "src": "endTime", "target": "endTime", "src_type": "str", "target_type": "datetime" }, { "src": "msPlayed", "target": "playtimeMs", "src_type": "str", "target_type": "str" }, { "target": "startTime", "target_type": "datetime", "functions": [ "eval: (datetime.fromisoformat(\"$endTime\") - timedelta(milliseconds=$playtimeMs/1000)).isoformat()" ] } ] }, { "id": 5, "source_name": "Venmo", "entry_type": "purchase", "configs": { "input_directory": "personal-data/venmo", "filetype": "csv", "filetype_configs": { "skiprows": 2 }, "dedup_key": ["source","purchase_id"] }, "field_mappings": [ { "src": "Datetime", "target": "startTime", "src_type": "datetime", "target_type": "datetime" }, { "src": "ID", "target": "purchase_id", "src_type": "str", "target_type": "str" }, { "src": "Note", "target": "productName", "src_type": "str", "target_type": "str" }, { "src": "Amount (total)", "target": "productPrice", "src_type": "str", "target_type": "number" } ] }, { "id": 6, "source_name": "Libby", "entry_type": "purchase", "configs": { "input_directory": "personal-data/libby", "filetype": "csv", "filetype_configs": { "skiprows": 0 }, "dedup_key": ["source","startTime","productName"] }, "field_mappings": [ { "src": "timestamp", "target": "startTime", "src_type": "datetime", "target_type": "datetime" }, { "src": "title", "target": "productName", "src_type": "str", "target_type": "str" }, { "src": "author", "target": "author", "src_type": "str", "target_type": "str" }, { "src": "cover", "target": "imageURL", "src_type": "str", "target_type": "str" } ] }, { "id": 7, "source_name": "GoogleTimeline", "entry_type": "base:visit", "configs": { "input_directory": "personal-data/google-timeline/Location History/Semantic Location History", "filetype": "json", "filetype_configs": {}, "dedup_key": [ "source", "startTime", "type" ] } }, { "id": 8, "source_name": "GooglePhotos", "entry_type": "photo", "configs": { "input_directory": "personal-data/google_photos", "filetype": "jpg,JPEG,PNG,HEIC", "filetype_configs": {}, "dedup_key": [ "source", "startTime", "imageFileName" ] } }, { "id": 9, "source_name": "FacebookPosts", "entry_type": "photo", "configs": { "input_directory": "personal-data/facebook", "filetype": "json", "filetype_configs": {}, "dedup_key": [ "source", "startTime", "imageFileName" ] } } ] ================================================ FILE: src/common/generate_persona.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import numpy as np #Need real databases in place of the ones below HOBBIES_DB = ["fishing", "boating", "cooking"] EXERCISE_DB = ["running", "swimming", "weight lifting", "golf", "soccer"] MALE_NAMES_DB = ["Lambert", "Nathan", "Alon"] FEMALE_NAMES_DB = ["Marieh", "Jane", "Wang-Chiew"] # generate a name for the college the person went to TODO def generate_college(p): return ("University of Washington") # generate a name for the graduate school the person went to TODO def generate_graduate_school(p): return ("University of Wisconsin") # generate a major for the college the person went to TODO def generate_college_major(p): return ("Philosophy") # generate a major for the graduate school the person went to TODO def generate_graduate_school_major(p): return ("Astrophysics") #draw a value from a probability distribution def flip(values, probs): return (np.random.choice(values, 1, p=probs))[0] def generate_persona(): persona = {} #Determine date of birth and age persona["age_years"] = np.random.randint(low=18, high=75, size=None) persona["birth_year"] = 2022 - persona["age_years"] persona["birth_month"] = np.random.randint(low=1, high=12, size=None) persona["birth_day"] = np.random.randint(low=0, high=28, size=None) #Determine gender gender = np.random.randint(low=0, high=51, size=None) if gender == 0: persona["gender"] = "female" else: persona["gender"] = "male" #Graduating from K, elementary school, middle school, high school, college, # You graduate from K at either age 5 or 6, take either 5 or 6 years in elementary school, 3 years in middle school and 3-5 years in high school. values = [5,6] probs = [0.5, 0.5] persona["k_graduation"] = flip([5,6], [0.5, 0.5]) + persona["birth_year"] persona["e_graduation"] = persona["k_graduation"] + flip([5,6,7], [0.1, 0.8, 0.1]) persona["m_graduation"] = persona["e_graduation"] + 3 persona["h_graduation"] = persona["m_graduation"] + flip([3,4,5], [0.1, 0.8, 0.1]) #College, yes or no persona["college"] = flip([1,0], [0.5, 0.5]) if persona["college"] == 1: persona["college_graduation"] = persona["h_graduation"] + flip([3,4,5], [0.1, 0.8, 0.1]) persona["college_location"] = generate_college(persona) persona["college_major"] = generate_college_major(persona) persona["graduate_school"] = flip([1,0], [0.2, 0.8]) if persona["graduate_school"] == 1: persona["graduate_school_graduation"] = persona["college_graduation"] + flip([3,4,5,6,7], [0.2, 0.2, 0.4, 0.1, 0.1]) persona["graduate_school_location"] = generate_graduate_school(persona) persona["graduate_school_major"] = generate_graduate_school_major(persona) # Marriages. # First generate the number of marriages, and then insert the appropriate years. The probability of number of marriages depends a bit on age. marriage_probs = [0.3, 0.4, 0.2, 0.07, 0.03] if persona["age_years"] < 40: marriage_probs = [0.3, 0.4, 0.2, 0.1, 0.0] if persona["age_years"] < 25: marriage_probs = [0.8, 0.2, 0.0, 0.0, 0.0] num_marriages = flip([0,1,2,3,4], marriage_probs) persona["num_marriages"] = num_marriages first_marriage_age = np.random.randint(low=20, high=35, size=None) current_age = first_marriage_age persona["married"] = [] persona["divorced"] = [] for marriage in range(0, num_marriages): if marriage in range(1, num_marriages): persona["divorced"].append(current_age + length) current_age = current_age + length + time_till_next persona["married"].append(current_age) length = np.random.randint(low=2, high=15, size=None) time_till_next = np.random.randint(low=2, high=7, size=None) # Can't plan for the future. If your age is less than what it takes you to complete your marriages and divorces, we don't let you do it. if current_age + length + time_till_next > persona["age_years"]: break #children kids_probs = [0.2, 0.2, 0.2, 0.2, 0.2] if persona["age_years"] < 30: kids_probs = [0.3, 0.3, 0.3, 0.1, 0.0] if persona["age_years"] < 25: kids_probs = [0.7, 0.3, 0.0, 0.0, 0.0] num_kids = flip([0,1,2,3,4], kids_probs) persona["num_kids"] = num_kids time_between_kids_probs = [0.25, 0.20, 0.15, 0.20, 0.1, 0.1] age_at_first_kid = np.random.randint(low=20, high=30, size=None) persona["kids"] = [] if age_at_first_kid > persona["age_years"]: age_at_first_kid = persona["age_years"] curr_age = age_at_first_kid for kid in range(num_kids): persona["kids"].append(curr_age) curr_age = curr_age + flip([1,2,3,4,5,6], time_between_kids_probs) if curr_age > persona["age_years"]: break #jobs jobs_probs = [0.2, 0.4, 0.2, 0.1, 0.1] if persona["age_years"] < 40: jobs_probs = [0.05, 0.3, 0.3, 0.2, 0.15] if persona["age_years"] < 25: jobs_probs = [0.4, 0.3, 0.2, 0.1, 0.0] num_jobs = flip([0,1,2,3,4], jobs_probs) persona["num_jobs"] = num_jobs first_job_age = np.random.randint(low=20, high=25, size=None) current_age = first_job_age persona["started_job"] = [] persona["quit_job"] = [] for job in range(0, num_jobs): if job in range(1, num_jobs): persona["quit_job"].append(current_age + length) current_age = current_age + length + time_till_next persona["started_job"].append(current_age) length = np.random.randint(low=2, high=15, size=None) time_till_next = np.random.randint(low=0, high=2, size=None) # Can't plan for the future. If your age is less than what it takes you to complete your job transitions, we don't let you do it. if current_age + length + time_till_next > persona["age_years"]: break # exercise, hobbies, verboseness, travel # This is the number of trips the person takes per year. It includes local, regional and international trips persona["trips_per_year"] = np.random.randint(low=0, high=6, size=None) # This is the expected number of daily or weekly events that the person is likely to record in their DB. persona["verboseness"] = np.random.randint(low=0, high=20, size=None) #name people return (persona) print (generate_persona()) ================================================ FILE: src/common/geo_helper.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import pickle import pytz from geopy.geocoders import Nominatim from geopy.extra.rate_limiter import RateLimiter from geopy.location import Location from src.common.persistence.key_value_db import CacheDBConnector ORIGIN_TIMEZONE = str(pytz.utc) global reverse_geolocator global geolocator reverse_geolocator = Nominatim(user_agent="pim_photo_import") geolocator = Nominatim(user_agent="pim_photo_ui") reverse = RateLimiter(reverse_geolocator.reverse, min_delay_seconds=1) geocode = RateLimiter(geolocator.geocode, min_delay_seconds=1) class GeoHelper: geo_reverse_cache = {} geo_cache = {} def __init__(self): self.cache_db = CacheDBConnector() self.reverse_cache_hits=0 self.reverse_cache_miss=0 self.cache_hits = 0 self.cache_miss = 0 def cache_key(self, address:str): return address def reverse_cache_key(self, latitude:float, longitude:float): return str(latitude)+","+str(longitude) def calculateLocation(self, latitude: float, longitude: float, language:str='en') -> Location: if latitude is None or longitude is None: return None reverse_cache_key = self.reverse_cache_key(latitude, longitude) if reverse_cache_key in GeoHelper.geo_reverse_cache.keys(): cached_loc = GeoHelper.geo_reverse_cache[reverse_cache_key] #print(reverse_cache_key, " found in location cache. Returning ", str(cached_loc)) self.reverse_cache_hits+=1 return cached_loc location = reverse(str(latitude) + "," + str(longitude), addressdetails=True, language=language) # location = reverse((50.6539239, -120.3385242), language='en', exactly_one=True) #print("Location:: ", str(location)) GeoHelper.geo_reverse_cache[reverse_cache_key] = location self.reverse_cache_miss += 1 return location def geocode(self, address:str, language:str="en") -> str: if address is None or address=="": return None cache_key = self.cache_key(address) cached_loc = self.cache_db.get(cache_key, "geo_cache") if cached_loc is not None: cached_loc_unpickled = pickle.loads(cached_loc[0]) # print(cache_key, " found in location cache. Returning ", cached_loc_unpickled) self.cache_hits += 1 return cached_loc_unpickled else: # print(cache_key, " not found in location cache") # Fetch value location:Location = geocode(address, language=language) # Make entry into cache pickled_object = pickle.dumps(location) self.cache_db.put(cache_key, pickled_object, "geo_cache") self.cache_miss += 1 return location # gh = GeoHelper() # print(gh.geocode("Bangalore, India")) # print(gh.geocode("Bangalore, India")) ================================================ FILE: src/common/objects/EntryTypes.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import json from enum import Enum class EntryType(str, Enum): PHOTO: str="photo" PURCHASE: str="purchase" HEALTH: str="health" VISIT: str="visit" STREAMING: str="streaming" DAY: str="day" TRIP: str="trip" ACTIVITY: str="activity" def toJson(self): return json.dumps(self.__dict__.values()) ================================================ FILE: src/common/objects/LLEntry_obj.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import json from typing import List, Dict, Tuple from geopy import Location class LLEntry: def __init__(self, type: str, startTime, source: str): self.type = type self.source = source # TIME: as experienced by the user (i.e., what timezone they're in) self.startTime = startTime self.endTime = self.startTime self.timezone = "" # LOCATION start and end. If there's only one, it's the start # NEW: use geopy to standardize geolocations # NEW: contains the ordered list of start/end locations, or the list of locations in a trip self.locations: List[Location] = [] self.lat_lon: List[Tuple] = [] # Purchase self.purchase_id = "" self.productId = None self.productName = "" self.productPrice = "" self.currency = "" self.productQuantity = "" self.author = "" # Music self.artist = "" self.track = "" self.playtimeMs = 0 self.track_count = {} # TEXT of entry (often generated programmatically from source data) self.textDescription = "" # Searchable tags self.tags: List[str] = [] # IMAGE data # NEW: store a list of image paths self.image_paths: List[str] = [] self.imageURL = "" self.imageTimestamp = 0 self.imageFileName = "" self.imageFilePath = "" self.imageCaptions = "" self.captionEmbedding = "" self.imageEmbedding = "" self.imageViews = "" self.peopleInImage = [] self.imageWidth = "" self.imageHeight = "" # Data for quantified entries self.duration = 0 self.distance = 0 self.calories = 0 self.outdoor = 1 self.temperature = "" # BOOKKEEPING extra info for convenience self.startTimeOfDay = "00:00:00" self.endTimeOfDay = "00:00:00" self.recordedStartTime = startTime def printObj(self): print(self.type, self.startTime, self.source, self.peopleInImage) def __str__(self): return self.type + " " + self.startTime + " " + \ self.source + " " + self.peopleInImage.__str__() def toJson(self): return json.dumps(self.__dict__) # return json.dumps(self, default=lambda o: o.__dict__, # sort_keys=True, indent=4) def toDict(self): j = self.__dict__ j['locations'] = [o.address if o is not None else "" for o in j['locations']] return j class LLEntrySummary(LLEntry): def __init__(self, type: str, startTime: str, endTime: str, locations: List[str], text_summary: str, photo_summary: List[str], stats: Dict[str, float], objects: Dict[str, List[str]], source: str): super().__init__(type, startTime, source) # start and end time in isoformat self.startTime = startTime self.endTime = endTime # text summary self.textDescription = text_summary # lists of path strings of the summary self.image_paths = photo_summary if len(photo_summary) > 0: self.imageFilePath = photo_summary[0] # start/end locations, or a list of locations in the trip self.locations = locations if len(locations) > 0: self.startGeoLocation = locations[0] self.endGeoLocation = locations[-1] else: self.startGeoLocation = self.endGeoLocation = None # a dictionary of statistics: num_photos, num_activities, etc. self.stats = stats # a dictionary of objects self.objects = objects # a list of searchable tags self.tags = self.create_tags_from_objects(objects) def create_tags_from_objects(self, objects): """Make all object names and types searchable """ res = list(objects.keys()) for val in objects.values(): res += val return res class LLEntrySummary(LLEntry): def __init__(self, type: str, startTime: str, endTime: str, locations: List[str], text_summary: str, photo_summary: List[str], stats: Dict[str, float], objects: Dict[str, List[str]], source: str): super().__init__(type, startTime, source) # start and end time in isoformat self.startTime = startTime self.endTime = endTime # text summary self.textDescription = text_summary # lists of path strings of the summary self.image_paths = photo_summary if len(photo_summary) > 0: self.imageFilePath = photo_summary[0] # start/end locations, or a list of locations in the trip self.locations = locations if len(locations) > 0: self.startGeoLocation = locations[0] self.endGeoLocation = locations[-1] # a dictionary of statistics: num_photos, num_activities, etc. self.stats = stats # a dictionary of objects self.objects = objects # a list of searchable tags self.tags = self.create_tags_from_objects(objects) def create_tags_from_objects(self, objects): """Make all object names and types searchable """ res = list(objects.keys()) for object_list in objects.values(): for item in object_list: res.append(item["name"]) return res class LLEntryInvertedIndex: def __init__(self): self.index = {} def addEntry(self, key: str, entry: LLEntry): if key not in self.index.keys(): self.index[key] = [] self.index[key].append(entry) def getEntries(self, key): if key in self.index.keys(): return self.index[key] else: return None def __str__(self): return self.index.__str__() ================================================ FILE: src/common/objects/__init__.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ================================================ FILE: src/common/objects/derive_attributes.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from src.common.objects.LLEntry_obj import LLEntry # DeriveConfigNode Example: # { # "attribute": "rawImageFilename", # "depends_on": ["imageURL"], # "function": "fetchImageFromURL" # } class DependencyNode: def __init__(self, attribute: str, depends_on: list, functionName: str): self.attribute = attribute self.depends_on = depends_on self.function = functionName def __str__(self): return "\"" + self.attribute + "\" depends_on " + self.depends_on.__str__() + " using \"" + self.function + "\"" # Represents a list of fields and how they can be derived class AttributeFiller: def __init__(self): self.dependencies = { "rawImageFilename": DependencyNode("rawImageFilename", ["imageURL"], "fetchImageFromURL"), "imageFileName": DependencyNode("imageFileName", ["rawImageFilename"], "convertImage"), "startTime": DependencyNode("startTime", ["endTime", "playDuration", "durationUnit"], "calculateStartTime"), "endTime": DependencyNode("endTime", ["startTime", "playDuration", "durationUnit"], "calculateEndTime"), "playDuration": DependencyNode("playDuration", ["startTime", "endTime"], "calculatePlayDurationMs") } def fillMissingAttributes(self, lifeLog:LLEntry): lifeLog.longitude = 100 for key in self.dependencies: current:DependencyNode = self.dependencies[key] self.fillRecursive(lifeLog, current, []) def fillRecursive(self, lifelog:LLEntry, dependency:DependencyNode, seen_so_far:list=None): print("Filling:", dependency.__str__(), "Seen so far:", seen_so_far.__str__()) to_be_derived = dependency.attribute if to_be_derived in seen_so_far: print("Missing data chain. Can't derive", to_be_derived, "Chain:", seen_so_far.__str__()) return seen_so_far.append(to_be_derived) tbd_value = lifelog.__getattribute__(to_be_derived) print(to_be_derived, "tbd_val:", tbd_value) if self.isAbsent(tbd_value): parent_attributes = dependency.depends_on found_parents:int = 0 func = dependency.function params = [] for sp in parent_attributes: parent_val = lifelog.__getattribute__(sp) print(sp, "depends_val:", parent_val) if not self.isAbsent(parent_val): print("parent val found:", sp) found_parents+=1 params.append(str(parent_val)) #Make call to function using parent vals and assign to derive field # lifelog.__setattribute__(to_be_derived, eval(function) else: print("Not found:", sp) if found_parents == len(parent_attributes): func = func + "(\"" +"\",\"".join(params) + "\")" print("evaluating:", func) else: #See if we can fill parent first print("Looking for parent") else: print("Value is present") def isAbsent(self, val): x = (val is None or (isinstance(val, str) and val == "")) print(val, "is absent:",x) return x fil = AttributeFiller() entry = LLEntry("photo","2022-01-05T01:04:42","Google Photos") fil.fillMissingAttributes(entry) print(entry.toJson()) ================================================ FILE: src/common/objects/import_configs.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import json from enum import Enum from src.common.objects.EntryTypes import EntryType # Each element of this list is a dictionary with following attributes: # Class Hierarchy: # DataSourceList: list[ # DataSource( # id: str ([Required] Unique source id.) # source_name: str ([Required]: Name of the import source) # entry_type: src.common.objects.EntryTypes.EntryType -> # ([Required]: One of the allowed values from Enum EntryType) # configs: SourceConfigs( # input_directory = str ([Required]: Directory containing data for this source) # filetype = str ([Required]: xml/csv/json) # filename_regex = str ([Optional]: regex for files) # filetype_configs = dict { # skiprows: int ([Optional]: Used for CSV filetype for skipping # first n rows of the csv. Defaults to 0) # } # dedup_key = str ([Required]: List of attributes to use as composite key for # deduplication when processing/re-processing data) # ), # field_mappings: list[ ([Required for config driven sources/ # Optional for custom sources]: # List containing mapping of field from input file to # an attribute in LLEntry class.) # FieldMapping( # src: str ([Required when mapping present]: Field name in input file) # target: str ([Required when mapping present]: Attribute name in LLEntry class) # src_type: str ([Required when mapping present]: Data type of field in Source # Possible values: str, dict, datetime, number, not tested fully) # target_type: str ([Required when mapping present]: Data type of attribute in LLEntry class # Possible values: str, dict, datetime, number, not tested fully)) # default_value: str ([Optional]: Value to store when data is absent. # Values default to None if default_value is not provided) # functions: list ([Optional]: Function to evaluate to convert source value to target value. # Since this list is parsed in sequence, this function has access # to mappings already done. As such, it can work on the src, # as well as already mapped target attributes. FOr usage refer to # data_source.json and evaluate_functions in # [generic_importer.py](src/ingest/importers/generic_importer.py) # ) # ] # ) # ] def get_val_or_none(kv:dict, key:str): if key in kv.keys(): return kv[key] else: return None class FileType(str, Enum): CSV: str="csv" JSON: str="json" XML: str="xml" def toJson(self): return json.dumps(self.__dict__.values()) class SourceConfigs: def __init__(self, input_directory:str, filetype:FileType, filename_regex:str, filetype_configs:dict, dedup_key: list): self.input_directory = input_directory self.filetype = filetype self.filename_regex = filename_regex self.filetype_configs = filetype_configs self.dedup_key = dedup_key def __str__(self): return self.input_directory + " " + self.filetype def toJson(self): return json.dumps(self.__dict__) class FieldMapping: def __init__(self,src, target, src_type, target_type, functions, default_value=""): self.src: str = src self.target: str = target self.src_type: str = src_type self.target_type: str = target_type self.default_value: str = default_value self.functions: list = functions def __str__(self): return self.src + " " + self.target + " " + self.src_type + " " + self.target_type def toJson(self): return json.dumps(self.__dict__) class DataSource: def __init__(self, id, source_name, entry_type:EntryType, configs, field_mappings): self.id: int = id self.source_name: str = source_name self.entry_type = entry_type self.configs = SourceConfigs(get_val_or_none(configs, "input_directory"), get_val_or_none(configs, "filetype"), get_val_or_none(configs, "filename_regex"), get_val_or_none(configs, "filetype_configs"), get_val_or_none(configs, "dedup_key")) self.field_mappings = [] if field_mappings is not None: for f in field_mappings: self.field_mappings.append(FieldMapping(get_val_or_none(f, "src"), get_val_or_none(f, "target"), get_val_or_none(f, "src_type"), get_val_or_none(f, "target_type"), get_val_or_none(f, "functions"), get_val_or_none(f, "default_value"))) def __str__(self): return str(self.id) + " " + self.source_name + " " + self.configs.__str__() + \ " " + self.field_mappings.__str__() def toJson(self): return json.dumps(self.__dict__) class DataSourceList: def __init__(self, ds): self.data_sources = [] for entry in ds: entry_type:EntryType = get_val_or_none(entry, "entry_type") if entry_type is None: raise Exception("Entry Type cannot be null for data source " + get_val_or_none(entry, "source_name")) self.data_sources.append(DataSource(get_val_or_none(entry, "id"), get_val_or_none(entry, "source_name"), get_val_or_none(entry, "entry_type"), get_val_or_none(entry, "configs"), get_val_or_none(entry, "field_mappings"))) def __str__(self): return self.data_sources.__str__() def toJson(self): return json.dumps(self.__dict__) ================================================ FILE: src/common/persistence/__init__.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ================================================ FILE: src/common/persistence/key_value_db.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import sqlite3 import os try: os_path_to_data = os.environ['APP_DATA_DIR'] except: os_path_to_data = "personal-data/app_data" class CacheDBConnector: def __new__(cls): if not hasattr(cls, 'instance'): cls.instance = super(CacheDBConnector, cls).__new__(cls) if not os.path.exists(os_path_to_data): print("Path does not exist. Creating", os_path_to_data) os.mkdir(os_path_to_data) cls.instance.con = sqlite3.connect(os.path.join(os_path_to_data, "sqlite_cache.db"), check_same_thread=False) cls.instance.cursor = cls.instance.con.cursor() cls.instance.setup_tables() return cls.instance tables = ["geo_cache", "reverse_geo_cache"] ddl = { "geo_cache": "CREATE TABLE geo_cache(id INTEGER PRIMARY KEY AUTOINCREMENT, " "key, value)", "reverse_geo_cache": "CREATE TABLE reverse_geo_cache(id INTEGER PRIMARY KEY AUTOINCREMENT, " "key, value)" } indexes = { "geo_cache": [ 'CREATE UNIQUE INDEX "uniq_key_gc" ON "geo_cache" ( "key" )' ], "reverse_geo_cache": [ 'CREATE UNIQUE INDEX "uniq_key_rgc" ON "reverse_geo_cache" ( "key" )' ] } def setup_tables(self): for table in CacheDBConnector.tables: lookup_sql = "SELECT name FROM sqlite_master WHERE name='" + table + "'" # print("Looking for ", table, "using SQL:: ", lookup_sql) res = self.cursor.execute(lookup_sql) if res.fetchone() is None: create_sql = CacheDBConnector.ddl[table] print("Creating table: ", table, " using SQL:: ", create_sql) self.execute_write(create_sql) if table in CacheDBConnector.indexes.keys(): for idx_sql in CacheDBConnector.indexes[table]: print("Creating index using SQL:: ", idx_sql) self.execute_write(idx_sql) # else: # print("Table ", table, " found.") def get(self, key:str, table:str) -> str: read_sql = "SELECT value from " + table +" where key=\""+key+"\"" result = self.cursor.execute(read_sql) return result.fetchone() def put(self,key:str, value:str, table:str): insert_sql = "INSERT INTO "+table+" (key, value) values(?, ?)" self.execute_write(insert_sql, (key,value)) def execute_write(self,sql,params=None): if params: self.con.commit() self.con.execute(sql,params) else: self.con.commit() self.con.execute(sql) self.con.commit() ================================================ FILE: src/common/persistence/personal_data_db.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # -- Category (Transaction) # |-- Data_Source (Bank of America) # |-- Personal_Data ( # DB Schema: # CATEGORY # -> Has info on higher level category that a data source may belong to. # New Category can be created but should be rare) # ID Name Fields # 1 Travel # 2 Transaction # 3 Workout # 4 Music # DATA_SOURCE : # ID Source_Name Category_Id(FK) config Field_Mappings # 1 Bank of America 2 {json conf} {Field Mappings to LLEntry} # 2 Apple Health 3 # 3 Strava 3 # config example # {"input_directory": "personal-data/bofa", # "filetype": "csv"|"json" # Personal_Data (All data from same source will have to be deleted # and re-imported as there is no known unique key # ID Source_Id(FK) timestamp Data # 1 1 16342223 (Object based on field mapping) import sqlite3 import json import pickle from pathlib import Path from sqlite3 import Cursor import os from src.common.objects.LLEntry_obj import LLEntry from src.common.objects.import_configs import DataSourceList os_path_to_data = os.environ['APP_DATA_DIR'] if 'APP_DATA_DIR' in os.environ else "personal-data/app_data" class PersonalDataDBConnector: def __new__(cls): if not hasattr(cls, 'instance'): cls.instance = super(PersonalDataDBConnector, cls).__new__(cls) if not os.path.exists(os_path_to_data): print("Path does not exist. Creating", os_path_to_data) os.mkdir(os_path_to_data) cls.instance.con = sqlite3.connect(os.path.join(os_path_to_data, "raw_data.db")) cls.instance.cursor = cls.instance.con.cursor() cls.instance.setup_tables() return cls.instance tables = ["data_source", "personal_data"] ddl = { "category": "CREATE TABLE category(id INTEGER PRIMARY KEY AUTOINCREMENT, " "name, fields)", "data_source": "CREATE TABLE data_source(id INTEGER PRIMARY KEY AUTOINCREMENT, " "source_name UNIQUE, entry_type, configs, field_mappings)", "personal_data": "CREATE TABLE personal_data(id INTEGER PRIMARY KEY AUTOINCREMENT, " "source_id, data_timestamp, dedup_key UNIQUE, data, " "imageFileName, imageFilePath UNIQUE," "location, location_done DEFAULT 0, captions, captions_done DEFAULT 0," "embeddings, embedding_done DEFAULT 0, status DEFAULT active, dedup_done DEFAULT 0," "enriched_data, export_done DEFAULT 0," "FOREIGN KEY(source_id) REFERENCES data_source(id))" } indexes = { "personal_data": [ 'CREATE UNIQUE INDEX "uniq_img_filepath" ON "personal_data" ( "imageFilePath" )', 'CREATE UNIQUE INDEX "uniq_src_filename" ON "personal_data" ( "source_id", "imageFileName" )' ] } bootstrap_locations = { "data_source": "src/common/bootstrap/data_source.json" } def execute_write(self,sql,params=None): if params: self.con.commit() self.con.execute(sql,params) else: self.con.commit() self.con.execute(sql) self.con.commit() def get_data_source_location(self): return PersonalDataDBConnector.bootstrap_locations["data_source"] def setup_tables(self): for table in PersonalDataDBConnector.tables: lookup_sql = "SELECT name FROM sqlite_master WHERE name='" + table + "'" # print("Looking for ", table, "using SQL:: ", lookup_sql) res = self.cursor.execute(lookup_sql) if res.fetchone() is None: create_sql = PersonalDataDBConnector.ddl[table] print("Creating table: ", table, " using SQL:: ", create_sql) self.execute_write(create_sql) if table in PersonalDataDBConnector.indexes.keys(): for idx_sql in PersonalDataDBConnector.indexes[table]: print("Creating index using SQL:: ", idx_sql) self.execute_write(idx_sql) else: print("Table ", table, " found.") if table in PersonalDataDBConnector.bootstrap_locations.keys(): print("Bootstrapping...") bootstrap_file = PersonalDataDBConnector.bootstrap_locations[table] cwd = str(Path().absolute()) bootstrap_file = cwd + "/" + bootstrap_file #print("Reading ", bootstrap_file) with open(bootstrap_file, 'r') as f1: r = f1.read() json_data = json.loads(r) #Create Python Class Object from Json ds_list = DataSourceList(json_data) for entry in ds_list.data_sources: self.add_or_replace(table, entry.__dict__, "id") else: print("No bootstrap data available for ", table) def add_or_replace_personal_data(self, key_value: dict, unique_key=None): self.add_or_replace("personal_data", key_value, unique_key) def add_or_replace(self, table, key_value:dict, unique_key:str=None): insert_key_arr = [] insert_placeholder_arr=[] insert_value_arr = [] update_arr_key = [] # For Upsert using ON CONFLICT command update_arr_val = [] for key in key_value: #print("Key:: ", key, " > ", type(key_value.__dict__[key])) insert_key_arr.append(key) insert_placeholder_arr.append("?") if key != unique_key: update_arr_key.append(key + "=?") if not (isinstance(key_value[key], int) or isinstance(key_value[key], str)): update_arr_val.append(pickle.dumps(key_value[key])) insert_value_arr.append(pickle.dumps(key_value[key])) else: if key != unique_key: update_arr_val.append(key_value[key]) insert_value_arr.append(key_value[key]) insert_values = tuple(insert_value_arr) + tuple(update_arr_val) insert_sql = "INSERT INTO " + table + "(" + ", ".join(insert_key_arr) + ")" \ + " values (" + ", ".join(insert_placeholder_arr) + ")" if unique_key is not None: insert_sql += " ON CONFLICT(" + unique_key + ") DO UPDATE SET " + \ ", ".join(update_arr_key) # print("Insert SQL:: ", insert_sql, "data: ", insert_values) self.execute_write(insert_sql, insert_values) def read_data_source_conf(self, select_cols:str, source_name=None): if source_name is not None: read_sql = "SELECT " + select_cols + " from data_source where source_name=\""+source_name+"\"" else: read_sql = "SELECT " + select_cols + " from data_source" result = self.cursor.execute(read_sql) return result.fetchall() def search_personal_data(self, select_cols: str, where_conditions: dict=None) -> Cursor: where_arr = [] if where_conditions is not None: for key in where_conditions: where_arr.append(key + " " + where_conditions[key]) where_clause = "" if len(where_arr) > 0: where_clause = " WHERE " + " AND ".join(where_arr) lookup_sql = "SELECT " + select_cols + " FROM personal_data " + where_clause # print("Searching for personal data using SQL:: ", lookup_sql) res = self.cursor.execute(lookup_sql) return res def add_photo(self, source_id: str, obj: LLEntry): pickled_object = pickle.dumps(obj) insert_sql = """INSERT INTO personal_data (source_id, data_timestamp, imageFileName, imageFilePath, data) values(?,?,?,?,?)""" data_tuple = (source_id, int(obj.imageTimestamp), obj.imageFileName, obj.imageFilePath, pickled_object) #print("Insert SQL:: ", insert_sql, " data:: ", data_tuple) self.execute_write(insert_sql, data_tuple) def add_only_photo(self, source_id: str, imageFileName: str, imageFilePath: str): insert_sql = """INSERT INTO personal_data (source_id, imageFileName, imageFilePath) values(?,?,?)""" data_tuple = (source_id, imageFileName, imageFilePath) #print("Insert img only SQL:: ", insert_sql, " data:: ", data_tuple) self.execute_write(insert_sql, data_tuple) def is_same_photo_present(self, source, filename, timestamp): lookup_sql = """SELECT imageFileName FROM personal_data WHERE source_id=? AND imageFileName=? AND data_timestamp=?""" data_tuple = (source, filename, timestamp) # print("Searching for ", filename, " using SQL:: ", lookup_sql, data_tuple) res = self.cursor.execute(lookup_sql, data_tuple) if res.fetchone() is None: #print(filename, " not found.") return False else: #print(filename, " found.") return True def print_data_stats_by_source(self): stats_sql = """SELECT ds.source_name, COUNT(*) as count from data_source ds LEFT JOIN personal_data pd on pd.source_id=ds.id where pd.data is not null group by ds.source_name order by ds.id""" res = self.cursor.execute(stats_sql) print("Data Stats by source:::") print("Source", ": ", "Count") for row in res.fetchall(): print(row[0],": ", row[1]) ================================================ FILE: src/common/user_info.json ================================================ { "name": "Hilbert", "address": "Menlo Park, California, United States", "addresses": [ { "name": "Work", "address": "Menlo Park, California, United States", "radius": 0.1 }, { "name": "Home", "address": "Menlo Park, California, United States", "radius": 0.1 }, { "name": "My neighborhood", "address": "Menlo Park, California, United States", "radius": 1 } ] } ================================================ FILE: src/common/util.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import datetime from pathlib import Path import pytz import json from datetime import datetime, timedelta from timezonefinder import TimezoneFinder from sklearn.metrics.pairwise import haversine_distances from math import radians from typing import Union, List from geopy import Location from src.common.geo_helper import GeoHelper EPOCH = datetime(1970,1,1) # output a string such as "Showing photo 17 of 24" def xOfy(i, total): result = "Showing photo " + str(i+1) + " of " + str(total) return result #extract a tuple of year/month/day from ISO format def extractYMD(date): year = int(date[0:4]) month = int(date[5:7]) dom = int(date[8:10]) return ((year, month, dom)) #extracting a month or day-of-month from ISO format def extract_month(date): return(date[5:7]) def extract_DOM(date): return(date[8:10]) def sameMonth(date1, date2): d1 = date1[0:7] d2 = date2[0:7] return (d1 == d2) # truncates a string number to a string with digits after the decimal def truncateStringNum(num,digits): f = float(num) * (10 ** digits) i = int(f) / (10 ** digits) if digits == 0: j = int(i) return (str(j)) else: return (str(i)) def dayToDate(num): result = datetime(1970,1,1) + timedelta(days=num) print (result) return (str(result)) def daysSinceEpoch(date): #print(date) year, month, dom = extractYMD(date) # diff = (datetime.datetime(year, month, dom) - datetime.datetime(1970,1,1)).days diff = (datetime(year, month, dom) - datetime(1970,1,1)).days return (int(diff)) #return the day that happens n days after the epoc (1970/1/1) def nDaysAfterEpoch(n): epoch_day = datetime(1970,1,1) new_day = epoch_day + timedelta(days=n) return (str(new_day)[0:10]) # extract the time of day from ISO format def extractTOD(s): return s[11:19] # given a time (ISO text), origin and target timezones (text), convert the time # from the origin to target timezone. def convertToTimezone (t, tz_origin, tz_target): given_time = t[0:19] time_object = datetime.fromisoformat(given_time) tz1 = pytz.timezone(tz_origin) tz2 = pytz.timezone(tz_target) origin_date = tz1.localize(time_object) target_date = tz2.normalize(origin_date) #print("converting time t from tz origin to tz-target: result") #print (t, tz_origin, tz_target) #print (target_date) return(str(target_date)) #given a lat/long, return the string for its timezon def convertlatlongToTimezone(lat_string, long_string): tf = TimezoneFinder() longitude = float(long_string)/1E7 latitude = float(lat_string)/1E7 timezone_str = str(tf.timezone_at(lng=longitude, lat=latitude)) return (timezone_str) def convertOutOfE7(s): return str(float(s)/1E7) def extractYMDHM(date): year = int(date[0:4]) month = int(date[5:7]) dom = int(date[8:10]) hour = int(date[11:13]) minute = int(date[14:16]) #print (dom, hour, minute) return ((year, month, dom, hour, minute)) def dict_to_json(dict): new_dict = {} for key in dict: json_str = "[ " cnt = 0 for obj in dict[key]: cnt = cnt +1 if cnt > 1: json_str = json_str + " , " json_str = json_str + obj.toJson() json_str = json_str + " ]" new_dict[key]= json_str return(new_dict) def distance(latlon_a, latlon_b): """Compute distance in km of two latlon pairs. """ radians_a = [radians(_) for _ in latlon_a] radians_b = [radians(_) for _ in latlon_b] result = haversine_distances([radians_a, radians_b]) return result[1, 0] * 6371000 / 1000 # multiply by Earth radius to get kilometers geolocator = GeoHelper() geo_cache = {} try: translate_geo_cache = {} #dbm.open('personal-data/app_data/geo_cache', 'c') except: print("translate_geo_cache", translate_geo_cache.keys()) cwd = str(Path().absolute()) user_info = json.load(open(cwd+"/src/common/user_info.json")) default_location = user_info["address"] def translate_place_name(place_name: str) -> str: """Translate a place name to English. """ # print(place_name) result = place_name if place_name in translate_geo_cache: result = translate_geo_cache[place_name]#.decode('utf8') # translate_geo_cache.close() return result translated_addr = geolocator.geocode(place_name, language="en") if translated_addr is not None: result = translated_addr.address translate_geo_cache[place_name] = result # translate_geo_cache.close() return result def is_home(loc: Location): """Check if a location is home (within 100km).""" try: home = get_coordinate(default_location) loc = get_coordinate(loc) return distance(home, loc) <= 100.0 except: return True def get_location_attr(loc: Location, attr: Union[str, List]): """Return an attribute (city, country, etc.) of a location""" if loc is None: return "" addr = loc if 'address' not in addr.raw: cood = (loc.latitude, loc.longitude) if cood not in geo_cache: addr = geolocator.calculateLocation(loc.latitude, loc.longitude) geo_cache[cood] = addr else: addr = geo_cache[cood] if 'address' in addr.raw: if isinstance(attr, str): attr = [attr] for attr_item in attr: if attr_item in addr.raw['address']: return addr.raw['address'][attr_item] return "" # create trip segments: consecutive days with start / end = home # geolocator = geopy.geocoders.Nominatim(user_agent="my_request") # geo_cache = {} #default_location = json.load(open('user_info.json'))["address"] # "United States" def str_to_location(loc: str): """Convert a string to geolocation.""" if loc in geo_cache: return geo_cache[loc] else: geoloc = geolocator.geocode(loc.replace(';', ', '), language='en') if geoloc is None: geoloc = geolocator.geocode(default_location, language='en') # maybe use home as default? geo_cache[loc] = geoloc return geoloc def get_coordinate(loc: Union[str, Location]): """Get coordinate of a location.""" if isinstance(loc, Location): return loc.latitude, loc.longitude geoloc = str_to_location(loc) return geoloc.latitude, geoloc.longitude ================================================ FILE: src/frontend/Dockerfile ================================================ FROM node:18.16.0 WORKDIR /app COPY src/frontend . COPY sample_data public/digital_data # RUN ln -s /app/personal-data/app_data /app/public/digital_data/app_data # To load the images the soft link should be to the entire personal-data folder RUN ln -s /app/personal-data /app/public/digital_data RUN yarn install RUN yarn add react react-scripts primereact primeicons video-react react-timelines @react-google-maps/api @uiw/react-heat-map react-syntax-highlighter @babel/runtime CMD ["yarn", "start"] ================================================ FILE: src/frontend/README.md ================================================ # Personal Timeline UI Create and activate a new conda env: ``` conda create -n digital_data python=3.10 conda activate digital_data ``` Install nodejs and yarn: ``` conda install -c conda-forge nodejs==18.10.0 yarn ``` Install some react libraries: ``` yarn add primereact primeicons video-react react-timelines @react-google-maps/api @uiw/react-heat-map react-syntax-highlighter @babel/runtime ``` ## Data preparation Data should be stored under `public/digital_data/`. For testing, you can copy the anonymized sample [data](../../sample_data/) from the main directory by running: ``` cp -r ../../sample_data public/digital_data/ ``` Files under this directory are: * `episodes.csv`: the csv table containing all episodes for rag-based QA * `books.json`, `exercise.json`, `photos.json`, `places.json`, `purchase.json`, `streaming.json`, `trips.json`: these are episodes in JSON format for visualization. Images (for serving) should be stored under `public/digital_data/images/`. ## To build and start the React frontend ``` yarn yarn start ``` The homepage should be available at `http://localhost:3000/`. The frontend code is at `frontend/src/App.js`. ### To build and serve the frontend: ``` yarn build npx serve -s build ``` ================================================ FILE: src/frontend/__init__.py ================================================ # Copyright (c) Meta Platforms, Inc. and affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ================================================ FILE: src/frontend/package.json ================================================ { "name": "research_ui", "version": "0.1.0", "private": true, "dependencies": { "@babel/runtime": "^7.21.0", "@react-google-maps/api": "^2.18.1", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", "@uiw/react-heat-map": "^2.0.5", "@uiw/react-tooltip": "^4.21.23", "primeflex": "^3.3.0", "primeicons": "^6.0.1", "primereact": "^9.2.1", "react": "^18.2.0", "react-activity-calendar": "^1.7.0", "react-calendar-heatmap": "^1.9.0", "react-dom": "^18.2.0", "react-github-calendar": "^3.4.0", "react-life-timeline": "^1.0.11", "react-router-dom": "^6.8.1", "react-scripts": "5.0.1", "react-syntax-highlighter": "^15.5.0", "react-timelines": "^2.6.1", "react-tooltip": "^5.8.2", "redux": "^4.2.1", "serve": "^14.2.0", "video-react": "^0.16.0", "web-vitals": "^2.1.4" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": [] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } } ================================================ FILE: src/frontend/public/index.html ================================================ Personal Timeline
================================================ FILE: src/frontend/public/manifest.json ================================================ { "short_name": "React App", "name": "Create React App Sample", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "logo192.png", "type": "image/png", "sizes": "192x192" }, { "src": "logo512.png", "type": "image/png", "sizes": "512x512" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" } ================================================ FILE: src/frontend/public/robots.txt ================================================ # https://www.robotstxt.org/robotstxt.html User-agent: * Disallow: ================================================ FILE: src/frontend/requirements.txt ================================================ plotly matplotlib scikit-learn openai flask hydra-core transformers spotipy faiss-cpu pandas hydra-core==1.3.2 langchain==0.1.11 sqlparse flask-cors ================================================ FILE: src/frontend/src/App.css ================================================ .App { /* text-align: center; */ font-family: sans-serif; margin: 20px; } .App-logo { height: 40vmin; pointer-events: none; } @media (prefers-reduced-motion: no-preference) { .App-logo { animation: App-logo-spin infinite 20s linear; } } .App-header { background-color: #282c34; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: calc(10px + 2vmin); color: white; } .App-link { color: #61dafb; } @keyframes App-logo-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } .terminal-demo p { margin-top: 0; } .terminal-demo .p-terminal { background-color: #212121; color: #fff; } .terminal-demo .p-terminal .p-terminal-command { color: #80cbc4; } .terminal-demo .p-terminal .p-terminal-prompt { color: #ffd54f; } .terminal-demo .p-terminal .p-terminal-response { color: #9fa8da; } ================================================ FILE: src/frontend/src/App.js ================================================ /* * Copyright (c) Meta Platforms, Inc. and affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import './App.css'; import React, { useEffect, useState, useRef } from 'react'; import { Terminal } from 'primereact/terminal'; import { TerminalService } from 'primereact/terminalservice'; import { ProgressBar } from 'primereact/progressbar'; import { TabView, TabPanel } from 'primereact/tabview'; import { Card } from 'primereact/card'; import { Button } from 'primereact/button'; import { addDays } from './timeline/builders' import { Tooltip } from 'primereact/tooltip'; import { Toast } from 'primereact/toast'; import { RadioButton } from 'primereact/radiobutton'; import { Image } from 'primereact/image'; import { Calendar } from 'primereact/calendar'; import { Divider } from 'primereact/divider'; import { Dropdown } from 'primereact/dropdown'; import { Toolbar } from 'primereact/toolbar'; import { Paginator } from 'primereact/paginator'; import HeatMap from '@uiw/react-heat-map'; import GoogleMapComponent from './map/GoogleMapComponent'; import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter'; import { coy } from 'react-syntax-highlighter/dist/esm/styles/prism'; import "video-react/dist/video-react.css"; // import css import importDigitalData from './service/DigitalDataImportor'; import { config } from './Constants'; function App() { // today's date const today = new Date(); // answer for QA const [answer, setAnswer] = useState("Empty") // whether the query is running const [running, setRunning] = useState(false); // digital data tracks const [tracks, setTracks] = useState([]); // the list of geo locations const [geo, setGeo] = useState([]); // for heatmap calendar const [dayCount, setDayCount] = useState([]); // endDay is always today const [startDay, setStartDay] = useState(today); // number of days to be shown in the heatmap const [dayLength, setDayLength] = useState(700); // selected start/end date const [selectedDateRange, setSelectedDateRange] = useState(null); // selected track const [selectedTrack, setSelectedTrack] = useState(null); // world-state const [worldState, setWorldState] = useState({ 'id': 'none', 'some_attribute': 'val' }); // Paginator related const [paginatorFirst, setPaginatorFirst] = useState(0); const [paginatorRows, setPaginatorRows] = useState(50); // events to be shown in the timeline const [events, setEvents] = useState([]); // selected event ID's const [selectedIDs, setSelectedIDs] = useState(null); // selected view's index (timeline, map, etc.) const [activeIndex, setActiveIndex] = useState(0); // qa engine const [qa, setQA] = useState(null); // sample questions const [sampleQuestions, setSampleQuestions] = useState([ "Show me some photos of plants in my neighborhood", "Which cities did I visit when I traveled to Japan?", "How many books did I purchase in April?"]); // different qa methods const qa_methods = ["ChatGPT", "Retrieval-based", "View-based"] // mapping names of the different maps to indices // const view_name_mp = { // "timeline": 0, "query_result": 1, "video": 2, // "retrieval_result": 3, "heatmap": 4, // "map": 5, "details": 6 // } const view_name_mp = { "query_result": 0, "retrieval_result": 1, "map": 2, "details": 3 } // Toast const toast = useRef(null); /** * useEffect hooks for updating heatmap, geo based on tracks */ useEffect(() => { let dates = []; let new_geo = []; let counter = {}; for (let track_id = 0; track_id < tracks.length; track_id++) { let track = tracks[track_id]; for (let i = 0; i < track.elements.length; i++) { let elem = track.elements[i]; // id, title, start, end let date_str = elem.start.toDateString(); dates.push(date_str); if (!(date_str in counter)) { counter[date_str] = { date: date_str, count: 0 }; } if (!(track.title in counter[date_str])) { counter[date_str][track.title] = 0; } counter[date_str].count += 1; counter[date_str][track.title] += 1; if (elem.lat && elem.long) { new_geo.push(elem); } } } // counter setDayCount(Object.values(counter)); // set start day and length dates = dates.map((d) => { return new Date(d); }); let maxDate = new Date(Math.max.apply(null, dates)); let minDate = new Date(Math.min.apply(null, dates)); setStartDay(minDate); setDayLength(Math.max((maxDate - minDate) / 60 / 60 / 24 / 1000 * 3.6, 700)); // set geo locations setGeo(new_geo); }, [tracks]); /** * Icons for displaying episodes in the vertical timeline */ const icon_map = { purchase: 'pi pi-amazon', books: 'pi pi-book', streaming: 'pi pi-youtube', places: 'pi pi-map', exercise: 'pi pi-heart-fill', trips: 'pi pi-car', photos: 'pi pi-instagram' } /** * Icon colors from https://coolors.co/palette/ffbe0b-fb5607-ff006e-8338ec-3a86ff */ const icon_color_map = { purchase: '#ffbe0b', books: '#3a86ff', streaming: '#ff006e', places: '#8338ec', trips: '#ff006e', exercise: '#fb5607', photos: '#3a86ff' } /** * Map an element (episode) to an event in the vertical timeline. * @param {String} track_name - name of the track * @param {Object} element - the episode * @returns A timeline event */ const element_to_event = (track_name, element) => { let data = element.data; let event = { title: element.title, date: element.start.toString(), icon: icon_map[track_name], color: icon_color_map[track_name] }; // summarization if (data.instructions) { event.summary = data.instructions; } if (data.summary) { event.summary = data.summary; } if (data.video_url) { event.video = data.video_url; } // Digital data: images, kindle and spotify if (data.img_url) { // Modify the image url to point to the right place const urlArray = data.img_url.split("/"); urlArray[1] = "digital_data" event.image = urlArray.slice(1).join("/"); } else if (data.start_lat && data.start_long) { event.lat = data.start_lat; event.long = data.start_long; } if (data.spotify_link && data.spotify_link !== "") { event.spotify = data.spotify_link; } event.data = data; return event; } /** * useEffect hooks for updating the events to be shown on the timeline * when selected data range changes. */ useEffect(() => { let new_events = []; let new_geo = []; let [start, end] = [startDay, addDays(startDay, 180)]; if (selectedDateRange && selectedDateRange.length == 2) { [start, end] = selectedDateRange; if (end === null) { end = addDays(start, 1); } } for (let tid = 0; tid < tracks.length; tid++) { for (let eid = 0; eid < tracks[tid].elements.length; eid++) { let element = tracks[tid].elements[eid]; if (element.start.getTime() >= start.getTime() && element.start.getTime() <= end.getTime()) { let event = element_to_event(tracks[tid].title, element); new_events.push(event); // update geo if (element.lat && element.long) { new_geo.push(element); } } } } // update vertical timeline view // no more than 500 events new_events.sort((a, b) => { let a_time = new Date(a.date).getTime(); let b_time = new Date(b.date).getTime(); return a_time - b_time; }); // setEvents(new_events.slice(0, 500)); setEvents(new_events); // update geo view setGeo(new_geo); }, [selectedDateRange]); /** * Handler for user entering command. * * @param {String} text - the input question or command (e.g., clear) */ const commandHandler = (text) => { let argsIndex = text.indexOf(' '); let command = argsIndex !== -1 ? text.substring(0, argsIndex) : text; switch (command) { case 'clear': TerminalService.emit('clear'); break; default: TerminalService.emit('response', 'Running...'); setRunning(true); let data_source = 'digital'; // send queries to the backend fetch(config.API_URL + "/query?" + new URLSearchParams({ query: text, source: data_source, qa: qa })).then((response) => response.json()) .then((data) => { console.log(data); setAnswer(data); if (data.sources) { let new_selected_ids = [] for (let i = 0; i < data.sources.length; i++) { let source = data.sources[i]; if (source.id) { new_selected_ids.push(source.id); } } setSelectedIDs(new_selected_ids); } TerminalService.emit('response', (data.answer ? data.method + ": " + data.answer : 'Done!')); setActiveIndex(view_name_mp["retrieval_result"]); setRunning(false); }); break; } } /** * useEffect hooks for the QA dialog box. */ useEffect(() => { TerminalService.on('command', commandHandler); return () => { TerminalService.off('command', commandHandler); }; }, [qa]); /** * For displaying counts (for different episode types) on the heatmap view. * @param {Object} data * @returns {String} the count string */ const showCount = (data) => { let res = `${data.date}`; for (let key in data) { if (!(['row', 'column', 'index', 'count'].includes(key)) && Number.isInteger(data[key]) && data[key] > 0) { res += ` ${key}: ${data[key]}`; } } return res } /** * For showing markers on the vertical timeline. * @param {Object} item * @returns */ const customizedMarker = (item) => { return ( ); }; /** * The show more button for summaries * @param {Text} prop.summary - the summary * @returns */ const ShowMore = (prop) => { let summary = prop.summary; const [more, setMore] = useState(false); return
{summary.length >= 200 && !more ?

{summary.slice(0, 200) + ' '}

; } /** * The lazy loading video class. */ const Video_ = (props) => { const videoRef = useRef(props.video_path); const useIntersectionObserver = (ref, options) => { const [isIntersecting, setIsIntersecting] = React.useState(false); React.useEffect(() => { const observer = new IntersectionObserver(([entry]) => { setIsIntersecting(entry.isIntersecting); }, options); if (ref.current) { observer.observe(ref.current); } return () => { try { observer.unobserve(ref.current); } catch (e) { console.log(e); } }; }, []); return isIntersecting; }; const shouldLoadVideo = useIntersectionObserver(videoRef, { threshold: 0.5 }); return (
{shouldLoadVideo && ( )}
); }; /** * Displaying one episode in the timeline. * @param {Object} item - the event to be displayed * @returns */ const customizedContent_v2 = (item) => { return ( {item.summary && } {item.image && {item.name}} {item.spotify &&